├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── publish.yml │ └── test-package.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── bin ├── batch.dart ├── license_detector_bin.dart └── pana.dart ├── dart_test.yaml ├── lib ├── models.dart ├── pana.dart └── src │ ├── analysis_options.dart │ ├── batch │ ├── batch_compare_command.dart │ ├── batch_model.dart │ ├── batch_model.g.dart │ ├── batch_query_command.dart │ └── batch_run_command.dart │ ├── code_problem.dart │ ├── dartdoc │ ├── dartdoc.dart │ ├── dartdoc_index.dart │ ├── dartdoc_index.g.dart │ ├── dartdoc_internals.dart │ ├── dartdoc_options.dart │ ├── index_to_pubdata.dart │ ├── pub_dartdoc_data.dart │ └── pub_dartdoc_data.g.dart │ ├── download_utils.dart │ ├── internal_model.dart │ ├── internal_model.g.dart │ ├── json_converters.dart │ ├── license.dart │ ├── license_detection │ ├── confidence.dart │ ├── license.dart │ ├── license_detector.dart │ ├── primary_filter.dart │ ├── token_matcher.dart │ └── tokenizer.dart │ ├── logging.dart │ ├── maintenance.dart │ ├── markdown_content.dart │ ├── messages.dart │ ├── model.dart │ ├── model.g.dart │ ├── null_safety.dart │ ├── package_analyzer.dart │ ├── package_context.dart │ ├── pana_cache.dart │ ├── pkg_resolution.dart │ ├── pubspec.dart │ ├── pubspec_io.dart │ ├── references │ └── pubspec_urls.dart │ ├── report │ ├── _common.dart │ ├── create_report.dart │ ├── dependencies.dart │ ├── documentation.dart │ ├── multi_platform.dart │ ├── static_analysis.dart │ └── template.dart │ ├── repository │ ├── check_repository.dart │ ├── git_local_repository.dart │ ├── repository_url_parser.dart │ └── repository_url_resolver.dart │ ├── screenshots.dart │ ├── sdk_env.dart │ ├── tag │ ├── _common.dart │ ├── _graphs.dart │ ├── _specs.dart │ ├── _violations.dart │ ├── license_tags.dart │ ├── pana_tags.dart │ └── tagger.dart │ ├── third_party │ ├── diff_match_patch │ │ ├── .pubignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── diff.dart │ │ ├── test.dart │ │ └── utils.dart │ └── spdx │ │ ├── LICENSE │ │ ├── README.md │ │ ├── licenses.dart │ │ └── licenses │ │ ├── 0BSD.txt │ │ ├── 3D-Slicer-1.0.txt │ │ ├── AAL.txt │ │ ├── ADSL.txt │ │ ├── AFL-1.1.txt │ │ ├── AFL-1.2.txt │ │ ├── AFL-2.0.txt │ │ ├── AFL-2.1.txt │ │ ├── AFL-3.0.txt │ │ ├── AGPL-1.0.txt │ │ ├── AGPL-3.0.txt │ │ ├── AMD-newlib.txt │ │ ├── AMDPLPA.txt │ │ ├── AML-glslang.txt │ │ ├── AML.txt │ │ ├── AMPAS.txt │ │ ├── ANTLR-PD-fallback.txt │ │ ├── ANTLR-PD.txt │ │ ├── APAFML.txt │ │ ├── APL-1.0.txt │ │ ├── APSL-1.0.txt │ │ ├── APSL-1.1.txt │ │ ├── APSL-1.2.txt │ │ ├── APSL-2.0.txt │ │ ├── ASWF-Digital-Assets-1.0.txt │ │ ├── ASWF-Digital-Assets-1.1.txt │ │ ├── Abstyles.txt │ │ ├── AdaCore-doc.txt │ │ ├── Adobe-2006.txt │ │ ├── Adobe-Display-PostScript.txt │ │ ├── Adobe-Glyph.txt │ │ ├── Adobe-Utopia.txt │ │ ├── Advanced-Cryptics-Dictionary.txt │ │ ├── Afmparse.txt │ │ ├── Aladdin.txt │ │ ├── Apache-1.0.txt │ │ ├── Apache-1.1.txt │ │ ├── Apache-2.0.txt │ │ ├── App-s2p.txt │ │ ├── Arphic-1999.txt │ │ ├── Artistic-1.0-Perl.txt │ │ ├── Artistic-1.0-cl8.txt │ │ ├── Artistic-1.0.txt │ │ ├── Artistic-2.0.txt │ │ ├── Artistic-dist.txt │ │ ├── Aspell-RU.txt │ │ ├── BSD-1-Clause.txt │ │ ├── BSD-2-Clause-Darwin.txt │ │ ├── BSD-2-Clause-Patent.txt │ │ ├── BSD-2-Clause-Views.txt │ │ ├── BSD-2-Clause-first-lines.txt │ │ ├── BSD-2-Clause-pkgconf-disclaimer.txt │ │ ├── BSD-2-Clause.txt │ │ ├── BSD-3-Clause-Attribution.txt │ │ ├── BSD-3-Clause-Clear.txt │ │ ├── BSD-3-Clause-HP.txt │ │ ├── BSD-3-Clause-LBNL.txt │ │ ├── BSD-3-Clause-Modification.txt │ │ ├── BSD-3-Clause-No-Military-License.txt │ │ ├── BSD-3-Clause-No-Nuclear-License-2014.txt │ │ ├── BSD-3-Clause-No-Nuclear-License.txt │ │ ├── BSD-3-Clause-No-Nuclear-Warranty.txt │ │ ├── BSD-3-Clause-Open-MPI.txt │ │ ├── BSD-3-Clause-Sun.txt │ │ ├── BSD-3-Clause-Tso.txt │ │ ├── BSD-3-Clause-acpica.txt │ │ ├── BSD-3-Clause-flex.txt │ │ ├── BSD-3-Clause.txt │ │ ├── BSD-4-Clause-Shortened.txt │ │ ├── BSD-4-Clause-UC.txt │ │ ├── BSD-4-Clause.txt │ │ ├── BSD-4.3RENO.txt │ │ ├── BSD-4.3TAHOE.txt │ │ ├── BSD-Advertising-Acknowledgement.txt │ │ ├── BSD-Attribution-HPND-disclaimer.txt │ │ ├── BSD-Inferno-Nettverk.txt │ │ ├── BSD-Mark-Modifications.txt │ │ ├── BSD-Protection.txt │ │ ├── BSD-Source-Code.txt │ │ ├── BSD-Source-beginning-file.txt │ │ ├── BSD-Systemics-W3Works.txt │ │ ├── BSD-Systemics.txt │ │ ├── BSL-1.0.txt │ │ ├── BUSL-1.1.txt │ │ ├── Baekmuk.txt │ │ ├── Bahyph.txt │ │ ├── Barr.txt │ │ ├── Beerware.txt │ │ ├── BitTorrent-1.0.txt │ │ ├── BitTorrent-1.1.txt │ │ ├── Bitstream-Charter.txt │ │ ├── Bitstream-Vera.txt │ │ ├── BlueOak-1.0.0.txt │ │ ├── Boehm-GC-without-fee.txt │ │ ├── Boehm-GC.txt │ │ ├── Borceux.txt │ │ ├── Brian-Gladman-2-Clause.txt │ │ ├── Brian-Gladman-3-Clause.txt │ │ ├── C-UDA-1.0.txt │ │ ├── CAL-1.0.txt │ │ ├── CATOSL-1.1.txt │ │ ├── CC-BY-1.0.txt │ │ ├── CC-BY-2.0.txt │ │ ├── CC-BY-2.5-AU.txt │ │ ├── CC-BY-2.5.txt │ │ ├── CC-BY-3.0-AT.txt │ │ ├── CC-BY-3.0-AU.txt │ │ ├── CC-BY-3.0-DE.txt │ │ ├── CC-BY-3.0-IGO.txt │ │ ├── CC-BY-3.0-NL.txt │ │ ├── CC-BY-3.0-US.txt │ │ ├── CC-BY-3.0.txt │ │ ├── CC-BY-4.0.txt │ │ ├── CC-BY-NC-1.0.txt │ │ ├── CC-BY-NC-2.0.txt │ │ ├── CC-BY-NC-2.5.txt │ │ ├── CC-BY-NC-3.0-DE.txt │ │ ├── CC-BY-NC-3.0.txt │ │ ├── CC-BY-NC-4.0.txt │ │ ├── CC-BY-NC-ND-1.0.txt │ │ ├── CC-BY-NC-ND-2.0.txt │ │ ├── CC-BY-NC-ND-2.5.txt │ │ ├── CC-BY-NC-ND-3.0-DE.txt │ │ ├── CC-BY-NC-ND-3.0-IGO.txt │ │ ├── CC-BY-NC-ND-3.0.txt │ │ ├── CC-BY-NC-ND-4.0.txt │ │ ├── CC-BY-NC-SA-1.0.txt │ │ ├── CC-BY-NC-SA-2.0-DE.txt │ │ ├── CC-BY-NC-SA-2.0-FR.txt │ │ ├── CC-BY-NC-SA-2.0-UK.txt │ │ ├── CC-BY-NC-SA-2.0.txt │ │ ├── CC-BY-NC-SA-2.5.txt │ │ ├── CC-BY-NC-SA-3.0-DE.txt │ │ ├── CC-BY-NC-SA-3.0-IGO.txt │ │ ├── CC-BY-NC-SA-3.0.txt │ │ ├── CC-BY-NC-SA-4.0.txt │ │ ├── CC-BY-ND-1.0.txt │ │ ├── CC-BY-ND-2.0.txt │ │ ├── CC-BY-ND-2.5.txt │ │ ├── CC-BY-ND-3.0-DE.txt │ │ ├── CC-BY-ND-3.0.txt │ │ ├── CC-BY-ND-4.0.txt │ │ ├── CC-BY-SA-1.0.txt │ │ ├── CC-BY-SA-2.0-UK.txt │ │ ├── CC-BY-SA-2.0.txt │ │ ├── CC-BY-SA-2.1-JP.txt │ │ ├── CC-BY-SA-2.5.txt │ │ ├── CC-BY-SA-3.0-AT.txt │ │ ├── CC-BY-SA-3.0-DE.txt │ │ ├── CC-BY-SA-3.0-IGO.txt │ │ ├── CC-BY-SA-3.0.txt │ │ ├── CC-BY-SA-4.0.txt │ │ ├── CC-PDDC.txt │ │ ├── CC-PDM-1.0.txt │ │ ├── CC-SA-1.0.txt │ │ ├── CC0-1.0.txt │ │ ├── CDDL-1.0.txt │ │ ├── CDDL-1.1.txt │ │ ├── CDL-1.0.txt │ │ ├── CDLA-Permissive-1.0.txt │ │ ├── CDLA-Permissive-2.0.txt │ │ ├── CDLA-Sharing-1.0.txt │ │ ├── CECILL-1.0.txt │ │ ├── CECILL-1.1.txt │ │ ├── CECILL-2.0.txt │ │ ├── CECILL-2.1.txt │ │ ├── CECILL-B.txt │ │ ├── CECILL-C.txt │ │ ├── CERN-OHL-1.1.txt │ │ ├── CERN-OHL-1.2.txt │ │ ├── CERN-OHL-P-2.0.txt │ │ ├── CERN-OHL-S-2.0.txt │ │ ├── CERN-OHL-W-2.0.txt │ │ ├── CFITSIO.txt │ │ ├── CMU-Mach-nodoc.txt │ │ ├── CMU-Mach.txt │ │ ├── CNRI-Jython.txt │ │ ├── CNRI-Python-GPL-Compatible.txt │ │ ├── CNRI-Python.txt │ │ ├── COIL-1.0.txt │ │ ├── CPAL-1.0.txt │ │ ├── CPL-1.0.txt │ │ ├── CPOL-1.02.txt │ │ ├── CUA-OPL-1.0.txt │ │ ├── Caldera-no-preamble.txt │ │ ├── Caldera.txt │ │ ├── Catharon.txt │ │ ├── ClArtistic.txt │ │ ├── Clips.txt │ │ ├── Community-Spec-1.0.txt │ │ ├── Condor-1.1.txt │ │ ├── Cornell-Lossless-JPEG.txt │ │ ├── Cronyx.txt │ │ ├── Crossword.txt │ │ ├── CryptoSwift.txt │ │ ├── CrystalStacker.txt │ │ ├── Cube.txt │ │ ├── D-FSL-1.0.txt │ │ ├── DEC-3-Clause.txt │ │ ├── DL-DE-BY-2.0.txt │ │ ├── DL-DE-ZERO-2.0.txt │ │ ├── DOC.txt │ │ ├── DRL-1.0.txt │ │ ├── DRL-1.1.txt │ │ ├── DSDP.txt │ │ ├── DocBook-DTD.txt │ │ ├── DocBook-Schema.txt │ │ ├── DocBook-Stylesheet.txt │ │ ├── DocBook-XML.txt │ │ ├── Dotseqn.txt │ │ ├── ECL-1.0.txt │ │ ├── ECL-2.0.txt │ │ ├── EFL-1.0.txt │ │ ├── EFL-2.0.txt │ │ ├── EPICS.txt │ │ ├── EPL-1.0.txt │ │ ├── EPL-2.0.txt │ │ ├── ESA-PL-permissive-2.4.txt │ │ ├── ESA-PL-strong-copyleft-2.4.txt │ │ ├── ESA-PL-weak-copyleft-2.4.txt │ │ ├── EUDatagrid.txt │ │ ├── EUPL-1.0.txt │ │ ├── EUPL-1.1.txt │ │ ├── EUPL-1.2.txt │ │ ├── Elastic-2.0.txt │ │ ├── Entessa.txt │ │ ├── ErlPL-1.1.txt │ │ ├── Eurosym.txt │ │ ├── FBM.txt │ │ ├── FDK-AAC.txt │ │ ├── FSFAP-no-warranty-disclaimer.txt │ │ ├── FSFAP.txt │ │ ├── FSFUL.txt │ │ ├── FSFULLR.txt │ │ ├── FSFULLRSD.txt │ │ ├── FSFULLRWD.txt │ │ ├── FSL-1.1-ALv2.txt │ │ ├── FSL-1.1-MIT.txt │ │ ├── FTL.txt │ │ ├── Fair.txt │ │ ├── Ferguson-Twofish.txt │ │ ├── Frameworx-1.0.txt │ │ ├── FreeBSD-DOC.txt │ │ ├── FreeImage.txt │ │ ├── Furuseth.txt │ │ ├── GCR-docs.txt │ │ ├── GD.txt │ │ ├── GFDL-1.1-invariants.txt │ │ ├── GFDL-1.2.txt │ │ ├── GFDL-1.3.txt │ │ ├── GL2PS.txt │ │ ├── GLWTPL.txt │ │ ├── GPL-1.0.txt │ │ ├── GPL-2.0.txt │ │ ├── GPL-3.0.txt │ │ ├── Game-Programming-Gems.txt │ │ ├── Giftware.txt │ │ ├── Glide.txt │ │ ├── Glulxe.txt │ │ ├── Graphics-Gems.txt │ │ ├── Gutmann.txt │ │ ├── HDF5.txt │ │ ├── HIDAPI.txt │ │ ├── HP-1986.txt │ │ ├── HP-1989.txt │ │ ├── HPND-DEC.txt │ │ ├── HPND-Fenneberg-Livingston.txt │ │ ├── HPND-INRIA-IMAG.txt │ │ ├── HPND-Intel.txt │ │ ├── HPND-Kevlin-Henney.txt │ │ ├── HPND-MIT-disclaimer.txt │ │ ├── HPND-Markus-Kuhn.txt │ │ ├── HPND-Netrek.txt │ │ ├── HPND-Pbmplus.txt │ │ ├── HPND-SMC.txt │ │ ├── HPND-UC-export-US.txt │ │ ├── HPND-UC.txt │ │ ├── HPND-doc-sell.txt │ │ ├── HPND-doc.txt │ │ ├── HPND-export-US-acknowledgement.txt │ │ ├── HPND-export-US-modify.txt │ │ ├── HPND-export-US.txt │ │ ├── HPND-export2-US.txt │ │ ├── HPND-merchantability-variant.txt │ │ ├── HPND-sell-MIT-disclaimer-xserver.txt │ │ ├── HPND-sell-regexpr.txt │ │ ├── HPND-sell-variant-MIT-disclaimer-rev.txt │ │ ├── HPND-sell-variant-MIT-disclaimer.txt │ │ ├── HPND-sell-variant.txt │ │ ├── HPND.txt │ │ ├── HTMLTIDY.txt │ │ ├── HaskellReport.txt │ │ ├── Hippocratic-2.1.txt │ │ ├── IBM-pibs.txt │ │ ├── ICU.txt │ │ ├── IEC-Code-Components-EULA.txt │ │ ├── IJG-short.txt │ │ ├── IJG.txt │ │ ├── IPA.txt │ │ ├── IPL-1.0.txt │ │ ├── ISC-Veillard.txt │ │ ├── ISC.txt │ │ ├── ImageMagick.txt │ │ ├── Imlib2.txt │ │ ├── Info-ZIP.txt │ │ ├── Inner-Net-2.0.txt │ │ ├── InnoSetup.txt │ │ ├── Intel-ACPI.txt │ │ ├── Intel.txt │ │ ├── Interbase-1.0.txt │ │ ├── JPL-image.txt │ │ ├── JPNIC.txt │ │ ├── JSON.txt │ │ ├── Jam.txt │ │ ├── JasPer-2.0.txt │ │ ├── Kastrup.txt │ │ ├── Kazlib.txt │ │ ├── Knuth-CTAN.txt │ │ ├── LAL-1.2.txt │ │ ├── LAL-1.3.txt │ │ ├── LGPL-2.0.txt │ │ ├── LGPL-2.1.txt │ │ ├── LGPL-3.0.txt │ │ ├── LGPLLR.txt │ │ ├── LOOP.txt │ │ ├── LPD-document.txt │ │ ├── LPL-1.0.txt │ │ ├── LPL-1.02.txt │ │ ├── LPPL-1.0.txt │ │ ├── LPPL-1.1.txt │ │ ├── LPPL-1.2.txt │ │ ├── LPPL-1.3a.txt │ │ ├── LPPL-1.3c.txt │ │ ├── LZMA-SDK-9.11-to-9.20.txt │ │ ├── LZMA-SDK-9.22.txt │ │ ├── Latex2e-translated-notice.txt │ │ ├── Latex2e.txt │ │ ├── Leptonica.txt │ │ ├── LiLiQ-P-1.1.txt │ │ ├── LiLiQ-R-1.1.txt │ │ ├── LiLiQ-Rplus-1.1.txt │ │ ├── Libpng.txt │ │ ├── Linux-OpenIB.txt │ │ ├── Linux-man-pages-1-para.txt │ │ ├── Linux-man-pages-copyleft-2-para.txt │ │ ├── Linux-man-pages-copyleft-var.txt │ │ ├── Linux-man-pages-copyleft.txt │ │ ├── Lucida-Bitmap-Fonts.txt │ │ ├── MIPS.txt │ │ ├── MIT-0.txt │ │ ├── MIT-CMU.txt │ │ ├── MIT-Click.txt │ │ ├── MIT-Festival.txt │ │ ├── MIT-Khronos-old.txt │ │ ├── MIT-Modern-Variant.txt │ │ ├── MIT-Wu.txt │ │ ├── MIT-advertising.txt │ │ ├── MIT-enna.txt │ │ ├── MIT-feh.txt │ │ ├── MIT-open-group.txt │ │ ├── MIT-testregex.txt │ │ ├── MIT.txt │ │ ├── MITNFA.txt │ │ ├── MMIXware.txt │ │ ├── MPEG-SSG.txt │ │ ├── MPL-1.0.txt │ │ ├── MPL-1.1.txt │ │ ├── MPL-2.0.txt │ │ ├── MS-LPL.txt │ │ ├── MS-PL.txt │ │ ├── MS-RL.txt │ │ ├── MTLL.txt │ │ ├── Mackerras-3-Clause-acknowledgment.txt │ │ ├── Mackerras-3-Clause.txt │ │ ├── MakeIndex.txt │ │ ├── Martin-Birgmeier.txt │ │ ├── McPhee-slideshow.txt │ │ ├── Minpack.txt │ │ ├── MirOS.txt │ │ ├── Motosoto.txt │ │ ├── MulanPSL-1.0.txt │ │ ├── MulanPSL-2.0.txt │ │ ├── Multics.txt │ │ ├── Mup.txt │ │ ├── NAIST-2003.txt │ │ ├── NASA-1.3.txt │ │ ├── NBPL-1.0.txt │ │ ├── NCBI-PD.txt │ │ ├── NCGL-UK-2.0.txt │ │ ├── NCL.txt │ │ ├── NCSA.txt │ │ ├── NGPL.txt │ │ ├── NICTA-1.0.txt │ │ ├── NIST-PD-TNT.txt │ │ ├── NIST-PD-fallback.txt │ │ ├── NIST-PD.txt │ │ ├── NIST-Software.txt │ │ ├── NLOD-1.0.txt │ │ ├── NLOD-2.0.txt │ │ ├── NLPL.txt │ │ ├── NOSL.txt │ │ ├── NPL-1.0.txt │ │ ├── NPL-1.1.txt │ │ ├── NPOSL-3.0.txt │ │ ├── NRL.txt │ │ ├── NTIA-PD.txt │ │ ├── NTP-0.txt │ │ ├── NTP.txt │ │ ├── Naumen.txt │ │ ├── NetCDF.txt │ │ ├── Newsletr.txt │ │ ├── Nokia.txt │ │ ├── Noweb.txt │ │ ├── O-UDA-1.0.txt │ │ ├── OAR.txt │ │ ├── OCCT-PL.txt │ │ ├── OCLC-2.0.txt │ │ ├── ODC-By-1.0.txt │ │ ├── ODbL-1.0.txt │ │ ├── OFFIS.txt │ │ ├── OFL-1.0.txt │ │ ├── OFL-1.1.txt │ │ ├── OGC-1.0.txt │ │ ├── OGDL-Taiwan-1.0.txt │ │ ├── OGL-Canada-2.0.txt │ │ ├── OGL-UK-1.0.txt │ │ ├── OGL-UK-2.0.txt │ │ ├── OGL-UK-3.0.txt │ │ ├── OGTSL.txt │ │ ├── OLDAP-1.1.txt │ │ ├── OLDAP-1.2.txt │ │ ├── OLDAP-1.3.txt │ │ ├── OLDAP-1.4.txt │ │ ├── OLDAP-2.0.1.txt │ │ ├── OLDAP-2.0.txt │ │ ├── OLDAP-2.1.txt │ │ ├── OLDAP-2.2.1.txt │ │ ├── OLDAP-2.2.2.txt │ │ ├── OLDAP-2.2.txt │ │ ├── OLDAP-2.3.txt │ │ ├── OLDAP-2.4.txt │ │ ├── OLDAP-2.5.txt │ │ ├── OLDAP-2.6.txt │ │ ├── OLDAP-2.7.txt │ │ ├── OLDAP-2.8.txt │ │ ├── OLFL-1.3.txt │ │ ├── OML.txt │ │ ├── OPL-1.0.txt │ │ ├── OPL-UK-3.0.txt │ │ ├── OPUBL-1.0.txt │ │ ├── OSET-PL-2.1.txt │ │ ├── OSL-1.0.txt │ │ ├── OSL-1.1.txt │ │ ├── OSL-2.0.txt │ │ ├── OSL-2.1.txt │ │ ├── OSL-3.0.txt │ │ ├── OSSP.txt │ │ ├── OpenPBS-2.3.txt │ │ ├── OpenSSL-standalone.txt │ │ ├── OpenSSL.txt │ │ ├── OpenVision.txt │ │ ├── PADL.txt │ │ ├── PDDL-1.0.txt │ │ ├── PHP-3.0.txt │ │ ├── PHP-3.01.txt │ │ ├── PPL.txt │ │ ├── PSF-2.0.txt │ │ ├── Parity-6.0.0.txt │ │ ├── Parity-7.0.0.txt │ │ ├── Pixar.txt │ │ ├── Plexus.txt │ │ ├── PolyForm-Noncommercial-1.0.0.txt │ │ ├── PolyForm-Small-Business-1.0.0.txt │ │ ├── PostgreSQL.txt │ │ ├── Python-2.0.1.txt │ │ ├── Python-2.0.txt │ │ ├── QPL-1.0-INRIA-2004.txt │ │ ├── QPL-1.0.txt │ │ ├── Qhull.txt │ │ ├── RHeCos-1.1.txt │ │ ├── RPL-1.1.txt │ │ ├── RPL-1.5.txt │ │ ├── RPSL-1.0.txt │ │ ├── RSA-MD.txt │ │ ├── RSCPL.txt │ │ ├── Rdisc.txt │ │ ├── Ruby-pty.txt │ │ ├── Ruby.txt │ │ ├── SAX-PD-2.0.txt │ │ ├── SAX-PD.txt │ │ ├── SCEA.txt │ │ ├── SGI-B-1.0.txt │ │ ├── SGI-B-1.1.txt │ │ ├── SGI-B-2.0.txt │ │ ├── SGI-OpenGL.txt │ │ ├── SGMLUG-PM.txt │ │ ├── SGP4.txt │ │ ├── SHL-0.5.txt │ │ ├── SHL-0.51.txt │ │ ├── SISSL-1.2.txt │ │ ├── SISSL.txt │ │ ├── SL.txt │ │ ├── SMAIL-GPL.txt │ │ ├── SMLNJ.txt │ │ ├── SMPPL.txt │ │ ├── SNIA.txt │ │ ├── SOFA.txt │ │ ├── SPL-1.0.txt │ │ ├── SSH-OpenSSH.txt │ │ ├── SSH-short.txt │ │ ├── SSLeay-standalone.txt │ │ ├── SSPL-1.0.txt │ │ ├── SUL-1.0.txt │ │ ├── SWL.txt │ │ ├── Saxpath.txt │ │ ├── SchemeReport.txt │ │ ├── Sendmail-8.23.txt │ │ ├── Sendmail-Open-Source-1.1.txt │ │ ├── Sendmail.txt │ │ ├── SimPL-2.0.txt │ │ ├── Sleepycat.txt │ │ ├── Soundex.txt │ │ ├── Spencer-86.txt │ │ ├── Spencer-94.txt │ │ ├── Spencer-99.txt │ │ ├── SugarCRM-1.1.3.txt │ │ ├── Sun-PPP-2000.txt │ │ ├── Sun-PPP.txt │ │ ├── SunPro.txt │ │ ├── Symlinks.txt │ │ ├── TAPR-OHL-1.0.txt │ │ ├── TCL.txt │ │ ├── TCP-wrappers.txt │ │ ├── TGPPL-1.0.txt │ │ ├── TMate.txt │ │ ├── TORQUE-1.1.txt │ │ ├── TOSL.txt │ │ ├── TPDL.txt │ │ ├── TPL-1.0.txt │ │ ├── TTWL.txt │ │ ├── TTYP0.txt │ │ ├── TU-Berlin-1.0.txt │ │ ├── TU-Berlin-2.0.txt │ │ ├── TermReadKey.txt │ │ ├── ThirdEye.txt │ │ ├── TrustedQSL.txt │ │ ├── UCAR.txt │ │ ├── UCL-1.0.txt │ │ ├── UMich-Merit.txt │ │ ├── UPL-1.0.txt │ │ ├── URT-RLE.txt │ │ ├── Ubuntu-font-1.0.txt │ │ ├── Unicode-3.0.txt │ │ ├── Unicode-DFS-2015.txt │ │ ├── Unicode-DFS-2016.txt │ │ ├── Unicode-TOU.txt │ │ ├── UnixCrypt.txt │ │ ├── Unlicense-libtelnet.txt │ │ ├── Unlicense-libwhirlpool.txt │ │ ├── Unlicense.txt │ │ ├── VOSTROM.txt │ │ ├── VSL-1.0.txt │ │ ├── Vim.txt │ │ ├── W3C-19980720.txt │ │ ├── W3C-20150513.txt │ │ ├── W3C.txt │ │ ├── WTFNMFPL.txt │ │ ├── WTFPL.txt │ │ ├── Watcom-1.0.txt │ │ ├── Widget-Workshop.txt │ │ ├── WordNet.txt │ │ ├── Wsuipa.txt │ │ ├── X11-distribute-modifications-variant.txt │ │ ├── X11-swapped.txt │ │ ├── X11.txt │ │ ├── XFree86-1.1.txt │ │ ├── XSkat.txt │ │ ├── Xdebug-1.03.txt │ │ ├── Xerox.txt │ │ ├── Xfig.txt │ │ ├── Xnet.txt │ │ ├── YPL-1.0.txt │ │ ├── YPL-1.1.txt │ │ ├── ZPL-1.1.txt │ │ ├── ZPL-2.0.txt │ │ ├── ZPL-2.1.txt │ │ ├── Zed.txt │ │ ├── Zeeff.txt │ │ ├── Zend-2.0.txt │ │ ├── Zimbra-1.3.txt │ │ ├── Zimbra-1.4.txt │ │ ├── Zlib.txt │ │ ├── any-OSI-perl-modules.txt │ │ ├── any-OSI.txt │ │ ├── bcrypt-Solar-Designer.txt │ │ ├── blessing.txt │ │ ├── bzip2-1.0.6.txt │ │ ├── check-cvs.txt │ │ ├── checkmk.txt │ │ ├── copyleft-next-0.3.0.txt │ │ ├── copyleft-next-0.3.1.txt │ │ ├── curl.txt │ │ ├── cve-tou.txt │ │ ├── diffmark.txt │ │ ├── dtoa.txt │ │ ├── dvipdfm.txt │ │ ├── eGenix.txt │ │ ├── etalab-2.0.txt │ │ ├── fwlw.txt │ │ ├── gSOAP-1.3b.txt │ │ ├── generic-xts.txt │ │ ├── gnuplot.txt │ │ ├── gtkbook.txt │ │ ├── hdparm.txt │ │ ├── hyphen-bulgarian.txt │ │ ├── iMatix.txt │ │ ├── jove.txt │ │ ├── libpng-1.6.35.txt │ │ ├── libpng-2.0.txt │ │ ├── libselinux-1.0.txt │ │ ├── libtiff.txt │ │ ├── libutil-David-Nugent.txt │ │ ├── lsof.txt │ │ ├── magaz.txt │ │ ├── mailprio.txt │ │ ├── man2html.txt │ │ ├── metamail.txt │ │ ├── mpi-permissive.txt │ │ ├── mpich2.txt │ │ ├── mplus.txt │ │ ├── ngrep.txt │ │ ├── pkgconf.txt │ │ ├── pnmstitch.txt │ │ ├── psfrag.txt │ │ ├── psutils.txt │ │ ├── python-ldap.txt │ │ ├── radvd.txt │ │ ├── snprintf.txt │ │ ├── softSurfer.txt │ │ ├── ssh-keyscan.txt │ │ ├── swrule.txt │ │ ├── threeparttable.txt │ │ ├── ulem.txt │ │ ├── w3m.txt │ │ ├── wwl.txt │ │ ├── xinetd.txt │ │ ├── xkeyboard-config-Zinoviev.txt │ │ ├── xlock.txt │ │ ├── xpp.txt │ │ ├── xzoom.txt │ │ └── zlib-acknowledgement.txt │ ├── tool │ ├── flutter_tool.dart │ ├── git_tool.dart │ └── run_constrained.dart │ ├── utils.dart │ └── version.dart ├── pubspec.yaml ├── test ├── analysis_options_test.dart ├── bin_pana_test.dart ├── code_problem_test.dart ├── dartdoc │ └── dartdoc_internals_test.dart ├── diff_test.dart ├── download_utils_test.dart ├── end2end_light_test.dart ├── end2end_test.dart ├── ensure_build_test.dart ├── env_utils.dart ├── format_options_test.dart ├── golden_file.dart ├── goldens │ ├── end2end │ │ ├── __timestamp.txt │ │ ├── _dummy_pkg-1.0.0-null-safety.1.json │ │ ├── _dummy_pkg-1.0.0-null-safety.1.json_report.md │ │ ├── async-2.13.0.json │ │ ├── async-2.13.0.json_report.md │ │ ├── audio_service-0.18.17.json │ │ ├── audio_service-0.18.17.json_report.md │ │ ├── bulma_min-0.7.4.json │ │ ├── bulma_min-0.7.4.json_report.md │ │ ├── dnd-2.0.1.json │ │ ├── dnd-2.0.1.json_report.md │ │ ├── gg-1.0.12.json │ │ ├── gg-1.0.12.json_report.md │ │ ├── http-0.13.0.json │ │ ├── http-0.13.0.json_report.md │ │ ├── lints-1.0.0.json │ │ ├── lints-1.0.0.json_report.md │ │ ├── mime_type-0.3.2.json │ │ ├── mime_type-0.3.2.json_report.md │ │ ├── nsd_android-2.1.2.json │ │ ├── nsd_android-2.1.2.json_report.md │ │ ├── onepub-1.1.0.json │ │ ├── onepub-1.1.0.json_report.md │ │ ├── sdp_transform-0.2.0.json │ │ ├── sdp_transform-0.2.0.json_report.md │ │ ├── skiplist-0.1.0.json │ │ ├── skiplist-0.1.0.json_report.md │ │ ├── steward-0.3.1.json │ │ ├── steward-0.3.1.json_report.md │ │ ├── url_launcher-6.3.1.json │ │ ├── url_launcher-6.3.1.json_report.md │ │ ├── webdriver-3.0.0.json │ │ └── webdriver-3.0.0.json_report.md │ └── help.txt ├── license_confidence_test.dart ├── license_detector_test.dart ├── license_filter_test.dart ├── license_test.dart ├── license_test_assets │ ├── crc32_ascii_values.json │ ├── crc32_random.json │ └── licenses │ │ ├── agpl_v3.txt │ │ ├── apache_v2.txt │ │ ├── bsd_2_clause.txt │ │ ├── bsd_2_clause_in_comments.txt │ │ └── bsd_3_clause.txt ├── license_utils_test.dart ├── licenses │ ├── agpl_v3.txt │ ├── apache_v2.txt │ ├── apache_v2_short.txt │ ├── as_is_with_contributors.txt │ ├── bad_encoding.txt │ ├── bsd_2_clause.txt │ ├── bsd_2_clause_in_comments.txt │ ├── bsd_3_clause.txt │ ├── bsd_revised.txt │ ├── cc0_universal.txt │ ├── commercial_with_limited_free_use.txt │ ├── complex_license_test.dart │ ├── gpl_v2_with_extras.txt │ ├── gpl_v3.txt │ ├── isc_license_test.dart │ ├── lgpl_v3.txt │ ├── license_coverage_test.dart │ ├── mit.txt │ ├── mit_without_mit.txt │ ├── modified_mit.txt │ ├── mpl_v2.txt │ ├── multiple_licenses_allnotifications.txt │ ├── multiple_licenses_comments.txt │ ├── multiple_licenses_pikaday_datepicker.txt │ ├── multiple_licenses_sections.txt │ ├── multiple_licenses_test.dart │ ├── non_free_i18n_extension.txt │ ├── spdx_license_expressions_test.dart │ ├── unicode3-icu4x.txt │ └── unlicense.txt ├── markdown_content │ ├── bad_images.md │ └── example.md ├── markdown_content_test.dart ├── model_test.dart ├── package_descriptor.dart ├── package_server.dart ├── potential_matches_test.dart ├── pub_summary_test.dart ├── pubspec_test.dart ├── report │ ├── _tool_environment.dart │ ├── dependencies_test.dart │ ├── documentation_test.dart │ ├── static_analysis_test.dart │ └── template_test.dart ├── repository │ ├── git_local_repository_test.dart │ └── repository_url_test.dart ├── screenshot_test.dart ├── sdk_env_test.dart ├── self_run_test.dart ├── tag │ ├── dart_sdk_libraries_test.dart │ ├── tag_detection_test.dart │ ├── tag_end2end_test.dart │ ├── tag_external_test.dart │ └── tag_null_safe_test.dart ├── testImages │ ├── animated.gif │ ├── animated.webp │ ├── notAnImage.txt │ ├── s2 │ │ └── static.webp │ ├── static.gif │ ├── static.png │ └── static.webp ├── tokenizer_test.dart ├── tool │ └── flutter_tool_test.dart └── utils_test.dart ├── third_party └── spdx │ ├── README.md │ └── update_licenses.dart └── tool └── license_detection ├── README.md ├── batch_analyse_licenses.dart ├── compare_analysis.dart └── download_pub_dev_licenses.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | text eol=lf 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/.github/workflows/test-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bin/batch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/bin/batch.dart -------------------------------------------------------------------------------- /bin/license_detector_bin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/bin/license_detector_bin.dart -------------------------------------------------------------------------------- /bin/pana.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/bin/pana.dart -------------------------------------------------------------------------------- /dart_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/dart_test.yaml -------------------------------------------------------------------------------- /lib/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/models.dart -------------------------------------------------------------------------------- /lib/pana.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/pana.dart -------------------------------------------------------------------------------- /lib/src/analysis_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/analysis_options.dart -------------------------------------------------------------------------------- /lib/src/batch/batch_compare_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/batch/batch_compare_command.dart -------------------------------------------------------------------------------- /lib/src/batch/batch_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/batch/batch_model.dart -------------------------------------------------------------------------------- /lib/src/batch/batch_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/batch/batch_model.g.dart -------------------------------------------------------------------------------- /lib/src/batch/batch_query_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/batch/batch_query_command.dart -------------------------------------------------------------------------------- /lib/src/batch/batch_run_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/batch/batch_run_command.dart -------------------------------------------------------------------------------- /lib/src/code_problem.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/code_problem.dart -------------------------------------------------------------------------------- /lib/src/dartdoc/dartdoc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/dartdoc/dartdoc.dart -------------------------------------------------------------------------------- /lib/src/dartdoc/dartdoc_index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/dartdoc/dartdoc_index.dart -------------------------------------------------------------------------------- /lib/src/dartdoc/dartdoc_index.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/dartdoc/dartdoc_index.g.dart -------------------------------------------------------------------------------- /lib/src/dartdoc/dartdoc_internals.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/dartdoc/dartdoc_internals.dart -------------------------------------------------------------------------------- /lib/src/dartdoc/dartdoc_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/dartdoc/dartdoc_options.dart -------------------------------------------------------------------------------- /lib/src/dartdoc/index_to_pubdata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/dartdoc/index_to_pubdata.dart -------------------------------------------------------------------------------- /lib/src/dartdoc/pub_dartdoc_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/dartdoc/pub_dartdoc_data.dart -------------------------------------------------------------------------------- /lib/src/dartdoc/pub_dartdoc_data.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/dartdoc/pub_dartdoc_data.g.dart -------------------------------------------------------------------------------- /lib/src/download_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/download_utils.dart -------------------------------------------------------------------------------- /lib/src/internal_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/internal_model.dart -------------------------------------------------------------------------------- /lib/src/internal_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/internal_model.g.dart -------------------------------------------------------------------------------- /lib/src/json_converters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/json_converters.dart -------------------------------------------------------------------------------- /lib/src/license.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/license.dart -------------------------------------------------------------------------------- /lib/src/license_detection/confidence.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/license_detection/confidence.dart -------------------------------------------------------------------------------- /lib/src/license_detection/license.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/license_detection/license.dart -------------------------------------------------------------------------------- /lib/src/license_detection/license_detector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/license_detection/license_detector.dart -------------------------------------------------------------------------------- /lib/src/license_detection/primary_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/license_detection/primary_filter.dart -------------------------------------------------------------------------------- /lib/src/license_detection/token_matcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/license_detection/token_matcher.dart -------------------------------------------------------------------------------- /lib/src/license_detection/tokenizer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/license_detection/tokenizer.dart -------------------------------------------------------------------------------- /lib/src/logging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/logging.dart -------------------------------------------------------------------------------- /lib/src/maintenance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/maintenance.dart -------------------------------------------------------------------------------- /lib/src/markdown_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/markdown_content.dart -------------------------------------------------------------------------------- /lib/src/messages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/messages.dart -------------------------------------------------------------------------------- /lib/src/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/model.dart -------------------------------------------------------------------------------- /lib/src/model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/model.g.dart -------------------------------------------------------------------------------- /lib/src/null_safety.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/null_safety.dart -------------------------------------------------------------------------------- /lib/src/package_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/package_analyzer.dart -------------------------------------------------------------------------------- /lib/src/package_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/package_context.dart -------------------------------------------------------------------------------- /lib/src/pana_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/pana_cache.dart -------------------------------------------------------------------------------- /lib/src/pkg_resolution.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/pkg_resolution.dart -------------------------------------------------------------------------------- /lib/src/pubspec.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/pubspec.dart -------------------------------------------------------------------------------- /lib/src/pubspec_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/pubspec_io.dart -------------------------------------------------------------------------------- /lib/src/references/pubspec_urls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/references/pubspec_urls.dart -------------------------------------------------------------------------------- /lib/src/report/_common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/report/_common.dart -------------------------------------------------------------------------------- /lib/src/report/create_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/report/create_report.dart -------------------------------------------------------------------------------- /lib/src/report/dependencies.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/report/dependencies.dart -------------------------------------------------------------------------------- /lib/src/report/documentation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/report/documentation.dart -------------------------------------------------------------------------------- /lib/src/report/multi_platform.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/report/multi_platform.dart -------------------------------------------------------------------------------- /lib/src/report/static_analysis.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/report/static_analysis.dart -------------------------------------------------------------------------------- /lib/src/report/template.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/report/template.dart -------------------------------------------------------------------------------- /lib/src/repository/check_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/repository/check_repository.dart -------------------------------------------------------------------------------- /lib/src/repository/git_local_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/repository/git_local_repository.dart -------------------------------------------------------------------------------- /lib/src/repository/repository_url_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/repository/repository_url_parser.dart -------------------------------------------------------------------------------- /lib/src/repository/repository_url_resolver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/repository/repository_url_resolver.dart -------------------------------------------------------------------------------- /lib/src/screenshots.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/screenshots.dart -------------------------------------------------------------------------------- /lib/src/sdk_env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/sdk_env.dart -------------------------------------------------------------------------------- /lib/src/tag/_common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/tag/_common.dart -------------------------------------------------------------------------------- /lib/src/tag/_graphs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/tag/_graphs.dart -------------------------------------------------------------------------------- /lib/src/tag/_specs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/tag/_specs.dart -------------------------------------------------------------------------------- /lib/src/tag/_violations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/tag/_violations.dart -------------------------------------------------------------------------------- /lib/src/tag/license_tags.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/tag/license_tags.dart -------------------------------------------------------------------------------- /lib/src/tag/pana_tags.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/tag/pana_tags.dart -------------------------------------------------------------------------------- /lib/src/tag/tagger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/tag/tagger.dart -------------------------------------------------------------------------------- /lib/src/third_party/diff_match_patch/.pubignore: -------------------------------------------------------------------------------- 1 | test.dart 2 | -------------------------------------------------------------------------------- /lib/src/third_party/diff_match_patch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/diff_match_patch/LICENSE -------------------------------------------------------------------------------- /lib/src/third_party/diff_match_patch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/diff_match_patch/README.md -------------------------------------------------------------------------------- /lib/src/third_party/diff_match_patch/diff.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/diff_match_patch/diff.dart -------------------------------------------------------------------------------- /lib/src/third_party/diff_match_patch/test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/diff_match_patch/test.dart -------------------------------------------------------------------------------- /lib/src/third_party/diff_match_patch/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/diff_match_patch/utils.dart -------------------------------------------------------------------------------- /lib/src/third_party/spdx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/LICENSE -------------------------------------------------------------------------------- /lib/src/third_party/spdx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/README.md -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses.dart -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/0BSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/0BSD.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/3D-Slicer-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/3D-Slicer-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AAL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ADSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ADSL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AFL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AFL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AFL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AFL-1.2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AFL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AFL-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AFL-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AFL-2.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AFL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AFL-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AGPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AGPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AGPL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AGPL-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AMD-newlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AMD-newlib.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AMDPLPA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AMDPLPA.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AML-glslang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AML-glslang.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AML.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AML.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AMPAS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AMPAS.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ANTLR-PD-fallback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ANTLR-PD-fallback.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ANTLR-PD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ANTLR-PD.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/APAFML.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/APAFML.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/APL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/APL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/APSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/APSL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/APSL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/APSL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/APSL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/APSL-1.2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/APSL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/APSL-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Abstyles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Abstyles.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/AdaCore-doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/AdaCore-doc.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Adobe-2006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Adobe-2006.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Adobe-Glyph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Adobe-Glyph.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Adobe-Utopia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Adobe-Utopia.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Afmparse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Afmparse.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Aladdin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Aladdin.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Apache-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Apache-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Apache-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Apache-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Apache-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/App-s2p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/App-s2p.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Arphic-1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Arphic-1999.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Artistic-1.0-Perl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Artistic-1.0-Perl.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Artistic-1.0-cl8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Artistic-1.0-cl8.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Artistic-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Artistic-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Artistic-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Artistic-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Artistic-dist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Artistic-dist.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Aspell-RU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Aspell-RU.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-1-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-1-Clause.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-2-Clause-Darwin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-2-Clause-Darwin.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-2-Clause-Patent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-2-Clause-Patent.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-2-Clause-Views.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-2-Clause-Views.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-2-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-2-Clause.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-3-Clause-Clear.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-3-Clause-Clear.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-3-Clause-HP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-3-Clause-HP.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-3-Clause-LBNL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-3-Clause-LBNL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-3-Clause-Open-MPI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-3-Clause-Open-MPI.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-3-Clause-Sun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-3-Clause-Sun.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-3-Clause-Tso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-3-Clause-Tso.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-3-Clause-acpica.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-3-Clause-acpica.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-3-Clause-flex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-3-Clause-flex.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-3-Clause.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-4-Clause-UC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-4-Clause-UC.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-4-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-4-Clause.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-4.3RENO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-4.3RENO.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-4.3TAHOE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-4.3TAHOE.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-Inferno-Nettverk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-Inferno-Nettverk.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-Protection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-Protection.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-Source-Code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-Source-Code.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-Systemics-W3Works.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-Systemics-W3Works.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSD-Systemics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSD-Systemics.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BSL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BUSL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BUSL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Baekmuk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Baekmuk.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Bahyph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Bahyph.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Barr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Barr.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Beerware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Beerware.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BitTorrent-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BitTorrent-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BitTorrent-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BitTorrent-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Bitstream-Charter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Bitstream-Charter.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Bitstream-Vera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Bitstream-Vera.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/BlueOak-1.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/BlueOak-1.0.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Boehm-GC-without-fee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Boehm-GC-without-fee.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Boehm-GC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Boehm-GC.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Borceux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Borceux.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/C-UDA-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/C-UDA-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CAL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CAL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CATOSL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CATOSL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-2.5-AU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-2.5-AU.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-2.5.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-3.0-AT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-3.0-AT.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-3.0-AU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-3.0-AU.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-3.0-DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-3.0-DE.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-3.0-IGO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-3.0-IGO.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-3.0-NL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-3.0-NL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-3.0-US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-3.0-US.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-4.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-2.5.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-3.0-DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-3.0-DE.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-4.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-ND-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-ND-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-ND-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-ND-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-ND-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-ND-2.5.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-ND-3.0-DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-ND-3.0-DE.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-ND-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-ND-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-ND-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-ND-4.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-SA-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-SA-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-SA-2.0-DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-SA-2.0-DE.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-SA-2.0-FR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-SA-2.0-FR.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-SA-2.0-UK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-SA-2.0-UK.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-SA-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-SA-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-SA-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-SA-2.5.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-SA-3.0-DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-SA-3.0-DE.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-SA-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-SA-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-NC-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-NC-SA-4.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-ND-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-ND-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-ND-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-ND-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-ND-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-ND-2.5.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-ND-3.0-DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-ND-3.0-DE.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-ND-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-ND-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-ND-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-ND-4.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-SA-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-SA-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-SA-2.0-UK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-SA-2.0-UK.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-SA-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-SA-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-SA-2.1-JP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-SA-2.1-JP.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-SA-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-SA-2.5.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-SA-3.0-AT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-SA-3.0-AT.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-SA-3.0-DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-SA-3.0-DE.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-SA-3.0-IGO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-SA-3.0-IGO.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-SA-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-SA-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-BY-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-BY-SA-4.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-PDDC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-PDDC.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-PDM-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-PDM-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC-SA-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC-SA-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CC0-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CDDL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CDDL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CDDL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CDDL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CDL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CDL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CDLA-Sharing-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CDLA-Sharing-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CECILL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CECILL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CECILL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CECILL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CECILL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CECILL-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CECILL-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CECILL-2.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CECILL-B.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CECILL-B.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CECILL-C.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CECILL-C.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CERN-OHL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CERN-OHL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CERN-OHL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CERN-OHL-1.2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CERN-OHL-P-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CERN-OHL-P-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CERN-OHL-S-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CERN-OHL-S-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CERN-OHL-W-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CERN-OHL-W-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CFITSIO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CFITSIO.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CMU-Mach-nodoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CMU-Mach-nodoc.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CMU-Mach.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CMU-Mach.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CNRI-Jython.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CNRI-Jython.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CNRI-Python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CNRI-Python.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/COIL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/COIL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CPAL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CPAL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CPOL-1.02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CPOL-1.02.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CUA-OPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CUA-OPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Caldera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Caldera.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Catharon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Catharon.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ClArtistic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ClArtistic.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Clips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Clips.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Community-Spec-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Community-Spec-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Condor-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Condor-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Cronyx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Cronyx.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Crossword.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Crossword.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CryptoSwift.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CryptoSwift.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/CrystalStacker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/CrystalStacker.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Cube.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Cube.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/D-FSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/D-FSL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/DEC-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/DEC-3-Clause.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/DL-DE-BY-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/DL-DE-BY-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/DL-DE-ZERO-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/DL-DE-ZERO-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/DOC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/DOC.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/DRL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/DRL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/DRL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/DRL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/DSDP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/DSDP.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/DocBook-DTD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/DocBook-DTD.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/DocBook-Schema.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/DocBook-Schema.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/DocBook-Stylesheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/DocBook-Stylesheet.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/DocBook-XML.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/DocBook-XML.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Dotseqn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Dotseqn.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ECL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ECL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ECL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ECL-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/EFL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/EFL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/EFL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/EFL-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/EPICS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/EPICS.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/EPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/EPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/EPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/EPL-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/EUDatagrid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/EUDatagrid.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/EUPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/EUPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/EUPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/EUPL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/EUPL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/EUPL-1.2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Elastic-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Elastic-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Entessa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Entessa.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ErlPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ErlPL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Eurosym.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Eurosym.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/FBM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/FBM.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/FDK-AAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/FDK-AAC.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/FSFAP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/FSFAP.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/FSFUL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/FSFUL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/FSFULLR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/FSFULLR.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/FSFULLRSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/FSFULLRSD.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/FSFULLRWD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/FSFULLRWD.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/FSL-1.1-ALv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/FSL-1.1-ALv2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/FSL-1.1-MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/FSL-1.1-MIT.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/FTL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/FTL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Fair.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Fair.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Ferguson-Twofish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Ferguson-Twofish.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Frameworx-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Frameworx-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/FreeBSD-DOC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/FreeBSD-DOC.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/FreeImage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/FreeImage.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Furuseth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Furuseth.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/GCR-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/GCR-docs.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/GD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/GD.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/GFDL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/GFDL-1.2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/GFDL-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/GFDL-1.3.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/GL2PS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/GL2PS.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/GLWTPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/GLWTPL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/GPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/GPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/GPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/GPL-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/GPL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/GPL-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Giftware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Giftware.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Glide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Glide.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Glulxe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Glulxe.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Graphics-Gems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Graphics-Gems.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Gutmann.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Gutmann.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HDF5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HDF5.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HIDAPI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HIDAPI.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HP-1986.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HP-1986.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HP-1989.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HP-1989.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-DEC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-DEC.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-INRIA-IMAG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-INRIA-IMAG.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-Intel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-Intel.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-Kevlin-Henney.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-Kevlin-Henney.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-Markus-Kuhn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-Markus-Kuhn.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-Netrek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-Netrek.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-Pbmplus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-Pbmplus.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-SMC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-SMC.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-UC-export-US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-UC-export-US.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-UC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-UC.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-doc-sell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-doc-sell.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-doc.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-export-US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-export-US.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-export2-US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-export2-US.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-sell-regexpr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-sell-regexpr.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND-sell-variant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND-sell-variant.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HPND.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HPND.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HTMLTIDY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HTMLTIDY.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/HaskellReport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/HaskellReport.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Hippocratic-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Hippocratic-2.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/IBM-pibs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/IBM-pibs.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ICU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ICU.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/IJG-short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/IJG-short.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/IJG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/IJG.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/IPA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/IPA.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/IPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/IPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ISC-Veillard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ISC-Veillard.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ISC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ISC.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ImageMagick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ImageMagick.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Imlib2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Imlib2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Info-ZIP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Info-ZIP.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Inner-Net-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Inner-Net-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/InnoSetup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/InnoSetup.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Intel-ACPI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Intel-ACPI.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Intel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Intel.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Interbase-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Interbase-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/JPL-image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/JPL-image.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/JPNIC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/JPNIC.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/JSON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/JSON.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Jam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Jam.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/JasPer-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/JasPer-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Kastrup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Kastrup.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Kazlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Kazlib.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Knuth-CTAN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Knuth-CTAN.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LAL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LAL-1.2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LAL-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LAL-1.3.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LGPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LGPL-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LGPL-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LGPL-2.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LGPL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LGPL-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LGPLLR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LGPLLR.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LOOP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LOOP.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LPD-document.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LPD-document.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LPL-1.02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LPL-1.02.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LPPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LPPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LPPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LPPL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LPPL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LPPL-1.2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LPPL-1.3a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LPPL-1.3a.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LPPL-1.3c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LPPL-1.3c.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LZMA-SDK-9.22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LZMA-SDK-9.22.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Latex2e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Latex2e.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Leptonica.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Leptonica.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LiLiQ-P-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LiLiQ-P-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LiLiQ-R-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LiLiQ-R-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/LiLiQ-Rplus-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/LiLiQ-Rplus-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Libpng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Libpng.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Linux-OpenIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Linux-OpenIB.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIPS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIPS.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIT-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIT-0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIT-CMU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIT-CMU.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIT-Click.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIT-Click.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIT-Festival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIT-Festival.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIT-Khronos-old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIT-Khronos-old.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIT-Modern-Variant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIT-Modern-Variant.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIT-Wu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIT-Wu.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIT-advertising.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIT-advertising.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIT-enna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIT-enna.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIT-feh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIT-feh.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIT-open-group.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIT-open-group.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIT-testregex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIT-testregex.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MIT.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MITNFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MITNFA.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MMIXware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MMIXware.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MPEG-SSG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MPEG-SSG.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MPL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MPL-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MS-LPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MS-LPL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MS-PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MS-PL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MS-RL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MS-RL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MTLL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MTLL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Mackerras-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Mackerras-3-Clause.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MakeIndex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MakeIndex.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Martin-Birgmeier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Martin-Birgmeier.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/McPhee-slideshow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/McPhee-slideshow.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Minpack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Minpack.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MirOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MirOS.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Motosoto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Motosoto.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MulanPSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MulanPSL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/MulanPSL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/MulanPSL-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Multics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Multics.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Mup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Mup.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NAIST-2003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NAIST-2003.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NASA-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NASA-1.3.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NBPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NBPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NCBI-PD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NCBI-PD.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NCGL-UK-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NCGL-UK-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NCL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NCL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NCSA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NCSA.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NGPL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NICTA-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NICTA-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NIST-PD-TNT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NIST-PD-TNT.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NIST-PD-fallback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NIST-PD-fallback.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NIST-PD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NIST-PD.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NIST-Software.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NIST-Software.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NLOD-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NLOD-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NLOD-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NLOD-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NLPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NLPL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NOSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NOSL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NPL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NPOSL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NPOSL-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NRL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NRL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NTIA-PD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NTIA-PD.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NTP-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NTP-0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NTP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NTP.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Naumen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Naumen.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/NetCDF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/NetCDF.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Newsletr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Newsletr.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Nokia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Nokia.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Noweb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Noweb.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/O-UDA-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/O-UDA-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OAR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OAR.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OCCT-PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OCCT-PL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OCLC-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OCLC-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ODC-By-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ODC-By-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ODbL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ODbL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OFFIS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OFFIS.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OFL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OFL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OFL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OFL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OGC-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OGC-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OGDL-Taiwan-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OGDL-Taiwan-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OGL-Canada-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OGL-Canada-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OGL-UK-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OGL-UK-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OGL-UK-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OGL-UK-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OGL-UK-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OGL-UK-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OGTSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OGTSL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-1.2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-1.3.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-1.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-1.4.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-2.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-2.0.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-2.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-2.2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-2.2.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-2.2.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-2.2.2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-2.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-2.2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-2.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-2.3.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-2.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-2.4.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-2.5.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-2.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-2.6.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-2.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-2.7.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLDAP-2.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLDAP-2.8.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OLFL-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OLFL-1.3.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OML.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OML.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OPL-UK-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OPL-UK-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OPUBL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OPUBL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OSET-PL-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OSET-PL-2.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OSL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OSL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OSL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OSL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OSL-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OSL-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OSL-2.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OSL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OSL-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OSSP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OSSP.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OpenPBS-2.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OpenPBS-2.3.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OpenSSL-standalone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OpenSSL-standalone.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OpenSSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OpenSSL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/OpenVision.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/OpenVision.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/PADL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/PADL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/PDDL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/PDDL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/PHP-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/PHP-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/PHP-3.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/PHP-3.01.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/PPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/PPL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/PSF-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/PSF-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Parity-6.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Parity-6.0.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Parity-7.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Parity-7.0.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Pixar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Pixar.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Plexus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Plexus.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/PostgreSQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/PostgreSQL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Python-2.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Python-2.0.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Python-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Python-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/QPL-1.0-INRIA-2004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/QPL-1.0-INRIA-2004.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/QPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/QPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Qhull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Qhull.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/RHeCos-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/RHeCos-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/RPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/RPL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/RPL-1.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/RPL-1.5.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/RPSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/RPSL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/RSA-MD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/RSA-MD.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/RSCPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/RSCPL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Rdisc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Rdisc.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Ruby-pty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Ruby-pty.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Ruby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Ruby.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SAX-PD-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SAX-PD-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SAX-PD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SAX-PD.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SCEA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SCEA.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SGI-B-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SGI-B-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SGI-B-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SGI-B-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SGI-B-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SGI-B-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SGI-OpenGL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SGI-OpenGL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SGMLUG-PM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SGMLUG-PM.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SGP4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SGP4.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SHL-0.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SHL-0.5.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SHL-0.51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SHL-0.51.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SISSL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SISSL-1.2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SISSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SISSL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SMAIL-GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SMAIL-GPL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SMLNJ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SMLNJ.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SMPPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SMPPL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SNIA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SNIA.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SOFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SOFA.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SSH-OpenSSH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SSH-OpenSSH.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SSH-short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SSH-short.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SSLeay-standalone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SSLeay-standalone.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SSPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SSPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SUL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SUL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SWL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SWL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Saxpath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Saxpath.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SchemeReport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SchemeReport.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Sendmail-8.23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Sendmail-8.23.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Sendmail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Sendmail.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SimPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SimPL-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Sleepycat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Sleepycat.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Soundex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Soundex.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Spencer-86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Spencer-86.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Spencer-94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Spencer-94.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Spencer-99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Spencer-99.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SugarCRM-1.1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SugarCRM-1.1.3.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Sun-PPP-2000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Sun-PPP-2000.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Sun-PPP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Sun-PPP.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/SunPro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/SunPro.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Symlinks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Symlinks.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TAPR-OHL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TAPR-OHL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TCL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TCL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TCP-wrappers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TCP-wrappers.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TGPPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TGPPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TMate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TMate.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TORQUE-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TORQUE-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TOSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TOSL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TPDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TPDL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TTWL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TTWL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TTYP0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TTYP0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TU-Berlin-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TU-Berlin-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TU-Berlin-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TU-Berlin-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TermReadKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TermReadKey.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ThirdEye.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ThirdEye.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/TrustedQSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/TrustedQSL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/UCAR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/UCAR.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/UCL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/UCL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/UMich-Merit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/UMich-Merit.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/UPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/UPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/URT-RLE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/URT-RLE.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Ubuntu-font-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Ubuntu-font-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Unicode-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Unicode-3.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Unicode-DFS-2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Unicode-DFS-2015.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Unicode-DFS-2016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Unicode-DFS-2016.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Unicode-TOU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Unicode-TOU.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/UnixCrypt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/UnixCrypt.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Unlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Unlicense.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/VOSTROM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/VOSTROM.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/VSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/VSL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Vim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Vim.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/W3C-19980720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/W3C-19980720.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/W3C-20150513.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/W3C-20150513.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/W3C.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/W3C.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/WTFNMFPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/WTFNMFPL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/WTFPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/WTFPL.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Watcom-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Watcom-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Widget-Workshop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Widget-Workshop.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/WordNet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/WordNet.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Wsuipa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Wsuipa.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/X11-swapped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/X11-swapped.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/X11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/X11.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/XFree86-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/XFree86-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/XSkat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/XSkat.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Xdebug-1.03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Xdebug-1.03.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Xerox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Xerox.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Xfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Xfig.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Xnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Xnet.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/YPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/YPL-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/YPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/YPL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ZPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ZPL-1.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ZPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ZPL-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ZPL-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ZPL-2.1.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Zed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Zed.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Zeeff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Zeeff.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Zend-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Zend-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Zimbra-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Zimbra-1.3.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Zimbra-1.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Zimbra-1.4.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/Zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/Zlib.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/any-OSI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/any-OSI.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/blessing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/blessing.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/bzip2-1.0.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/bzip2-1.0.6.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/check-cvs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/check-cvs.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/checkmk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/checkmk.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/curl.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/cve-tou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/cve-tou.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/diffmark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/diffmark.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/dtoa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/dtoa.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/dvipdfm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/dvipdfm.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/eGenix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/eGenix.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/etalab-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/etalab-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/fwlw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/fwlw.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/gSOAP-1.3b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/gSOAP-1.3b.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/generic-xts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/generic-xts.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/gnuplot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/gnuplot.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/gtkbook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/gtkbook.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/hdparm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/hdparm.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/hyphen-bulgarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/hyphen-bulgarian.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/iMatix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/iMatix.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/jove.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/jove.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/libpng-1.6.35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/libpng-1.6.35.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/libpng-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/libpng-2.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/libselinux-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/libselinux-1.0.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/libtiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/libtiff.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/lsof.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/lsof.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/magaz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/magaz.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/mailprio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/mailprio.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/man2html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/man2html.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/metamail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/metamail.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/mpi-permissive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/mpi-permissive.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/mpich2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/mpich2.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/mplus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/mplus.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ngrep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ngrep.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/pkgconf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/pkgconf.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/pnmstitch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/pnmstitch.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/psfrag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/psfrag.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/psutils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/psutils.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/python-ldap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/python-ldap.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/radvd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/radvd.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/snprintf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/snprintf.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/softSurfer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/softSurfer.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ssh-keyscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ssh-keyscan.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/swrule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/swrule.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/threeparttable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/threeparttable.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/ulem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/ulem.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/w3m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/w3m.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/wwl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/wwl.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/xinetd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/xinetd.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/xlock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/xlock.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/xpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/xpp.txt -------------------------------------------------------------------------------- /lib/src/third_party/spdx/licenses/xzoom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/third_party/spdx/licenses/xzoom.txt -------------------------------------------------------------------------------- /lib/src/tool/flutter_tool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/tool/flutter_tool.dart -------------------------------------------------------------------------------- /lib/src/tool/git_tool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/tool/git_tool.dart -------------------------------------------------------------------------------- /lib/src/tool/run_constrained.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/tool/run_constrained.dart -------------------------------------------------------------------------------- /lib/src/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/lib/src/utils.dart -------------------------------------------------------------------------------- /lib/src/version.dart: -------------------------------------------------------------------------------- 1 | // Generated code. Do not modify. 2 | const packageVersion = '0.23.3'; 3 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/analysis_options_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/analysis_options_test.dart -------------------------------------------------------------------------------- /test/bin_pana_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/bin_pana_test.dart -------------------------------------------------------------------------------- /test/code_problem_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/code_problem_test.dart -------------------------------------------------------------------------------- /test/dartdoc/dartdoc_internals_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/dartdoc/dartdoc_internals_test.dart -------------------------------------------------------------------------------- /test/diff_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/diff_test.dart -------------------------------------------------------------------------------- /test/download_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/download_utils_test.dart -------------------------------------------------------------------------------- /test/end2end_light_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/end2end_light_test.dart -------------------------------------------------------------------------------- /test/end2end_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/end2end_test.dart -------------------------------------------------------------------------------- /test/ensure_build_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/ensure_build_test.dart -------------------------------------------------------------------------------- /test/env_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/env_utils.dart -------------------------------------------------------------------------------- /test/format_options_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/format_options_test.dart -------------------------------------------------------------------------------- /test/golden_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/golden_file.dart -------------------------------------------------------------------------------- /test/goldens/end2end/__timestamp.txt: -------------------------------------------------------------------------------- 1 | 2025-11-23T06:34:34.636340Z 2 | -------------------------------------------------------------------------------- /test/goldens/end2end/_dummy_pkg-1.0.0-null-safety.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/_dummy_pkg-1.0.0-null-safety.1.json -------------------------------------------------------------------------------- /test/goldens/end2end/async-2.13.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/async-2.13.0.json -------------------------------------------------------------------------------- /test/goldens/end2end/async-2.13.0.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/async-2.13.0.json_report.md -------------------------------------------------------------------------------- /test/goldens/end2end/audio_service-0.18.17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/audio_service-0.18.17.json -------------------------------------------------------------------------------- /test/goldens/end2end/bulma_min-0.7.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/bulma_min-0.7.4.json -------------------------------------------------------------------------------- /test/goldens/end2end/bulma_min-0.7.4.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/bulma_min-0.7.4.json_report.md -------------------------------------------------------------------------------- /test/goldens/end2end/dnd-2.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/dnd-2.0.1.json -------------------------------------------------------------------------------- /test/goldens/end2end/dnd-2.0.1.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/dnd-2.0.1.json_report.md -------------------------------------------------------------------------------- /test/goldens/end2end/gg-1.0.12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/gg-1.0.12.json -------------------------------------------------------------------------------- /test/goldens/end2end/gg-1.0.12.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/gg-1.0.12.json_report.md -------------------------------------------------------------------------------- /test/goldens/end2end/http-0.13.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/http-0.13.0.json -------------------------------------------------------------------------------- /test/goldens/end2end/http-0.13.0.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/http-0.13.0.json_report.md -------------------------------------------------------------------------------- /test/goldens/end2end/lints-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/lints-1.0.0.json -------------------------------------------------------------------------------- /test/goldens/end2end/lints-1.0.0.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/lints-1.0.0.json_report.md -------------------------------------------------------------------------------- /test/goldens/end2end/mime_type-0.3.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/mime_type-0.3.2.json -------------------------------------------------------------------------------- /test/goldens/end2end/mime_type-0.3.2.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/mime_type-0.3.2.json_report.md -------------------------------------------------------------------------------- /test/goldens/end2end/nsd_android-2.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/nsd_android-2.1.2.json -------------------------------------------------------------------------------- /test/goldens/end2end/nsd_android-2.1.2.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/nsd_android-2.1.2.json_report.md -------------------------------------------------------------------------------- /test/goldens/end2end/onepub-1.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/onepub-1.1.0.json -------------------------------------------------------------------------------- /test/goldens/end2end/onepub-1.1.0.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/onepub-1.1.0.json_report.md -------------------------------------------------------------------------------- /test/goldens/end2end/sdp_transform-0.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/sdp_transform-0.2.0.json -------------------------------------------------------------------------------- /test/goldens/end2end/sdp_transform-0.2.0.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/sdp_transform-0.2.0.json_report.md -------------------------------------------------------------------------------- /test/goldens/end2end/skiplist-0.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/skiplist-0.1.0.json -------------------------------------------------------------------------------- /test/goldens/end2end/skiplist-0.1.0.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/skiplist-0.1.0.json_report.md -------------------------------------------------------------------------------- /test/goldens/end2end/steward-0.3.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/steward-0.3.1.json -------------------------------------------------------------------------------- /test/goldens/end2end/steward-0.3.1.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/steward-0.3.1.json_report.md -------------------------------------------------------------------------------- /test/goldens/end2end/url_launcher-6.3.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/url_launcher-6.3.1.json -------------------------------------------------------------------------------- /test/goldens/end2end/url_launcher-6.3.1.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/url_launcher-6.3.1.json_report.md -------------------------------------------------------------------------------- /test/goldens/end2end/webdriver-3.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/webdriver-3.0.0.json -------------------------------------------------------------------------------- /test/goldens/end2end/webdriver-3.0.0.json_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/end2end/webdriver-3.0.0.json_report.md -------------------------------------------------------------------------------- /test/goldens/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/goldens/help.txt -------------------------------------------------------------------------------- /test/license_confidence_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/license_confidence_test.dart -------------------------------------------------------------------------------- /test/license_detector_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/license_detector_test.dart -------------------------------------------------------------------------------- /test/license_filter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/license_filter_test.dart -------------------------------------------------------------------------------- /test/license_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/license_test.dart -------------------------------------------------------------------------------- /test/license_test_assets/crc32_ascii_values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/license_test_assets/crc32_ascii_values.json -------------------------------------------------------------------------------- /test/license_test_assets/crc32_random.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/license_test_assets/crc32_random.json -------------------------------------------------------------------------------- /test/license_test_assets/licenses/agpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/license_test_assets/licenses/agpl_v3.txt -------------------------------------------------------------------------------- /test/license_test_assets/licenses/apache_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/license_test_assets/licenses/apache_v2.txt -------------------------------------------------------------------------------- /test/license_test_assets/licenses/bsd_2_clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/license_test_assets/licenses/bsd_2_clause.txt -------------------------------------------------------------------------------- /test/license_test_assets/licenses/bsd_3_clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/license_test_assets/licenses/bsd_3_clause.txt -------------------------------------------------------------------------------- /test/license_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/license_utils_test.dart -------------------------------------------------------------------------------- /test/licenses/agpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/agpl_v3.txt -------------------------------------------------------------------------------- /test/licenses/apache_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/apache_v2.txt -------------------------------------------------------------------------------- /test/licenses/apache_v2_short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/apache_v2_short.txt -------------------------------------------------------------------------------- /test/licenses/as_is_with_contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/as_is_with_contributors.txt -------------------------------------------------------------------------------- /test/licenses/bad_encoding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/bad_encoding.txt -------------------------------------------------------------------------------- /test/licenses/bsd_2_clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/bsd_2_clause.txt -------------------------------------------------------------------------------- /test/licenses/bsd_2_clause_in_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/bsd_2_clause_in_comments.txt -------------------------------------------------------------------------------- /test/licenses/bsd_3_clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/bsd_3_clause.txt -------------------------------------------------------------------------------- /test/licenses/bsd_revised.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/bsd_revised.txt -------------------------------------------------------------------------------- /test/licenses/cc0_universal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/cc0_universal.txt -------------------------------------------------------------------------------- /test/licenses/commercial_with_limited_free_use.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/commercial_with_limited_free_use.txt -------------------------------------------------------------------------------- /test/licenses/complex_license_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/complex_license_test.dart -------------------------------------------------------------------------------- /test/licenses/gpl_v2_with_extras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/gpl_v2_with_extras.txt -------------------------------------------------------------------------------- /test/licenses/gpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/gpl_v3.txt -------------------------------------------------------------------------------- /test/licenses/isc_license_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/isc_license_test.dart -------------------------------------------------------------------------------- /test/licenses/lgpl_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/lgpl_v3.txt -------------------------------------------------------------------------------- /test/licenses/license_coverage_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/license_coverage_test.dart -------------------------------------------------------------------------------- /test/licenses/mit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/mit.txt -------------------------------------------------------------------------------- /test/licenses/mit_without_mit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/mit_without_mit.txt -------------------------------------------------------------------------------- /test/licenses/modified_mit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/modified_mit.txt -------------------------------------------------------------------------------- /test/licenses/mpl_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/mpl_v2.txt -------------------------------------------------------------------------------- /test/licenses/multiple_licenses_allnotifications.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/multiple_licenses_allnotifications.txt -------------------------------------------------------------------------------- /test/licenses/multiple_licenses_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/multiple_licenses_comments.txt -------------------------------------------------------------------------------- /test/licenses/multiple_licenses_pikaday_datepicker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/multiple_licenses_pikaday_datepicker.txt -------------------------------------------------------------------------------- /test/licenses/multiple_licenses_sections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/multiple_licenses_sections.txt -------------------------------------------------------------------------------- /test/licenses/multiple_licenses_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/multiple_licenses_test.dart -------------------------------------------------------------------------------- /test/licenses/non_free_i18n_extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/non_free_i18n_extension.txt -------------------------------------------------------------------------------- /test/licenses/spdx_license_expressions_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/spdx_license_expressions_test.dart -------------------------------------------------------------------------------- /test/licenses/unicode3-icu4x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/unicode3-icu4x.txt -------------------------------------------------------------------------------- /test/licenses/unlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/licenses/unlicense.txt -------------------------------------------------------------------------------- /test/markdown_content/bad_images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/markdown_content/bad_images.md -------------------------------------------------------------------------------- /test/markdown_content/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/markdown_content/example.md -------------------------------------------------------------------------------- /test/markdown_content_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/markdown_content_test.dart -------------------------------------------------------------------------------- /test/model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/model_test.dart -------------------------------------------------------------------------------- /test/package_descriptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/package_descriptor.dart -------------------------------------------------------------------------------- /test/package_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/package_server.dart -------------------------------------------------------------------------------- /test/potential_matches_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/potential_matches_test.dart -------------------------------------------------------------------------------- /test/pub_summary_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/pub_summary_test.dart -------------------------------------------------------------------------------- /test/pubspec_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/pubspec_test.dart -------------------------------------------------------------------------------- /test/report/_tool_environment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/report/_tool_environment.dart -------------------------------------------------------------------------------- /test/report/dependencies_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/report/dependencies_test.dart -------------------------------------------------------------------------------- /test/report/documentation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/report/documentation_test.dart -------------------------------------------------------------------------------- /test/report/static_analysis_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/report/static_analysis_test.dart -------------------------------------------------------------------------------- /test/report/template_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/report/template_test.dart -------------------------------------------------------------------------------- /test/repository/git_local_repository_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/repository/git_local_repository_test.dart -------------------------------------------------------------------------------- /test/repository/repository_url_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/repository/repository_url_test.dart -------------------------------------------------------------------------------- /test/screenshot_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/screenshot_test.dart -------------------------------------------------------------------------------- /test/sdk_env_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/sdk_env_test.dart -------------------------------------------------------------------------------- /test/self_run_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/self_run_test.dart -------------------------------------------------------------------------------- /test/tag/dart_sdk_libraries_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/tag/dart_sdk_libraries_test.dart -------------------------------------------------------------------------------- /test/tag/tag_detection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/tag/tag_detection_test.dart -------------------------------------------------------------------------------- /test/tag/tag_end2end_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/tag/tag_end2end_test.dart -------------------------------------------------------------------------------- /test/tag/tag_external_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/tag/tag_external_test.dart -------------------------------------------------------------------------------- /test/tag/tag_null_safe_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/tag/tag_null_safe_test.dart -------------------------------------------------------------------------------- /test/testImages/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/testImages/animated.gif -------------------------------------------------------------------------------- /test/testImages/animated.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/testImages/animated.webp -------------------------------------------------------------------------------- /test/testImages/notAnImage.txt: -------------------------------------------------------------------------------- 1 | This is not an image. 2 | -------------------------------------------------------------------------------- /test/testImages/s2/static.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/testImages/s2/static.webp -------------------------------------------------------------------------------- /test/testImages/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/testImages/static.gif -------------------------------------------------------------------------------- /test/testImages/static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/testImages/static.png -------------------------------------------------------------------------------- /test/testImages/static.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/testImages/static.webp -------------------------------------------------------------------------------- /test/tokenizer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/tokenizer_test.dart -------------------------------------------------------------------------------- /test/tool/flutter_tool_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/tool/flutter_tool_test.dart -------------------------------------------------------------------------------- /test/utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/test/utils_test.dart -------------------------------------------------------------------------------- /third_party/spdx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/third_party/spdx/README.md -------------------------------------------------------------------------------- /third_party/spdx/update_licenses.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/third_party/spdx/update_licenses.dart -------------------------------------------------------------------------------- /tool/license_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/tool/license_detection/README.md -------------------------------------------------------------------------------- /tool/license_detection/batch_analyse_licenses.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/tool/license_detection/batch_analyse_licenses.dart -------------------------------------------------------------------------------- /tool/license_detection/compare_analysis.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/tool/license_detection/compare_analysis.dart -------------------------------------------------------------------------------- /tool/license_detection/download_pub_dev_licenses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-lang/pana/HEAD/tool/license_detection/download_pub_dev_licenses.sh --------------------------------------------------------------------------------