add boilerplate for standard licenses
authorIan Beckwith <ianb@erislabs.net>
Tue, 15 Sep 2009 04:39:20 +0000 (05:39 +0100)
committerIan Beckwith <ianb@erislabs.net>
Tue, 15 Sep 2009 04:39:20 +0000 (05:39 +0100)
debian/clscan/clscan
debian/clscan/files.yaml
debian/clscan/new.txt
debian/copyright

index 594452d..9d6c23b 100755 (executable)
@@ -17,8 +17,24 @@ our $FILESCACHE="$CLSCANDIR/files.yaml";
 our $NEWFILES="$CLSCANDIR/new.txt";
 our $COPYRIGHTSTUB="$CLSCANDIR/copyright.in";
 
+# FIXME: add boilerplate
+our %module_licenses= (
+    "public domain" => "",
+    "unlimited" =>
+        "This file is free software; the Free Software Foundation\n" .
+        "gives unlimited permission to copy and/or distribute it,\n" .
+        "with or without modifications, as long as this notice is preserved.\n",
+    "LGPL" => "",
+    "LGPLv2+" => "",
+    "unmodifiable license text" =>
+        "Everyone is permitted to copy and distribute verbatim copies\n" .
+        "of this license document, but changing it is not allowed.\n",
+    "GPLed build tool" => "",
+    "GPL" => "",
+);
+
 our @filenames=();
-our @modules=();
+our %overrides=();
 our $files={};
 our $new={};
 
@@ -51,6 +67,7 @@ sub scan
 sub merge
 {
     merge_new();
+    load_overrides();
     save_cache();
 }
 
@@ -275,29 +292,21 @@ sub wanted_files
 
 sub wanted_modules
 {
-    if(/^\./ || /^README$/ || /^COPYING$/)
+    if(/^\.[^\/]/ || /^README$/ || /^COPYING$/)
     {
        $File::Find::prune=1;
+       return;
     }
     elsif(-f)
     {
-       push(@modules, $File::Find::name);
-    }
-}
-
-sub load_overrides
-{
-    find(\&wanted_modules, "modules/");
-    my %modules=();
-    for my $module (@modules)
-    {
-       unless(open(MOD, $module))
+       unless(open(MOD, $File::Find::name))
        {
-           warn("$me: cannot open $module: $!\n");
-           next;
+           warn("$me: cannot open $File::Find::name: $!\n");
+           return;
        }
        my $infiles=0;
        my $inlicense=0;
+       my @files=();
        while(<MOD>)
        {
            chomp;
@@ -307,12 +316,12 @@ sub load_overrides
            }
            if($inlicense)
            {
-               $modules{$module}->{license}=$_;
+               push(@{$overrides{$_}},@files);
                $inlicense=0;
            }
            elsif($infiles)
            {
-               push(@{$modules{$module}->{files}}, $_);
+               push(@files, $_);
            }
            elsif(/^License:/)
            {
@@ -327,6 +336,17 @@ sub load_overrides
     }
 }
 
+sub load_overrides
+{
+    find({ wanted => \&wanted_modules, no_chdir => 1}, "modules/");
+    for my $license (keys(%overrides))
+    {
+       print("License: $license\n");
+       print("Files: \n\t");
+       print(join("\n\t", @{$overrides{$license}}),"\n");
+    }
+}
+
 
 sub load_cache
 {
index 1af86e9..6126ca7 100644 (file)
@@ -18,7 +18,7 @@
   copyright: 2002-2009 Free Software Foundation, Inc.
   hash: 30633aa046887d3d7c2edee238d5e009b260d8eaec001809cdcdcef205089d59
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./Makefile: 
   copyright: 2006, 2009 Free Software Foundation, Inc.
   hash: 7ad5a3ccd8892f7a29384dd4ed455a2c57cdadf2624c943f51127745751ffbe7
   copyright: 2002-2009 Free Software Foundation, Inc.
   hash: 9ebe62448e2c3a71f08521ec64d65dd561761e446347edc914f396fe810040ba
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/bootstrap: 
   copyright: 2003-2009 Free Software Foundation, Inc.
   hash: f97568fc9b26977bf8aa781f26a1f5df7c9e5dc7c8d9a4e54e2c8d7892765096
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/bootstrap.conf: 
   copyright: 2006, 2007 Free Software Foundation, Inc.
   hash: 95cc00b43d60d3bff61561355253d777ac82e105338bf23faf29168086d392c2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/compile: 
   copyright: 1999, 2000, 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
   hash: 1a1d949ff906c036a902a8021154e8f127f6bdeaa7b22843a9bd13badc24253a
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./build-aux/config.guess: 
   copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: 1fc09da52d50a533ff9166226320f69603e3c5189271118a66d0cc514e6a3d71
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./build-aux/config.libpath: 
   copyright: 1996-2008 Free Software Foundation, Inc.
   hash: ac72222f705d2427683a67b643cf25045db2915ab66319cf535c68b847472ad3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/config.rpath: 
   copyright: 1996-2008 Free Software Foundation, Inc.
   hash: c52259321cfea86c34876e34db5356168f319d7f0dda0fd76efa9dce5e6fea4d
   copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, Free Software Foundation, Inc.
   hash: 6e2b7e1143d443ea670be8edea2db4d9a6ac57e6f22aa4a88443959ab8ad42c7
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./build-aux/csharpcomp.sh.in: 
   copyright: 2003-2006 Free Software Foundation, Inc.
   hash: 13d53b69f8e2663d2abeb4053b3cd45b2b3f99563e826a5fd67abcf4ac201e22
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/csharpexec.sh.in: 
   copyright: 2003, 2005 Free Software Foundation, Inc.
   hash: 08e6e1564fcf7509ae893ac7b3121aa831344458a4ff420c1994918d9792b151
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/depcomp: 
   copyright: 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: ab3cbcc8d9b25ff49daba60a573055149a8330158ab61b0602538a1cdf27e9f8
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./build-aux/elisp-comp: 
   copyright: 1995, 2000, 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
   hash: 650765cd58e0b384cc47b3c257ea4955be8b26117eb05106cd7a39ef002314ed
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./build-aux/gendocs.sh: 
   copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: 203ece29ab9caad64ebd3b3a75725444676b43bd66f2f22b8fc836c5bab0ec78
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/git-version-gen: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a08c7e5c0619d75de3d15e0bdf4ff226dc7f5a89a1e3c6f7b1d5b664b96cf692
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/gitlog-to-changelog: 
   copyright: 2008, 2009 Free Software Foundation, Inc.
   hash: 9cca6130908ff793b8a1af70cc476f55970e378cddd4177d5a602decbeb94542
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/gnupload: 
   copyright: 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: bff7381ec4c19e81634ea630fca8a053cfe1333142662cd70b32c4fe46f3e36e
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./build-aux/install-reloc: 
   copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc.
   hash: 613894d1c2a2855e0f3eb82986175598d077c45c05dbac2f339031487a83f4e4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/install-sh: 
   copyright: 1994 X Consortium
   hash: 5dcf8a8dd376f4c95767a2dcb626e89a66d6f2fda2352f534a296ac6cc9a20b3
   copyright: 2001-2002, 2006 Free Software Foundation, Inc.
   hash: a2fa68883ebe7994ced1edf628a9c6cb6d79ef3edfd0c14996e1e14ef0d7c4c6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/javaexec.sh.in: 
   copyright: 2001, 2006 Free Software Foundation, Inc.
   hash: 8b8c346d69504f34a6426de103455a52b09deb2a0c5a74bb8d4368cad9d6b8d4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/ldd.sh.in: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 6bfa3933015b9b05e431eb13f03e5297cc73bb56bc426d811f1fa41ec7844650
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/link-warning.h: 
   copyright: ''
   hash: cb78032cfaf626adb1bc97576502516519b4888988a51aaa1c4963817b48b0e2
   copyright: 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
   hash: ae36e3c36cd08de4a5aaadc7311d0863108cbc4fcda21b18e902f6218e675035
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./build-aux/missing: 
   copyright: 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
   hash: d8c7220550f4985316cb4c11d4c304b84debd55902b7528ad3f944a478f0c90e
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./build-aux/mkinstalldirs: 
   copyright: ''
   hash: fbad76aa017d3ccba0cfd78db353d5c15c571f4617320fd53b7ee67c788cbc65
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 5c32320b58d10b6b74af578eb9a1bf5015360211ac2b2932f4303648b3e7a354
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/move-if-change: 
   copyright: 2002-2007 Free Software Foundation, Inc.
   hash: 804812198e7aadc810a167cc8015b32770e16ac23315a92f8ce3bba2c1ecbfe1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/ncftpput-ftp: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 462b4e7cc8f6796fd32420382ed3f3f5e2246d58bd186469614dcd8d3a89a239
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/pmccabe.css: 
   copyright: ''
   hash: 0d101dc42f369f71b997fc77eb3bc11d765e5c437b6824ef244bda483f9a1c48
   copyright: 2007, 2008 Free Software Foundation, Inc.
   hash: a93c5cea3b0bf8641cfbe982861478458a8419d5adffa3e4e88c5c5450d54ebe
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/po/Makefile.in.in: 
   copyright: 1995-1997, 2000-2007 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
   hash: 5580fc36bc0f59414a3844a04f9f2f4185bddc3a262525fa98898da44a4a9e95
   copyright: 2003 Free Software Foundation, Inc.
   hash: 7455efaa7fbcc667838f3599223fba7bddc4873e38527f938e7168c709602ffb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/relocatable.sh.in: 
   copyright: 2003, 2005-2007 Free Software Foundation, Inc.
   hash: 9999da027001765970462a1eefc6bb884cbed4f8e7c548585f0b21c86e9851da
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/texinfo.tex: 
   copyright: 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: 6e6bda9f2252f034e86fb076cb53b27dbe4b35c676205310c46642a86d6bf51d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/update-copyright: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a49986e631d5bcdc1ae01896d48c4012ff114f92427b2290dc166a7512804b56
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/useless-if-before-free: 
   copyright: 2008, 2009 Free Software Foundation, Inc.
   hash: 3328c2c72241c0c23c28e4c19a5a353b08e308334956478cce81534a6a5cf7e2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/vc-list-files: 
   copyright: 2006-2009 Free Software Foundation, Inc.
   hash: 37cfcaca7e77bc33ad04c6bc2f69980b41136c6610fa24b30dd929126d28e8eb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./build-aux/x-to-1.in: 
   copyright: 2001, 2003, 2006 Free Software Foundation, Inc.
   hash: 435c01c15a67e002b489e7cd3ceaa0680f4817e6410f07f8209bc67a061f9498
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./check-module: 
   copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: 0773e749793f3ec28522fb356985b4f51ce4d7f17b99c7f1ec92a80bfff8b026
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./config/argz.mk: 
   copyright: ''
   hash: 6931c96d920bb98e9705beea49aa8e61ce728439d16bcc702289e9f16d04fe90
   copyright: 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc.
   hash: 07d2f67dd25798899d772b1db8639368147e43615c175443b9d8720f7ae0d428
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./config/srclist.txt: 
   copyright: ''
   hash: 82bb09655cee0a765f990da640454c5099c5e49f722a0d14d35fde12270d2983
   copyright: 2002, 2003, 2004 2005, 2006, 2008 Free Software Foundation, Inc.
   hash: 009a6f6d36cf2b47a67c2e404d912b491cb310a8653631b8302a8691da1b7f6b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./doc/COPYING.LESSERv2: 
   copyright: 1991, 1999 Free Software Foundation, Inc.
   hash: c5e2ab2668641c2e13afa9e23551ae614f835ac715d30aec90e5d7bada5ecbff
   copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: c3f2ff808bd13ddf5c9dfdecff85d6bc5581e6338bf9919e43aa41a7d2a5ed05
   license: GFDL-1.3+-NIV
-  license_text: ''
+  license_text: "Permission is granted to copy, distribute and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.3 or\nany later version published by the Free Software Foundation; with no\nInvariant Sections, with no Front-Cover Texts, and with no Back-Cover\nTexts.  A copy of the license is included in the ``GNU Free\nDocumentation License'' file as part of this distribution.\n"
 ./doc/make-stds.texi: 
   copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
   hash: 6856144813c56da2dd64ded78323b4e4e1be9177837113f827f9340b8cb74446
   copyright: 2002-2009 Free Software Foundation, Inc.
   hash: 506eacbbefeba098819ee35b897a3ac4805d5f1f583b31e03a7513f912d9d7c5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/.cppi-disable: 
   copyright: ''
   hash: ed4ff8357c74f26ce7298059529040adbec140e2aff3512d6f0218a9df753e79
   copyright: 2008 Free Software Foundation, Inc.
   hash: 81e7c1c7a740ff4f41971972abd0fce7d0177c859d16af4f191136397a1d820b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/accept4.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 51542463f5bad636c373ba51c3b2ab426e33b3f939bcbabfcaf2d97af6165104
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/acl-internal.h: 
   copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
   hash: eb885f58854359d77e7d3ecfc31a71a4df2476ec860d7e1a51aa30411c71e39e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/acl.h: 
   copyright: 2002, 2008 Free Software Foundation, Inc.
   hash: 51d61a70672664344e91e265051c9409abd29da6e53bfaa37b774cad919a1b19
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/acl_entries.c: 
   copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
   hash: 9f85cc40b290acec6fd2d1429421749158816b59818b6542d1058873b08fe6db
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/acosl.c: 
   copyright: 1993 by Sun Microsystems, Inc. All rights reserved
   hash: 230d3b39d6bea0152df39479efcf3a049c66b9f7816d4e39af503dc54875cc33
   copyright: 2003-2004, 2006, 2009 Free Software Foundation, Inc.
   hash: 3462758dafa0cfd9ac5dbecc7fdd45d21f7b7f2a8e87ee35a5b37b251a4b1dca
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/alloca.c: 
   copyright: ''
   hash: 431aec7ca1324fce73e1038b2634ad070f21bb7fee11867cc153c883cbc9e178
   copyright: 1995, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc.
   hash: b7dcd93bf4979e9478ae25207f011254c3ac6fa5173505035f727801905dc65d
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/alphasort.c: 
   copyright: 1992, 1997, 1998, 2009 Free Software Foundation, Inc.
   hash: d9acf3be813a3d6e39e7814ed4bf572e796559daad249c11b26c649d7e4cb68d
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/arcfour.c: 
   copyright: 2000, 2001, 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
   hash: c8fed8d528f531f03939034fac2a66aa2101940d2e1a25ae81ecd33397aefd41
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/arcfour.h: 
   copyright: 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
   hash: 9ac0e9cf9af5561f523190d722544db4ddbbb9e2bb40f47b34daf7cc45ac6f7f
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/arctwo.c: 
   copyright: 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
   hash: 2ddafebd0cc6dd4d8ad0fefad69ae2c676755062511550843b130b44e6af00e1
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/arctwo.h: 
   copyright: 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
   hash: 8ebc8bf993f2598e4a531b9c879ea30686307379e18170bb774a34814fab8ad4
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/areadlink-with-size.c: 
   copyright: 2001, 2003-2007 Free Software Foundation, Inc.
   hash: 93cb0c93eeecd42ebcb6f5d41b313d8e54d6e85c97d872159053aadb4412cf8b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/areadlink.c: 
   copyright: 2001, 2003-2007 Free Software Foundation, Inc.
   hash: 3358ac448b45959a1e867e7f73e753dc1a9c0c493a68e0ef9d43d26f412ec68c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/areadlink.h: 
   copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
   hash: 2bd213824c6fa8c5380a7addae975805c2f1550a27120bef5cc9faeae3f6cbe7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argmatch.c: 
   copyright: 1990, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 76a31c441174aa08a151b841cc9b489075b3e0a4cd0edd4d36279854bdd463ea
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argmatch.h: 
   copyright: 1990, 1998, 1999, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
   hash: 384958e174b369516cfd605f99dc3cbd78763d5df9ecd5a023704eb1009335a6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-ba.c: 
   copyright: 1996, 1997, 1999, 2009 Free Software Foundation, Inc.
   hash: 9661f51641633441a54245954be390ca3d303e3389349b0ff3a221abaa4b080e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-eexst.c: 
   copyright: 1997 Free Software Foundation, Inc.
   hash: b9ad8bc0fa9a452f44ebb0fa9e15e43aba269cc76119db3a0ab3014d0ffaf8b4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-fmtstream.c: 
   copyright: 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc.
   hash: 78c93c6002f45ab98bfcf9487cc421139dc415033d221d8f900454feeb878fab
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-fmtstream.h: 
   copyright: 1997, 2006-2008 Free Software Foundation, Inc.
   hash: a9f5474e0d954582819cb3aec9d04b3ed039a5bcae81d5aff11a632693cf5949
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-fs-xinl.c: 
   copyright: 1997, 2003, 2004 Free Software Foundation, Inc.
   hash: f42be327cb0f817cef2cf6b3f54ca487960053ff7e4f66a7b9179304f03270bd
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-help.c: 
   copyright: 1995-2005, 2007 Free Software Foundation, Inc.
   hash: 5ca3499ee19a2ab145823797673107b2eb288d217a9a1f500e6d77b1eb29bbe2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-namefrob.h: 
   copyright: 1997, 2003, 2007 Free Software Foundation, Inc.
   hash: 3aba78e59efd19a0514f4d27c434803bbc7b7b67ce6a9a26e257ea726b0f88a8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-parse.c: 
   copyright: 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc.
   hash: 09167da5bae9280333ff29c12986e2e0ef0d0c761efc54d26ae78f4393d0b24f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-pin.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 136b821e9b1fcec0809ccd1714aba2e4e7d17cc22ec9f7fda27b53c926aff858
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-pv.c: 
   copyright: 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc.
   hash: 3a9ac90d20dda74af5afcc874cbb8f69eb81cd80c21009d94815d6ac64ff79c1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-pvh.c: 
   copyright: 1996, 1997, 1999, 2004 Free Software Foundation, Inc.
   hash: 9bf839864fb8929972b914067dca6bcceb4f05776fc9ecd4d4225356e01042bc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-version-etc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-version-etc.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp-xinl.c: 
   copyright: 1997, 1998, 2004 Free Software Foundation, Inc.
   hash: 55403221c704ff78de0f4fedde5c49143077592a946456cd1dc707caab2ccc94
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argp.h: 
   copyright: 1995-1999,2003-2008 Free Software Foundation, Inc.
   hash: a47d0da1b66595eecbf61c738d5cbcb2c66cb38f2ff958466b5bdaad40e8ce79
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argv-iter.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argv-iter.h: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/argz.c: 
   copyright: 1995-1998, 2000-2002, 2006, 2008 Free Software Foundation, Inc.
   hash: 1c24aecbfd5cd788fc849e7d534c75f86f4e42acb16bc7a18d23e00ba251da74
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/argz.in.h: 
   copyright: 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc.
   hash: b5f8d15d436b04bc7e91bc0a133e8ef45b4a70906bd0a4aba412c9ba1bf1a924
   license: LGPL-2.1+
-  license_text: ''
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/arpa_inet.in.h: 
   copyright: 2005-2006, 2008 Free Software Foundation, Inc.
   hash: d921498b43bfc8b6c8bd8bc3af58f20194194561344fb042169b9aa720c2dd7f
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/array-mergesort.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0b6a5a731180bd7f2271e98ae120c9b01c751899c685fe91ed94efdc215557b0
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/asinl.c: 
   copyright: 1993 by Sun Microsystems, Inc. All rights reserved
   hash: 230d3b39d6bea0152df39479efcf3a049c66b9f7816d4e39af503dc54875cc33
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 8e81f2c3c535f505added072b5281fa5c590144c3aa3e083dad0c3ed52b45aa0
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/asprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 2045ea0ccc9c1e33818278aae4f856ccbec17f95c16ed6b1264dbc5f98df421c
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/at-func.c: 
   copyright: 2006, 2009 Free Software Foundation, Inc.
   hash: 6123fbee08097fe452caf222c168f32e36f7b9a10d815c8679e22fd0c1fea90f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/atanl.c: 
   copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
   hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/atexit.c: 
   copyright: ''
   hash: 9dfd71e9081a0d0955d144016b832253b840f16f0bfe5144f72ad0ce5a13525c
   copyright: 1991, 1997, 1998, 2008 Free Software Foundation, Inc.
   hash: 43af4461379692b1d5e3db98d3b75cf38757d5cd3b2e0c26efb0287da4ef034f
   license: LGPL-2.1+
-  license_text: ''
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/backupfile.c: 
   copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
   hash: de3f6f972c0d97e43fda93581b76623a6314b9e5cab5c0559f0b6622d0425874
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/backupfile.h: 
   copyright: 1990, 1991, 1992, 1997, 1998, 1999, 2003, 2004 Free Software Foundation, Inc.
   hash: 08b55cc0243fe8a455eda4a2ce69f879623f6fadfaf004386062e4c15e9a24dc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/base64.c: 
   copyright: 1999, 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: a4fedb1d6d2bee5c7d6100ab2f73c5a24e0cd932921577dd9bca74b57e97c0ff
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/base64.h: 
   copyright: 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 92f71847fff2b46fe5623f1da8199c223944384bfe92cf9d66710d17b2969583
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/basename.c: 
   copyright: 1990, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: ca4490814d70e42aa42de5259bc7f9535664c76469f4ad8a5b741bd738171b78
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/bcopy.c: 
   copyright: ''
   hash: 141099f203ec7aabf4aefe89031c9d7194ecbcdb85a1f49f18068aaae4da74f5
   copyright: 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
   hash: ea71f7a3ab4b4dbfdbe578a2bedc51341a632fae63edc9687ddb301a8e88db6b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/bind.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 345fb14e8ab45ff32e86d497f729743b9085d3924d0dcd8dcc4f9b5d28cb843b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/bitrotate.h: 
   copyright: 2008, 2009 Free Software Foundation, Inc.
   hash: bf4e90d06ff8a7eb32a59c54394204b84741046fa15f0ee9dfd0cec19cc2cf25
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/btowc.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 4c263e1c7b7add699324c83acf27490eae484d98e3ec75ec8abfe89e50e4c3e2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/byteswap.in.h: 
   copyright: 2005, 2007 Free Software Foundation, Inc.
   hash: bd089dcccc601992343eadc9ac5d1173fe47adaa6be9f554de9b56e0ada6ef30
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/c-ctype.c: 
   copyright: 2000-2003, 2006 Free Software Foundation, Inc.
   hash: 3247e6ae86bda58108f0933bb516ac7092c6b972c747ebbe1ea530edf06c0793
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/c-ctype.h: 
   copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc.
   hash: 221f512fb0a226a9fe28608c4f065c4f1aea37664edc45787cf2b677d3347988
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/c-stack.c: 
   copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
   hash: 0fe02d3bbf8b73c2f3eea5841027b52860666ee94e2795b444dcc98ef79dc503
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/c-stack.h: 
   copyright: 2002, 2004, 2008 Free Software Foundation, Inc.
   hash: a21e1759d3e498e26d93665fe500f7ac93027b38ee4c9413df473f6bbe8d0b22
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/c-strcase.h: 
   copyright: 1995-1996, 2001, 2003, 2005 Free Software Foundation, Inc.
   hash: 700123f142dd7be6a02cb443ec2ec16c5e55412c9b767cb6fb5f41972f2986be
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/c-strcasecmp.c: 
   copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc.
   hash: 5813026dcc5c543c5f539fe753092ea0f0419c3a0e5cd28271a66403efd66608
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/c-strcaseeq.h: 
   copyright: 2001-2002, 2007 Free Software Foundation, Inc.
   hash: 41a44de05c8794489a85f495714c9ebe9b7e86bf93882e1157c7c29ef7e87654
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/c-strcasestr.c: 
   copyright: 2005-2008 Free Software Foundation, Inc.
   hash: a3ef7838539fb370edb6d04a09043224c3852cfa0eb88252705569d7194b217a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/c-strcasestr.h: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: fb9f0ccc3a0843600f8f3c546536dd03d882a1cce67ed06d95299307810a67c7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/c-strncasecmp.c: 
   copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc.
   hash: 0f5960e9963b050aa381c57b2fb6d08ad32e86d833e906014b9f965a4f233b7e
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/c-strstr.c: 
   copyright: 2005-2008 Free Software Foundation, Inc.
   hash: c435d0a89670ee2ac73fad0445f0d15de13e09ddf466ebf15dc872d62b3b5f4c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/c-strstr.h: 
   copyright: 2001-2003, 2006 Free Software Foundation, Inc.
   hash: a562f768d2d1e2f44652b98dca2e7ae58e2880eada876116a6d3bf342a312cc0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/c-strtod.c: 
   copyright: 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
   hash: 40bcd0ae43e731e785caaf327c327c32e95074019aa23a02fd58c1af79beebaa
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/c-strtod.h: 
   copyright: 2003-2004, 2009 Free Software Foundation, Inc.
   hash: d1d38e765e9bb24e6331acb59798291a42525d3d52b5945a06e04131fda2622c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/c-strtold.c: 
   copyright: ''
   hash: f2f3327044df634e0b933cb776f209274b8ebea5df3c977a51422befbd6db63a
   copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 813b2807d1779eccdc16e52eaa6272c8d2cad79b90dcd1a121c59fccbd7db54c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/canon-host.c: 
   copyright: 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
   hash: 6e769abcb94fe823344005341e9d566650fc3f05e22afeb853cd498391890071
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/canon-host.h: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 15c3b5a2570e4d2b2501c12ea7f690cd76be7a4271c9f620df17b9e24574ff2d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/canonicalize-lgpl.c: 
   copyright: 1996-2003, 2005-2009 Free Software Foundation, Inc.
   hash: 31572bb94d292f1be2374999e03d2ca1ff506f643e889f1211ad4ec9e42709c3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/canonicalize.c: 
   copyright: 1996-2009 Free Software Foundation, Inc.
   hash: 317fb2484d6a487a7ab5c964f7fd86fa711e1ab1ab3fd34518c6d6ae7eb77f6d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/canonicalize.h: 
   copyright: 1996-2007 Free Software Foundation, Inc.
   hash: 8946ae555e9b6d4173814e28c850eef63233d5026e291074af2d999e567e3303
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/ceil.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/ceilf.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/ceill.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/chdir-long.c: 
   copyright: 2004-2009 Free Software Foundation, Inc.
   hash: 9bfeec4664bd8ea174475e5c7ca4f26bee69370881752dacddb6aeed908600c7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/chdir-long.h: 
   copyright: 2004, 2005 Free Software Foundation, Inc.
   hash: 43c6066052ad511d0bbc773ab569ed70bfe41a4e8f0168495d53f289d3b8292c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/chdir-safer.c: 
   copyright: 2005-2006, 2008-2009 Free Software Foundation, Inc.
   hash: 7fb9baacfff6082c7a5913c4aae0557ff60cfb3e65bd0c09ebd438669d66a570
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/chdir-safer.h: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: e3232b6124ac91a0910daf805e412816cd3a6ee5a8268acdaa366f4c35f9ed51
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/check-version.c: 
   copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
   hash: b9147d6cca01ee62c2de29c59777283b45be1735a457fb9a748256b9f9cd8f43
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/check-version.h: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: eb1e24d6d5f441f55ca7b9ad07249b71a8056ba2eb91ad6584428f97a5a836b5
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/chown.c: 
   copyright: 1997, 2004-2007, 2009 Free Software Foundation, Inc.
   hash: e72dbae39e506979332040aa02e82336372fc710944efc83f3da40c5c09ca7a6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/classpath.c: 
   copyright: 2001-2003, 2006 Free Software Foundation, Inc.
   hash: d1d34ae2c6f3915f1a22d0399df01102840772c8733b3782ccd4fe220e819b6a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/classpath.h: 
   copyright: 2003 Free Software Foundation, Inc.
   hash: 9b2071cc61bb9c5fc67562c4b2ae4270c0e61235f0052a91e63542ed1c161ff1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/clean-temp.c: 
   copyright: 2001, 2003, 2006-2007 Free Software Foundation, Inc.
   hash: 36bc4ff5220f99fef224ee81984f458a050b76097c5a2e5fe8ee40d5d84e1bf4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/clean-temp.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 7fb51e989292b9fee1580dc431185ca8ee300709983c7ab0137bfc372d6a2b18
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/cloexec.c: 
   copyright: 1991, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 1f7579bc9888a0a5a4eb18a6a04be6dea54324e346baa4a0c76b240f01ed3329
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/cloexec.h: 
   copyright: ''
   hash: cfe5843e2e0ac5ad5fc12a47d962d9f8305a2542693105f25917b8f36614b582
   copyright: 2009 Free Software Foundation, Inc.
   hash: ec1354c985be7435887fe9b514e9777b573cf13b674dc55eeffbbf2b6f738034
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/close-hook.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0bd92bcbb0e461e75824497facbf3a66e7ae7d8eaf7cc4b91fa7dcb0b827b504
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/close-stream.c: 
   copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
   hash: 5b1b946e2cdae710a10239f75e632eaac2c083ad0a895384be7a76254efcdb42
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/close-stream.h: 
   copyright: ''
   hash: 827172f355991afad504e0cbf0ca7bc6df709d57f14b498de472fed1cff3c71d
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: bb1b7ca07113ae43ac558dbd9ba9c62ccef65d984ff7a462df394ded1e8e5a4c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/closein.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/closein.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/closeout.c: 
   copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
   hash: 0208f6e721c11f8964c3a52a6e8c4bd6f19d35db790e2a5815dfea345d7444eb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/closeout.h: 
   copyright: 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
   hash: 2b48405fde7535d4e60a3e539a77ab974fd3e372cf97d8c0ed3a82991c3b9cbe
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/concat-filename.c: 
   copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
   hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/concat-filename.h: 
   copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc.
   hash: b84d2c6c2e5a8307529fe2a1345949b40a55aee7271142bf3e56ec008231bc0e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/config.charset: 
   copyright: 2000-2004, 2006-2009 Free Software Foundation, Inc.
   hash: 6f0998e29a63e3fcb8c4e044840a073a733d777ab343c1a3f045ce6ab2e9ecf9
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/connect.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: e9e4f3ca46ee356688d1d58e5eba96562c3850b470cc266856bae4cfc7ef5372
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/copy-acl.c: 
   copyright: 2002-2003, 2005-2008 Free Software Foundation, Inc.
   hash: 40c730e383e47065909dd9b5cfabcdf662f5ca1d3491528c2726551c49d88e49
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/copy-file.c: 
   copyright: 2001-2003, 2006-2007 Free Software Foundation, Inc.
   hash: 8d79873160d6735d8e50841f62ddb06b8a12bb54fc4ccaa29e8fd4c8009e7ce9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/copy-file.h: 
   copyright: 2001-2003 Free Software Foundation, Inc.
   hash: b83fade95166bced102f06075d40d1b52c09d72aa62e313053f297f2e89e05e4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/cosl.c: 
   copyright: 1993 by Sun Microsystems, Inc. All rights reserved
   hash: f94441c30759bff7b800832d4a5ca7f10ab4fdec07fa304c2a367ee6814a1ada
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 9bfc5b555787364b6d14caddb1e35b0c076627938d3049c7b0d3d0b411409e10
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/crc.c: 
   copyright: 2005, 2006 Free Software Foundation, Inc.
   hash: 444a38281c2c920f7e54307e2fb960e7e045a71ede5a7793c8b59d19dd42fecc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/crc.h: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: d20e1f1c17cf2ef4fe9383e09809c60590708ecadd57cf6d967c5634c968eea0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/creat-safer.c: 
   copyright: 2005, 2006 Free Software Foundation, Inc.
   hash: 675f74818da9e9543301afdb0bacc0922294d33b13d7411ff97044bc83ee5186
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/csharpcomp.c: 
   copyright: 2003-2008 Free Software Foundation, Inc.
   hash: 60500489341e803a1e684450bb9cb161aa03e3d71fd8c469f1bb47b9e5ddcbf4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/csharpcomp.h: 
   copyright: 2003 Free Software Foundation, Inc.
   hash: ed80ee1bdd6a323445877e7988c969b8b4a0699bb70bea8a8f6fd2e98df2f9a2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/csharpexec.c: 
   copyright: 2003-2008 Free Software Foundation, Inc.
   hash: 9c8d0cf212dcaf02bcbd13a6f9fc04f6bde9b26961bcb6b84c8d613eccedbe40
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/csharpexec.h: 
   copyright: 2003 Free Software Foundation, Inc.
   hash: b52a0f9c1967e21f490cb0a86d5d0910af3e34b693c1937e965561bbe2b01916
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/cycle-check.c: 
   copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 42e37d48e8e2bde63e12bb394fa4c50a6209ed1b592e6c236411dd339e0756a1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/cycle-check.h: 
   copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
   hash: 42b5265fff4a67fad7b32708c5ffe9ecb8ee2edac006073355fcc563d9cf7e11
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/des.c: 
   copyright: 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: fd7196b6a2a037973cfc74df6861f31d3ca3a201113252ddc69f6d49843296df
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/des.h: 
   copyright: 2005, 2007 Free Software Foundation, Inc.
   hash: 0657bba6a068db36353ae4fc668777b7948049ea563a6e04d5643878c73c0553
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/dev-ino.h: 
   copyright: ''
   hash: 389d203acc8519fb2e74b471a247ffd831d6dd93ff076a42ee47a8a48b4f821a
   copyright: 1990, 1991, 1992, 1993, 2000, 2006 Free Software Foundation, Inc.
   hash: 8fe4fbeca6533f94fe5e22b403d4e9659a74a43af7777951d616971cb58a2865
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/diacrit.h: 
   copyright: 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
   hash: 1e18e6c700599854713425ac91ef20e1dc1b48d3842826f8ce12c5b8777f6cac
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/diffseq.h: 
   copyright: 1988-1989, 1992-1995, 2001-2004, 2006-2008 Free Software Foundation, Inc.
   hash: 8e10c66c285feea8e568e48fc868abfd29fca86308f93231c42016b821f5473d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/dirchownmod.c: 
   copyright: 2006, 2007, 2008 Free Software Foundation, Inc.
   hash: c257ba60a2b1e58c04bdd873d5f000f1f03c6f2f364bd25f3f6bda2ce19bf4b7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/dirchownmod.h: 
   copyright: ''
   hash: 2377b01e9bac7aabe4b35b4ee9493ca91cf6d0edae1905934deb6462f7dfcdb7
   copyright: 2009 Free Software Foundation, Inc.
   hash: 07dc0881d2aaf744a41393f3eecee439192d76eb2eb03c62fad51514dc6ffb35
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/dirent-safer.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 6fa32838fa81f1b4a4e1df89282bd0493df71361847142562db0ebb79c0349da
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/dirent.in.h: 
   copyright: 2006-2009 Free Software Foundation, Inc.
   hash: 6826b90dd9abb410dd4949515a1d15f184e8db441b5ad50f12c2eaf4f6f542c6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/dirfd.c: 
   copyright: 2001, 2006, 2008-2009 Free Software Foundation, Inc.
   hash: 3d93cdf70fd7be9fc29911d59fe09cb189e040224aaad98a8c9e83309e9c7bc5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/dirname.c: 
   copyright: 1990, 1998, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: e875ed57e50a82603de0ee7a830a6d495673d3cf95ad330deed4ec9cc540fd7f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/dirname.h: 
   copyright: 1998, 2001, 2003-2006 Free Software Foundation, Inc.
   hash: 5ecde11db04080822441842ce9cdf1c7d12872412af9305e768bfc5c867e3000
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/dprintf.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/dummy.c: 
   copyright: 2004, 2007 Free Software Foundation, Inc.
   hash: 3afbebab4922858335d8687bdd39bf0881f6eea6ed63f9d8d2999e9010b6704c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/dup-safer.c: 
   copyright: 2001, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
   hash: 37fd02f35d9bbe9b3673b9681de76101a235e4a0fc4d7c630773aabe959455fa
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/dup2.c: 
   copyright: 1999, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: a27cbfd58d5eb3c2d99b2a053764f3f1085841d3f29434c0a8001d845d1387c8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/dup3.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 5a1a146029856f33980e0ca9fb03df16e17c36957b8af8c5f19839cba93b392d
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/eealloc.h: 
   copyright: 2003, 2008 Free Software Foundation, Inc.
   hash: 14128ce1ce8fbad4f7358db50d4b6d6ce1c9c524e4ea23b6e266f36b39a82695
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/errno.in.h: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: fe88fbd6fac6eb6acc5b84e204ef7b20b5968de6725682e3694d1f027bcf3b32
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/error.c: 
   copyright: 1990-1998, 2000-2007, 2009 Free Software Foundation, Inc.
   hash: 759532401c6333a4e942e57b2d1ec3efe68990086230f50dfc8018148c6241a9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/error.h: 
   copyright: 1995, 1996, 1997, 2003, 2006, 2008 Free Software Foundation, Inc.
   hash: c14e8a46030c1ac6f69b89a732b7b3a0c35ab78d550419c08c02a626010c3073
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/euidaccess.c: 
   copyright: 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
   hash: 88c401261238a10e8eb01df632a0149146590e3692034046262b614e176b7677
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/exclude.c: 
   copyright: 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: d841af1f422218e8e2c99fbda36b8626a810eae7a5e2be71c587bf33ecf2a895
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/exclude.h: 
   copyright: 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
   hash: 2b13111b63be6c6ecb81a5e34429097b34c88b4a889ea6a41ef41309a6ef3ca5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/execute.c: 
   copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc.
   hash: fada894c258c01aed0dcacdb27e67b8302428f122a9a80bd346df99e5e29b461
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/execute.h: 
   copyright: 2001-2003, 2008 Free Software Foundation, Inc.
   hash: 4e56a6cb0389acc2d1a3f91209fd3781803a0acfeb907ff3d0448286af4e35d9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/exitfail.c: 
   copyright: 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 5a9a124a57c5dacad4bf2b5e021b77a42a33ee35872481ff71c4e0cd00afc2ec
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/exitfail.h: 
   copyright: 2002 Free Software Foundation, Inc.
   hash: 877a42c98a8a8b7975c4a116bcc0afead63f92402e05649936af61e72493f252
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/expl.c: 
   copyright: 2002, 2003, 2007 Free Software Foundation, Inc.
   hash: f570f9a7eb0fc19acf0bd0b30e1482a7ed8ba594dc26eb7951dd8a8f119be46c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/faccessat.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b11aa6f0dacf29b21357e6fc7694c750c8a7b4d6601f5fbc8b869d1f7c1cfff5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fatal-signal.c: 
   copyright: 2003-2004, 2006-2008 Free Software Foundation, Inc.
   hash: 2439def8a904b9fec75774ba5e8dcc0c4df0ac24598e0395fa54277e258bcaf8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fatal-signal.h: 
   copyright: 2003-2004 Free Software Foundation, Inc.
   hash: 161abae5aa433aa22b95dbeacf7abe6b3813df0983bbc3e90d1ac806b398dcdc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fbufmode.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fbufmode.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fchdir.c: 
   copyright: 2006-2009 Free Software Foundation, Inc.
   hash: 1cff01be35d904c715c02a565711422784c3ab81ba68517b8d166ed3fdc8172b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fchmodat.c: 
   copyright: 2006, 2009 Free Software Foundation, Inc.
   hash: cb14ca8efe705c5d31767cda4078b03e79cb5401098cd07215414b4af7ccda80
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fchown-stub.c: 
   copyright: ''
   hash: 01f08654cdc736f611bedc64897d6cde20db20238576d2e399050a59b54b6609
   copyright: 2006-2007, 2009 Free Software Foundation, Inc.
   hash: f4ccacb449cfd52c9bb32d38c9282f9eb6db3e21bb40fe343f32361e2f2eee4b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fclose.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: b9ff3e698a5bc176cc516f2d1bc0f1caeb31ce6ef5bc03a59f86d41f8c9a061a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fcntl--.h: 
   copyright: 2005, 2009 Free Software Foundation, Inc.
   hash: 3b7416a86275dcfa8f78d2f70ac320e95583cb68a3c2710dfd3d0c0ad79674f5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fcntl-safer.h: 
   copyright: 2005, 2009 Free Software Foundation, Inc.
   hash: 1b38a5c280f10b1be082ade7aa7a7094e8e48ad6610748a54b3e1e463c6955ec
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fcntl.in.h: 
   copyright: 2006-2009 Free Software Foundation, Inc.
   hash: 8f4cd6edcf635c7f343e2b03cd1b7d40d742b57ea937a23b4acbac9f79deb464
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fd-safer.c: 
   copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
   hash: fe1b4e960de5e5b3af0103f56e2cb6654a051d17aee26df93bda76176ba04d00
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fdopendir.c: 
   copyright: 2004-2009 Free Software Foundation, Inc.
   hash: 6fa3102cfff5b57b78e4709b2c03cdcb8dc5519c9889f635ba73c34887212a84
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fflush.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 2622273e90952bfaa2fca8364132393c33b80f90a66a35c6b75240af7e94606c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/file-has-acl.c: 
   copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
   hash: 2f4bae0d818e2fcf56e772e9c9caa2310f7f7dc7d3cd3556335b0d04d46964a2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/file-set.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 45dea5f9b0a95afa2babe22d9de18010fe4078005351697ce25c587c75173b3a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/file-set.h: 
   copyright: ''
   hash: 4bacc096f8105ab71d14c90967bb7855d2ad8da0afc132d32c8df03d2eb427dd
   copyright: 1993, 1994, 2001, 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 9b360c9dba47a27fbcdcfa7c880672f23094a4332459655d5a06abaf75724544
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/file-type.h: 
   copyright: 1993, 1994, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
   hash: 33f7ce18b9037520c8a1d64bce9ba5ccfccc1ac39b4b08510f2f2caab56064b9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fileblocks.c: 
   copyright: 1990, 1997, 1998, 1999, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 15debca15418300f226a883a5ce4e98d3b687ef448b5b30e08247e56908be2ae
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/filemode.c: 
   copyright: 1985, 1990, 1993, 1998-2000, 2004, 2006 Free Software Foundation, Inc.
   hash: 169a543533dec3c22ffde0c0391528ea49b2440c80bc3ffde47196967ad49af0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/filemode.h: 
   copyright: 1998, 1999, 2003, 2006 Free Software Foundation, Inc.
   hash: 6439a9bafba8f71ce6dd51c897b653f713d013a8496413a19361cac6f515dcaf
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/filename.h: 
   copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc.
   hash: 4f53c064d5d3411085081f0e8d109ed3132ab4333b1eefff9c22a968fa751ad8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/filenamecat.c: 
   copyright: 1996-2007 Free Software Foundation, Inc.
   hash: d956c0d319ac571bc4c8d3e7d5be91e47dfbe356a8f4c2c64abe944b8e094af8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/filenamecat.h: 
   copyright: 1996, 1997, 2003, 2005, 2007 Free Software Foundation, Inc.
   hash: 6ddfa3af34686669e746d1cb478b10753b7d450b3097c4b856230acdf11a5a6a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/filevercmp.c: 
   copyright: 2008-2009 Free Software Foundation, Inc. / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
   hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/filevercmp.h: 
   copyright: 2008-2009 Free Software Foundation, Inc. / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
   hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/findprog-lgpl.c: 
   copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
   hash: f142976d34ef0acffd72143865aadaacf7318c9391ac036941d725be41fd1424
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/findprog.c: 
   copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
   hash: 0dfc19e772afe61de75fb5844aec46027116c8e89e71b3d1da85482635daf928
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/findprog.h: 
   copyright: 2001-2003 Free Software Foundation, Inc.
   hash: 52461483d830d7ff18633a15addd92530f4b6d1632f3cb1dbf15de8092a7758f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/float+.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: e0f837de3dc39e0b747f0927653fa501e3e873bdfe1c26b0961519fd8dd897b4
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/float.in.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 0c19c5ab4c8e1d8499f9edd1fd44d287083f329b75ec2b54100b101310e88ab6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/flock.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: c4837f3ed93fcac221405077e40e31648eda752325afe74b7b28d32928fbdec3
   license: LGPL-2.1+
-  license_text: ''
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/floor.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/floorf.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/floorl.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fnmatch.c: 
   copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009 Free Software Foundation, Inc.
   hash: a1023b214fa5f3433ca30359a6857be416dc1dade27370bdbd7100857341f56c
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/fnmatch.in.h: 
   copyright: 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
   hash: a5c8c5adbf49f1404d18740af34363323265ef6c7588387425b5797518dd9317
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/fnmatch_loop.c: 
   copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006 Free Software Foundation, Inc.
   hash: 5351dffc7f21918d5a731915aca1c452c091beb8a7df2ed78acf823afad6d785
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/fopen-safer.c: 
   copyright: 2001, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
   hash: 2c3a39bc70dada2b591df7cbf00ccc0ceed6e2f66c08fd5e01c7f70cc55eade6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fopen.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 0eae410e55fc3de8810a3f68d37626df92ba75bbadf58269f8e802be2c05310b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fpending.c: 
   copyright: 2000, 2004, 2006, 2007 Free Software Foundation, Inc.
   hash: af0350b9abdd28ebb8e56a842c10a760620a22b242a6a2f74402ee4222dcc8a2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fpending.h: 
   copyright: 2000, 2003, 2005, 2006 Free Software Foundation, Inc.
   hash: 01eea55927650242b2ec6a6293963c43ab840f135e5d4e9895c43aaff5d529a1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fprintf.c: 
   copyright: 2004, 2006-2008 Free Software Foundation, Inc.
   hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fprintftime.c: 
   copyright: ''
   hash: 2f439ed60059d2a1a96bdb1e19ca32c81fdcced639c884f1deaf416f4d750e84
   copyright: 2005 Free Software Foundation, Inc.
   hash: 4f0efdf4cf65af56c865a1cf73b3314360fe7b326a00eb9994ba12a5bb0d2920
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fpucw.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: e47878db46d7035debf5275a50634b563f90405b938fb8721ade14b526fc4738
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fpurge.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 979d16d694737fea189e9bf8d29a91f31305bc10386618604a2efd317703b257
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/freadable.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/freadable.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/freadahead.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/freadahead.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/freading.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/freading.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/freadptr.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/freadptr.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/freadseek.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: e5dad14d411c6ebf4122bb8b36c186dc7c6c396d1a13b24aeea84bd19679c098
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/freadseek.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: c7545f90ba5bf8bba37c297551a1a35b4c1814f8cf6d6c3f8d57b2e56ebaba0c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/free.c: 
   copyright: 2003, 2006 Free Software Foundation, Inc.
   hash: b573f5b5fea990902e68d85f02b015cf9320100fe56678f14e732f90cf83e473
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/freopen.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 58204a89790d1470a883e67f10cd0ddd7153655334e185ca64530467b797a4f9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/frexp.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 91c12c41ce9b83e5cb3b66a32ee07dd6c30c8d24dd94f452238c006a0322287e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/frexpl.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: c03c58defe40517c302193125927eacad08dcda5bf4f49afaec567a5729e3a3d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fseek.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 0047d7b482dad80bda7de91feaa9d092a02a2a7fdcc852df3c8dc2f9c4bd0191
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fseeko.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 7b2541be24bdcf54f417ab2189fb821a645f6a4f06a21adaff8f058594862194
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/fseterr.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 7db3706c69835761a78a456fd39fb66f59d80b7ec061c6c204cceb4ac8cc5094
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fseterr.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 59926523da017089371d4894c0e5bccd77843a75a6a837ab203c875d993393fb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fstatat.c: 
   copyright: 2006, 2009 Free Software Foundation, Inc.
   hash: e4dee1ca9774aa96627d99386e03d3a973f79dd331825b6d818b8f50a77bd65d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fstrcmp.c: 
   copyright: 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008, Free Software Foundation, Inc.
   hash: bfca8347502966f7b7e533a47fc2545366b589adee21a653689f4503158b2e5e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fstrcmp.h: 
   copyright: 1995, 2000, 2002-2003, 2006, 2008 Free Software Foundation, Inc.
   hash: affd05fb827a563d7f36a218fddb5aabf27be47e86157d97d850ff3f98ef74e1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fsusage.c: 
   copyright: 1991-1992, 1996, 1998-1999, 2002-2006, 2009 Free Software Foundation, Inc.
   hash: bf6546df7e894ec6855dfb9c9548dae4acbe9b4d69acde87b3c3d5deb1534091
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fsusage.h: 
   copyright: 1991, 1992, 1997, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 0fbfea12b9dabb5987b88390bdc84d23c2dcd6a435f842f44d26c0a985a490b7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fsync.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 3d47bf5b981a180ca9cc8a052b84b52744342a9cc13c1c814274b04ed0ccce99
   license: LGPL-2.1+
-  license_text: ''
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/ftell.c: 
   copyright: 2007, 2008 Free Software Foundation, Inc.
   hash: bdacd27661da79a67395f4c109a4ca358cbf5f7708013ac8b4597e1748cb866c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/ftello.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 8eb3edb3ac0a89c7d9fbf79c0f5b80d54bf4ba9150f30175b5c00d56b78da476
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/ftruncate.c: 
   copyright: ''
   hash: 7e7eb364e0c33931844842e8432d1ba9a9f8b8dd506599b01ab206d1a414039f
   copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: fc1d44a722404dd98d94914dab1b5ec263ac0d9749adcb8eadab0455348c1b8e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fts.c: 
   copyright: 1990, 1993, 1994 The Regents of the University of California / 2004-2009 Free Software Foundation, Inc.
   hash: 031ee2fa332e516ef11403356250388f67d165775a3ca9f03fa43bc7fe3695ec
   copyright: 2002, 2003 Free Software Foundation, Inc.
   hash: 8a27da95d11da5cac1d6d93a7c5408ac9e9e9b84c727c9d6426d536d74329533
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/full-read.h: 
   copyright: 2002 Free Software Foundation, Inc.
   hash: d4d3d1e43b305e2074d6ceb67dfc077058f73fa50b9188c61e3322de4c84a156
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/full-write.c: 
   copyright: 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 14aac294502e565d0475a4605c4fa84cd3ba3b006dc9f31359bd20cd01d223fb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/full-write.h: 
   copyright: 2002-2003 Free Software Foundation, Inc.
   hash: 6fc92b2c6f57f68ee664efc58bd464d3694584a11c7895b3e10d073f7463e4eb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fwritable.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fwritable.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fwriteerror.c: 
   copyright: 2003-2006, 2008 Free Software Foundation, Inc.
   hash: 1a1137f1f41c92585bea0ad15c2c294253d8d496638763318511930ddc34559f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fwriteerror.h: 
   copyright: 2003, 2005-2006 Free Software Foundation, Inc.
   hash: 57d77b30a81499334eeb50f7dfc84fa69ae4232ff0670018e7d4544f670e33a0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fwriting.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/fwriting.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gai_strerror.c: 
   copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
   hash: 6fa8c98c6159a1bc336cc672906d02a7c2b14a0db56b900ebd375c79e93e0a51
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/gc-gnulib.c: 
   copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: a1a6cd40081db989deb6d637777e1ea5e616b3d6a283a7a7f4a9d5e09291c419
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/gc-libgcrypt.c: 
   copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: 17a44f44fe9aa32fa885740126dc77e9789d91af8a7b6481c1c03a99b378b010
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/gc-pbkdf2-sha1.c: 
   copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 2286c6ae2cbbc15032408e0ab1b986db3f9ba1b141f1a542dbddcbb50c8dce4c
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/gc.h: 
   copyright: 2002, 2003, 2004, 2005, 2007, 2008 Simon Josefsson
   hash: a4f94bdf9e032840c9e93a7a9da02fd788642e5def0abcfa0107c6a129f2f4b8
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/gcd.c: 
   copyright: 2001-2002, 2006 Free Software Foundation, Inc.
   hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gcd.h: 
   copyright: 2001-2002, 2006 Free Software Foundation, Inc.
   hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gen-uni-tables.c: 
   copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
   hash: aad2b45b19beca4f2ac5d5f5bb9edce6d0afc88e1b7b9d1047748f876a287f4a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getaddrinfo.c: 
   copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
   hash: adc75b9ed0c95c54930e8aed577992958efb7d055fee5326a497b8abb69d0316
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/getcwd.c: 
   copyright: 1991-1999, 2004-2009 Free Software Foundation, Inc.
   hash: 5875b69c2fe815331158284d7517251ab1bf88edae205ac42d739b529a6d4873
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getdate.h: 
   copyright: 1995, 1997, 1998, 2003, 2004, 2007 Free Software Foundation, Inc.
   hash: b9389accd94ac78a67232edb3c527f3f70ee67ad6f01602d68b55ba4fbcd0dba
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getdate.y: 
   copyright: 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: b5fca8ba27d142ddf8675e4f97a669f215e388619b18a6be948a2fb748066a5c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getdelim.c: 
   copyright: 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: 992ace4fcbea4653a4c94a5e3161682e707b458f19befe7a2efe9b6d0536c45b
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/getdomainname.c: 
   copyright: 2003, 2006, 2008 Free Software Foundation, Inc.
   hash: 49d9ff73b25a4e25ab534f038da03ecc6bd4f1e55511d312f3e3652d79e561f3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getdtablesize.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 51191e642c33bb0d979044844f6eff55029ec458cd21474f85bb0b0d51eb1353
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getgroups.c: 
   copyright: 1996, 1999, 2003, 2006, 2007, 2008 Free Software Foundation, Inc.
   hash: 0f0b9f4b7e5c2b88b951017ee86711bfeafe90b04b0b610061b888563f4fdded
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gethostname.c: 
   copyright: 1992, 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
   hash: 08b8fc75fb3ab4c65596a95988f9a243016039c6a6d58db033df382b3e85ef91
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gethrxtime.c: 
   copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 1cec40c1dcc320f69be6e1c805d217f9abab323dfc4d321daeb53e6d8a47b7d8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gethrxtime.h: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 0f5ade662a7551e4b033ef5d892a59fa220a1ca1e4fca8feb3778e6102444739
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getline.c: 
   copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: db509c33815c26829232154304e781d89be477ad3f316afe1d06f654877e7697
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/getloadavg.c: 
   copyright: 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: 2d24f7a43c161425aa87eff2a7f2fb2bc4a9a1f84761f74178139d04c1fece2b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getlogin_r.c: 
   copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 71342da5c9fce5ffc521819fbf5ea380288d8dd31a5a80d9272b7f75b422173c
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/getndelim2.c: 
   copyright: 1993, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
   hash: 9ee7610ebe6f8a37f5a5a68a7b3449214c14a38ff0d7dd572812bb7859df98f1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getndelim2.h: 
   copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
   hash: f5045e0d348580d1368f95e10cdc98ef5dc5cb756ace0005aa8ea0b4b3ec3c44
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getnline.c: 
   copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
   hash: bbdd86a205f27f15ef28fbde34d1623b507bb2453e631af80a1afab6cd8981ec
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getnline.h: 
   copyright: 2003, 2004 Free Software Foundation, Inc.
   hash: 03573e9a526808be4f0f78b44449e9d23df1f24379e10ec2ba8ca76d47a3c4a6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getopt.c: 
   copyright: 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002,2003,2004,2006,2008 Free Software Foundation, Inc.
   hash: 4d0fd46f29bb8073586f8ec6d6970bb6076904b387b4ba39b52e67f894fad2ac
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getopt.in.h: 
   copyright: 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007 Free Software Foundation, Inc.
   hash: 85fd6cbd9bf519076eb2762b34c713e170afc8e197126defee267fedcee58ff4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getopt1.c: 
   copyright: 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009 Free Software Foundation, Inc.
   hash: 40109d2a58167504326aad2cb1b61592e621cfc075c9499cc9fc8c4428517863
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getopt_int.h: 
   copyright: 1989-1994,1996-1999,2001,2003,2004 Free Software Foundation, Inc.
   hash: 54606da8ebed47f74fd89143417b60de590aa10ec0620f8a7a78ebd0c36557e3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getpagesize.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: cc8c7a17126f58bdff2c354feec2eed60d44ff713caa57dc3075bc3f136601ba
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getpass.c: 
   copyright: 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 3c4602671b814d6de906dbab501db462e449060ec3b662a3cc813158469c1c41
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/getpass.h: 
   copyright: 2004 Free Software Foundation, Inc.
   hash: 715da55d6addef9aba7f35a6d79bf776995ba58b92e85e1355038b36d4dd757c
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/getpeername.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 3a2f22e1c404ed3915fd5dfe38a6d499d2cb70e1fd51eaa0dd53aadc7b7be703
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getsockname.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: db4f104421692ccfcaec0efbeefb8abf3170e8e83c3f80d16d4088a9570c0747
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getsockopt.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: cfa28503953c834f7db8e9d1e3113792201bf64a0b7ef2ef1e4f2cbb56b5ac98
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getsubopt.c: 
   copyright: 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc.
   hash: ec9a4323b51dc83a8a3dab5470517e58f1bb6eade183c6dc3eba458312ab0d3e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gettext.h: 
   copyright: 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc.
   hash: 136f1ff682700ad9f5fb60428eeada20f160e6ed38a19ad78bd1dc4e440f55f0
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/gettime.c: 
   copyright: 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 77086b931aa5e0345ebf249afe25b980450af522098b0dc7db39c72cda600702
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gettimeofday.c: 
   copyright: 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: cde7080c035c43c360bf0a39981d8e1f56a5745a9f0857f3fab617c0414c9aa6
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/getugroups.c: 
   copyright: 1990, 1991, 1998-2000, 2003-2009 Free Software Foundation, Inc.
   hash: 270b3c42be956bed158bfc6996f80f6ea8860856d9d24ce150bc04e2d49c0cb4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getugroups.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 5a293b9aa238d490fa967e3b2edb180d4e6dc234cc662fd796ebefe226ef0c7d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/getusershell.c: 
   copyright: 1991, 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
   hash: 1fd7fb9cb095692b1bf2300b27d245389e99a34347ace403e72b60d4bf3dd633
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/git-merge-changelog.c: 
   copyright: 2008-2009 Bruno Haible <bruno@clisp.org>
   hash: 1eb639ccc3a04697cdb5744ebbcb63f90893e0de7ec866b6dd449e350d28915f
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/gl_anyavltree_list1.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_anyavltree_list2.h: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_anyhash_list1.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_anyhash_list2.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_anylinked_list1.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_anylinked_list2.h: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: ebec01e1e27b8f47a348c6c8aab61a6cd8a6d756d7af2d6af0fb0717ebac9699
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_anyrbtree_list1.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_anyrbtree_list2.h: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_anytree_list1.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_anytree_list2.h: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: 40c2faf4dbc261cf4e9ef93bd5c202d96530b5ad6198c8421f85b2d5c9e841ef
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_anytree_oset.h: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_anytreehash_list1.h: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_anytreehash_list2.h: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_array_list.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: 0c25ceacf9c0bdb5aab3741b0cb9cda44011e1dc5d268cbc8bf5101e0acce283
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_array_list.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 863f801e67908ee9891c3f0dcb4f8ce0e131de5453303e2a7790b0bd3958ca0a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_array_oset.c: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: c819d4f4a184e90641f6cefcacbf6b02abed3b6e38373b86c138dea7cac916ac
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_array_oset.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 019de04fadf81baec6bf31de9ff73bb78d4ad248796b60a6875b604a8a4fbaa7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_avltree_list.c: 
   copyright: 2006, 2008 Free Software Foundation, Inc.
   hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_avltree_list.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_avltree_oset.c: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_avltree_oset.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_avltreehash_list.c: 
   copyright: 2006, 2008 Free Software Foundation, Inc.
   hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_avltreehash_list.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_carray_list.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: 1231124fa2b6eb2388f59849dfadbcc1121ac93c1498182180307abef125f81e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_carray_list.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 69dc4efd9c2c04954ad4b58ec33e4e452068e7afc4bd466a824816dc6a94dc82
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_linked_list.c: 
   copyright: 2006, 2008 Free Software Foundation, Inc.
   hash: ed7862364a0ad9a0b599013e8efaf9a1bd4ca2fee8ca914048d25296fa8a55af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_linked_list.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_linkedhash_list.c: 
   copyright: 2006, 2008 Free Software Foundation, Inc.
   hash: 0ac3aac0adac6ac1565820f39242ce8abaf6ce35fe9f110d5bda696eb80db47f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_linkedhash_list.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: dd97ead793ac89798799ec721b21cc9e52051b5bf68d0c4b5a0437b938a30069
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_list.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_list.h: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_oset.c: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_oset.h: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_rbtree_list.c: 
   copyright: 2006, 2008 Free Software Foundation, Inc.
   hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_rbtree_list.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_rbtree_oset.c: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_rbtree_oset.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_rbtreehash_list.c: 
   copyright: 2006, 2008 Free Software Foundation, Inc.
   hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_rbtreehash_list.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_sublist.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: 73915aa3876fd8f8947afe4eea6a3383db1680e283ed8da437d4ce635e8148d5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/gl_sublist.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 6b2c4954c29b3c4f64ecfc9ea385e7613778fe57581326d0bb0865f30f47bdf2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/glob-libc.h: 
   copyright: 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc.
   hash: b8ac91c8cae0271efb81ee15e750224494a993f3198db3e110c2affbe1dbbf6d
   license: LGPL-2.1+
-  license_text: ''
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/glob.c: 
   copyright: 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: f71e836c564095b672ee61d58fa2acf0272842c03360d1642e7ada6d132305a0
   license: LGPL-2.1+
-  license_text: ''
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/glob.in.h: 
   copyright: 2005-2007 Free Software Foundation, Inc.
   hash: 6064b1858ef6f12b46d80c41a6c8e25567a40c42ea0a9e7712fcbf75d7d1b499
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/glthread/cond.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: d5641ae46998e1a8654c5e3549b9c7b3db1d3ca85dd8fe7f311bc8e674cb71e2
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/glthread/cond.h: 
   copyright: 2005-2008 Free Software Foundation, Inc.
   hash: b3332b7fa3f32abab59fe03fbc119d02861b28da6534ce9ad1f3469f070f0971
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/glthread/lock.c: 
   copyright: 2005-2008 Free Software Foundation, Inc.
   hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/glthread/lock.h: 
   copyright: 2005-2008 Free Software Foundation, Inc.
   hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/glthread/thread.c: 
   copyright: 2005-2008 Free Software Foundation, Inc.
   hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/glthread/thread.h: 
   copyright: 2005-2008 Free Software Foundation, Inc.
   hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/glthread/threadlib.c: 
   copyright: 2005-2009 Free Software Foundation, Inc.
   hash: 2294600f29fbe5bce62a905bfe009f89a1c37bd29adcd4b57528e33d3e793a06
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/glthread/tls.c: 
   copyright: 2005-2008 Free Software Foundation, Inc.
   hash: 23dde3cdce3671ccb6ea2e6d89bad99e9b6be9e40ad0295a2bc4025aa4e99f07
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/glthread/tls.h: 
   copyright: 2005, 2007-2008 Free Software Foundation, Inc.
   hash: ed954c215d967d813727cef3ec96b920dbfecedb4774907236526505e9fc97ac
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/glthread/yield.h: 
   copyright: 2005-2008 Free Software Foundation, Inc.
   hash: 2bcbee6893754730a99361ac72c8b8af2bcb514f7ee153772ff69c10a6ad7ea7
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/group-member.c: 
   copyright: 1994, 1997, 1998, 2003, 2005, 2006 Free Software Foundation, Inc.
   hash: 8474fc86e2ee602d1afb18ec7ebbae7f9f83d113d63848cfb4df91f6b741bbad
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/group-member.h: 
   copyright: 1994, 1997, 2003 Free Software Foundation, Inc.
   hash: 563dcdfc1c58f40bf17d5ab635d790c0c7844c61ccd6e496de34fa33a2b3dd40
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/hard-locale.c: 
   copyright: 1997, 1998, 1999, 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
   hash: ac46d3e77162a575cb9cd0c05179c4a69489214f6bc3c02f037007dfca33d5eb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/hard-locale.h: 
   copyright: 1999, 2003, 2004 Free Software Foundation, Inc.
   hash: ecaf6cfa27e7cf1f1d6352bb186bc8e4e65b5fdfcb09c13e99ef463705a8fb0c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/hash-pjw.c: 
   copyright: 2001, 2003, 2006 Free Software Foundation, Inc.
   hash: b468ec2f4a022e97eaf348f80c034c2e2e60123e1ac7e7616870d776d32f223d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/hash-pjw.h: 
   copyright: 2001, 2003 Free Software Foundation, Inc.
   hash: 102a798ca5da9f9351c39aa2c91082bf9d774f1a330d81b924966f58543eed81
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/hash-triple.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: fbf36f90dc1c8954ed95b4cccf669147164280573695a4286b79f36dc4c1c4ec
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/hash-triple.h: 
   copyright: ''
   hash: 96088774b989d1fc41e81f6377fbe2c1a17baec684be47bbca7ec9a7c0071c04
   copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: 4062f069a5ed949dfecf5ed42bddd98a48a5090946d9b54d800d6fa02c4c611d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/hash.h: 
   copyright: 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc.
   hash: f6f040c23d292aacf272c2311ed2e73b4e442125219242180ca61b8a8b8a01c1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/hmac-md5.c: 
   copyright: 2005, 2006 Free Software Foundation, Inc.
   hash: ed5bd8c5068d05ebc413d1374482c55577681191971dbfd83a866beb78da5152
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/hmac-sha1.c: 
   copyright: 2005, 2006 Free Software Foundation, Inc.
   hash: 4bf9541934465ef6d67baa91aceb2287bc67777ed6f7c25c0952c43c6ea464a8
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/hmac.h: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 567a64cdb7bc0339a02d4df869ded8aab7a23849fbd9e981af8a9a9acfa0d215
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/human.c: 
   copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: e32265ab4d043a7abcb8f615e2cc58a500928f0421d37ecc9d774895580c1e4d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/human.h: 
   copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 9cecd9075608ba01827d4b74ea741b74eeb0b933f1a8850b7163cbfefaeaf456
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/i-ring.c: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 04cc3226eee4b74df051e43d1b1131567b9837369d3dd9f02a53ebc685f1607d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/i-ring.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 83d5e547a1b2282a81722d24d3fd7ab460d6d5d9062532235e0030df6de1bdb2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/iconv.c: 
   copyright: 1999-2001, 2007 Free Software Foundation, Inc.
   hash: 3059e46d2d2c44be2ae300d27f485ee07d544f254865f96ebf86dea813b4fffa
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/iconv.in.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a0c00abb098262610f94109af9bc3bc9f27219dd9f3169ad081a47cd9228d1ca
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/iconv_close.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 4871e1d8a40deb9c674779c24cf93e04b326ab61be8bcb4cc8e739d22ba70961
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/iconv_open-aix.gperf: 
   copyright: ''
   hash: 6da2acfc8d64cb160d117fcf2ae6ff0c1074e75e98ec00cebcbcd25c91ff6c71
   copyright: 2007, 2009 Free Software Foundation, Inc.
   hash: 9ed1da2147b3e675bbd6775a42ab67d25e2fe781f6cdf15eaab5c231273ff0e7
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/iconveh.h: 
   copyright: 2001-2007, 2009 Free Software Foundation, Inc.
   hash: 67e4aaef11864ffbdc1e1f005051bea04babd77da24011ef95dbb4d36320570e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/idcache.c: 
   copyright: 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007 Free Software Foundation, Inc.
   hash: b9013a2865d4a3daaca3b55f2be4ed9e3a20a075a05ea60d26ea660978090977
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/idcache.h: 
   copyright: ''
   hash: be4efe8ffdf2e8d49697677451ff6b5db99c836286bace3d23e00fe57cf35725
   copyright: 2009 Free Software Foundation, Inc.
   hash: 7f9a23470304193f0c1f172af0a8809eabc7b87a17c08a904e03e6f0e23c4412
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/idpriv-droptemp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 489bb045e6211eb0d6389cfc83518e2fe2ddc45fe2c192956d5403520ab12454
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/idpriv.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 46f34c0a8796bc8842508928d2398c9e0348051b305656e2e8a6b0a7b6f16b85
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/ignore-value.h: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: b844f7425a0066e987565375e711d4932b9f502ff6f149a93c5ba9120c99ea63
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/imaxabs.c: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 4c3cd71956269b0c624236e9f02355a8ab08d726ee6663e731a88cb79a85330f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/imaxdiv.c: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 1c1e3f382e0b77378c6c8f9632d7c4635f390115c0897a74b6b7b22a3ac34be7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/imaxtostr.c: 
   copyright: ''
   hash: c5ccba8a9cadbb5e7d6bcb207caa40a490337d0f938712b6886792bb1c3f750f
   copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc. / 1996-1999 by Internet Software Consortium
   hash: bb85be451bd6abe2730ae9c900eca3d5dfeb58717a5fe8020fd32c3197efe395
   license: GPL-2+ and ISC
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2, or (at your option)\nany later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n\nPermission to use, copy, modify, and distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\nCONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\nDAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\nPROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\nACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\nSOFTWARE.\n"
 ./lib/inet_pton.c: 
   copyright: 1996,1999 by Internet Software Consortium / 2006, 2008, 2009 Free Software Foundation, Inc.
   hash: 33b53b62f48e6b8843c4109e0cb9632ed41cd3ff07ea81a3842fb24a3d42781e
   license: GPL-3+ and ISC
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.  */\n\nCopyright (c) 1996,1999 by Internet Software Consortium.\n\nPermission to use, copy, modify, and distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\nCONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\nDAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\nPROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\nACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\nSOFTWARE.\n"
 ./lib/intprops.h: 
   copyright: 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
   hash: 9e2808fa7e1039a775f0131499ed427895f2ae4376bf394d44e98dc59d256c3b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/inttostr.c: 
   copyright: 2001, 2006, 2008 Free Software Foundation, Inc.
   hash: 1890559866d6095b73e83459b5eaca3ea71812c130099e512534096ef240c29e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/inttostr.h: 
   copyright: 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 7f7f2820aac6266245de58217005c72002285153e793b1bdbdbab45aea9b2234
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/inttypes.in.h: 
   copyright: 2006-2009 Free Software Foundation, Inc.
   hash: b572e765fe79d49fffbc38520ba9a41cf3b650f9078db83da161ddf1bd81d03d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/ioctl.c: 
   copyright: 2008, 2009 Free Software Foundation, Inc.
   hash: a838bb30b06340f3dd9a82218a003ea0bd38e4312c6342ae7f20c6bc1fef878b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/isapipe.c: 
   copyright: 2006, 2008 Free Software Foundation, Inc.
   hash: 457e1ad81d87c14336cc33a66c0a6470db91a5d315e83811d98e82aab1dfe238
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/isapipe.h: 
   copyright: ''
   hash: 1e08bd60adc2a94f785eb57858cc60eee319d0250d409627b746953c9778a34e
   copyright: 1990, 1998, 2006 Free Software Foundation, Inc.
   hash: 03760bca801b4b55e9e0a1e0cf3b2df572ad1dc4a10cceac16254afd692ad1f2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/isfinite.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 040962d83f2dc48a4f86e204594272a3a1345da3bf72f77a0141696c2e67670d
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/isinf.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 8b36f7949b786a5b398b697020f0bae0094e677bc8237320acdf88dd784c4f27
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/isnan.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/isnand-nolibm.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/isnand.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 130313c72e69a6238a9736af813940f148965be7cd35509e7a7db5af4b502737
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/isnanf-nolibm.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/isnanf.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/isnanl-nolibm.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/isnanl.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/javacomp.c: 
   copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
   hash: 5510a586bdbed690c0f58f407e86f128dd19f69e30f7b763fc80645dfdb5fdab
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/javacomp.h: 
   copyright: 2001-2002, 2006 Free Software Foundation, Inc.
   hash: 7796f276d24731ee6d3c7f5294adfe566e8c046007020386e7f14820b6e0719a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/javaexec.c: 
   copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
   hash: d5c2f1711f1f3dd4c31a2579a9a93a3f361c1b1b03e78713f1935e5c360e3e01
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/javaexec.h: 
   copyright: 2001-2002 Free Software Foundation, Inc.
   hash: fdd928324e8ecf1d026624ada4377dc47be047d3e38b42a0456e1dec3b50a51b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/javaversion.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: fdead42e957d45aad5a32be39fc000b965f101ba1255624f9b54cccc347dab26
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/javaversion.class: 
   copyright: ''
   hash: 2bee26b0b761a52a418a6488d94be8af824a30a3f87f50cb8d35f4b7a54a13a6
   copyright: 2006 Free Software Foundation, Inc.
   hash: 29a446b837cf48407147af943a7093bdb31bb10c00fc791eab8870a4acc0602e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/javaversion.java: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: a97b370d2fde64e69acc4e2896d1da82e09cbf28058f4565b2f61d6433088d72
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/lchown.c: 
   copyright: 1998, 1999, 2002, 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: 953d98a6f7fe6ee1359d3d4946aa47ae6596a61298964fd3c03b359f351f0338
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/ldexpl.c: 
   copyright: 2002, 2003, 2007, 2008 Free Software Foundation, Inc.
   hash: c540324ac2ca2517b41b719aad57bf1773ee104baf901c03daa8bbf5208d3e3c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/linebuffer.c: 
   copyright: 1986, 1991, 1998, 1999, 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
   hash: d85578cc459795d236f48e817ded298d632fa6890aac27376aecf0c47a856fa8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/linebuffer.h: 
   copyright: 1986, 1991, 1998, 1999, 2002, 2003, 2007 Free Software Foundation, Inc.
   hash: 34656b0c4b8d689a203a09d7b36721f38b76bcb871571a8c4b0d923840a9fe58
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/link.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: c0b30ef6d1e001b2928d2bb394b5762a98b6b6ede802eaa83c1319c2e03dce1e
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/listen.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: c6134f3762f75b62f22278b0c4dd5119a598c12d4e5c20957e32c6cd33314666
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/localcharset.c: 
   copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc.
   hash: 1548af2400728ae263f6a2bb0118e7778437b3639878649dc0257a527e4e0629
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/localcharset.h: 
   copyright: 2000-2003 Free Software Foundation, Inc.
   hash: 119c2de543436735fe784154d840a118ae31756c5fbbbb7f30b1cd3e2b54616a
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/locale.in.h: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 208f60fb61b19efcd077917af5a61aad7ac1210ed158ba35d67c172ead537649
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/localename.c: 
   copyright: 1995-1999, 2000-2008 Free Software Foundation, Inc.
   hash: f6fbb8df7f52b6eafa7552a49d6e5eee9816b690a0d89c2b03462044652914d2
   license: LGPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
 ./lib/localename.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 6a79383773a37a8b6886c6d119e3890f98db4a414a013cc80eac6449b8e5fe4b
   license: LGPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
 ./lib/logl.c: 
   copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
   hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/long-options.c: 
   copyright: 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 4365412d9fe5d790d7ad8e3e03649fe0e872a7e666491c956fbbdaded0030cc0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/long-options.h: 
   copyright: 1993, 1994, 1998, 1999, 2003 Free Software Foundation, Inc.
   hash: 4f9add7cfbe1ff66d2f74e25eefc73829aef3fb75c1d70eb1760a07c288b5a31
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/lseek.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 02f75754750c8263d25c4282d7b6167a2d40d0c8f8cf8a952486fc65dc812321
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/lstat.c: 
   copyright: 1997-1999, 2000-2006, 2008 Free Software Foundation, Inc.
   hash: 345ec037534ce5c96f9599c78e87c36be1fee4649a8ec187168445e6bb2d1cc7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/malloc.c: 
   copyright: 1997, 1998, 2006, 2007 Free Software Foundation, Inc.
   hash: 7754ece2820e7ddc5a364b370c2560187d53c00f4695409abd04ecedeff2aa94
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/malloca.c: 
   copyright: 2003, 2006-2007 Free Software Foundation, Inc.
   hash: e0f9431b8801560a2ec9fecb1893f9c1443bd37ac24a4785196d0c03321f52da
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/malloca.h: 
   copyright: 2003-2007 Free Software Foundation, Inc.
   hash: 56c3717d1d0f5f3cbdf6f2b581ad097dd47935c459a239db9ca84db9fd339f1c
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/malloca.valgrind: 
   copyright: ''
   hash: 93322a37edfb58a01aa98fa0cc0c4887861c816c873681286b20873bee36e170
   copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc.
   hash: 1d71d3fe653ddb331f364aadd7e0db6e31fc0a63300b049925c39c9120777288
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbchar.c: 
   copyright: 2001, 2006 Free Software Foundation, Inc.
   hash: 1b800acccc08b7bf9876ec834e26931f8cbc2ca5f69d788879010a196026a89a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbchar.h: 
   copyright: 2001, 2005-2007 Free Software Foundation, Inc.
   hash: 419eac128ee022faceedcbce731388308f72bf42d570dcc74d67721645d9ad75
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbfile.h: 
   copyright: 2001, 2005 Free Software Foundation, Inc.
   hash: f148ab5a88b3ab7847530f40507a08b257c44574da3e3824feca0501fc1ff87d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbiter.h: 
   copyright: 2001, 2005, 2007 Free Software Foundation, Inc.
   hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbmemcasecmp.c: 
   copyright: 1998-1999, 2005-2009 Free Software Foundation, Inc.
   hash: f5ab326ce04660d7c088d2589429beeb7310d839bd0559a3a37f42497870f830
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbmemcasecmp.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 85c672759815348bfc4928739797c22787d4f55386d3bb5effd4685cd12f7496
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbmemcasecoll.c: 
   copyright: 2001, 2009 Free Software Foundation, Inc.
   hash: cab139308f71e0434b70aeaf0f3dbed1381ead7271c0d992e00b93438c1d6499
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbmemcasecoll.h: 
   copyright: 2001, 2009 Free Software Foundation, Inc.
   hash: 746e4714316afcd2eb3d13bb38d3c2776496e6f2f77b745a1d694e53a6f74a61
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbrlen.c: 
   copyright: 1999-2000, 2008 Free Software Foundation, Inc.
   hash: 34f5f51edaf35ee0284c34df8f8288a04625716cf5817d6eefc9c8dad9b06473
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbrtowc.c: 
   copyright: 1999-2002, 2005-2009 Free Software Foundation, Inc.
   hash: 76ee0ca75066f435d593cbebd63b7abab83e289e38af89d03f5fbba1a1b9ca8a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbscasecmp.c: 
   copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
   hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbscasestr.c: 
   copyright: 2005-2008 Free Software Foundation, Inc.
   hash: 067b762668e77d779287cb9e16e0d9d0d54425834153a41df667fe96abe6d5ea
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbschr.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 0400e89b869bf824f778a6860325c96dbf6fc811f1872770a0bd662a5af0f847
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbscspn.c: 
   copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
   hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbsinit.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 295fe542f5ad6e27ca5816217b9805d2428ea1aabd57962bdb2d3306a6c769fb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbslen.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbsncasecmp.c: 
   copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
   hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbsnlen.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbsnrtowcs.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbspbrk.c: 
   copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
   hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbspcasecmp.c: 
   copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
   hash: 07f7fe969a7c752b56b078f855dce95806287b22873440d798b831f5629d3589
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbsrchr.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: aae99e9b396b908d7c7fcd21ce6bcb2e4aaef1810a36771e91c2436918d26978
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbsrtowcs-state.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: c1ee8e5f9ff539152510bee610b85b5129447259bd0740852310fbe0aa05dcfb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbsrtowcs.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbssep.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: e91f2687c32b2d7fbb211e0e114d331fff93022b0c657cc6b2a6a934cb3b67b4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbsspn.c: 
   copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
   hash: 96a736a43629e5ae2f508a50e854f65078635e6552ac998e4b72d981b4de9333
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbsstr.c: 
   copyright: 2005-2008 Free Software Foundation, Inc.
   hash: 05f8fd03123cf70b50e8a4ca02b2bef23c41c488ce1f33530c0e5b912b20898c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbstok_r.c: 
   copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
   hash: 1f180b2d8a6c65bfff77cd72bec0837f16a2a39411db702acaeeddcd0797a7cf
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbswidth.c: 
   copyright: 2000-2008 Free Software Foundation, Inc.
   hash: 20f724a9c2c1b2039071c36cc6fa2828284e3561211957e7800e0275df016a16
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbswidth.h: 
   copyright: 2000-2004, 2007 Free Software Foundation, Inc.
   hash: f66eede184bcac83a9639c243acc2e81ac0b5c2ce302a8ef776ce3896ab69682
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mbuiter.h: 
   copyright: 2001, 2005, 2007 Free Software Foundation, Inc.
   hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/md2.c: 
   copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008 Free Software Foundation, Inc.
   hash: 04204819baa32da88084b2206ea067ea6a78cde426759ad1eaf12598747f9715
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/md2.h: 
   copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation, Inc.
   hash: 1635bb2eff1d6c4202462a1493aa8fa1122f0b8c628f9d5e1a1bd1b959fdab11
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/md4.c: 
   copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008 Free Software Foundation, Inc.
   hash: 0862a8a513fa370cc94a968cac68ab365d1c9a3648137d2af8aaf5c719a4b737
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/md4.h: 
   copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation, Inc.
   hash: dcc57d0ac574c78b51a7293f7ad573d8a4c524cf2988b283d86fc5ff1b5f57bf
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/md5.c: 
   copyright: 1995,1996,1997,1999,2000,2001,2005,2006,2008 Free Software Foundation, Inc.
   hash: ffa2dd5235fc5bc1cff6f871fca1f3804da0f74bbdcfa48050479b24225ac1e6
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/md5.h: 
   copyright: 1995-1997,1999,2000,2001,2004,2005,2006,2008,2009 Free Software Foundation, Inc.
   hash: e0f5a2253099054a9a71d12e1df625a6f7afa5bed4c53400f687e1b319bd0f95
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/memcasecmp.c: 
   copyright: 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
   hash: 807b6ac25ddd6d8ae26a583a2ae26a3a1cfb85acd6c8c70fd81e0dcbb30b7905
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memcasecmp.h: 
   copyright: 1996, 1998, 2003 Free Software Foundation, Inc.
   hash: 18edc330f64fe3fe7683e14bcb89316afede0ebbf8ce49bc0abcd324eaecdf41
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memchr.c: 
   copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
   hash: 1b3448d898ff7ee9149e469a0d1dfaa91777ad13ac93aeca526c1d7534006686
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memchr.valgrind: 
   copyright: ''
   hash: c4d33a28f691c84b723d8efc9fcdf251c64affe0008457a7b2fe246c1493dff7
   copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
   hash: f8a8a07596253d814b66f51a219b27446056819948a185735c326a34032971de
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memchr2.h: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 5b2e0321ef5edf4284193b2bb4a6b3837d05ba4d909864b2faea89fa327027c0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memchr2.valgrind: 
   copyright: ''
   hash: 44d9292cd45aeb29569397844ca468602c6e200a76dcba52f4f852fd64fab480
   copyright: 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software Foundation, Inc.
   hash: 115e253d20ce838f3f9a7b7bdb87ca7bc9c5f1cfb6217d3659c62d22b284250f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memcmp2.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memcmp2.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memcoll.c: 
   copyright: 1999, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
   hash: 45afdae44d3da5345c4e1ff5bbbe23a35f6c8f04d1f7913937376f96d3927dd6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memcoll.h: 
   copyright: 1999, 2003 Free Software Foundation, Inc.
   hash: ceebe2fe05b83b4b212dc4dc72283ab2d56ca2e8778bd92fd1867d9df2c2b1ba
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memcpy.c: 
   copyright: 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
   hash: e77f76fb0280fc06e306294c9d397a3319c397fa293104c6f3c231c149ae3597
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memmem.c: 
   copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software Foundation, Inc.
   hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/memmove.c: 
   copyright: ''
   hash: bbdc865dae97e17c0683fdb3a8eada83f89acfb60003bfa558dc1a7bb63fd59c
   copyright: 2003, 2007 Free Software Foundation, Inc.
   hash: 162deb5da2eb01183cd1ea3c6c29887ff8f634735322780be17607aa892ec4a5
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/memrchr.c: 
   copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
   hash: 7df103a286eed4dd6f31836264675378b140d030d4dcbb3e810f24d122227d43
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memset.c: 
   copyright: 1991, 2003 Free Software Foundation, Inc.
   hash: 40655652ef5140299df50fcd8dbb02a23d78c3961e6078fcf866232c481752b7
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/memxfrm.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 925c125df6e81f5c5be0eee6a767546cf977fc4e55b5712c490cd84f80061da8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memxfrm.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 8fbe3c5f0271469b59387f418cf5a7a39d02a67082c24952d53ad9e12e1ff3f2
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/memxor.c: 
   copyright: 2005, 2006 Free Software Foundation, Inc.
   hash: 95bea5a33c7fc7fa109f69789827d4274d5f8f8b0d8ad5e195fcfa3df0838ac5
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/memxor.h: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 8b8f42a17c5880f430a23152165a2a48a1d9ce6f523fcc08cf0fa013d207820c
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/minmax.h: 
   copyright: 1995, 1998, 2001, 2003, 2005 Free Software Foundation, Inc.
   hash: fc14ab477958a0d028d651e94f71938ac898148d7a4fb3641065e97ffc0033ac
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/mkancesdirs.c: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: fbf7223604ae868a286a8b7782520dcfecf8871450373ce6eddd4231d6987d86
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mkancesdirs.h: 
   copyright: ''
   hash: a956611cade93a9ab7ab7b3a953fd1555ed37d0bf625e985bf66067e1b158431
   copyright: 1990, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: cca87ad7e743252b92404f484d9be69bc26ebc17de6d3091edfe804910f54529
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mkdir-p.h: 
   copyright: 1994, 1995, 1996, 1997, 2000, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: bf444d5e7cf40b933757ee95b2fb1d8348f6c03d75afbb4b093609ff4cc6d27a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mkdir.c: 
   copyright: 2001, 2003, 2006, 2008 Free Software Foundation, Inc.
   hash: e036cb236f6cf2b150e76519fa45b1e2d5a887bf7d45803e686f5a302b0f4e66
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mkdirat.c: 
   copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
   hash: e9de0eaf6cda53b633eb6f3b637d1a89e21ee06ea81e2578412a0a1f4f33a0ae
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mkdtemp.c: 
   copyright: 1999, 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: 90c1ed532e82f71aea40266d94df8e15d52ef9622ee699ae2a3358ba9e0fa5db
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mkostemp.c: 
   copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mkstemp-safer.c: 
   copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 5dfad6cc702f2dcd88df092b3ebee11ef4795e45592e03d7f1c7841a9a5e48e2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mkstemp.c: 
   copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mktime.c: 
   copyright: 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 1a80cec494e14569464c9c913b8d639fde5ca46a2ad8b19c097398be567c3987
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/modechange.c: 
   copyright: 1989, 1990, 1997, 1998, 1999, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 04c294fd66aee3490b759ca54e9bbc039f30063774f91b695f200425413f52cc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/modechange.h: 
   copyright: 1989, 1990, 1997, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 9e926e58af501dd9da1d504389fed35d905b66bccc24a4ab3a30e0e2eb6d8d5b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mountlist.c: 
   copyright: 1991, 1992, 1997-2009 Free Software Foundation, Inc.
   hash: 8131b2bba35b93115b79375a032a364f5821a6773dbee18aa26a24e896829459
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mountlist.h: 
   copyright: 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
   hash: 19c16002f5ad4f33a7ebd8c726e357e18d9a7f2f8ae6b1a42459ecb2eba2e0c8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mpsort.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 754a18c37e339daeaa3129f85d1e11a2e8eb04ce0b9b382d25a02b40dee33112
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/mpsort.h: 
   copyright: ''
   hash: b88563a5eb4834d0691531bdfead0f4a1c6441fb83fca6b4d49b862ca6d4e651
   copyright: 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
   hash: 2fb5279d8f37cfd3ec3a500d9127e805131b37d39fa15187a82bfefb3b7fbe77
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/netdb.in.h: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 313d83faf1e58b363f56df9abd41c694cc877655a1f383b9c96c52f2b5492090
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/netinet_in.in.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: ba843c9c4800f24e66a3b94aefe21730afdc0233254175a20b3f503b12b022a1
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/nproc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/nproc.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/obstack.c: 
   copyright: 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: c51f2b4012075fb4a6f199dc311d6a80a6da3a59080e65c78ab906d198fa52c8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/obstack.h: 
   copyright: 1988-1994,1996-1999,2003,2004,2005,2006 Free Software Foundation, Inc.
   hash: bec03a89fef72b0110d29ed4efaa664fc79fd03132e71c57e2088432a3af65ba
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/obstack_printf.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: ec3b6ee4cf323b218382e7b0b4c647e67f88d44b9bde87ad0faf1004fa480c69
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/offtostr.c: 
   copyright: ''
   hash: 97beafafd8e31c4c52db5355eb0acef1fa5771aa4b21e8d75e9355494786978b
   copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
   hash: f5c5c83637f90b3f8e7310337390ff817b1c3eb020f5f944b7d2cc04f809f581
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/open.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 1700deda821715bdbac72d0da2e09c3ce1dc34279381170e21eab9187e142c63
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/openat-die.c: 
   copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
   hash: c32e1b799da53de52b5bee09ffcbbe4f2b4b4db28ef45bbcdf0af0346fee99c8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/openat-priv.h: 
   copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
   hash: de3bc79756c38bf4c0d3930bd43e5559159edaff0ee82652ee068d1f3ce3507a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/openat-proc.c: 
   copyright: 2006, 2009 Free Software Foundation, Inc.
   hash: 5adc0d5b70d50bb5b44d3de2819622c2e2f6ebbb06b868b4013b245d24e772e3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/openat-safer.c: 
   copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
   hash: 56934bd9aed0b0823c2ee17a8b46147af53d10daea72b9ca7c1a132ceead70d2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/openat.c: 
   copyright: 2004-2009 Free Software Foundation, Inc.
   hash: 2cc87825fb5511fc2a3e5e700dceb67002be17775fa619eb19d96a15d8b5be2a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/openat.h: 
   copyright: 2004-2006, 2008-2009 Free Software Foundation, Inc.
   hash: aef33cd705f809a57238d48fd05fb4491c97687b372cecf7c69341cdcab2f654
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/opendir-safer.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 2429dbf23e1213eb581af6196c671f69f35fed4b342c7fd3fff0d504356d93a5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/pagealign_alloc.c: 
   copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 556403e976c41313f9325e500d34e5165c9f3173eeb22c7d1e80481b40a08425
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/pagealign_alloc.h: 
   copyright: 2005, 2008 Free Software Foundation, Inc.
   hash: eb99842218a16ee4d0c565f1ad99bb5143f4ee3a77e8dcce80a0bd95cf085cd5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/parse-duration.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/parse-duration.h: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/pathmax.h: 
   copyright: 1992, 1999, 2001, 2003, 2005, 2009 Free Software Foundation, Inc.
   hash: c643310e04770fbcc160973a5552561f7c122f2a5e6a61adba5b1f6f6073596d
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/perror.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 9a22ceeb839da7e1b91e96f5d0812174c06aa7deb3f1312c1b9d137bbe191602
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/physmem.c: 
   copyright: 2000, 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
   hash: b06bd14f93155ac98d9a92df716ba22a1fa39c63b510a32beb9c06627c183012
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/physmem.h: 
   copyright: 2000, 2003 Free Software Foundation, Inc.
   hash: 3a6cbe3d952eab59a5cd17b28b2b869ebdc9b8f19c1eded770524ea7c863270a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/pipe-filter-aux.h: 
   copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
   hash: dd7eec8d6ec8c14b97efee5589cb013a0d4bf682e94019d235b35fead5b42d07
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/pipe-filter-gi.c: 
   copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
   hash: 7b798dfae0edb799145d56afbab5ad04a9af74dfbe6bb5614fcf4f5357e51aea
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/pipe-filter-ii.c: 
   copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
   hash: 9049b5c7b4ed08a8c9dd5a090c5f0632c4f769691c9d0bc3abafd2ed205c449a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/pipe-filter.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: cb4091cc5532a11d2184725fbafb495b5dc0e0e99d888529d15ec9f6ac8db90b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/pipe-safer.c: 
   copyright: 2005, 2006 Free Software Foundation, Inc.
   hash: 8b0ecacdeacd13de295a1575a525fb82a56a4a6315081874b0c32cf2cfe958e0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/pipe.c: 
   copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc.
   hash: 4bad855b30e4735483d65e1b608087804110d24a67ba16cf7ed987c5f5bcd5c2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/pipe.h: 
   copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
   hash: 8e9240d53e76426a4087f6a35ebd4b865be3105da821c9139043bf9232c4c171
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/pipe2.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 61562647025e035a2e08fcbba935557f0ce2b3a273ca93855a3184d523bdc97f
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/poll.c: 
   copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
   hash: 033d3d5afa8977c21203f543b7bac8bc53f51acf846088848087638d72ff8bf0
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/poll.in.h: 
   copyright: 2001, 2002, 2003, 2007 Free Software Foundation, Inc.
   hash: 75e680c286d79502b2c414e7b8929c31247c980612c852936f7ca1d1593362b8
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/popen-safer.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: da9c884b0efa4edd9844b332c14b060d0cab98c6049f38731a3d590b89a00d06
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/popen.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: d7c25fe6b43efdd98d5042c3424eba51cd53ea80bb948f9a92a099fb8c02142c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/posixtm.c: 
   copyright: 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 4ba1c7c3e6714bb668acbece4b919082141b0a2736fb94262f2eb8e2598235d5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/posixtm.h: 
   copyright: 1998, 2003, 2005, 2007 Free Software Foundation, Inc.
   hash: 942d45b6994556544668951294f7b94af106ac8b0b2ce064003998679266d698
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/posixver.c: 
   copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: f931363ed3fde9bde1676789900417a39c317a4fd6dd869b69d1dbe7ff3a035a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/posixver.h: 
   copyright: ''
   hash: 36d1d0fffe2504bfc87051722c32887652d6719a80a23e93cc01daee61006134
   copyright: 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc.
   hash: 12bb86c9307ecf947c3e487e6bf53531b56f83f43d5e9babf59a2a57cde92c7c
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/printf-args.h: 
   copyright: 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc.
   hash: cf140b5cb22fa0718dbc5a41c94ab6327a7a447612d93e4b6c51016418701bc8
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/printf-frexp.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/printf-frexp.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/printf-frexpl.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/printf-frexpl.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/printf-parse.c: 
   copyright: 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc.
   hash: e87d67950b9b8fd0411ed7bd3201b3ae9eb97549cf5d6255c2f6065e46d1aff1
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/printf-parse.h: 
   copyright: 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc.
   hash: 1cbba74b564ba38b983e35311a8dcb098229112ee464a2940dae6abba3a12247
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/printf.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/priv-set.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/priv-set.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/progname.c: 
   copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
   hash: 92661819f28e9fd0cb1b6c24c52d6f96e2746bf9eb417cf6cd6fb92a009d0fbb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/progname.h: 
   copyright: 2001-2004, 2006 Free Software Foundation, Inc.
   hash: fb156ffb4593024e0b50a3bfa0f8e0c9d280dfe5cc173a7c2b3796e892b3243b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/progreloc.c: 
   copyright: 2003-2009 Free Software Foundation, Inc.
   hash: babc96a49ada0b13bd47d6931240b971ddf7a571a2c9a989c351f1b54caec1df
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/propername.c: 
   copyright: 2006-2009 Free Software Foundation, Inc.
   hash: 453584a838b6191dd3f10ed6858fbc73356af59689880952a06d1984c013e443
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/propername.h: 
   copyright: 2006, 2008 Free Software Foundation, Inc.
   hash: b709e58dcf9e44473ab7139d39df8d4143a783b73be0b4b8e5f589e2f37ff33f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/pthread.in.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: ef4cc2c979afda964299a12c9b1d50231399227aa30af97c27d6fad997de2255
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/putenv.c: 
   copyright: 1991, 1994, 1997-1998, 2000, 2003-2008 Free Software Foundation, Inc.
   hash: 17b29fb75137b2e5e475f2813253c186798f360d5711c1ac87ef1796680902b1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/quote.c: 
   copyright: 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
   hash: c4a8b48c291af2ee7a2a7f70e0a643b88950e3ade7d29053180a8e109d792efa
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/quote.h: 
   copyright: 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
   hash: 5d10e05c536ff1a439a2f8460f1e6ac91d61ba93ebf6280fe6ab090f9321d27b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/quotearg.c: 
   copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc.
   hash: aa0d608c0d77808b3ad8e91a0a3b802b9a13118b657be7df6bd43b7aec178ef0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/quotearg.h: 
   copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
   hash: 2e6f8072d5c251a83bae1fd9e1d85ed223633968bae640a6ab6e759963b50d0c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/raise.c: 
   copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
   hash: 50b03c3b985400bc1e7f8910337b51a9ce593ebd8b792aa1f1a1788960c9c26a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/random_r.c: 
   copyright: 1983 Regents of the University of California / 1995, 2005, 2008 Free Software Foundation, Inc.
   hash: 56ff6e2aaf2d55a023c78529f964988504c867e654d0df6993406e27656be439
   copyright: 2008 Free Software Foundation, Inc.
   hash: 45a83b9183090995a3bb18e9b251a511464e420d7fa99da1e03ce2d9bd3d4e6b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/rawmemchr.valgrind: 
   copyright: ''
   hash: f728bb18311f04d34ed0495880117ccaa59b4c6bc8ebaac82459903cfc3247c8
   copyright: 2006 Free Software Foundation, Inc.
   hash: 51c7d95dd1381f2a59ceb5c375cfb7998aec903e9b91e27baa7da0afa5e8468c
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/read-file.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: ca324b683cf28737c1848bb23eb0b92cdc0044ee67094c57e91c08bdbf81f53e
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/readline.c: 
   copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: 1c45ecec189bf0ab208143e3b0965baabebfcccb8f2389c02fe5ba6b4b7648a0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/readline.h: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 4cafc96af802460b1d7f54218bf92ca62cf6b7cd0a2abffc02d7ea516d1d1946
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/readlink.c: 
   copyright: 2003-2007 Free Software Foundation, Inc.
   hash: 4a11f960e0153527f36536d9b396257683b425331d992420cffc853dfec35ddc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/readtokens.c: 
   copyright: 1990-1991, 1999-2004, 2006, 2009 Free Software Foundation, Inc.
   hash: ffc9a757ad67bba5dcce13dfac14da216892391e5879cee666b99d8154c49b0e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/readtokens.h: 
   copyright: 1990, 1991, 1999, 2001-2004 Free Software Foundation, Inc.
   hash: 452dfbc07c636749aa830a30599c7c5bc109f4c51b72d8891b968640b102b9d5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/readtokens0.c: 
   copyright: 2004, 2006 Free Software Foundation, Inc.
   hash: 8cb5713080fed145a957a71a48ce5c11d1d74bd0964b2f90d2d52f9e643a1db4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/readtokens0.h: 
   copyright: 2004 Free Software Foundation, Inc.
   hash: fa2844a8aefa737f7d2630364652206697cebc7c5d15193fb3273257c1afa96b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/readutmp.c: 
   copyright: 1992-2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 6018c3b26e7b6cc70156a39368851213becaa215df3e58ef5966e9237d173463
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/readutmp.h: 
   copyright: 1992-2007 Free Software Foundation, Inc.
   hash: e4edf9b2cd3b4a9662bd1a50b7a068f8dadee724d6b47e05b5c629cc890cb0f4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/realloc.c: 
   copyright: 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
   hash: b65d6b9cadf8e53a3ff901459826791ef77acce1f247a65f3759c647442f3de9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/recv.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 86a2667aca771f6d5c7502ac7cbddf51018f3dea268d5a1461b98f7b9af5f095
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/recvfrom.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 76c2990bcd168811c2511e685b811321ebc18fb7257375d1cb2f7d025d90dd34
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/ref-add.sin: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: 384e11c05bb265e3613f6e8b6c445f77d0cecc679e59cddac3c606015c6f5fc3
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/ref-del.sin: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: 55d01b01839af2472b2f966cda363787756440f9ac8024938ea8dfa8b2323862
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/regcomp.c: 
   copyright: 2002,2003,2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
   hash: c2483b14cafcc8625bd4c467a5fd09efa0d50666fbb8a5fd38e2123b1ecb0945
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/regex.c: 
   copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
   hash: b01492f4d85ec55b5acc0f48cbe61e292c5b461a01bda985e49a53989594e947
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/regex.h: 
   copyright: 1985,1989-93,1995-98,2000,2001,2002,2003,2005,2006 Free Software Foundation, Inc.
   hash: c53492d2516ee161d8077ce24002a78d186df06b5c5941fa8401ef7998ac8375
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/regex_internal.c: 
   copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/regex_internal.h: 
   copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/regexec.c: 
   copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/relocatable.c: 
   copyright: 2003-2006, 2008 Free Software Foundation, Inc.
   hash: 0d1858bafd12c7ab346742483ec5d97e6efbdebfd46524a7a8f231696f2a22ac
   license: LGPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
 ./lib/relocatable.h: 
   copyright: 2003, 2005, 2008 Free Software Foundation, Inc.
   hash: bcbac1b3bdd53abac5276b593b5ab4e22160d29de32e77245f5d9a04269770cf
   license: LGPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU Library General Public License as published\nby the Free Software Foundation; either version 2, or (at your option)\nany later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLibrary General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public\nLicense along with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\nUSA.\n"
 ./lib/relocwrapper.c: 
   copyright: 2003, 2005-2007 Free Software Foundation, Inc.
   hash: c167810a619a4782afbe8842f06bdd194461d73cc0a1f4c1dfc0e5c49815a107
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/rename-dest-slash.c: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: ef1b249ccdf7cb59741f8b296b4aad87ef269ecddf2d084a4d560b83e6a804e2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/rename.c: 
   copyright: 2001, 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
   hash: 1f9e11ca836ae5b2fb8b9e66aed55f3d358c7e104a480df3fd71801eb0a0bb64
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/rijndael-alg-fst.c: 
   copyright: 2005, 2006 Free Software Foundation, Inc.
   hash: 49cc6c6e9d8de361675d0546671526e3109140364ce29855fbb8de575d6fee29
   copyright: 1988, 1990, 1999, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 018a558c35eb9dac411a0a1df8bc31f403fdd1d5de43451c3a4dfc748b0a4ed6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/round.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/roundf.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/roundl.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/rpmatch.c: 
   copyright: 1996, 1998, 2000, 2002, 2003, 2006-2008 Free Software Foundation, Inc.
   hash: 55373da72f4e3da7649f19e32ad56f0c83c97a9d3259a237b8997c00ddcf5b9a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/safe-alloc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9844c4950cc5bf374ef430b7dc9b69be026b2120e88864e26aea2bbf2855ae62
   license: LGPL-2.1+
-  license_text: ''
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/safe-alloc.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 5211b4e3531c33d28506f04532eeffb65e8df0d999c5b9a00e3f36d3fe7bf46c
   license: LGPL-2.1+
-  license_text: ''
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/safe-read.c: 
   copyright: 1993, 1994, 1998, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: d12efe172ef14861fdb86cf76cb61277327a60cabf2a7afdafc1ade15afb9187
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/safe-read.h: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 2667a28d26546c5be4bcaa1fca81b4e13cd518f9717d314db29d047fdd7494d6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/safe-write.c: 
   copyright: 2002 Free Software Foundation, Inc.
   hash: 6aa76f15c5e0ee9a8e0b1be63deb69b31fe263a9d1c5c10ffb2e8fe6dcd7c0f1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/safe-write.h: 
   copyright: 2002 Free Software Foundation, Inc.
   hash: 8179ca35d82597a466d03026c42e05761523d0036556a873fe42692f500476ae
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/same-inode.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 81b80979de8a7e53f45381e99597bc7390cfaa00e499dac502c31c58415b42a8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/same.c: 
   copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: ce1a1ec04e3aec75a5006861db979396761bc69c62096f1996e7ba2f5f3bbba4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/same.h: 
   copyright: 1997, 1998, 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
   hash: 01df5ca3af0102dba2561b287d19d5651e891876ac5c54f1dde91b7bd23bb64c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/save-cwd.c: 
   copyright: 1995, 1997, 1998, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 422df5e09ad67e75a7c147e25f3da9a175fa80d7259241a3da6155c5ce96f539
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/save-cwd.h: 
   copyright: 1995, 1997, 1998, 2003 Free Software Foundation, Inc.
   hash: 4b0e13da5aef3208b1bce2ab1b10c453cbf1e370c969b41bac7be51e2b76e809
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/savedir.c: 
   copyright: 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
   hash: 928cfb9bf8e834b1b6ef7b1825e58d6b44fd5770a7cea787dd66589c84e8c274
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/savedir.h: 
   copyright: 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc.
   hash: cfa56cb818e618c3fe57c975e9f0c5ba8723bc62e0de5473481cd5587cbe8350
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/savewd.c: 
   copyright: 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: 587bc08918885aa18f980c1c6950d2dcd55e2ffa0c869d562185891b6960dc6f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/savewd.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 6d491cbfc2163751c419f2376a46d56cb899e625395ca51efb08dfeb6ad2b7ea
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/scandir.c: 
   copyright: 1992-1998, 2000, 2002, 2003, 2009 Free Software Foundation, Inc.
   hash: 2bea6e6d81d5f7fd79619df895eaf13e5823217eeabbf1ef38c343dc53d17b06
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/sched.in.h: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 5c835c4e5fd04776b804eab97562bd18f61757bfecab83a838e62f90997512b6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/se-context.in.h: 
   copyright: ''
   hash: e71efe13fc9c187c71a5f39e76a5a4e4c03a3194a14acf7b4af3fb81c3d879a8
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 98707f0a63adefec5733713c576243f083b682775057a7d5971cef4277fc8960
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/select.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: db938a6d1b5d591ba63dd3673bb2ccd0ecd9f8b9fcaad86d3c607368122268a8
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/selinux-at.c: 
   copyright: 2007, 2009 Free Software Foundation, Inc.
   hash: e73ac0c418e767f09a8d77674df132f0b446c5448c43a1d9303e58907d17018f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/selinux-at.h: 
   copyright: 2007, 2009 Free Software Foundation, Inc.
   hash: 2e95007054f57abccc9c2dbc0df4520778025ef925f3b74873d5d58af819e36e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/send.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 47748f45a6a25cadf5542f9543f49778f7ea6b2c87fef1bf9926c8c66e7f5661
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sendto.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 634c06211e79ad265f869003e97612a84a67d40fa6d275ace86b12592b0a8eab
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/set-mode-acl.c: 
   copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
   hash: e859e38ad22b32346c568c33be9a662b92a792f63402be0645020fe91e7a865e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/setenv.c: 
   copyright: 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc.
   hash: 5927758c893aede52f8fdc5263d4117e4614fb619646a37d5464b249f19cc91e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/setsockopt.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 1fe9bb029b10267e47bbc61360ce31f9915584f8824b3da8569b084bba160c32
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/settime.c: 
   copyright: 2002, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: f3fef53696d8c8b81a746528ddebe430eabebc29f83bae24fefffef92380d23e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sh-quote.c: 
   copyright: 2001-2004, 2006 Free Software Foundation, Inc.
   hash: 27a65b308d278b6fdef8dcaac9558d0d90b8ff6974551e8892d1767765097bc7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sh-quote.h: 
   copyright: 2001-2002, 2004 Free Software Foundation, Inc.
   hash: e049a481e491c1fd1433d5f930becd727d362737d16f575f5108daf88ed3e08e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sha1.c: 
   copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
   hash: e6f4ad18bb6193ea3a3c57b7bdd4d4c371e65ba20e2af676b3fd8578c462c6e9
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/sha1.h: 
   copyright: 2000, 2001, 2003, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
   hash: 59bead7118f2949f37fdfa01470646bd275f2507e9be8ab76882bbe653057d9b
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/sha256.c: 
   copyright: 2005, 2006, 2008 Free Software Foundation, Inc.
   hash: 3425dcf95c1f50702ebec678cc893f4d4c851054bf580de3d9a3f56bd0e01978
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sha256.h: 
   copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
   hash: 66581e4bc70d286563b89d7bb632dc9f3591df5dc926494ef60ac5e1ffb478ab
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sha512.c: 
   copyright: 2005, 2006, 2008 Free Software Foundation, Inc.
   hash: 2d33540040b9cfd894cfda268216acf3ba9cf967d1e536a8661ae9bbf6b2e4ff
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sha512.h: 
   copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
   hash: ee0dec75a513f6772789a0b6bf0ee1ead955abeb34696a489d19ec6e13e3388b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/shutdown.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 51160b16d7393090800e4bf94a60a1df431f62ec86b1ae2f26a6c51152458de6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sig-handler.h: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: dc43801fc9a9f3dc8ba0d661a7db3e864cb14324b7c2cb2196f3b59a89fd6159
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sig2str.c: 
   copyright: 2002, 2004, 2006 Free Software Foundation, Inc.
   hash: ca70d2eda30326ad5a9d6cf9336be308827519fa3ec0a948ddb151f104506663
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sig2str.h: 
   copyright: 2002, 2005 Free Software Foundation, Inc.
   hash: e5747ec456c7780cd6b05fbfd22631cbc4bd955a230a013649b51f33a60b8011
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sigaction.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 961a07c6f2a1fa494905a8c380725451d27e61e2cade6aff296fd560d9f41564
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/siglist.h: 
   copyright: 1996,97,98,99,2008 Free Software Foundation, Inc.
   hash: 1f7435d5ada1229db0e79551b2d1ded46d3de7caa6030ade8ed1a9c8385b7475
   license: LGPL-2.1+
-  license_text: ''
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/signal.in.h: 
   copyright: 2006-2009 Free Software Foundation, Inc.
   hash: a49f6db94dacf94abe74624ea1ddddc7559f95c8feb120e671e0b4ff215382ef
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/signbitd.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 4fe9d03e71253b7cb6553e84b2c0c91449a1cac16afa810f0e5f1db489edd244
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/signbitf.c: 
   copyright: 2007, 2009 Free Software Foundation, Inc.
   hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/signbitl.c: 
   copyright: 2007, 2009 Free Software Foundation, Inc.
   hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sigpipe-die.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sigpipe-die.h: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sigprocmask.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: 64a5bd137e4ffceed28ce56b1c3ebeebbf5a2bceb1dbf8274afb4563db1a856e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sincosl.c: 
   copyright: 1999, 2006, 2007 Free Software Foundation, Inc.
   hash: 1772f687d81fd114abb5d80bbb46c95f407f818faa4b6c89cf9c0eb57f2e536d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sinl.c: 
   copyright: 1993 by Sun Microsystems, Inc. All rights reserved
   hash: aec40ee7886ef37669c9218c5d8a5e07ad40fefa4fc7a1e4e48703d51124a9dc
   copyright: 2005-2006 Free Software Foundation, Inc.
   hash: 26c9e27b3895dc767fb1cd998cd3d2039f08bc4eb973ca8344a2957a21ea8d3f
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/sleep.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 648a1c7305e84d30515cb11664201e9544fe1f2d824adb21b4e66a75bbfaaf7f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/snprintf.c: 
   copyright: 2004, 2006-2008 Free Software Foundation, Inc.
   hash: da7f665f0930c194dc67de8e3f84305d1d9efb6941fb0c1f75bfb3017e6e2501
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/socket.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 73aa233a19dcdef4826a6e9c76995947a86d2671e189f51b08cd39743b9395ab
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sockets.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 99bf26833d5e9d9cd2556408cf92c515c24d6f5473b27e278d51604655b38611
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sockets.h: 
   copyright: 2008, 2009 Free Software Foundation, Inc.
   hash: 2c890a5e463ceb8ea9e9bbdb6f2a4a07c745c89fe71888191634079bd96b28d3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawn.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawn.in.h: 
   copyright: 2000, 2003, 2004, 2008 Free Software Foundation, Inc.
   hash: dd423bdec70d026b36d8aca617a940f03fe19b9a450e3981de91dfdad00e2a4a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawn_faction_addclose.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawn_faction_adddup2.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawn_faction_addopen.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawn_faction_destroy.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawn_faction_init.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawn_int.h: 
   copyright: 2000, 2008 Free Software Foundation, Inc.
   hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_destroy.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_getdefault.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_getflags.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_getpgroup.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_getschedparam.c: 
   copyright: 2000, 2008 Free Software Foundation, Inc.
   hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_getschedpolicy.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_getsigmask.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_init.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_setdefault.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_setflags.c: 
   copyright: 2000, 2004 Free Software Foundation, Inc.
   hash: 7f583d13179aba639b22ec305fd749afdeecb96823d2c32cb4dd9294a51bdbd2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_setpgroup.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_setschedparam.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_setschedpolicy.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnattr_setsigmask.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawni.c: 
   copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc.
   hash: 62be6e45aaad94e9dbc02b27f7dba559de55fac508f2e3954479674ce637e015
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/spawnp.c: 
   copyright: 2000 Free Software Foundation, Inc.
   hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sprintf.c: 
   copyright: 2004, 2006-2008 Free Software Foundation, Inc.
   hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sqrtl.c: 
   copyright: 2002, 2003, 2007 Free Software Foundation, Inc.
   hash: 755a6706b4cfafc6b498d6efa76315b826063474b7f91834ef5aac159f116c5e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/stat-macros.h: 
   copyright: ''
   hash: 148738a233ce05f8eb8f7d34330ceb02c5bd65c8221d02bbab595257b813e2ed
   copyright: 2005, 2007 Free Software Foundation, Inc.
   hash: 9aba76bc91ed527925d4c43ee4224d8ef90fa0d21475d5e4fe2976cf797daa08
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/stdarg.in.h: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: fed8bc6587d9b9b46807cec06b2104a0c7f4f4edd00f5c3104c86ab78d64722e
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/stdbool.in.h: 
   copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
   hash: e8683e07480c37941452e3970f57d5f5bbcd0d742248766ea32158872b843013
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/stddef.in.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: f3ff9d2469e9e018bbfe1a8d85d2454f7a54673420acdb29aa429cd583e45834
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/stdint.in.h: 
   copyright: 2001-2002, 2004-2009 Free Software Foundation, Inc.
   hash: 31871000acd29901edf1cd726ea2f32b9837e497b9e19a49c00374e0291c1997
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/stdio--.h: 
   copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
   hash: 8c7711ff90032c75717f2f7363d9a7ee7e94afa86d29510878f66dba39bb3f5b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/stdio-impl.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 1ab5922a50832223e0ffc2c70fc544f9d91a363ecb50bcdb55e55c991d88b33d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/stdio-safer.h: 
   copyright: 2001, 2003, 2006, 2009 Free Software Foundation, Inc.
   hash: bcaf909a5c5f8071d1141fe63d90c50832df9f511b5934124b18613c2cc60631
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/stdio-write.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: ef387fa21fd98ef04fd7a0c63399aecb0f271036efc4d192baeca9c964fb1b05
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/stdio.in.h: 
   copyright: 2004, 2007-2009 Free Software Foundation, Inc.
   hash: 90996147d8e36f5883486d804050c8256ebd75940339821fbe964fc12816a9db
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/stdlib--.h: 
   copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 6f719ffb3bd563d1191de42881829b2e53ac17d32dd1d6708c4c22b0c065181b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/stdlib-safer.h: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: ad05b244170755ded620afdb4d6a499a61182625b45f4458df212dd48b9b05fc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/stdlib.in.h: 
   copyright: 1995, 2001-2004, 2006-2009 Free Software Foundation, Inc.
   hash: 0ffeef75662fb92247d373df32beb5d8dcc8d52845a1a0cf2e3afe0f75df2164
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/stpcpy.c: 
   copyright: 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc.
   hash: e277a69ab969893f97dbf9b683e7462bd56bb4a3d83e01b3637c705a0b240b0d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/stpncpy.c: 
   copyright: 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc.
   hash: 63243814e0160f070d456614689aea5b26f421817aa249c25f3449b22bd82220
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/str-kmp.h: 
   copyright: 2005-2008 Free Software Foundation, Inc.
   hash: 6ebb0ef34e3af533dd72b1cac88faebfab78edf50fcbe16d66a8f53ad4da159a
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/str-two-way.h: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 333e7d492bb7a06bd7eceb738c5bbfaa45fd376cd1fa873159ae6c102fb5abe8
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/strcasecmp.c: 
   copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc.
   hash: 9fac5af7b69ba93dda82ad7e40d81dce148b1b3805ad1f85e96ed8f361e75307
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/strcasestr.c: 
   copyright: 2005-2008 Free Software Foundation, Inc.
   hash: df44f98303720564f510cd6080f83b2479ba81a607e0ff35a70065d332775e9d
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/strchrnul.c: 
   copyright: 2003, 2007, 2008 Free Software Foundation, Inc.
   hash: 4f484d4cc0befecd8997334083c58252e9234ad7b53c9ed4e68dbb21366491ea
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strchrnul.valgrind: 
   copyright: ''
   hash: 110d49dc4750f651d0f237887bbdd3ed01c2d8950db226835e552d195ad9dc03
   copyright: 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software Foundation, Inc.
   hash: 9c6096a1c313c8363bc4fb7ea9c8670d50859635fa4fbf18354f17b98fcdf6e4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strdup.c: 
   copyright: 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
   hash: 12e93fe471e7edcd885e207e311df99c6d850b7b9ca5c3b28e39e316c66fb2ab
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/streq.h: 
   copyright: 2001-2002, 2007 Free Software Foundation, Inc.
   hash: 9830f7c0042519dd01e35295d2e694c760b032cd222a31f3855f44b1a526e12c
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strerror.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: f4503783120d3b66707b724877e32b0ea1eda13cbf9e79f4640b32e3f44c7019
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strftime.c: 
   copyright: 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: 7600ea0821aa8b38178ea32004b358cc84e69df14ea395dd865c955b8677c320
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strftime.h: 
   copyright: 2002, 2004, 2008 Free Software Foundation, Inc.
   hash: 4c32312ac57884519ab011ab68c92dd237dd76c2f232cd5395e8d283f365bc1e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/striconv.c: 
   copyright: 2001-2007 Free Software Foundation, Inc.
   hash: 5e8b516e5b0f28f80803a45eb2c6be6a4c0a2282bedc384d0c3b6324c3d0df55
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/striconv.h: 
   copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc.
   hash: daea9a49adb2283a8f85bb18fda76f59028c8bfdd046db63226ca0c0e0350702
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/striconveh.c: 
   copyright: 2001-2009 Free Software Foundation, Inc.
   hash: 34bb63b9a451ec7185541467e05029b4d5fbd1cbf5a03d3fe84ac381843e053c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/striconveh.h: 
   copyright: 2001-2007, 2009 Free Software Foundation, Inc.
   hash: 86eb681bccb0a53f2a391f680da5d74679c2482f39258d92ef8d6b0ef17ab474
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/striconveha.c: 
   copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
   hash: 5cb3167be3296d381de5cc20753a6e13eb849c736c76cdf79875fa9ffa1a41ea
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/striconveha.h: 
   copyright: 2002, 2005, 2007-2009 Free Software Foundation, Inc.
   hash: d78d74cdfaacc28ecd3e6b1d1c1934ef42f23ffe6e6a940c2fd8b9f3396d78b5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/string.in.h: 
   copyright: 1995-1996, 2001-2009 Free Software Foundation, Inc.
   hash: 1136d0b98b57be6dd7253ef5cacf9f4da5f028f2d885723c8bbc35a3ab13745b
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/strings.in.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 10e5bc3121d2994aa8fc0890d99464664f2b9d6f3e67177e371d1f4c072bc250
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/stripslash.c: 
   copyright: 1990, 2001, 2003-2006 Free Software Foundation, Inc.
   hash: ca9f072b31bf11e52cbb5c73957988d28de77f56c962b0785f07af77418be677
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strncasecmp.c: 
   copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc.
   hash: 815116d5f75c679aca0d1bb421a8370e66e40168c384ed9dd6a98d3f5ca83391
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/strndup.c: 
   copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 493b47a8d6f269acc1510b98b35176cc820945e10980a25eff018b436ae1bcfe
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/strnlen.c: 
   copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 90b853a0e4af9628fcd17de3f30a70c1a406d6517e1d18a5f5b9413c856b1c10
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/strnlen1.c: 
   copyright: 2005-2006 Free Software Foundation, Inc.
   hash: ca122eb96644afef5d06ddd05a5ee8d1672a9df41eb9dee6a04360b119d62dac
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strnlen1.h: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 150c8f3b97a0d8163ec53ce9eeac9922489186f5ca66d9250750116cb1f8a5c1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strpbrk.c: 
   copyright: 1991, 1994, 2000, 2002-2003, 2006 Free Software Foundation, Inc.
   hash: 96b98866fadc00e26886d758144724ccbbc594f237800fb4314473bede51c53e
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/strptime.c: 
   copyright: 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
   hash: e7a81072f584025045e8cd27a8aed09e13a467c6a3a157eee758bd6613856191
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/strsep.c: 
   copyright: 2004, 2007 Free Software Foundation, Inc.
   hash: af7bac86580b20527ae1d65b6b78a1b038b7b9e0b005a67835c2058a71215932
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/strsignal.c: 
   copyright: 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc.
   hash: e182db866c03cb48b20804d461064af0a10923ccec042890b5604c9c43d228ca
   license: LGPL-2.1+
-  license_text: ''
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strstr.c: 
   copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software Foundation, Inc.
   hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/strtod.c: 
   copyright: 1991, 1992, 1997, 1999, 2003, 2006, 2008 Free Software Foundation, Inc.
   hash: 528883e0f68c192c7f4c418737f36efc6ede11ce51636f8145c70d1101163e8b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strtoimax.c: 
   copyright: 1999, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
   hash: 7973e7dce509583335e94002f1d80e0f651365102e54f37f6643260b5a0f3a11
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strtok_r.c: 
   copyright: 1991,1996-1999,2001,2004,2007,2009 Free Software Foundation, Inc.
   hash: aef52797442d97f89d26281a0226055638efc2009e04f911fb4bbbccf7671efb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strtol.c: 
   copyright: 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 9a28728b276103445a0aa97cad8332a2cc26aa2b9be2c964b2c166b56391b73c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strtoll.c: 
   copyright: 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc.
   hash: ffeacd90d3869005c1cbaa8aa6090606681dd0ce4407a93a241510abba0719ea
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strtoul.c: 
   copyright: 1991, 1997 Free Software Foundation, Inc.
   hash: be855c203200b5a984ae3290890f46d4580f377b4bdafd0266e7873dab9b1731
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strtoull.c: 
   copyright: 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
   hash: a844c45a1416b2420bd76bef0e85cb2d0a7e363cf88325e65d285bbf5882e58e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/strtoumax.c: 
   copyright: ''
   hash: 20d59ba9f3d7a1001d08e6aab61d928dbae2fd051e69eab2867765f8663460b6
   copyright: 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc.
   hash: dd6243d19084dfaafaac9441be9a71dde27f33c595c685beee735da6b4158cf4
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/symlinkat.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: dcc854e76c58e26c2b9f652e67d1f4d656d1115d1dc966d5a8ac27025490d91a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/sys_file.in.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 868915ed2b23fee8738485eaf605b0f29674ea76f2f27fc0a330c7e40476e7e1
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/sys_ioctl.in.h: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 5a85be194ab973fc6eee2464d2f6043be6ca5a0e0ca50c24c8e1947d3ba9c366
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/sys_select.in.h: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 6385d79cdb0b4995cd2158dcdc2df844a99ee46a25909c5c4f1227065077e6a8
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/sys_socket.in.h: 
   copyright: 2005-2009 Free Software Foundation, Inc.
   hash: 362d22c2394c4e40e8e2f5184c97bbd879f5b56d4ee18b4d91e7c6e29b7deaf9
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/sys_stat.in.h: 
   copyright: 2005-2009 Free Software Foundation, Inc.
   hash: e70e9a10084c5f7be3fb6d2aa62228b6f5ded082be4afadd19c01d119c502415
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/sys_time.in.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 808d4417fc9f057d4ad55b6add3f133d03a5322fabe3dcfe925bd47d14616a66
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/sys_times.in.h: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 3cf5a711d1c92858d4b654284c43c7ecc25d06763f8418c2e54c3309c914a541
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/sys_utsname.in.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: fae5021bf23d69bd35dc0d59126fd5506a194d7b57a8c0ffca7d480f8843b12f
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/sys_wait.in.h: 
   copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc.
   hash: 3c64ce849ea907e265c1bb91f56556fa9f828395cf62f5192851eda0f62cf63e
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/sysexits.in.h: 
   copyright: 2003, 2006-2008 Free Software Foundation, Inc.
   hash: 2f0fc879d2f3a165ed05292bd2ce8f091f60eced3a2fa6f8fc1445ed4548a5d0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/t-idcache: 
   copyright: ''
   hash: af02ece347f0cc0361537b092cba7066186fc98ab1a92c6d10435a9be9ec9f84
   copyright: 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
   hash: f8c04e91069ab576b32bf499cda2face1c55ff82a288717173934b8e70a4dc9b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/tempname.h: 
   copyright: 2006, 2009 Free Software Foundation, Inc.
   hash: 3c1441c47f4337bfb8d432fa03ee9b1ebaaa25a5dd874e64f37eb260e8c441ad
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/time.in.h: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 41f65ec87233a41b8ccfe9364732c124a99001f260b8ac3570402b0a1628a4e1
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/time_r.c: 
   copyright: 2003, 2006, 2007 Free Software Foundation, Inc.
   hash: 5dd79182477034f96e494ee4d68c9e08f882485e73c1bd05f0a650f9a46629c2
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/timegm.c: 
   copyright: 1994, 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
   hash: f8d8b41a303f3b09ee22b4a9a247f85ffa515b47569011d5abe2f205923fc4ed
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/times.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: ae2efd1b1623d1978cb2d18227edd02db9d9a9f47dbecc71fbf6806f8da628d1
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/timespec.h: 
   copyright: 2000, 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
   hash: 9d3c4eda40d629233b24827f15f5dd80c40d897e119a01126bf867193d6be14c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/tmpdir.c: 
   copyright: 1999, 2001-2002, 2006 Free Software Foundation, Inc.
   hash: 9de08a71227a2821978be3e6919f6232ccf2022430447f39b22e612021217871
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/tmpdir.h: 
   copyright: 2001-2002 Free Software Foundation, Inc.
   hash: 4b2eb7839ae3ddbdafca11312d499ac3f469953e05e927e65a57b2d9308792ef
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/tmpfile-safer.c: 
   copyright: 2006, 2009 Free Software Foundation, Inc.
   hash: b6f4f570c8724d3c78e2c7ab73929f9b4a3b30aefc058105e71ec434b5d5fc89
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/tmpfile.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 5626c82fc49099877c1350e01f8a80e576b6fdc73ea57162c6989f956945259f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/trigl.c: 
   copyright: 1999, 2007 Free Software Foundation, Inc.
   hash: 8b60f78b69de56a777043569a8e3ccbef997faaac10c41e5bc0f4b450c5a66ae
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/trigl.h: 
   copyright: 2002, 2003 Free Software Foundation, Inc.
   hash: 449a860f004a88ea94a76732170e38c1a861ddabf4f12c537138efbb777195c6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/trim.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: 44cefabd5123525fff9af425e47c2ddb0a6a20909271f557f7954ed07cedca92
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/trim.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 9bb7a015426b58554581d2f9b0de5a6befeeaa73d42329bcd2d57fe4dcd84b1b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/trunc.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/truncf.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/truncl.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/tsearch.c: 
   copyright: 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc.
   hash: 2db46af0a909abf4d92d20a20556b8de4d7d625028def290071fe4974ed0187b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/u64.h: 
   copyright: 2006 Free Software Foundation, Inc.
   hash: 691a491094cad62e2b863a76aeeed5899b9d8b7ecc6c6aef6ea2cbc1f4fd6dff
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uinttostr.c: 
   copyright: ''
   hash: 2dc91a8e7841d85e1d053f04554487d1eb07a9f84f68af10180ba7b0d865ac01
   copyright: 2009 Free Software Foundation, Inc.
   hash: 68f248ca49d11bdb00b1adfa2bf6527ea340aed829064d91877566fc4841c919
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase.h: 
   copyright: 2002, 2009 Free Software Foundation, Inc.
   hash: 5ee6233f3be7001239f84aacf30f5e5ca96631f010b6f91a16a9b6f877642fae
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/cased.c: 
   copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: c996cbcd82623c5036d89e080e6689b335915047febbe60fe2d10b98b4a99023
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/cased.h: 
   copyright: ''
   hash: dff874729fe88b9abf1df3a7e29d95060e758a13afe27f18862e9091171bac89
   copyright: 2009 Free Software Foundation, Inc.
   hash: d0ff7d9648a8496f25c563ab8a2d7b0a1200cbcb64444b238f29606d4bfc6ecb
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/caseprop.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: bf76e4707fab507bdb7069d1750d83c55e5e7e355a93af71fd735ad042068179
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/context.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 13a1c95eebeae5e2b3ff2ca41305b3524504304664cd71a17eaa832894493f23
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/empty-prefix-context.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 493f93cb9eabb70c693a5d984111996d190a98c2c7fe60a7c67fd984414df699
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/empty-suffix-context.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b55f2b593f51969d89f98c6e7c460af0afa6d588e8123971775b1e2629a44b0a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/ignorable.c: 
   copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: a8487e39b5d100c90eebc45fa11632191a89a473d5ec421ff55594e53de557bb
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/ignorable.h: 
   copyright: ''
   hash: eebec1a20e857e920041811c16a084f7517860f172ebf6dbe93bc9e89b00de9c
   copyright: 2009 Free Software Foundation, Inc.
   hash: 2b5beb7dbf02de63e2b3d6debd2322c0d62a0c2d1f309f0cecfb6daa5de73437
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/locale-language.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 3add1adc16ce963dcff1fd7b7596b8aafaa5e33639dbaff0dcbc4074d86db3d1
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/locale-languages.gperf: 
   copyright: ''
   hash: 95c56feb8187781fe9f326e97d88816e218edd31dfceee6446844c7d8009bfa8
   copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
   hash: 895a0e771188c08f6fd448c3cee007eb3cd4ffefa11bb366422bb261dd5c851f
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/special-casing-table.gperf: 
   copyright: ''
   hash: a4b12e5d88d868cec05dd05e6bcf4f2484acfc55fde9c60a44d9f7bf345a9d93
   copyright: 2009 Free Software Foundation, Inc.
   hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/special-casing.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/tocasefold.c: 
   copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
   hash: 703c9c241129843d8d359363451912cddac5124fd6767b3df0331f490d4cef0d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/tocasefold.h: 
   copyright: ''
   hash: d98bb2e683293e1ee5f6bc8c2322f3bc13dc7968ef9c0f3f1c1723ead44c049a
   copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
   hash: 6ea23704da935f20f2444eb5226c07f8a734da7cf55afdb1219395887e6848ca
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/tolower.h: 
   copyright: ''
   hash: d98bb2e683293e1ee5f6bc8c2322f3bc13dc7968ef9c0f3f1c1723ead44c049a
   copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
   hash: 7c2f4b5f520e8591e420340d3d582ec1ad48b0936da5b8893b4d7fb00243a9f8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/totitle.h: 
   copyright: ''
   hash: dde1977a4388e01340fc5876c8112143f9ec640daa70c2ae4fc2936f36a74b8f
   copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
   hash: b42a7680521ba55979491c693e3642382a98438c56de36812766067cc151d3b5
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/toupper.h: 
   copyright: ''
   hash: dde1977a4388e01340fc5876c8112143f9ec640daa70c2ae4fc2936f36a74b8f
   copyright: 2009 Free Software Foundation, Inc.
   hash: bb95e0aba8ef01b225a0c2888a95a322733d0b39d3206f21b44f00d2b11a430d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u-casecoll.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: d3d6b4ec932f80e78f2e81cc958dcc14ff902e2977a213c27ba521270864a873
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u-casefold.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: fcee85a09cd481698f5296dae6dde1b8d84d33fb95ff41483cc4788c692812f2
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u-casemap.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u-casexfrm.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 1639cd4e229bbbf5df8d53b658e691f476f9d9485f16edcfe5d7cc148e86a497
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u-ct-casefold.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a2275dea893b28c3fe92ae867de9c70a7fdf39001053d9ef2f4091a7497e9c1b
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u-ct-totitle.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 2570f24e1a280b6b4cb7de56c85279674319e4cea7c2ad984241975245e76226
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u-is-cased.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b4e0b17776175ec6033c0aba5d535daa7c3667a42c53463114840fbf600d5cb9
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u-is-invariant.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: f6e201df57529cae6e7639242610ee3722e3447d1d3ecfd99c67f98811982a3a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u-prefix-context.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 823e52633d441082aa1489c520794e4fb0ef899378e8e5f75838d66a448ae3a7
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u-suffix-context.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9c7366f076df0f676f00acef4437ffea7f561447d007d2f7d5476e9e0fd6f74b
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u-totitle.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 245ae2aa6d16c22e82aaabe269a3759b3a45a50bf72453eccfcbd3162c57222b
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-casecmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 3a18bce5adf8c96faba2f53500087a79f62fc9e8e3dfe15ec13f0cb1f547f218
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-casecoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: cf6f8d7d407a05dee71fb2903a326d279bf99c7dcadbcce7dfe2753b99386a94
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-casefold.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 75f35ff374fbb2c36d1d0e23f4a52d96dc924835dea6fbd11181b714a8b9a88c
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-casemap.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 7ca080531110c4bbc03962b55be3cc21200cdb8dce98b6a8b207c1295bb556d7
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-casexfrm.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 2a3efd68520d13af88078b6294c4fb7eb225b0e8671c614ea31dd446d448278a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-ct-casefold.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 24f57fcc73e888d74a192de0090f47f428b35a680d6ad7c69c164dab39ff4c47
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-ct-tolower.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: d7dd5fefe8bd374e2f5f46c7f77a2521bd272c6078ae4cc013e3d1fc65106b30
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-ct-totitle.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0a0527c17c90268b46de1096fbac12b53e7b60ee1e5077f6e34f7fdb6e648aee
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-ct-toupper.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 465b7179f665acb6d3c0e552e8d0d765089dce1ade88007d34a0b367f683f47e
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-is-cased.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9ec0139d88d886ab48d1975d53ebd8a5a09332ce426b8febeb5dba0357f68f3a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-is-casefolded.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9d7f494e9dc39a744a34b4c147d142cbeebddff7b543829ad15cc13a9eb29cbf
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-is-invariant.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: dd5c520c3534286f4aa5e4327f9d4c303736f424c95627795342c46aeb781cd8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-is-lowercase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 204472e2bec896b7e33430f737c98353a125ff880b31094642769f4b2f7577ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-is-titlecase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: ee90d96cfa019ed4e11214211d2ea9730eb6f098dbff34c2db011a1757c91e87
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-is-uppercase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 010d6156b827f55f04ceacc5bc59dcf08fab12f5db42c4636d41a15292ad1ce1
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-prefix-context.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: da3309e1a77a472f5ade2ed85dc9271221109158157c6579b902e0756539b643
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-suffix-context.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: d51c3f25e16b9bbd18428d84681d7a0acfd756fcce1c341bd472f1079da44f22
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-tolower.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 655b2ed28eeba9ad9c255747e307455643e2fc47b498a2e71e0178590b25d5b2
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-totitle.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: c4408b2dcc2c238f29f621912ecc12719d353ba1317d179d2224fe8ddb0322fe
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u16-toupper.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 220470c0e6a7cfd81d08f4c8f0b8fe5d574782bbd13f1c820af6ef70ed2b3385
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-casecmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 1781408004da90c050ae9a5f6570946516817493ba3fe45afde124d51583089a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-casecoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 3300da7050c301689a45980d17099c391d7648b19c03c2d5f42557b804d061ec
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-casefold.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 45bb91d48e51b6cec99641778244ab581c70aeacdb122f32a74b8f243d2fda3b
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-casemap.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 247aa4ba2a663446dce07f5c913f40b60673b7f7e3ca19f403bee9d3a78ea93e
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-casexfrm.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 4ebb9b8760ba8a740ddfab863217d0868628faab7f9e24f26788741b48ea77fa
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-ct-casefold.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 39bd9add0aed1db997be47956d8e91683fc6fc2db50d12228ef6b49d4c7b9c54
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-ct-tolower.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 5e11cb2a0b6b64c1876630a435fb7c2f7d28d37bb656785b75d588cc9369ff27
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-ct-totitle.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 5a1479bf7f4997033a317be5e2bece1df438b55cdbc1cb577fac817314f41fa4
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-ct-toupper.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: e9e26cd78f76cc5a964f8528618e20cd2e3f6689754b5c753feab64e1b9b720d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-is-cased.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 37f54a0969d6155ec3c8bcd617764b5c3cc5188acd4f800693ce4cb905a50a26
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-is-casefolded.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 266206ce9a0daf342cd70f30bd761d5d4c4c3731299b5db880df0d77ac22effc
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-is-invariant.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 7c8f061345e51ebfdb5ce97958c50ba769e4082cb19dbc42e96981eb4db800b6
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-is-lowercase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9dc638c9ad9f87b2be59801ccc280ad79b58577dad018f9749e0ca8438f7211e
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-is-titlecase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: d833857fc52a56d8c5c6b41b0170810ecf56c399611254909febef6150854139
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-is-uppercase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: e03ec24b3075004b438ab9007fb42afc786d694f1260409db1b8c963dc35be4e
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-prefix-context.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 2d3ebd1fe1ca9d551f7ea8c5ff3dd4eec61c67e8864a251143122304ac020169
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-suffix-context.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: de92f410f7f6c2f4f59fc279e266069f68bebb3cf25d821bde419d5ff8649b49
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-tolower.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 04e0d3c9e752bb842c5255065caa6fed1aaa7124bbc9872b4bc596b29b646b1a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-totitle.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: ec057f66ee289c109f8b27dca03f86f335bdd05f950070280d61f2ba618646c3
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u32-toupper.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 606b4a302876209c7e238817387def24e5ab25c80234eb6fd6d0e4a996d4dc09
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-casecmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b41ef1fbbe478f5e3b1eb110e5e6b250c5979421502f6ca1b7dd19de6fa798b1
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-casecoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 86360fb8c79bf57b016601bee20af58b883c31f6a04536ea4f395a228987d704
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-casefold.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a60314a48ef1bae6d56c720648375fb4e57db1acb91ae7b0c208b93ce8535cbd
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-casemap.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 24edb83e00615db47ba7c0efec239390e1c2d9ed8f6b30e604adcd3a0c82d0f5
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-casexfrm.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 167f36a57e4c24ac18f4a6e9bc73d9257a39d3efa6b38bcbd186084501395295
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-ct-casefold.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: ffad7b59d6730a4f76e99dc964df770e6014da0ee66c45206264d9f709e621bd
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-ct-tolower.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b16f9a890b5817213de428b7f08aac3ffe1702b0821d98a0f0a3b56463e1c091
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-ct-totitle.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 7304bf1b4bac0c2ba21867f89287a0c478f7ac1b9d0ce1418009798468b69335
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-ct-toupper.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: ba46d214f489da0c181c73148e83191840c448fd417a17161061a3c5be227066
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-is-cased.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 2094cfba452dcdde8e0de5eb5b8a34860eccd1673f4f1ec34de86d8887f2deb2
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-is-casefolded.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: ad6836695e22fc1c621033a020438153a8389f1ea9c00c3aa7db503668e87b8c
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-is-invariant.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 896e334b5f842024399c0bf0d0aede192f16c5503e6008659a286281e8d275d3
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-is-lowercase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9ad379585ec68ebcaf3e6020e2874cb590ef8392bfabe67b0f415a36283d1582
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-is-titlecase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 40cddd86874cd3df35e51cf677bd29c84f0bdcfda6279263a149d4889018590e
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-is-uppercase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: e6b62e7fa6784af5a99641078aa13cd2ed9636c64e9ca02ec2500c009aa90498
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-prefix-context.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 2faad600e89a2f4df323bb0bce43f95d9c50c70477c783b5069bdcdcef2c823f
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-suffix-context.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9b47dcd3d28b76b4c20ecb89edca813790c5587a53b66d811be0f119344dd512
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-tolower.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 3596157072c41f644c9922e9b8b776dda9a83aaad3b5ac6228db0c697dba7b22
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-totitle.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 6caca3f452e6e3d203e6b9753be9652b60beecad4fa92a0ece54e81814bea56c
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/u8-toupper.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a6fb8d6fa933fd65fffc9ca374211407209be087c7009bde3a72a43024734e9f
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/ulc-casecmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a14530498e0386b3448529dafb33fdce903ec4592d2be37361260862b2fa0f16
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/ulc-casecoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 6f77627a28abe40aea7d9b6d12d0402d8390fc1e9b01ef47f55c8b197544dc48
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/ulc-casexfrm.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 34c8a6903e645541b4faddf6fc29db8e42c13da1b6c136dd6f41caa01745f4e4
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicase/unicasemap.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicodeio.c: 
   copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc.
   hash: 33aacdf0005527850dd4fb652e296df5c0c204a8054ea9ddcfa120866f3a0e9e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unicodeio.h: 
   copyright: 2000-2003, 2005, 2008 Free Software Foundation, Inc.
   hash: 1e47f450b9b67595834d03f31709e694aa7d4ad6febfdbb6ecbaa1bec1cee139
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv.h: 
   copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
   hash: 5e6e0f51341a6e53f0b352b8bb7db9465bb35a0e3cd37942b46076d0a7af3702
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u-conv-from-enc.h: 
   copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: 188629e474bbbcd1229c8c6833219797032c420574e752902bca4747712a6d66
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u-conv-to-enc.h: 
   copyright: 2002, 2006-2009 Free Software Foundation, Inc.
   hash: e0aa45049139d0368fd9cc0402cf2f6ac92e52d781ad1466a494513b14fb40b3
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u-strconv-from-enc.h: 
   copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: 7be24e48ba83701cdbc39b85497b3fdb44b90463a283f46fb720f91ce2d7ae33
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u-strconv-to-enc.h: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 7a46757983eda3f42167efe493ff5b1224b5fa378ccbb3ef3a54a34774fff733
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u16-conv-from-enc.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u16-conv-to-enc.c: 
   copyright: 2002, 2006-2008 Free Software Foundation, Inc.
   hash: 63cf6c42e78a055e4bc0152c66c81d9e677aca47430eeff2566e821608a1f937
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u16-strconv-from-enc.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u16-strconv-from-locale.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: abbeae189b434069f8b5082a0b74cc1c0ef22496521de651ee804512ebbcf297
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u16-strconv-to-enc.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 00764e134b95f7908e7ddd1a025d875ec6785ff8b6b69d9e92d37be3f23fa300
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u16-strconv-to-locale.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: f67645d89afa61a452bfd22d22f76fb39ef24abdd3e44667aade0ac4d78c1fac
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u32-conv-from-enc.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u32-conv-to-enc.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u32-strconv-from-enc.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u32-strconv-from-locale.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: b5f98b5645d8b9d620808c54cbe34c5977a84043ce50fc58401924535f12208f
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u32-strconv-to-enc.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u32-strconv-to-locale.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: e1b205c9ed76dd104a13b1f6427ff0fedfe1ac06bc458fcd942d94557d74e437
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u8-conv-from-enc.c: 
   copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: f48ae3336f9571f13c2904bc2878141e7a9d272c1baf5d3a4688fd1f226f3546
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u8-conv-to-enc.c: 
   copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: c0e5b93ef7fa66fca4a5b9fbd7dfcabd13c1d87f9713fbaac56bcc56fa4137eb
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u8-strconv-from-enc.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: c9992a9820bc23e9834057a26dff394918e76ca830c2f5ac97e0d67c102baa7c
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u8-strconv-from-locale.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 6da43447486f93c497947a213640c53bf620094b211a782c60138d9057455ecb
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u8-strconv-to-enc.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 0942490a0de4f7b06edd517c57084e60348a1d79142fec2f05c531689a4cb814
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniconv/u8-strconv-to-locale.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: e38b1c908eef1d22cb3bee0f7157cbc3b3a409ac8fda47c5f4f9c630687e934c
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype.h: 
   copyright: 2002, 2005-2009 Free Software Foundation, Inc.
   hash: b8e67dc9e906270547a47f99abb0a4b7b1f7b1acf607726786df995910314d43
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/3level.h: 
   copyright: 2000-2001 Free Software Foundation, Inc.
   hash: ca73868d0849016e4c33c48ca11bccc77fda03863928d329ea03f644c3e4e020
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/unictype/3levelbit.h: 
   copyright: 2000-2002 Free Software Foundation, Inc.
   hash: f1ad93bae7eab43736b46a51a2dc7303c2c4d8ad4563a2cd7e0740587a86880a
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/unictype/Makefile: 
   copyright: ''
   hash: bdab4fa6ea70dfa476e8e0bfb1a837bc7e67c3fb607376e6171cc27d23e66848
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/bidi_name.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/bidi_of.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/bidi_of.h: 
   copyright: ''
   hash: c2182d910737b90cff77f4bab4cc2b1567a8713202c2b24e55951bab986d6627
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/bitmap.h: 
   copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc.
   hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/block_test.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/blocks.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/blocks.h: 
   copyright: ''
   hash: b6a9e5481a1b0ef31c2bcdeecce12f84a6b3107f42cda43d7b5490e51c7e6b88
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_C.h: 
   copyright: ''
   hash: 8e35c171e0730e196c1752e71128804f55f2ae84579e656cc0a6aa47a1eb35ba
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Cc.h: 
   copyright: ''
   hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Cf.h: 
   copyright: ''
   hash: 47db4afe1e094f7e2c2ef9d8189af3a3412ffc4705e0de359c9f1b921fd15e66
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Cn.h: 
   copyright: ''
   hash: b39549af020761e1993a548f9b823c05ff2a6e49e6a537ce7fa343aeaa53b145
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Co.h: 
   copyright: ''
   hash: 99e430ef6329b9f7d5ebc51a76e1e2ca53c0507494d6c10546b784e6049bc663
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Cs.h: 
   copyright: ''
   hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_L.h: 
   copyright: ''
   hash: 8fc9e0984df0753aa0b9fad85007840415de5c70af85be4dfbe95bf520fb1385
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Ll.h: 
   copyright: ''
   hash: 785b1fa8fec42960be4917a6e8f82b3c4c7525cadc22dd518aac0cb7bfcd958f
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Lm.h: 
   copyright: ''
   hash: a37e7a248becadc97caf50c64c3a3e054194e5a71c4eb62054f56f24f2c97729
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Lo.h: 
   copyright: ''
   hash: 65c339f1a109086f8d25277fa55fd83bf5aa46d2fc13004aecbc8ca503750a54
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Lt.h: 
   copyright: ''
   hash: f78dca06ee53b82be63262113da2e6f5ddd027a997d069657b643daff281d7c6
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Lu.h: 
   copyright: ''
   hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_M.h: 
   copyright: ''
   hash: 9c1efbbf5bcf0e991e93f8bb403599aebb7f1bc5d3187af8a18dc8c05e3930f6
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Mc.h: 
   copyright: ''
   hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Me.h: 
   copyright: ''
   hash: 19978c351a45dad43fc65cd804226182244c2b634a8a7e6541489ac1f174e000
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Mn.h: 
   copyright: ''
   hash: 9c1efbbf5bcf0e991e93f8bb403599aebb7f1bc5d3187af8a18dc8c05e3930f6
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_N.h: 
   copyright: ''
   hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Nd.h: 
   copyright: ''
   hash: 645d0029c292be21c462e6bd7af2d005278ff9bc83122e0eeaacaadf94cd21d3
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Nl.h: 
   copyright: ''
   hash: e884eada39c812b459e7b7e481b4419599b18f1af710bd8482a696c5cada155a
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_No.h: 
   copyright: ''
   hash: 0deece216789474ac445dbdb7296d6d5e8e7e5a8f95dfaf2e67a4c5711e18b57
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_P.h: 
   copyright: ''
   hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Pc.h: 
   copyright: ''
   hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Pd.h: 
   copyright: ''
   hash: f547ebd71e710e45743883d9de8b47192f46dfc611373c5c89daf8bdaf5aca6e
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Pe.h: 
   copyright: ''
   hash: 6379df3a03e20ac05b3bf86a9fd1ebb1f7b849164bb1464cf3879a1ceaac8531
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Pf.h: 
   copyright: ''
   hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Pi.h: 
   copyright: ''
   hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Po.h: 
   copyright: ''
   hash: 26e8efe9bcc1419927bbca15527c8d81a1b903390185ff5e0b585341b94ad994
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Ps.h: 
   copyright: ''
   hash: 6379df3a03e20ac05b3bf86a9fd1ebb1f7b849164bb1464cf3879a1ceaac8531
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_S.h: 
   copyright: ''
   hash: 81291c4df9432e81c35739340c26ef260186afb2e55916cadd9c6a52dc28dae6
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Sc.h: 
   copyright: ''
   hash: a172e78fd27a83c4692b30614cc4ebd009a1b0684b24bb6be9aeb769febacdd8
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Sk.h: 
   copyright: ''
   hash: c15094a471ca185c4c200e38783cf9e759fa3e0e8fd07b81e3058a1a7ffd5f44
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Sm.h: 
   copyright: ''
   hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_So.h: 
   copyright: ''
   hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Z.h: 
   copyright: ''
   hash: a3ce4401d9936f8e54f42d42eaa1d1b6d24cd8cf548aa959a99628f7ad6781c0
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Zl.h: 
   copyright: ''
   hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Zp.h: 
   copyright: ''
   hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_Zs.h: 
   copyright: ''
   hash: a3ce4401d9936f8e54f42d42eaa1d1b6d24cd8cf548aa959a99628f7ad6781c0
   copyright: 2007 Free Software Foundation, Inc.
   hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_and_not.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_byname.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_name.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_none.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_of.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_of.h: 
   copyright: ''
   hash: 2a28fb8f13c04a8d3e8f05dba59e8336dbb1c9fcd244a69729bda0d6cab7903c
   copyright: 2007 Free Software Foundation, Inc.
   hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/categ_test.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/combining.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 90adbd1167196894d026717b09dc16ead930ab4e0e79fc939f9b943b5444cb36
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/combining.h: 
   copyright: ''
   hash: 1344ff3ca3a44994d02dfae3bf4d2e1ef6b65e951856e19ba186eff2a5f3ddfe
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/ctype_alnum.h: 
   copyright: ''
   hash: 2c9938acf771d5771935a9433070523b56bec08dd3a362a7bb63fe73da62eb32
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/ctype_alpha.h: 
   copyright: ''
   hash: 2c9938acf771d5771935a9433070523b56bec08dd3a362a7bb63fe73da62eb32
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/ctype_blank.h: 
   copyright: ''
   hash: 52e91c7e5e01fa23b33231df811e4b0bd2f2da83f4c796773fa6f59245897ec9
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/ctype_cntrl.h: 
   copyright: ''
   hash: c07f81242830a91177e15d05045170319602acc2f3494d6e1d6abc1ddd693c0d
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/ctype_digit.h: 
   copyright: ''
   hash: 7ade15fb6f69dc300838438c3207b6e87ac2b18c66eced437baae513e7384ef5
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/ctype_graph.h: 
   copyright: ''
   hash: b23acbdc38215248665e1ba3e41efa28138f59d20447287cc95b51d8e2218f5a
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/ctype_lower.h: 
   copyright: ''
   hash: 1811e3be37bc409bd83c6fc5d518827197d7fe7095f1b928068c3ff72882046c
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/ctype_print.h: 
   copyright: ''
   hash: b23acbdc38215248665e1ba3e41efa28138f59d20447287cc95b51d8e2218f5a
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/ctype_punct.h: 
   copyright: ''
   hash: cb1c5c1ff9e38b590896695c0436f5a583961a5aecf9ca57e76b27ba0a4e33c8
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/ctype_space.h: 
   copyright: ''
   hash: 52e91c7e5e01fa23b33231df811e4b0bd2f2da83f4c796773fa6f59245897ec9
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/ctype_upper.h: 
   copyright: ''
   hash: 1811e3be37bc409bd83c6fc5d518827197d7fe7095f1b928068c3ff72882046c
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/ctype_xdigit.h: 
   copyright: ''
   hash: 7ade15fb6f69dc300838438c3207b6e87ac2b18c66eced437baae513e7384ef5
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: dd98fdcdaa9cd24e7260ed5252c6393ca1fc1c32b1afef1b4a9b98e57eadc26d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/decdigit.h: 
   copyright: ''
   hash: 729a7ffd2cedc46ac857f670fadbd787a8bd1dae5b9433ebebda7916d18af8ce
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 96f1f23423e02f86953ba94177173864040511deeb2b553746c503eedc69f695
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/digit.h: 
   copyright: ''
   hash: e354516c3c1294749f97668b7aecc4aba4cd72013024992226add61ca235a879
   copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc.
   hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/mirror.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: c8eb63b007266041de16a9e45bf7b8766d2016e3dd82e9b801920e7e8ee0b265
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/mirror.h: 
   copyright: ''
   hash: 4e47d47442a6953840583406acab5bcd285bb8c2d7356180dc28bb277e1e7953
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 14a734bfffede7c850c2263c2844a2f42a847a8fdb26c6f4940a825a35a672e2
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/numeric.h: 
   copyright: ''
   hash: ba1e5ba6fcb88dbb798cd02e5cc119132bc31e49b5a24d8e19ae906ada5711ea
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_alphabetic.h: 
   copyright: ''
   hash: 99efc65e4f46e3ad0efe4f73de0fc1fd74196d0de0892e8640d57da681726ea2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_ascii_hex_digit.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_arabic_digit.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_arabic_right_to_left.h: 
   copyright: ''
   hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_block_separator.h: 
   copyright: ''
   hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_boundary_neutral.h: 
   copyright: ''
   hash: cfee85fd908c11272a95f63abb54df22efd9342b5462d93c6b38df59fbd1ab71
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_common_separator.h: 
   copyright: ''
   hash: b70da0081e6b42dc766f001cbfa62dec20eeb862ab59032c685a318f3eacc04c
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_control.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_embedding_or_override.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_eur_num_separator.h: 
   copyright: ''
   hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_eur_num_terminator.h: 
   copyright: ''
   hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_european_digit.h: 
   copyright: ''
   hash: 9aa2474131882b3c150f9bd76ef13f46fcac63b97810c8540bc226612fd6cff7
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_hebrew_right_to_left.h: 
   copyright: ''
   hash: 66483e8eda823c6234a852450a0e3d7d1b26de2c6f4e7ed117dfd7a5f60b4eb8
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_left_to_right.h: 
   copyright: ''
   hash: cca189bf24e298f3c3f5f843ff18dfce8c007eed8233e52d0e6dd7f92c32a2bf
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_non_spacing_mark.h: 
   copyright: ''
   hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_other_neutral.h: 
   copyright: ''
   hash: 1e8e84691fd416f70f94e14f52604d742feb401a9e83a8f82c5c2610488e4849
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_pdf.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_segment_separator.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_bidi_whitespace.h: 
   copyright: ''
   hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
   copyright: 2007 Free Software Foundation, Inc.
   hash: d40e7939956111bd30348da1dac41960fd3fdc6cf6f680cb8573e79ccbedc970
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_byname.gperf: 
   copyright: ''
   hash: b16f7907c490b5f7fb2747f5b6b19bd7f6792f0f901474152f7c7fc7b95b151c
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_combining.h: 
   copyright: ''
   hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_composite.h: 
   copyright: ''
   hash: c768605f7580ce16b1f809ff6581158ff3026e0f7e626da4b880421c26f3f758
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_currency_symbol.h: 
   copyright: ''
   hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_dash.h: 
   copyright: ''
   hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_decimal_digit.h: 
   copyright: ''
   hash: d43559860ba0321bc4126988b80b371e40fefd13543804b8cf1e2f323c2e6757
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_default_ignorable_code_point.h: 
   copyright: ''
   hash: 10c6b0ae007cf9d8f016b4a35adc99a18c9253e20cb8212c2920cf601eee37fc
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_deprecated.h: 
   copyright: ''
   hash: eaf7422b8873ab174df241ef321d8b1048a085432d4f6eef3b7e0549335dd9a8
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_diacritic.h: 
   copyright: ''
   hash: c22e31f490d3c3010b02a8bd72e1f9d47cdcb168d70d30b805d732b343b511aa
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_extender.h: 
   copyright: ''
   hash: 7454c1a8c7e88851161788171e398142fc47d8bd1c23e62960fa7d9c0c991b33
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_format_control.h: 
   copyright: ''
   hash: f060d73220f70a9073c426b53a1c1b77d83d62d53b2c20c8ed16a37dbec4466e
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_grapheme_base.h: 
   copyright: ''
   hash: 61aa89df11fbca4b079e004f95edb176863f5f5bda22579d93489404b0f9a3bb
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_grapheme_extend.h: 
   copyright: ''
   hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_grapheme_link.h: 
   copyright: ''
   hash: e3be529d661a64a49d7bbf83e3193bc6364b0dc4099adf02db4ea3c0a48fe4a0
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_hex_digit.h: 
   copyright: ''
   hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_hyphen.h: 
   copyright: ''
   hash: 1cfda6a60e4fbb2baa92f4c06e315f40f4b685e0d1330afe5788de693a79afdb
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_id_continue.h: 
   copyright: ''
   hash: 01007ffcb3d967be8893ede4c08a883363a5d6c8c763986dc52d3ebeaa9c9960
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_id_start.h: 
   copyright: ''
   hash: f3e6304d698b166c87864af92aa1c1f33d8583f47df62f0ad6978bcd04f20d66
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_ideographic.h: 
   copyright: ''
   hash: 91d9bdf96ea6ddc4acbc5e4dba0610a5f9dd7cf5121431e1d34dafbe7e715f36
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_ids_binary_operator.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_ids_trinary_operator.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_ignorable_control.h: 
   copyright: ''
   hash: 4e8491a63822621864c4f7db52ace106cacabe967ff176a405fbec74caced893
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_iso_control.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_join_control.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_left_of_pair.h: 
   copyright: ''
   hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_line_separator.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_logical_order_exception.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_lowercase.h: 
   copyright: ''
   hash: c49d818a753284b69b8292112ec7829b4973d7c33cabb0b264bc3eb7193f2e2a
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_math.h: 
   copyright: ''
   hash: e4feff12910a49ce0b6cd9068dce1a962abda72e0c58d2fb666992532bea1c3b
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_non_break.h: 
   copyright: ''
   hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_not_a_character.h: 
   copyright: ''
   hash: 69c1881b0d0172f2bd222a8d49636e2525f8c53af810fa281b7bf91d2cfaef79
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_numeric.h: 
   copyright: ''
   hash: e82cebb512f6ebca3baf39cf0cfb1d65899d1000520acb30b4c4c52fef800dba
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_other_alphabetic.h: 
   copyright: ''
   hash: 6eed9d08b80ef5850bc90bf4ec966d5e32a1f13697b484b978c1984ba200e200
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_other_default_ignorable_code_point.h: 
   copyright: ''
   hash: 670e3738c51a7b91634167670f9f9f7d24237d3bc2d1def297357bed948de48e
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_other_grapheme_extend.h: 
   copyright: ''
   hash: 9aa2474131882b3c150f9bd76ef13f46fcac63b97810c8540bc226612fd6cff7
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_other_id_continue.h: 
   copyright: ''
   hash: 68dddcca5a9cf7a98b19f1dbcf36daedc23cbb189126ba3d560fc72cadddf7e1
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_other_id_start.h: 
   copyright: ''
   hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_other_lowercase.h: 
   copyright: ''
   hash: d5edc016b278de0f7e45c4b97282e69eeaa7e2dcf8ccdf80305e0631a2265331
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_other_math.h: 
   copyright: ''
   hash: 29e60ffb17e0d28d6faf0dabcb729b97f9ea2640083c733e9d5bb80550af024d
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_other_uppercase.h: 
   copyright: ''
   hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_paired_punctuation.h: 
   copyright: ''
   hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_paragraph_separator.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_pattern_syntax.h: 
   copyright: ''
   hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_pattern_white_space.h: 
   copyright: ''
   hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_private_use.h: 
   copyright: ''
   hash: b579ae087c5f5d39920557ccb10ed9e3e85c9a37d1579f40c7e51b7442503680
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_punctuation.h: 
   copyright: ''
   hash: 879fa687217ae7978e17cdb24937d63ed1b30c34acca5d08c249fb2aa2bec067
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_quotation_mark.h: 
   copyright: ''
   hash: b70da0081e6b42dc766f001cbfa62dec20eeb862ab59032c685a318f3eacc04c
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_radical.h: 
   copyright: ''
   hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_sentence_terminal.h: 
   copyright: ''
   hash: ba2398b9115f8b18f76d9aacaa96041ae918a63b2834f16d66e586276b3b6afd
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_soft_dotted.h: 
   copyright: ''
   hash: e3be529d661a64a49d7bbf83e3193bc6364b0dc4099adf02db4ea3c0a48fe4a0
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_space.h: 
   copyright: ''
   hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_terminal_punctuation.h: 
   copyright: ''
   hash: 8a1e71d67eab269ce9dc3e2893389f951c1c2a7c64c1f722df6206f210ee662c
   copyright: 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 1f771b18097da3eb006ae20cb5d9a4088eae2d181a611500ba400e2d8ec2df5d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_titlecase.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_titlecase.h: 
   copyright: ''
   hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_unassigned_code_value.h: 
   copyright: ''
   hash: d60cbdaeaf6f4a9135cbd2ec2066e26df90bf74818e2fb55771b0ea03d148c4a
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_unified_ideograph.h: 
   copyright: ''
   hash: 4429500f5e5676e777499ce11cef619f91b5e880a9dabd1669bca41d0718d5f8
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_uppercase.h: 
   copyright: ''
   hash: e4feff12910a49ce0b6cd9068dce1a962abda72e0c58d2fb666992532bea1c3b
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_variation_selector.h: 
   copyright: ''
   hash: abe47e0d33a6fde0c278a443c6255038d6cea6574c38f56dd5d7c1a4fd4a91ec
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_white_space.h: 
   copyright: ''
   hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_xid_continue.h: 
   copyright: ''
   hash: 01007ffcb3d967be8893ede4c08a883363a5d6c8c763986dc52d3ebeaa9c9960
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_xid_start.h: 
   copyright: ''
   hash: f3e6304d698b166c87864af92aa1c1f33d8583f47df62f0ad6978bcd04f20d66
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/pr_zero_width.h: 
   copyright: ''
   hash: 4e8491a63822621864c4f7db52ace106cacabe967ff176a405fbec74caced893
   copyright: 2007 Free Software Foundation, Inc.
   hash: 3fcb47fc8c55790740bf21cdfc85cacb89c92805b7a0692b5d331d04839c7431
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/scripts.h: 
   copyright: ''
   hash: 909da48adc878aafd8b39b3ea48765c54e60373f9511c2132c27bb2108fccafd
   copyright: 2007 Free Software Foundation, Inc.
   hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/sy_c_ident.h: 
   copyright: ''
   hash: 9a50ec74eda18bc573df963aa5bae900789cff2ac4b9193674828efc5b802f69
   copyright: 2007 Free Software Foundation, Inc.
   hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/sy_c_whitespace.h: 
   copyright: ''
   hash: 79e76e7358bdd836e078ebcac8f6804632e8aa3310e67d5be9d002ccd3648cf3
   copyright: 2007 Free Software Foundation, Inc.
   hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/sy_java_ident.h: 
   copyright: ''
   hash: 0f004bb9bffa1f06d3a475612c9cd4f5f5df347a81109f243602e9360583f592
   copyright: 2007 Free Software Foundation, Inc.
   hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unictype/sy_java_whitespace.h: 
   copyright: ''
   hash: 79e76e7358bdd836e078ebcac8f6804632e8aa3310e67d5be9d002ccd3648cf3
   copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc.
   hash: 2f408b704e7b02de9b9a8224c0bf0b93bedcb50b13ea7f824895f85f9c28eaee
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/lbrkprop1.h: 
   copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc.
   hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/lbrkprop2.h: 
   copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc.
   hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/lbrktables.c: 
   copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
   hash: 570dd537a8aad86cc9f03b3a187de16b187fa22f7de51a4c78b10bd8513b5140
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/lbrktables.h: 
   copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
   hash: cc2a66b6d3c60a6a4bc00cc2cacead4543035a5c9a1c2c1dcb6310525ad50d3f
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/u16-possible-linebreaks.c: 
   copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
   hash: dcb291f946f60f8ce400b0cf6612abce1f55d7525d62c20de92e371964fa2a25
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/u16-width-linebreaks.c: 
   copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
   hash: 858930664890823e81d8b0e0713d7edc3770a87b4a54c5ea4bffc97ae40cf765
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/u32-possible-linebreaks.c: 
   copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
   hash: e5d81325f7140b2d7980081c9c1b1bfe027d481b42d41b84fa859e689614604b
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/u32-width-linebreaks.c: 
   copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
   hash: cb3f972142bc182e67f148e4aee254b9d86e402a8c980d6aced66aa70785fdea
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/u8-possible-linebreaks.c: 
   copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
   hash: e914e04b1abf7f5737295a9365605c4b321978c304d4f779fcbbb02c5ff1558d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/u8-width-linebreaks.c: 
   copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
   hash: 8250277a0f84de0b4416a1e30345251e466e2245ba64e63269d38d0ec4abdf7c
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/ulc-common.c: 
   copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
   hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/ulc-common.h: 
   copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
   hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/ulc-possible-linebreaks.c: 
   copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
   hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unilbrk/ulc-width-linebreaks.c: 
   copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
   hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniname.h: 
   copyright: 2000-2002, 2005, 2007 Free Software Foundation, Inc.
   hash: 271fe75b63886d9af9730fc72bcecc8bcf121a97946be427032f4ed46d2d2711
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniname/gen-uninames.lisp: 
   copyright: ''
   hash: d28d41fa6a3eef2669af73aaeb8ce7e2479501eff9b820f3649344dceec287b2
   copyright: 2000-2002, 2005-2007, 2009 Free Software Foundation, Inc.
   hash: 96556ea7962ce3b99d5e5559021018733e37096b261e513193d63a30e5ee4b2d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniname/uninames.h: 
   copyright: ''
   hash: 5cc016a12ea5182eb761959d10e5191aca3a76fa8980e231f2449ac38c1ea1dc
   copyright: 2001-2002, 2009 Free Software Foundation, Inc.
   hash: 811b4d2f8b8f36161342c743db5c5509ac8b0043c13551f7a52704c707f135c4
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/canonical-decomposition.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 87f0bcf9df0580072c9e56c9b085df3d8e09770d61475e329c904bc2b049e5cb
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/compat-decomposition.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: be35616c47cb657687ee31b508418eb405d8e7175ea0c7ebda9c83d292ee0f76
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/composition-table.gperf: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b4aa8605984c2a64f166ac2137a7436cbcf969c067088baf3efc3099cd610685
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/composition.c: 
   copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
   hash: b056563f0bb123c409b7ebc8c15d83ff328c9f985c828e088794b6779686593e
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/decompose-internal.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/decompose-internal.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/decomposing-form.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 34162fc9b81dddd60e3d1768a87407a9c58c7a4246f8131990655af950eb8fa6
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/decomposition-table.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/decomposition-table.h: 
   copyright: 2001-2003, 2009 Free Software Foundation, Inc.
   hash: 7e5319f3d15b429b3ca981cb77d13a14e63eb6d91c87b6896bcb4b261f212864
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/decomposition-table1.h: 
   copyright: ''
   hash: 295f82a865c8d38feab20d2d0ef7c344f2af45d2a8a6e47aaaebfccfbb53cc24
   copyright: 2009 Free Software Foundation, Inc.
   hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/nfc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: afe74037d702264dada2f09f62b6bcd009116cbade5b92da86a092ec363709fa
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/nfd.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 2c52442b51c53cae04d69af55fc465368ef6cdea78236bbd9e4ead35024be8aa
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/nfkc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 7e203b8f3ad1ca16886b641a503c7ef40c63839f2c5013b377ee16191eda890c
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/nfkd.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 96fca2de089de494f5189cc1b6baba83a22050a2f73680251f883dbf4f29c4c6
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/normalize-internal.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: dc3a239e87668655e6ffadf04e4e625525bb77f3159f49970bfe1fdd1fb742ec
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u-normalize-internal.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 8948c5a1ae3c902f7399c23c670da87e46b5538a4e44cea25fe6092fc69e57f3
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u-normcmp.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a38204b457c2da606da593fbe185d2697622fc39dfa9938580cfc4d21f8fd9d3
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u-normcoll.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: d15873e9d0f8361722b856cc6b5a4b141d8c153651a1cb1694c28c0be3fdf15e
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u-normxfrm.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 2995d01c87bd38694e454d2aa7acd9440bb01ef2fe3775c2ddddfd9a2055d354
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u16-normalize.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: c4417f93ba857c0341ad56a963370ce1ac8690dc8d56ea8704d42bc0f4cd57d4
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u16-normcmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 70b5b38d00121704a5bdc8dec6c3510938a1ee773296c68bdf4770a9d3ad3ba2
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u16-normcoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b2a6a3dde9a5d277817a7bdf3a9da9cba9c5af84d43f02b8de59972c0efc6e06
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u16-normxfrm.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 6a535a6e2b2866d4d2f674604fdec7c48cd37a7d26d1b28aa56b1b55cff64d0c
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u32-normalize.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 21948dd01001327d66a37ac6a8120566d704ef23efaf3a32134244e0e8b297db
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u32-normcmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 3aee963a47e892f820670cbdde9841ad7809e3cb739fe6fe4a4eb82b337fe7aa
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u32-normcoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: e05b8dc2bc7995766bf46052c4718b74c0ffcae0cac15dd8135777dd379c34f4
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u32-normxfrm.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 6d8ff48fb188d7d15ae549430423f962ca47de75f2e3fa27d0c65099e653e5d8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u8-normalize.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b46220839acddb8068a99f781da004eeb988271397e318e6077f00e1b4d9eb99
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u8-normcmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 88af27918ea6a884ebb5ddc98c75a2f01462cc627d489ca3a0387b2337cfff01
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u8-normcoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 781e09bd1453b3872c591e97c19b1855dc70cee271fded19eef00469baede34f
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/u8-normxfrm.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: d59367c5c15d6f235b1e68265d3e3a57fef210ab8796ed36a04f40d08f302e3f
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uninorm/uninorm-filter.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: fde778aae106254be586328ae3ecb4ee2843b387fb9bd68bd6e8ebf8b7dfe8f3
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistd--.h: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: adf5345fbcb95c5bb36d54daf54a986985f38945478711e734fb90742f8a5262
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistd-safer.h: 
   copyright: 2001, 2003, 2005 Free Software Foundation, Inc.
   hash: f1b41b4d684751d4d0fd03bb4855a4ab9c168f72e25dbcab58fa5e7cf7edebf9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistd.in.h: 
   copyright: 2003-2009 Free Software Foundation, Inc.
   hash: a6926ba851d67cbfe9bc3f8f5c0a100992084e9d90ff1e51b25bd373b976d588
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/unistdio.h: 
   copyright: 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 670451fad5381e7d81619f0268d7dcac2693a959612603a4fd77a67f102b98eb
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u-asnprintf.h: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u-asprintf.h: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u-printf-args.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: a27d294cbfad2286e039e9816ee9acb269f976fcc6f6c6f13a22d74056689600
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u-printf-args.h: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: a6fe38b9879275d7c142bc95e0b7e4caed91ccce4714c11749fdd64ecf990bf5
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u-printf-parse.h: 
   copyright: 1999, 2002, 2005, 2007 Free Software Foundation, Inc.
   hash: 429fb79a4fedd4e52cd53cd4e50638cd94893eecb1b7a62844d082be64efe0dd
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u-snprintf.h: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u-sprintf.h: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u-vasprintf.h: 
   copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
   hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u-vsnprintf.h: 
   copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
   hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u-vsprintf.h: 
   copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
   hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-asnprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-asprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-printf-parse.c: 
   copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-snprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-sprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-u16-asnprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-u16-asprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-u16-snprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-u16-sprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-u16-vasnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-u16-vasprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-u16-vsnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-u16-vsprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-vasnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-vasprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-vsnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u16-vsprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-asnprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-asprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-printf-parse.c: 
   copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-snprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-sprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-u32-asnprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-u32-asprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-u32-snprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-u32-sprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-u32-vasnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-u32-vasprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-u32-vsnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-u32-vsprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-vasnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-vasprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-vsnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u32-vsprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-asnprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-asprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-printf-parse.c: 
   copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-snprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-sprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-u8-asnprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-u8-asprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-u8-snprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-u8-sprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-u8-vasnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-u8-vasprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-u8-vsnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-u8-vsprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-vasnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-vasprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-vsnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/u8-vsprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/ulc-asnprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/ulc-asprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/ulc-fprintf.c: 
   copyright: 2004, 2006-2008 Free Software Foundation, Inc.
   hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/ulc-printf-parse.c: 
   copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/ulc-snprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/ulc-sprintf.c: 
   copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
   hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/ulc-vasnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/ulc-vasprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/ulc-vfprintf.c: 
   copyright: 2004, 2006-2008 Free Software Foundation, Inc.
   hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/ulc-vsnprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistdio/ulc-vsprintf.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr.h: 
   copyright: 2001-2002, 2005-2009 Free Software Foundation, Inc.
   hash: 13f5e38dabdfbceb3b445638bc8e99064f239e14e73d4e488187a92b7181157a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-cmp2.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 353c54ecf4321b660412e19cf505114ea8af7b940afc9fb4f817f32c73fe68dc
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-cpy-alloc.h: 
   copyright: 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: 33a2cf4d1751fb8b89c16c2e464679a25254a1da5aa823af5026981e3f9f04aa
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-cpy.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-endswith.h: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-move.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-set.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: ad540bb3c29abee866d49045d7549895c69e88f9c7e421fc288f06e683371efe
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-startswith.h: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-stpcpy.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-stpncpy.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-strcat.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-strcoll.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: edd8e7309806a8c6748205b082becf74015ca7a86a99f4abfe90fd29cafc9bfe
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-strcpy.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-strcspn.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-strdup.h: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 29b7da996418f450dc43ca85a629a13e9f41b4e0759a3d26dee1f0f570cd1fdb
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-strlen.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 5ab8a4c4f7df43b1ab702777309a99e463464ecbb02813a12c642b680564a3eb
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-strncat.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-strncpy.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-strnlen.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: c2287c09b8102ca5941250c212c3065bc5f0310d5047a6d4c540c3d8bd55c71f
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-strpbrk.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-strspn.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-strstr.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: c6fe6020affec0baee70c698a6c983e4924b5b578266c453a7aaf55cc23e2a1c
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u-strtok.h: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 124e2d5c65832f8f2b09cb250453ac36538f42bc04e58097b83683954a9fd220
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-check.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: c5ae8c4ac9aa94462744b11f56b7d108a26665c45bfb27222547583236670660
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-chr.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: e3329f60b17e2dfcf738c0ab4d315772c23c15c736a185ef7c9dc9896095d74b
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-cmp.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: a178e2ef622d6775701cd298960a8dccafa331ca0d80c79fcaa4de012bd5b28f
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-cmp2.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 2cb5dfa391e0c72cda11f0fb2350422ebde0432a2abf811e5941c06223b8cb67
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-cpy-alloc.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-cpy.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-endswith.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-mblen.c: 
   copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-mbsnlen.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 1cdbe9c2450930156e5c3b60065663d3280f3a42a62725b5208c39ced2b34318
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-mbtouc-aux.c: 
   copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-mbtouc-unsafe-aux.c: 
   copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-mbtouc-unsafe.c: 
   copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-mbtouc.c: 
   copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-mbtoucr.c: 
   copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc.
   hash: 2b36b04649b3581ad0cc9161ab1e4715a48625e133a0ec6f539ed6e91dfcf628
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-move.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-next.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: bac4e802fa60437f5741d1488d912d2d731d12795334311793de72c042b1614f
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-prev.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 966105ec4cf71caa305c1b9bebab2829b77a48e5003424e4c013eeea374f9328
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-set.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: c5bb09f11189403180a6576abf7d68fb059968f7f39dc4847bc991ac3223f6aa
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-startswith.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-stpcpy.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 6a2cb6d1b10aa92814ff9ed6e973f7c9a0fa2bc7f1465286ac1e39590cb45b73
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-stpncpy.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strcat.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strchr.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strcmp.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strcoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: f617d544f7c4374c658b004a34b75f439c8492b5d53e032c89fef04f11982f8a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strcpy.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strcspn.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strdup.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strlen.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: a9ceaf1d9ede8791c7f986d76c2bba8ed75106e4a6bf10665a66b95683bac6f8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strmblen.c: 
   copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strmbtouc.c: 
   copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strncat.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strncmp.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strncpy.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strnlen.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 4eb212ed57eb468178f80781c20209a087129a621a86543b3c0ec39b4ad5d8bd
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strpbrk.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strrchr.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strspn.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strstr.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 63d133e15b867e7895edd2352c173567fe0d265932e367156cf3be247cb76d49
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-strtok.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: b3612c8df3c80589505dff2b00de24316e2ec6ff9c42ea3e5d1b3d0520ca0b2b
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-to-u32.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: c888c31db109f599e0d02beb4ef0ce5f61c56ddaa3ece94bc5b9cc4b2516c852
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-to-u8.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 59a93e5bcafc66d68def3b14157e23f301775715a31659046cb4e692b8800674
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-uctomb-aux.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 02b5c6e86d0a8def7f78e1a70e0f104a3e283bb1d7a2de6223763bcde8845be7
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u16-uctomb.c: 
   copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
   hash: 88d0197e480ceaa71d8fc9a34aaa68463f25d20524f758f55c023108338967d8
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-check.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 685489582302507fc4d2a831d903c752d9a900d2380f8bc33e8babeaf6a7637d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-chr.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 3d390e18ce2a42908d41cd6f2b9a9386775538654e35534760251a9e5528b952
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-cmp.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 7c6276b59ecfdc1dd63882769b6b4ccf919c844520679d75c03d00ef01610243
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-cmp2.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 57babbf34fd1be9100c5c49c352d468779d176c16711bf88df426bd0b0ecdeb5
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-cpy-alloc.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-cpy.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-endswith.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-mblen.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-mbsnlen.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: e2d35901a65cc0a9ef634e286369d131cd95c820698d2cff405423031ee4b9ec
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-mbtouc-unsafe.c: 
   copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-mbtouc.c: 
   copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-mbtoucr.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 5f2b794282efb3b432d0c8a917dc1f4f498a1c2f89392970a62db00da6c71abb
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-move.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-next.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 7ba432d038ecd2515356b8e70fa519d4cdac9e76b0d6e93a8a537ef4fda17448
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-prev.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 1508e6ba9768221299556836be8fbc1d5791cc3115cf08850ac9bec8623c918c
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-set.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 3dd041a6e485dbcd0ea0984b44bab7767b28a4665038ddf05b9955a2d6e6a596
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-startswith.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-stpcpy.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-stpncpy.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strcat.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strchr.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strcmp.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strcoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 6420d21bdaae7143502fa4278291a88e2834749b42928b0df438fbb4fc3b95a1
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strcpy.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strcspn.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strdup.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strlen.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 050991d876a33888be18fc49d7ec4d1146ff674decd9c3b4a3f1a1f9c168e632
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strmblen.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strmbtouc.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strncat.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strncmp.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strncpy.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strnlen.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: e1a20f548b672e6d0aa8b7954bc31b9c2157c4204b1e7346a250ab8840e7e356
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strpbrk.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strrchr.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strspn.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strstr.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 96be8a0f8ea189120bfe1f5c10629c0b840b2f2e9f64c54df9fce677f701d887
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-strtok.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: dedd8fbb7d1265bba868dfd5099d076b6587298e050805ec6eaced0ab5faf332
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-to-u16.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: c34e87d4172d3339a781e39d59f8fb9132c09ef980f44c2b1574bfafa685cd66
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-to-u8.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: d5933d39852f021cbafa03fcd622fe179fbfa3d2b7160e25a2a0f9cf649b331a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u32-uctomb.c: 
   copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
   hash: 34f3faef9d257a051c8d8272922f3e20f5fa880baea40b25ba02a9256e3b74df
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-check.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: eac2b052e4d9e60b9eb93ae9ec997c386e730de4bf3194fca888eba17a103f37
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-chr.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 42ec57a2ff9ac547a74c24b611b35ff9d2604edd08dc27f2eec1d887c295d1bd
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-cmp.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: fac6baf649d3fd3670f2fd9aa97dbd2dfa67d7311eba66c76fb96874a6a6f2b9
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-cmp2.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a93c38c1183febaf9ba16e653abf0df27e59ddad5f92762b2ba9e3f6deda64aa
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-cpy-alloc.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-cpy.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-endswith.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-mblen.c: 
   copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-mbsnlen.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: d777639cdf076ed27839f1eeaabd23eef4465185239d987ba767f2a866c300bc
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-mbtouc-aux.c: 
   copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-mbtouc-unsafe-aux.c: 
   copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-mbtouc-unsafe.c: 
   copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-mbtouc.c: 
   copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
   hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-mbtoucr.c: 
   copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc.
   hash: 7eb628bfecb6088142dbddc04daeb302c95a2a16ab2f4ce7fe96ac6515d1f822
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-move.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-next.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 00d3e25ac3c18c5d77c1d250c8220544e99fc346a8015da6b43e3ffe5014baef
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-prev.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 3d57d758b00dd01225b001edc0a71b3e6a7dc55957f00b1a5bbc950ae037f281
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-set.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: bcb3f22a0098c66883640efdd098aed40903b82c9a5d62b7d1936a805148d2a1
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-startswith.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-stpcpy.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-stpncpy.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strcat.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strchr.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strcmp.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strcoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9c5e8a7ef380723d07e0ad180fe59421bf9bf28e1a4d289d05263339cb4025d2
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strcpy.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strcspn.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strdup.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strlen.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 3f5efa4cf915f83bfdc9adfac2a13ca7d3c75c63c4fc993377e9dee1b36e9f13
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strmblen.c: 
   copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strmbtouc.c: 
   copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strncat.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strncmp.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strncpy.c: 
   copyright: 2002, 2006 Free Software Foundation, Inc.
   hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strnlen.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: e591a71a08b4377ef29017795f592adf1ebf56caa73d172428942ed3d8735e53
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strpbrk.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strrchr.c: 
   copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strspn.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strstr.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 62e3171131f084bb524e8e4b7b677e51dc0a4ddd7920c791e861fc6209824057
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-strtok.c: 
   copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
   hash: 70422453328ab4382d464bc5e573a7921b44d303c4da2e58aa0cd67c8285ba1d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-to-u16.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 7743fd5caa826417f0cc0e0da91677000cd23088c2b345a21a27aa43b0b595f1
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-to-u32.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 7308a76a0f28176be9098511a4dc13f5625aa399c70a8bf9993f78ddf7b319ef
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-uctomb-aux.c: 
   copyright: 2002, 2006-2007 Free Software Foundation, Inc.
   hash: 44e95c47ddf3343b1c02157c12c9a0a950852563cd543850488cb21944559e11
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unistr/u8-uctomb.c: 
   copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
   hash: 60d6859b731140e5420ea2e3093e3ac272522cc9685459a9eddbdf4909d79f40
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unitypes.h: 
   copyright: 2002, 2005-2006 Free Software Foundation, Inc.
   hash: 0eaaeed4ca0138967cd6fe4e6956edef837fa8461248425e893e1fc2fa0cbfee
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwbrk.h: 
   copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
   hash: 43906fff693dfdb439dee0927665138c03553941b19dec5efbca942a96aaa603
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwbrk/u-wordbreaks.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: fc09df77911b0e107a808ffff910b9e323519e9c45a98f3c013cf11a38865d20
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwbrk/u16-wordbreaks.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b5dea0d0ecc05dcf54c0de70762cc9cde64ffa38e40aa9ddad0b8a84d01d2c5e
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwbrk/u32-wordbreaks.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 4e66094a2b8797f527af80fd87fed6a222d621c8b8acffe7f7bdd9684fd5ac24
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwbrk/u8-wordbreaks.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 00a1587322d98dd8948a091a85b45d8ebc70469f9e8c58552e3ea591b1908786
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwbrk/ulc-wordbreaks.c: 
   copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
   hash: 1f3d4b29e74270464b552516539bd93bb486915d5e06e59452e3f58b1732d324
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwbrk/wbrkprop.h: 
   copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
   hash: d8007020c5f8a08911ff92b7ff5bfd74f9448c47e568b430f2f1ab7999fc0d87
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwbrk/wbrktable.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwbrk/wbrktable.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwbrk/wordbreak-property.c: 
   copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
   hash: 4265f2bbb6cd20db8b5b6034d1d7da59b5a2b943cc9543c158091658bb61a36a
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwidth.h: 
   copyright: 2001-2002, 2005, 2007 Free Software Foundation, Inc.
   hash: e4c6ff2cb013a8b2de23e758533e34077d64fd62e6c4098af88169ecd9ca1425
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwidth/cjk.h: 
   copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc.
   hash: 6d886d39c5a9bed7c747138b4025cd035c6b59163b1632e3eff5be730f9db943
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwidth/u16-strwidth.c: 
   copyright: 2001-2002, 2006 Free Software Foundation, Inc.
   hash: 25a3cc5a8562b7025075a92b2acd9499fb20191bfea045cdfbf6ab778fcd2130
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwidth/u16-width.c: 
   copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc.
   hash: 6447db6c2460f0cc11bea62a47e273a6cc33ca44ecdca0e7c640756cad86fc70
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwidth/u32-strwidth.c: 
   copyright: 2001-2002, 2006 Free Software Foundation, Inc.
   hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwidth/u32-width.c: 
   copyright: 2001-2002, 2006 Free Software Foundation, Inc.
   hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwidth/u8-strwidth.c: 
   copyright: 2001-2002, 2006 Free Software Foundation, Inc.
   hash: 5e92bd8858f143e5c3888e1890f467f6b2a077b1c6e5622e888cdba7922207fb
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwidth/u8-width.c: 
   copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc.
   hash: 5992f0453d5de4d8a6ba85cd63b8090006ba2c0b148afd9e07ab6d5dc36dea0c
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/uniwidth/width.c: 
   copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc.
   hash: 8f8187cd1a09e3412e237881244e68c314bcfb39c5c851ec7f251e17742ab6ab
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unlinkdir.c: 
   copyright: 2005-2006, 2009 Free Software Foundation, Inc.
   hash: c9c22134c02523e933f8d5d7ca013d594047f1ee23b58a5ae39377525f9f046e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unlinkdir.h: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 02cd119ca3d63148dd23165be0b728a05b4dc02618dbb0d81782d83029dcf4ae
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unlocked-io.h: 
   copyright: 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
   hash: a68721dbc7b80415c8f613c429da32c306e587ca487707e3cc920e7e34ac13a8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/unsetenv.c: 
   copyright: 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc.
   hash: 0b078599d4ea56fe10c153183b0254ed4945619c4c08c9ce35d5b32019d920de
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/userspec.c: 
   copyright: 1989-1992, 1997-1998, 2000, 2002-2007 Free Software Foundation, Inc.
   hash: 87e09ee21b48597c439740bea48e07ce2dfe3daee61e331c0fea028a4572f53e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/userspec.h: 
   copyright: ''
   hash: 8fc9e48846b3c4b567f7da8a4b872193d48989f6861b60277e4077a61585ad55
   copyright: 1998, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
   hash: 0200b3aa44e66773c0cde9fec4a180d0eb7111465207468fc42520867fb69e64
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/utimecmp.c: 
   copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 513c0e1f4b1f45d732838695ab385c411afac14ce1c8841ad8bcc3855d16900c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/utimecmp.h: 
   copyright: 2004 Free Software Foundation, Inc.
   hash: 4f328c1b87b0637f3cbb0c01968bbc5ffc5350b420f90f7f51de75d6872837ae
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/utimens.c: 
   copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: dd356a50d7062392a2b51927c4e390f09e3cb059bf0c2702ace1865130b3f136
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/utimens.h: 
   copyright: ''
   hash: d065c418d4fc1dad24e122f61cd9c4d59db9b05a6dba7ec8c17a8fd0fd9d9472
   copyright: 1999, 2002-2009 Free Software Foundation, Inc.
   hash: f826f12032ff66714226a5c720dd2dbd1d645ba0536b39dfbea651b792404c5d
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/vasnprintf.h: 
   copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc.
   hash: 2bf66b7f11449085cc6395a5d6d60496f6f13b08aa0187a5f52e9252e6cab2fa
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/vasprintf.c: 
   copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
   hash: 48c7f19d29a46ec6dbaf09a38b3ecbde38b8191f9bca32208ece53a6b2de08ee
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/vdprintf.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/verify.h: 
   copyright: 2005, 2006 Free Software Foundation, Inc.
   hash: a231e15e8b20379f38be81f4674fec177045e91abec1cc68481b6eb081c51312
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/verror.c: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: 2d2abd16891d68fb47a4f777060632ab389041f3cecbb9b5cce131f889f0fa8a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/verror.h: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: bfd2d5bbe94db1c367a3e3e4348fa2597a1c980ef1f74c10b7082ae569d56fb4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/version-etc-fsf.c: 
   copyright: 1999-2006 Free Software Foundation, Inc.
   hash: 2200910e2dfcad20e1ed7fa171431d1ee58058ddcf354bc54b58c6f812ece50f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/version-etc.c: 
   copyright: 1999-2009 Free Software Foundation, Inc.
   hash: 54f16006d89e39c40e5de0ff2f87f3f8a0498e25d2032fb2ef3b3e5c8a7f8bae
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/version-etc.h: 
   copyright: 1999, 2003, 2005, 2009 Free Software Foundation, Inc.
   hash: 8fe8c52a2462c979791b9718376564da4abfb5e764de7bca57ec4ff85a97dfc3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/vfprintf.c: 
   copyright: 2004, 2006-2008 Free Software Foundation, Inc.
   hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/vprintf.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/vsnprintf.c: 
   copyright: 2004, 2006-2008 Free Software Foundation, Inc.
   hash: 2be1271317efe1b22a2d9f18376d0a225658aa69ce7d86064c5a767779711336
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/vsprintf.c: 
   copyright: 2004, 2006-2008 Free Software Foundation, Inc.
   hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/w32sock.h: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 1fd87a23e6def0b721fd23be4572dc15592716c646eff400eb8fa64fffda4962
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/w32spawn.h: 
   copyright: 2001, 2003, 2004-2009 Free Software Foundation, Inc.
   hash: 010dd0544b69c6f163c5243a3b721ac0e3d23cc3e1b9ce1a8a30fce6789b7e6a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/wait-process.c: 
   copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
   hash: 580ab33dd9e9ad4be37f0440dce7774cf758ac9eef6725756be9a2d08481b529
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/wait-process.h: 
   copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
   hash: 9c746de4916059b6ca40492142d370bc7006d4b8f032ad0111f6db7b0f653306
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/wchar.in.h: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: e2b50e5f1a1293246463b729146da631d3afced4d48e395e00d38ccef20ea230
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/wcrtomb.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 10ecd599d0542d9a8001cca8225ee9c13514679962f22a531c75270aede87343
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/wcsnrtombs.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/wcsrtombs-state.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 04a4e1633ad0400f2161a87e7cf9a6aed6f826572214e001af1c7dddc850d7aa
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/wcsrtombs.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/wctob.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: c1b08427605521353fd457e9a00f2c3c9b08f1b424e5a75a9186d803debec1b5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/wctype.in.h: 
   copyright: 2006-2009 Free Software Foundation, Inc.
   hash: af0dc33178ed26851e8f3cb509f0acd760c6d25a876e8dc19ddb362d74ea46cf
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/wcwidth.c: 
   copyright: 2006, 2007 Free Software Foundation, Inc.
   hash: 0aa6edaa085279cd62d2af3087586c8d95c4a611a683295b382144145735fede
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/write-any-file.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 91ab05c6935f8e51a763879fb79b2f3e9a68d664409800351c677574461519ce
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/write-any-file.h: 
   copyright: ''
   hash: 3baee9b8366345680cfc53a87f5dee015146c4255cee16b96803bb3f26cc9d2c
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 862d3fd531460e25f2438bd1a28cf38b2f681566dc0e6eb1870e0c903173909c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xalloc-die.c: 
   copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
   hash: 29f127d04d8c8d1e5999b7a07f26a3c5a00f5162135417f5956adf7ef53b7578
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xalloc.h: 
   copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
   hash: 671d0dba30c52a75befe251993cc88c9cd3c9d5c047bf49267ccf26b133b4fa2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xasprintf.c: 
   copyright: 1999, 2002-2004, 2006 Free Software Foundation, Inc.
   hash: 8f74172c8681a5c0982e04312d1ce3104bab1aef39016d11869f0176d5fd27ed
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xconcat-filename.c: 
   copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
   hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xgetcwd.c: 
   copyright: 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
   hash: 07b391c85dc4337c756a55eec0eda78ec9cd0e0975b181a48c5029c172a023af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xgetcwd.h: 
   copyright: 1995, 2001, 2003 Free Software Foundation, Inc.
   hash: 291895105e1bb54b496008ad5954bc8163c0ac56b8287f27e49adbe54e9ed0cf
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xgetdomainname.c: 
   copyright: 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 Free Software Foundation, Inc.
   hash: 088792dafaec8531ae554297ad6ae5d481593dfab6921835648a8bce17c0c116
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xgetdomainname.h: 
   copyright: 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc.
   hash: b26e437c9a8e6901a5034314c104978730a0753855f02e620edac0428c35b0a0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xgethostname.c: 
   copyright: 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
   hash: 2c4e8d5075dbcfa989f2855a9f231d4c98065036c64acf489b1449f4a3af9c39
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xgethostname.h: 
   copyright: ''
   hash: e9a81c8fca91ef7a8fd72e8246a5fe6367dba77986f6935a318fe7d551ab1e7a
   copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008-2009 Free Software Foundation, Inc.
   hash: 25035c1bcf6b0d4ab5f9894ec09f8312b715a2e72e95d7f56b4b9ce41f53aade
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xmalloca.c: 
   copyright: 2003, 2006-2007 Free Software Foundation, Inc.
   hash: e84a48177ef61605b6eed93be0310de6dac9146bbaf454bd7fb6caa1beb416f5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xmalloca.h: 
   copyright: 2003, 2005, 2007 Free Software Foundation, Inc.
   hash: b8589d4f03fc2e4441ee611dd5596e4a3ac0657bd6974d6b21e95d435aef8f6f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xmemcoll.c: 
   copyright: 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
   hash: f6215d92c92b8dd0afcb4da7a17068eb6b7d997bd3b8f7a3cf6e3e0ae25ed83c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xmemcoll.h: 
   copyright: ''
   hash: 06a32178ba593d8d983c9d741edf99f4a67fa37ba8e8b45cfe60e796fe6e9fcc
   copyright: 2008 Free Software Foundation, Inc.
   hash: 244bfde7ef2ec650951db25d48ca2a94b61b77db3692c001b316f58057af7d14
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xmemdup0.h: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 0d3d9d1a970022933ab73db3375f0cc46e5fbf23a16ad79242cbd6461110201d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xnanosleep.c: 
   copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 587481ebf1cf8ff5a01e7ce8889b66fa2be4a4c631fd020f2df12deb6322f814
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xnanosleep.h: 
   copyright: ''
   hash: dec8f8b2087a79c9bb77d7f89d934625f2b83dd66bbfda194299b351baa1a38c
   copyright: 2007 Free Software Foundation, Inc.
   hash: 53c512f199ddd3f96147026f3ec162d4a4795ba009341a77dc173cdb6652a06b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xprintf.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 6d16969445a022a51044c272fb9aeefd3fa1bce9b54006cd10226a704b05f6fb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xreadlink.c: 
   copyright: 2001, 2003-2007 Free Software Foundation, Inc.
   hash: 3cb513689749db6e11f0f29fbee0e970aa1b69b3b1c1ab4b7ebf35f70eb59525
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xreadlink.h: 
   copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
   hash: 0137f3b154dfc2a56910915e2522eb83920cfa9dc1684b241d60fae327d93f9e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xsetenv.c: 
   copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc.
   hash: b18f92f3404ce0f52b6536522986febc64c972fbea548ba151a12abd0550c875
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xsetenv.h: 
   copyright: 2001-2002, 2007 Free Software Foundation, Inc.
   hash: 02f0e5d1c1bee87cfcc15ef5d22da97530a2213cce025f98bbd07440a9346aad
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xsize.h: 
   copyright: 2003, 2008 Free Software Foundation, Inc.
   hash: af3fdcacfe8f3dbae26f9d806b0a9b2274f86ea7daed7117f09e29858b85d38f
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./lib/xstriconv.c: 
   copyright: 2001-2004, 2006 Free Software Foundation, Inc.
   hash: 42d740ec07e24b23ef7e205783f456e0ab80a5a2d716e4d045408b73365440a5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xstriconv.h: 
   copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc.
   hash: 07f01b89d3917786fdb52af236bc0007f98425b6167f083f2440d19e17dd3c5f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xstriconveh.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: e35dae25c1d50a7d5d5b3df39059abf308145f43ae4e85ba73931745e7017995
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xstriconveh.h: 
   copyright: 2001-2007, 2009 Free Software Foundation, Inc.
   hash: f64f01e0d0569fa1f4c52371b10abc77b255d1a578f06d141d682561ee8c28bf
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xstrndup.c: 
   copyright: 2003, 2006, 2007 Free Software Foundation, Inc.
   hash: 0fb519e75e481ad8278a17ca05d2a40e377c265586ca996d18c4a56ddd4c2697
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xstrndup.h: 
   copyright: 2003 Free Software Foundation, Inc.
   hash: 41aeea4d051e789e9ee829206990c84da4e6ab74f5a5ebbf1e7444ecdb2e7093
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xstrtod.c: 
   copyright: 1996, 1999, 2000, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
   hash: 7433646b920b02364625fd3d4b09fb30c050b37a3c73ee2c644d63ee95bca8c6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xstrtod.h: 
   copyright: 1996, 1998, 2003, 2004, 2006 Free Software Foundation, Inc.
   hash: ace9d21f9ff0ac53904c27c990f62e2b8819a7776acbd67c3f05c6893dcaef4a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xstrtoimax.c: 
   copyright: ''
   hash: b2ce36a250657c54d51627b616310f70c9870fd5fc7941bf18d3924067f28563
   copyright: 1995, 1996, 1998, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc.
   hash: 831f1f9013ce8fe06ea3685fd92d37cebc8125b91e0c87a93758fd5f4b17c47b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xstrtol.c: 
   copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 1de66c39110e53ed0f5d4cc2737b14547ef7657e0c6ff41b7d14bf71b617b792
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xstrtol.h: 
   copyright: 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
   hash: 03fe7afdcf7063d6f46436f0ca5dc6cd12a9f6bac186bc36f3af26dd745995d6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xstrtold.c: 
   copyright: ''
   hash: 1a077cc54d4bfd4cee5ff0022623e5f8553d4eae977ca2f0bed5d0de5c51119b
   copyright: 2005, 2006 Free Software Foundation, Inc.
   hash: 93ba493c1b4263ae9363cbeabfe1a8abe0959b8380c740b34e3c4b3909c9f26d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xvasprintf.c: 
   copyright: 1999, 2002-2004, 2006-2008 Free Software Foundation, Inc.
   hash: 52187c5a41b1f31643add5fb4e3f204c74131d3030ce4b7668476584bc3075cf
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/xvasprintf.h: 
   copyright: 2002-2004, 2006-2008 Free Software Foundation, Inc.
   hash: 43236f9f154af870f714a7b11b1f4955a7e1e7a2e9f322608e5780e185014f63
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/yesno.c: 
   copyright: 1990, 1998, 2001, 2003-2008 Free Software Foundation, Inc.
   hash: 89bdc0ba46060accf0008dc08a620a5629f006515f4bf5cc12a17775d448bfa3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./lib/yesno.h: 
   copyright: 2004 Free Software Foundation, Inc.
   hash: f6ea7fda3622e6ce79f8737d3a6c12e11e9b077489cdbfe3a89e2105aa54493b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./m4/00gnulib.m4: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 199b5fcd827c6451f70d8e1d1a64e314dbae7654c56b74f6588a5bdc54544e70
   copyright: 2002-2008 Free Software Foundation, Inc.
   hash: a5ccaf8a1eb82ecf46eb6b2aa5c191573ba82514eb2a06faae04e262348940c7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/locale/fr/LC_MESSAGES/test-quotearg.mo: 
   copyright: ''
   hash: aa0b83acbe74a54fa3cd8a775c76808e83114c0a544170c7390bce7ef812a035
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 0e920a53922496135430d09f3bfebfc1f03f63142e1f0ff761e842e96d506a56
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-alignof.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 8bf8f28addd7565ad3f4256848a2aed22f6b4d89ba5b501f5d3e45273b84af36
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-alloca-opt.c: 
   copyright: 2005, 2007 Free Software Foundation, Inc.
   hash: 7be92bd4805798798cc208871e587c60cff48c8fe695b08405cf2dcc866ddbfc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-arcfour.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-arctwo.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-argmatch.c: 
   copyright: 1990, 1998-1999, 2001-2008 Free Software Foundation, Inc.
   hash: 374d3cdd98263ea28ad0f3d8c21f8aaf953562d377316a56f32a69534d13603b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-argp-2.sh: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: aa582c3a737c286f43630868ea734856d5d74809aed1e967403b6d1e21a96ec6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-argp-version-etc-1.sh: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 14124a44a2d4160fc8d3bde7bef3491c53725766368df8d5b97c5473869753bd
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-argp-version-etc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9894dd1ed11fe0f5567b33d83bddb190020bbbb37e5792cd8a76a9145eb3e7cc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-argp.c: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: 3b0ecdaec3be7ac59ab04ba51095836c4843d5fe2016294aef19667d894b0503
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-argv-iter.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 87ef6b17b9a78fc466aa9cc85627af6f6e0ac63b0d7c82998d4dab47a9bd298f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-arpa_inet.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 79ac8a737e1a83e3bad62ce1868e706a2b08bf46afa32c67681e91beb53462a1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-array-mergesort.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: f9c4ef4dc591cbeac70eba11e9533d59181f12cf12d362e00782f45ecd9c36ed
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-array_list.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: e03fc7928bfbe8781c744e1c21b70a907264b62c59bce976a7ac04694d5ff6a2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-array_oset.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: c0bae0da40c7a22d6504b362bb30545716f1f9ad8bd5ca4a817a809f88197808
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-atexit.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 03e140710061dad22ceba20a744340059a599decc42a1f0a57061c370b674eeb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-atexit.sh: 
   copyright: ''
   hash: e693dded1c3bbe595a21498a71264cec8bb24a8356518618974847660d760774
   copyright: 2006-2009 Free Software Foundation, Inc.
   hash: 7eda006f64201339fc1716ebf20c065d5bdad5b0c385ae538ed09804b9100628
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-avltree_oset.c: 
   copyright: 2006-2009 Free Software Foundation, Inc.
   hash: 30f270cd2b85bb909eaa7bbd80590b7f31be418ab29815c404aa0266290f320a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-avltreehash_list.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-base64.c: 
   copyright: 2004, 2008 Free Software Foundation, Inc.
   hash: f1a00fd1ea70356a96758211f9ee6ac4b85a24414ac54c1d218c21c6df7f8a15
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-binary-io.c: 
   copyright: 2005, 2007-2008 Free Software Foundation, Inc.
   hash: c45b392e94b4c908c583df305c095c968079bb2bbe726a7feefc0c7400de5a58
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-binary-io.sh: 
   copyright: ''
   hash: 1ed5b40114bb55012cd28394883f8711c6a892ec24cc5ae55877736ff7753a9a
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: b31c900c0b50eeae92b228ab5590bb3f390daf91535632322fe28d791eb1e0b1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-btowc.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 5ebcafef18833867faa6529b403f9ea8209c5b226325a645d7f4213d0daf22c1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-btowc1.sh: 
   copyright: ''
   hash: b4bac8f44ded39802e8ffbefa260cde10c90ae2f9cb7a3639bcf747a93fe871e
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 54ff0c61e08753f6557e58cbd5a9ec794ca5f2e7f51c605f4188f2803a5da67f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-c-ctype.c: 
   copyright: 2005, 2007-2008 Free Software Foundation, Inc.
   hash: 13becd45e283e22f97fac9aa9901241affa9a90f9e2e0a10efd1267cb9bada9e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-c-stack.c: 
   copyright: 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
   hash: 3b31d9428c61805262bd02ba033b43f2e82e1152a2cc23f48bae221a7b86dce1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-c-stack.sh: 
   copyright: ''
   hash: 5ff4f37644ece982d306be694f3a8f1b7ab0be3f227b9134ed02bf92044cfd94
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-c-strcasestr.c: 
   copyright: 2007, 2008 Free Software Foundation, Inc.
   hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-c-strncasecmp.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-c-strstr.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-canonicalize-lgpl.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 75c8baa24049fa693e9d21c4e974cbf52f43450a5b050bec610517bc05fe9464
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-canonicalize-lgpl.sh: 
   copyright: ''
   hash: 81afe45f5b4980a73878cb5e648cd582ecf66655103424ffe60cb82e671243eb
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 7c61f923516c2bb3723a7449064aadf6b2ecf9568d3e1e05f1869841160852ad
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-canonicalize.sh: 
   copyright: ''
   hash: 179eb3794b8e41c6c38fb9483fc9591a1a45870367cf8694ab22293d2a6fb124
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-ceilf1.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-ceilf2.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-ceill.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: e09b1df767b4364cee38177843c6dcd444e346b8bb5b5161b90d8acec2dbf97b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-closein.c: 
   copyright: 2007, 2008 Free Software Foundation, Inc.
   hash: 60b704da91782d85057f15589b9adc2d33e1d034e212d4fe256a6e2bc65ffab7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-closein.sh: 
   copyright: ''
   hash: 24747fa1e687723c702708fb4c239cf6e54f59d0a1ba915784eb47e86e4c29ad
   copyright: 2008 Free Software Foundation, Inc.
   hash: cdf0a1afb208f062d159f0bae1e25a2c661d41e33bae74c541e2bd6700dbd280
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-copy-acl.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-copy-acl.sh: 
   copyright: ''
   hash: b1467dfc3f8068c2ef6833ef9f6e517dbb8289b1f4c720ab888072f32c7a9636
   copyright: 2008 Free Software Foundation, Inc.
   hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-copy-file.sh: 
   copyright: ''
   hash: 3454dddf42074bbc9ee4ad92fd4b15d168fe3bd37bc4e8ba740a040441f861ca
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 0a1addad31c87ba1dc9b2149bec84703e74bf936dc6807f45f0df6c679c99eba
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-crc.c: 
   copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: e926964a3909208530797cd9796ec1651f592cdf9925dcc36e6e5a566968712f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-des.c: 
   copyright: 2005, 2007 Free Software Foundation, Inc.
   hash: 2be8e95b0dea714ec5eea7bb03ba88c5768d2dc5376db963fa25bfaae842c979
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-dirent-safer.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 5a22d0608d61b123ddda55784e14d7d257b9110344b8e19243968d9fa0fd2eff
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-dirname.c: 
   copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
   hash: 502e96f62d9a5b6ce322bbae2e2710d9e0d9865dbc4afa1e08fe7abf01fea73e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-dprintf-posix.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: e6f0b4694e38d2d1e76dc966dd73d4afb089176883b07410a1b7f22f1e133b33
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-dprintf-posix.sh: 
   copyright: ''
   hash: 87cd228811d69c325ed0768128a0b3f461e85a1cf16115f64a097d662d3f21d1
   copyright: 2009 Free Software Foundation, Inc.
   hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-dup3.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-echo.sh: 
   copyright: ''
   hash: 167c0f782ed61e0c577c8644fe6afd5a8c987ce1f93ba3f28228fe90928fddfe
   copyright: 2008 Free Software Foundation, Inc.
   hash: 7f9aff3986d989fd5967abe2d2b072d678411dd664064aef0639f7a7602921bd
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-errno.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: ca54e2c0451c2ff331290635dc29a1c8f47a42e28a5e85dec52c78e70fa8e810
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-exclude.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 8ebd7047d8c758e1bb24cb360d2ab93d441a88f10b84384950d69c2977c4165d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-exclude1.sh: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-exclude2.sh: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-exclude3.sh: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-exclude4.sh: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-exclude5.sh: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-exclude6.sh: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-exclude7.sh: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fbufmode.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: f8bb902cbd6174946430fea20f8b499d96ef441a74fe87b603adc43f53b24ba9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fchdir.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 1ede59e2649f54965b96b11e3defba44f756e66e2f0c750d5f950f4dbe196fa7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fcntl-h.c: 
   copyright: 2007, 2009 Free Software Foundation, Inc.
   hash: 356ce47d3e2061b396a00244416fae41a78a4ff320458994f76699c2d5b742d2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fcntl-safer.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fdopendir.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9847782c540349bedfe816a98eff2e2a2b21de374b5eb0bbaa3f59cbb61ae561
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fflush.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 69eca960097ee5c280d159ba1477c6fdf640149e0e14e210b536524114a79618
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fflush2.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 0cb46425ac00337c0a55933b576d483da8c84792991892297731d9ffc746f4bd
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fflush2.sh: 
   copyright: ''
   hash: 9d3df2d637b481f1d5f1437b111dc2061bcf8e995843af8856817103951b1483
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 6c2949f3e460929b2f8bf6c01aed469b5cc37a1eb1233352638770c3930df5df
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-file-has-acl.sh: 
   copyright: ''
   hash: b1467dfc3f8068c2ef6833ef9f6e517dbb8289b1f4c720ab888072f32c7a9636
   copyright: 1996-2007, 2009 Free Software Foundation, Inc.
   hash: 2421876d5280739ca72e375a556c1af16509b646f18f3217c4a71c9539b47234
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-filevercmp.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: e9a609c14b8dce43bffbf6d67ec08a74092aa14c279914cd27cf603657ead587
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-flock.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: ed2f3659a200c467c8c3c35b233e01ef87c935180aed9e91946bce9883ea62fe
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-floorf1.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-floorf2.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-floorl.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 8dd61603c1d098520aa003282269b173ff24e36a22c995a82098236b60c0bd12
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fnmatch.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0949276b897ba2ca32389bb684582366b42e011338d888e27529fe47643863a0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fopen-safer.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fopen.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fopen.h: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fpending.c: 
   copyright: 2004, 2007-2008 Free Software Foundation, Inc.
   hash: f674acf1725bc698a2a895260a0ed04e4e7d75079bc902bc25df4eda4626648c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fpending.sh: 
   copyright: ''
   hash: db7046a61b7536849f3d58ac4a230b874a449d61a4f33331d2a39e3eb40cf26f
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 745ab000bd06f41a498df49ee0daf9fa7feaa93b9f16156e4b958405becd413b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fprintf-posix.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fprintf-posix.sh: 
   copyright: ''
   hash: 99530f369d42274f641c5404f05d6eac54cef4816643f576b94631d3bd50e8ab
   copyright: 2007 Free Software Foundation, Inc.
   hash: 61c448e81f453607a13ca6af87bb998cbde812213f3c001d9ad5bcff9cfe6f57
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fprintf-posix2.sh: 
   copyright: ''
   hash: 57de5c6be9adb4eb8e8cc416f2c47f934f82f4d3ce6256ce7e72fdfd6a727377
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: fc4f811164270032bce572b9c4f9537ea36963aa67e630a450c0258599c8ddec
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-freadable.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 8f818a6a890d5569df82559a4e62b02dfbceff150985e779e219669eebf9ec5a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-freadahead.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 9833934459a057c2572f209afac01879e5ca8a3efda95d6790d17ab9938d1917
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-freadahead.sh: 
   copyright: ''
   hash: 7d4e9892370ff589533c590bd88ec5f6aea65ce8126c798ab48f96d87cc0de4f
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 36417f8adf8660daefb24719abfcd2d6df61a952656fe82370e243753bce4bd6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-freadptr.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-freadptr.sh: 
   copyright: ''
   hash: d77d62afd49fb9b006aa3f1b2e41fb246f8f4e6ed232637b8c5efb02e31f6e9d
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-freadptr2.sh: 
   copyright: ''
   hash: 9e8bf4b4fdad153f5bcaf5d3d9a51c2b362cc5e21262c769e87e36bf29f6f3d3
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: dd89379556b28cba841ae08e74f0d92b1739c31a7e399dcdec050f4e73a51430
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-freadseek.sh: 
   copyright: ''
   hash: 8c922bdee150c36bbbc68d2273511885bd4f54145ec4e0e0b74333e9ab68c5e1
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 1794fac0885679928991ce38c01ee4e5e23331ca73e89de6fa05c0d731ac9ae6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-frexp.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-frexpl.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 06e5c7a95b4f9162db1d74f609c89b24736a09affac663df79cce627cac4355a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fseek.c: 
   copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: ae3126d4ce719f8e50ae5bd6defb067f936333ddd967e018d9d63614e1510ba7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fseek.sh: 
   copyright: ''
   hash: a221109e451414ff3596a9e2fc85ecad8dc9a4b5d41c4be22ca4e8d4bdaaedcf
   copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: 1560dd162ef0b3cfb7b9b2202b21bf9933c216776fc89f20361e521f162b3ce6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fseeko.sh: 
   copyright: ''
   hash: 5d1445019d710edf18f8405db195d0e08c95a9f8bb20b59f25e5f0d22e19dba8
   copyright: 2007 Free Software Foundation, Inc.
   hash: 9573252bfae2fe4f10686e73eb86cc0d662f2e25a23b7a4f70036ae38ca30ddf
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fstrcmp.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: a7b983fc8ba0e4d673899f2631eae4461eeb11be8a5a01a6f57ff6790dde39f9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fsync.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: c3f28d94e1d2539f92e889ad3322fbc9b5fcb9c406f9840452cf355766627792
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-ftell.c: 
   copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: b7573164fb69e7149847239bf7ceb7db79f453822f1cbda04e22a52283b3281d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-ftell.sh: 
   copyright: ''
   hash: 86795dd7b612958804e50342aecbc2d23222542142f4e6a6408e4f10a1f6a2dc
   copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: e34687ed84f4523c387c8408a168176c62b7e3da1d7e5c51fd2dbfdd11b61cf9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-ftello.sh: 
   copyright: ''
   hash: 3fecd8a2adefe6f15a998f136266ef37222cf6273ba1da4cce7d097635bde45e
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: bc81ef2fd91ed0c929de4c4958fe9d6af9f4b08a310f02929b7244bc9c3821db
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fwritable.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 319d6c836c355f4f63122cc2f7ba0756183810d27488a8e5a4f09305d31c19d9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-fwriting.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 499f0954d31a94d7067eb0be27b75766f56ab69c0494e2845759fb24d1703f4e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-gc-arcfour.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-gc-arctwo.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-gc-des.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-gc-hmac-md5.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-gc-hmac-sha1.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-gc-md2.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-gc-md4.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-gc-md5.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-gc-pbkdf2-sha1.c: 
   copyright: 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
   hash: 7799cf357547a841ccf3afeb7e5d9143abc19ee0a898cb087d2de1bb492bae59
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-gc-rijndael.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-gc-sha1.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-gc.c: 
   copyright: 2005, 2006 Free Software Foundation, Inc.
   hash: 8cb1d73b6c4bd47920f369b94539807ae13559bf31d128fea4584223d60675a0
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-getaddrinfo.c: 
   copyright: 2006-2009 Free Software Foundation, Inc.
   hash: 97815c6bb90ea2860ebdfcd9dfc8554dcbfa522d7aa8ba38ddecbc126e096a8d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-getdate.c: 
   copyright: 2008, 2009 Free Software Foundation, Inc.
   hash: 935427c30258eb6e5a9b394cc5d96c1427d7abe260fe0b81fe448b30a4171ba3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-getdelim.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: c90cc89f32a451ccbfe0910eb584fd389f60f2b051affa2dbe2bdc9d80097081
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-getdtablesize.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 434e5606cbd9d33002d0e279a6af31645a13f37bf9492b61df63bdd7fac591ce
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-gethostname.c: 
   copyright: 2008, 2009 Free Software Foundation, Inc.
   hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-getline.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 324eb53650a3b992efd3fc0cce526be56e493dac9a686c8f32b40a845358556d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-getndelim2.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: ad18c635ec03c40547062fe271ebb6703e1d91c537b7adf63937c9ae962c1913
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-getopt.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-getopt.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-getopt_long.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-getpass.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 9a0c1937fde38c70927a4eeb336d442bd6127bc5eb69e09a5cd4deb09e2fc195
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-gettimeofday.c: 
   copyright: 2005, 2007 Free Software Foundation, Inc.
   hash: 5b419f77d9b7e6e89f7289f386cd548243e4e4adc21e9a52d41d21a027fdf8ee
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-glob.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 90a78aa60a23cad4495713152d6c476d4e43d510a6392ab6368173e374d14d04
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-hash.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a74fab88b5cf12f0e0d435a4a5e3fd5e55078cae553004def0998b9222616a24
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-hmac-md5.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-hmac-sha1.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-i-ring.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: 6f100cd5549d218db3fc88df418a556f9aac62f0bcf54163da4ad21c84ccb129
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-iconv-utf.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-iconv.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-iconvme.c: 
   copyright: 2004, 2005 Free Software Foundation, Inc.
   hash: d82c108598a30a83eb25992c35c31945f938c62e30203a312361e842c432d069
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-idpriv-drop.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 887a2d06234e0105a076274b1c0cb5a4b97b25977378f755f305ead016dae39e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-idpriv-drop.sh: 
   copyright: ''
   hash: 1b6223eb69f34418350f9987b6bf4b62f92e4629eddbc2fa2099aebf95cf6471
   copyright: 2009 Free Software Foundation, Inc.
   hash: 036d78805f967b4753cdba6e50cac8854f7b24390bbf73b5a2d7f0fd6e1c903c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-idpriv-droptemp.sh: 
   copyright: ''
   hash: 1b6223eb69f34418350f9987b6bf4b62f92e4629eddbc2fa2099aebf95cf6471
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: 8ca6a2b71d7f538cc79e407439bcd512ffca9203636f7cb336cd8c0d12d322fa
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-isfinite.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 192e0aefe852ad279cf33f30acbf1e6a5a685ea90a52bda5174baf39c06cd339
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-isinf.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 467c934361d927c8eb3bb47ae9844379ca009c7ebc4845dd28e567813ab1efcb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-isnan.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: f1159b7f32f37a46e32fc884afa11c72818e02511e9332ee213bd99ffe3319f8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-isnand-nolibm.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-isnand.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-isnand.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-isnanf-nolibm.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-isnanf.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-isnanf.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-isnanl-nolibm.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: d24217e860acd20ff34dacb3bc316ab34a3af4a1d47241da882a51348e4bc34b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-isnanl.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a6dad044535d0b8182f8331618c092ddc94769e6aee495678f102047711f05e7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-isnanl.h: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 1ccd58e1e4f6b9d59404fddbe589f2e34e40ea508081a567040c100b60b197c3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-ldexpl.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 7ee31a7a49ffebce6a7c8f0225d169567e0be429e67a89882ae1670f5ae9075c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-link.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 26cc2a58a305192996a7e8ee065b4bf8254c9b13d4e9f4efbe3c77777e2fc065
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-link.sh: 
   copyright: ''
   hash: 1b15e579dd41f894ef55727093cb2490e586dd857fcd726339f4a59203a8fa68
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-linkedhash_list.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-locale.c: 
   copyright: 2007, 2009 Free Software Foundation, Inc.
   hash: 13e3a273bd14c7064068652cb01722dab29c3661de434218afc58cf29f5900d8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-localename.c: 
   copyright: 2007, 2008 Free Software Foundation, Inc.
   hash: 7695c1b31209fab6aba6c16e3b612f606d1eae1b0720f1781148cab7fd964e7e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-lock.c: 
   copyright: 2005, 2008 Free Software Foundation, Inc.
   hash: b995e7ccbf41d3f3ae5e9ed223ede35060a5c1ac152baaf9793fd8bd43210b93
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-lseek.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 67b2fb2011956d378309801b9f809b54658434eb8b2a5c6a77b87090bfbfa9ef
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-lseek.sh: 
   copyright: ''
   hash: 103b304131e87f84ebdf7fe51ddbca5d1de74d1b231c0e8d0f1f74edb60aacf4
   copyright: 2008 Free Software Foundation, Inc.
   hash: 9cafdb021e073473c5f16a5b4f74a2ac31579de14aadebbdef5a0f625250d0e8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-malloca.c: 
   copyright: 2005, 2007 Free Software Foundation, Inc.
   hash: 687b864c60a0a939b2d06d15f71bedc6640551c5a46b9d97cf954b7b9dad01aa
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-math.c: 
   copyright: 2007, 2008 Free Software Foundation, Inc.
   hash: 5e0b0077a9753a2a6ab13b7d12ba7a95c37cc998e3886d96a0c15b55bd951f48
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbmemcasecmp.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbmemcasecmp.h: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbmemcasecmp1.sh: 
   copyright: ''
   hash: 7304bc74f3d3a258e8210ea8a863f27aab54802b024dabb25a34b9549960b9f5
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbmemcasecoll1.sh: 
   copyright: ''
   hash: faed7a5be2e3810c0ffc7a90a52082c8f5cf3db405497a7e9010d2c719231ff6
   copyright: 2008 Free Software Foundation, Inc.
   hash: 9e6ff6c6e393938dfae1ad3aa59b09a1aff3de7914e1d9b850ea0c62a2865a0a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbrtowc1.sh: 
   copyright: ''
   hash: aa376c39dd66d55e6cbbc2acb3c88909aef3ab2b5dd2b88b64237d1a5113a325
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbscasecmp.sh: 
   copyright: ''
   hash: c400cba3bdc37f57ff59514590ef1c1ffb525def25363dc057cb795350258088
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbscasestr2.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbscasestr2.sh: 
   copyright: ''
   hash: 7625b9217b1cb7efd0991f90f4f63de80e96364a81c197d42ff0ea48ff92474a
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbscasestr3.sh: 
   copyright: ''
   hash: 7bea28d4bcddc0db1d408f47ea4d152507a19397c06a739f5f996b2dcbb95f8c
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbscasestr4.sh: 
   copyright: ''
   hash: 7499e59252f59878b81950d351ed8786d455589a88cd005e7ff98abd521ae4b7
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: e5d6bd10ed694e87f1e1f158fda3d9e3bfe798703c35c003123ad801a988cd9e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbschr.sh: 
   copyright: ''
   hash: 7a680a0884655b6591b91b98d2e0192e1defe778a12f3a5bf271aa6a761692a5
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbscspn.sh: 
   copyright: ''
   hash: 15cc680a7cb6f0f0f80715a88a5c62b67c5ae2c99589420be9f5a7312d252e3a
   copyright: 2008 Free Software Foundation, Inc.
   hash: 0a0f9a89e23f44ce8d21a21ec2345e1f3022ba9e3e35e2705f7347e5d3da89c9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbsinit.sh: 
   copyright: ''
   hash: 104168895eecfbae80f96f8abd4c73822d9dcb2ce305f8020a0424fe2d55a660
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbsncasecmp.sh: 
   copyright: ''
   hash: 50eadc9df534559ed5509be4a6af2522252ace74a00646bceff01daa139b622d
   copyright: 2008 Free Software Foundation, Inc.
   hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbsnrtowcs1.sh: 
   copyright: ''
   hash: 5db850b49c6897a60588a348aadf7f5ad696f27f58876613cb686088e82065ad
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbspbrk.sh: 
   copyright: ''
   hash: b68f5c5e76fdb5ff39f3a4b137f26afec83fbedd80132cb547663c5113395523
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbspcasecmp.sh: 
   copyright: ''
   hash: 0dc0b806a5fc1a9d2110db05246da688cf15390dc3d79948a5d6a2bbf2040af3
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 336d238f34950347720810d4eba15e4d22a9aa84098f3ec41fd2856d8aedf6d7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbsrchr.sh: 
   copyright: ''
   hash: f8f59a2913930da2af1851dc24468f2921742b6091b86a65e284b38b418a1397
   copyright: 2008 Free Software Foundation, Inc.
   hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbsrtowcs1.sh: 
   copyright: ''
   hash: fb24fa64654c7d2c588311970717aea290a3291349f8a5611aaa761713119cc6
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 2708b6a1359116604ffd1f0488e510bef6ee687588f481e0cad37ed0ec848913
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbsspn.sh: 
   copyright: ''
   hash: e0bd7e62a91c072db88164046ecd6f42c88ce44a634a76eb1c83c248831dd936
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbsstr2.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbsstr2.sh: 
   copyright: ''
   hash: 1d805ef1e6eab2c44e8668fa623a5d246869cb3f39a685c4a3135996e45ead77
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-mbsstr3.sh: 
   copyright: ''
   hash: 880ac90918e954ae500cce18004a2592619063b0cb6de41740f197f38df9d415
   copyright: 2005 Free Software Foundation, Inc.
   hash: abf2f70a1887b653b034add8c99c0436a2e3751e63f73929660b24930fa9f795
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-md4.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
   license: GPL-2+
-  license_text: ''
+  license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
 ./tests/test-md5.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-memchr.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-memchr2.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 8d79550f65f0123da4f6be14234e0fe15616b4ddea78f81d77dd51fd37973be6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-memcmp.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: e18a4806f468c3a8e062e5dce871b138ea023af8f3f3aecc2830380fc2d28f6c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-memmem.c: 
   copyright: 2004, 2007-2009 Free Software Foundation, Inc.
   hash: 382e52373b1850a70886e1a8b5e6036b56dc71e1a7308522c9bc833e27a18406
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-memrchr.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-netdb.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: cf4bf72aa3b66b389ba6ec0da06aefe83c95f0654339a77a8704612bb9599120
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-netinet_in.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: a848df8c2e882b20250b3a4d479e8fada3d528f8fce8c5627355d6304c80b4dc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-obstack-printf.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 9feff5ec7cbb16735b6c9d63f6b8c2bd3d3f4c5553f9b996be3f8cfe4240e4c4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-open.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-open.h: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-openat-safer.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: d06869d5a44b4d7270af94cdbbb1d4190957d4292c3af8b9564002d4e4d1c985
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-parse-duration.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 35362dc2615751df013220bee2763c001ae65724f6a65a56708d422de57273a8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-parse-duration.sh: 
   copyright: ''
   hash: 2fe603e83804acfadc681a8ed77a25f4146601c1502c37ef8ee8714cfba3919b
   copyright: 2008 Free Software Foundation, Inc.
   hash: 63d18ff5d46be6478f9569c7270da67595712bcaf5d1057c6948359c2cc04bf5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-perror.sh: 
   copyright: ''
   hash: 83349ba638f6ffc10680f2e78e438f0e6f20a812237b89ded57d8b48a10ffc79
   copyright: 2009 Free Software Foundation, Inc.
   hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-pipe-filter-gi1.sh: 
   copyright: ''
   hash: 558b591a3e9e99e92c5b2778f3c06730308aae08234e69612d078c25bcfbb2e0
   copyright: 2009 Free Software Foundation, Inc.
   hash: 00ffadb86a75c8f0e27d3d9e7c2c7061b6f4fd0bf9f0ab3ea26323aa6824c621
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-pipe-filter-gi2-main.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: c786b65d8861d3f3889afb7eb1b454ce25bce48f093eee46d8d331939cc7ba71
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-pipe-filter-gi2.sh: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-pipe-filter-ii1.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-pipe-filter-ii1.sh: 
   copyright: ''
   hash: 558b591a3e9e99e92c5b2778f3c06730308aae08234e69612d078c25bcfbb2e0
   copyright: 2009 Free Software Foundation, Inc.
   hash: bac3649c854de7b46c60ca030b7a379e4abe24edddb70e3dc6e6cf9f1bfc7e8c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-pipe-filter-ii2-main.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 8c157d6df939e6d434fec71cdf844cfe366d062d871530d04c05a4f12ae9559d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-pipe-filter-ii2.sh: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-pipe.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 87b0ce6f07c7dc998dccca7755d36b68474a4fa9fa1c5479346bbd2a228eeaf9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-pipe.sh: 
   copyright: ''
   hash: 5dbadef404d16dd74e75f251acc266a81438820ea0ab58d558a96804b6d1dd30
   copyright: 2009 Free Software Foundation, Inc.
   hash: 73c73a849418178f4ce6c9ad2e85a4a66257efbeeb4c1848901ab0c3bcd6a2cd
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-poll.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 7970e5d5d232352391d076f73881bb98e1eaa9346930e8f191a49ce549b152eb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-popen-safer.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-popen-safer2.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-popen.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-popen.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-posix_spawn1.c: 
   copyright: 2008, 2009 Free Software Foundation, Inc.
   hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-posix_spawn1.in.sh: 
   copyright: ''
   hash: 7e7d5c66755ac83d083956f83bfe65ca2c9536cd8b0bd4555a6ba2a03e118aae
   copyright: 2008, 2009 Free Software Foundation, Inc.
   hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-posix_spawn2.in.sh: 
   copyright: ''
   hash: 781d49e1169694f7f7b1db78fc097258bfd1c59d1af21f695f2159606a696251
   copyright: 2008, 2009 Free Software Foundation, Inc.
   hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-printf-frexp.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-printf-frexpl.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: d9ae7fb6f3efade21dd6bd4f8e39296b78ebe14a2b6904928a9ef5f08847f210
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-printf-posix.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: e0609f5e2368ee405f7f4a205a106a397a6c889e06ede598f31189fd2786ea64
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-printf-posix.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-printf-posix.output: 
   copyright: ''
   hash: 213315ade646809669a3e177d40a9b01d9430eb55ba1cd18dbc5b5e154433a5a
   copyright: 2007 Free Software Foundation, Inc.
   hash: f0fff3bfac69b0e70b8370a65b5668bb8c0049c0bd3c7d673c22591f45effae1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-printf-posix2.sh: 
   copyright: ''
   hash: 5c422546366bb292df14233c6829abd4a7154bbc5b7dbf1b21fe2dd4601b8f6f
   copyright: 2009 Free Software Foundation, Inc.
   hash: 459b0d2a4e2ca34dd43609ddf4f6fc9da4ac8485be1f363e50eac88501417fcc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-quotearg.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 104703e4201fb5c043c5e3504cebdaf76bee31f82635cd179c12eb576cb8e015
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-quotearg.sh: 
   copyright: ''
   hash: 7e0d01aab336e5acc014edc2ff951d5234d4e4bad05e5680cca7931c706e5172
   copyright: 2008 Free Software Foundation, Inc.
   hash: 6a99ec02e3274e3054358cfae33be3f646de66a86a4c1190e2459dd79154f0c5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-rawmemchr.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-rbtree_list.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-rbtree_oset.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: e04eacd107bad187ffb5fdb4d4955f66622e0e7f6cee9eb82e80d40657f6cffb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-rbtreehash_list.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-read-file.c: 
   copyright: 2006-2007 Free Software Foundation, Inc.
   hash: fe25f8bab073df345c729dec8f6148396d6926783db8a074ab9b9f120ebacd68
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-rijndael.c: 
   copyright: 2005 Free Software Foundation, Inc.
   hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-round1.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: d481632fac56dafed412331dc1d3c962088c31ca9c3b36086d3667160fd6d480
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-round2.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 78cd3c59fce9fcf77a9e67787f5add6ab91b27cb39939cec7db1472ba23e07da
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-roundf1.c: 
   copyright: 2007, 2008 Free Software Foundation, Inc.
   hash: 3d1da36b9e0486cd4e508d505e52d43a8e69194525626087e0570a15fb56bd69
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-roundf2.c: 
   copyright: ''
   hash: 2b662978b800617f406056d17c4f610c9ac9a637fe6b41e53db7b8728d9a3386
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 78692de38971d672500f95f537d99c3625af5e163292a68f569e9b1c0db3deba
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-safe-alloc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 06fa48a371192b3703bb2e5e10ccd93a9034d93b7dcff205253b40547dc5f425
   license: LGPL-2.1+
-  license_text: ''
+  license_text: "This library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sameacls.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 1df2ca38b822fca6b61b6dc422c4b420e8b7ef60e85c53952d92ac21156b8c65
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sched.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: a1d056a4d72baa204719a7171a5f9cb61426312897c83f8d72c0d329008fe2a6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-search.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: a75b46b1de8003eaa9822f8ee5de3e28bfd9dfa3808094ed1476e96a9f8b0d9b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-select-fd.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: c39dad9c674c2b86a8b6fabc120a1231d76298f5616852e8ca555a36d57dd057
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-select-in.sh: 
   copyright: ''
   hash: 900e4c2984ffcf50df1cf8f155327f6fc7f9fb45b05e89a8e6117c6615fa0bef
   copyright: 2008 Free Software Foundation, Inc.
   hash: 2233f158677785767dc09bb2110060927bc2c348fc26ffc95bc44b538dd69287
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-select.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 919c5a7db661553ac0cd6de0a423e3fc6d9c988e0a86fa524fae055862fd6ec8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-set-mode-acl.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: cd6ee6081a51d9b3f3794b017a6b074ff3bc14d6825fd5f251c5fd2d46841250
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-set-mode-acl.sh: 
   copyright: ''
   hash: 3454dddf42074bbc9ee4ad92fd4b15d168fe3bd37bc4e8ba740a040441f861ca
   copyright: 2005, 2008, 2009 Free Software Foundation, Inc.
   hash: e18f52207f18a229817e86984ad67f9af48bc951d8a18ad1ba9665584fa5d716
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sigaction.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 26868ca82f9158a85f3775c877b40da4441122e03a940c9d02dfc347ff66b161
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-signal.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a2a63d1070f8da740d3d59dd751aef9681d8f4a1b47d41d92c5258448a7902a0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-signbit.c: 
   copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: fa9d9d09e834d032dab7e5344a9125bc3a844d179a74b3eac76bc464ca94566e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sigpipe.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 8babbc5c4c5cf6baadd089082b26b393e84a3d336446bdf26c6170bb3b86fd55
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sigpipe.sh: 
   copyright: ''
   hash: d27845fc8088e77081e32717c8dd8327ed122194c62751c93ef8faff8ee9218c
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: c4c76435bbec1e1ae7a9b8292a1bf834366e04668c11ff07e19eda173e195eb2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-snprintf-posix.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 7fce32e7bb5b8d3bda5a1df8212fb1d14ec7a02dc5e72ebb28dd9225dad5e397
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-snprintf-posix.h: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 9c968e1b41c6112dfd570d39aae8c0902a54036c53b751224852c002c65aada0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-snprintf.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a8fc7710afcd71af941318a653e85e172eb11dcf342d0362c2bee74cc1361c0a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sockets.c: 
   copyright: 2008, 2009 Free Software Foundation, Inc.
   hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sprintf-posix.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: bfa4989be540f363296df2cabc7bf499303561023475f1a5272b0a1898cf4746
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sprintf-posix.h: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 643c16861240bef0649dd4bcefe6ef1d9996a7d9bf4e16d3f70ecd7d22619764
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-stat-time.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 13ed608bac62ec91a2526f569107d3f2c029da8a2935eca78a4cc53839419da8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-stdbool.c: 
   copyright: 2002-2007 Free Software Foundation, Inc.
   hash: c84624aac5e8ef0d17ac6cfba2d9902112d8652ff84f75943bbaab5483a15104
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-stddef.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a7f33ad88ddc3e59c999ce92e4d5c33162876f2dbd2f812612f5f875e098a0e1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-stdint.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: 23f2d98a74e19ebc217c7540652a726c29f8393ff93360bc7d491d73ef222896
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-stdio.c: 
   copyright: 2007, 2009 Free Software Foundation, Inc.
   hash: 2ac4b9dd417d2756a7b7531075a8de408eaa834699dcacc33968d0acd485708a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-stdlib.c: 
   copyright: 2007, 2009 Free Software Foundation, Inc.
   hash: 054829fa60196e2c3f2af8a2ae7f5906b69a5ca770ea3f67f4bf20e58459cc39
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-stpncpy.c: 
   copyright: 2003, 2008 Free Software Foundation, Inc.
   hash: f0900ada3225a1fce15fe1f412789c086482da205d663e8d29b7d44f0a74ff6c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-stpncpy.out.aix433: 
   copyright: ''
   hash: 42a7b74a76cafd8a6d2fbc513026ecb27bf8c70c9eb0a9eb4eeedf421ac6150b
   copyright: 2007, 2008 Free Software Foundation, Inc.
   hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-strchrnul.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-strerror.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 14a1d27bf7519c28518b2fa09cdbff600099f8fbbdcdd31d19f1e17abd42eec1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-striconv.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-striconveh.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: d58780303b58b650191816c9c6f6d31acc192c6b06da016cd940a1daaad76347
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-striconveha.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 5613eb13fd03278f3cfae673d2742357a77a24e39aa5464290122bd1f5cc17e9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-string.c: 
   copyright: 2007, 2009 Free Software Foundation, Inc.
   hash: 0ba6f6d137f27b2f588c41cd0dd4a7f44a8611d2b5650a7623304eb04f2a985c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-strings.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 1218735581f6fd81e89c932786b84ad7efdb3fd0a98b512cfb6ef7179ee629b9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-strsignal.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 911cff60ea0d2142906a8b6e37b8e316a82700ce9dc6f4419abb1544eeb16255
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-strstr.c: 
   copyright: 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
   hash: 921b584d5b441ef5314ef79cacb914b5734b212d15a5d3e34d83a3cac45985c7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-strtod.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 94d0b9d07d2cb7df156fa576ff2f5508151924b4eec0f0394e315fc6c43fde83
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-strverscmp.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 73715c12c4e50afe8feb14d326eb9d0092f449850bf20bda4a2a09965c37fd2d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-symlinkat.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 688324a6ce6943ee6fcd5c4bbc12a6ed11ead304de5c082acac34fa5d620244a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sys_select.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: e6cbee138afbf2346834176c831267687d1d62f0cc1c182a06b826921c4a2a0b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sys_socket.c: 
   copyright: 2007, 2009 Free Software Foundation, Inc.
   hash: 27b064bea275a251fd55f12386c38305cfa83d0e2ce5d9b781fc898d400773c6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sys_stat.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 04013ed74812f946e4b59b34d20190ec2cd9ceb8574f5fc52edcd6eac76c352a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sys_time.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 3ebfc9d43b3f8649e84a73cd567fca4c7ae4d825da72da4ed90e6e5a99d94fff
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sys_times.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: b4313ff79695d9b7f87cdd1971b9abde2045f25322923a3e6489c6feea1eacdc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sys_utsname.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b1a0f7f5778c07e508753fb8758e87eccbf547386a4590bc130135b051293a38
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-sysexits.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 7c3f18282922b3f9c1ebb90c97f14450d340a78ca9e554109d2696866155c1d4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-time.c: 
   copyright: 2007, 2009 Free Software Foundation, Inc.
   hash: e2a57979e9a7175aef1b8845af8f151674553744316aac9805c8db52cbb6dfb2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-times.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: f96de125f14181292c4c8e2e4c0974b25583ad38f9ef6a77d6460b0a6be47bb8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-tls.c: 
   copyright: 2005, 2008 Free Software Foundation, Inc.
   hash: a371f1638584ea868f8774f0863ed063f15ec220e756dc6cd961ac59be40da55
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-trunc1.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-trunc2.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-truncf1.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-truncf2.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-truncl.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 503c95b4810a0f30ba1704d1103337c932b495da73ef6c06c21d7a26583b3d60
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-tsearch.c: 
   copyright: 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc.
   hash: 5fc9ed83fc429236699dce56057e9d206682791a0228c09393bd282e8874f20b
   license: LGPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify it\nunder the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-tsearch.sh: 
   copyright: ''
   hash: 4a91b1aa51229c44027a90338ac75c18482cd83b1c5a42abbbd5e586cc77bdde
   copyright: 2009 Free Software Foundation, Inc.
   hash: e479b4ed53ff1ef1ddb7c68c062cc0b016685511ba81a14bfa6c2971d06cab71
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-uname.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 95dd080068a87ec7a8f8dd8f9c52cfcc3eb411fdc69747e76099b7f55491e9e0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-unistd.c: 
   copyright: 2007, 2009 Free Software Foundation, Inc.
   hash: 9dec8ae8ec34dede0933ebdae6fea6044297491dfbba7df3544444a73b7cf7fb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-update-copyright.sh: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 31a6cf464a511c9f798d56d6107ef0eb41dafac06037c8e04649f9ae2d9f2e67
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vasnprintf-posix.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 4033ae875db9b7dec68ccfb88dc9e8ac872f79ccd3ff8c1bbf475994065a67a3
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vasnprintf-posix2.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 264ce034a6a0e2af38dd9a7f56d3fc621770b161c40e4868673d2197175d7e9d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vasnprintf-posix2.sh: 
   copyright: ''
   hash: a2853f3c4b9322d67eeb514a02f551027226143c613f10e2f07141cea27ef400
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 61a80e32eb8210bc664d982ac7156c97f5b068023f47eeef9b2712eaa0cf5358
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vasprintf-posix.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: ec33ca31cf67dba4a443c9cd11bebb34a58110f2c2c15ffb891f9d22b628f47a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vasprintf.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 2bd69a93dc485bffe1c49f3d6e4b411651ed41f823fb47f163b9487c35df55e9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vc-list-files-cvs.sh: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 5592779105d6e3c84009c3743f19ba267e3c947df43bd05fce6250d51d38acd8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vc-list-files-git.sh: 
   copyright: 2008, 2009 Free Software Foundation, Inc.
   hash: cba59ad2fc05be9c59e16bb50f191c185f4d87a147deb9477fab63dbeaba6169
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vdprintf-posix.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 8fc71c626ad4e8b2da0fb5b1661b55fc288ffc3242744e43fd24edf0b22d8d03
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vdprintf-posix.sh: 
   copyright: ''
   hash: f3166adb33bacdb3b2da94ac726284ed8403a179c0f69b2e9490d82210ef3ed6
   copyright: 2005 Free Software Foundation, Inc.
   hash: 17fec5a9ababc4561b627d90f689ea9e12ae05c2cabf962750d3472bb98dcc3c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-version-etc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 166966c01aec43b6eea70f77889719b4ca98d4f9333c9e7b8ff9fb10235eaf2b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-version-etc.sh: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: c2dcff71edecfe89df84edb38bc7cf657c88b91a82456014937488b7eed9cf8c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vfprintf-posix.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vfprintf-posix.sh: 
   copyright: ''
   hash: 51b6714415c10dd04271db0038eb39b1bd3c5881b43025900606e5ae92334fc2
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vprintf-posix.sh: 
   copyright: ''
   hash: a6ebb7e5988deb06cbc675b3be4c82c3366db7423e770607fdb9e5079331a9bc
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 08921df8083c6cf72f8107df0955a905c1cfc1a7639420651e479889b858372f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vsnprintf.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 38a886365a5b7333bcddff2e6f7e078b4ccd8affc79c69d525fb628b81e77163
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-vsprintf-posix.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 5ff40ad8122a4316b3880b33fa58711292cfe9daf80cf886bc3bf7b4c8b8f7b6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-wchar.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: b9f590d320dde15ebc89d1b241f7f1affa3e77afaf21eb72b9d0d848c666aa15
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-wcrtomb.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: a7e09560f0d1bcf0d97e0961f8aea91e910f34af271cf323261f13ffa0ae7711
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-wcrtomb.sh: 
   copyright: ''
   hash: a44d114e1ecf5712c05a7280fb46e7eed4ba1d93c1afbd19f628ee14485c0f17
   copyright: 2008 Free Software Foundation, Inc.
   hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-wcsnrtombs1.sh: 
   copyright: ''
   hash: 33a1c921605c916d076531d447e2cd6371d22857bb403db1f372526fb35fa98f
   copyright: 2008 Free Software Foundation, Inc.
   hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-wcsrtombs1.sh: 
   copyright: ''
   hash: 7f6c7ca6878d2632a37f8f54060bcc41aa415a85487a76f7a374ba03a218e71a
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 3913b2dadee190c3c7363a11f4698e6dc6e54e77ff0f6f815989f716687b8c66
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-wcwidth.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 621775bd4bf289a67327498e46edf2e12d578a8ba977b62f871f1957de3e43c5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-xfprintf-posix.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 2a603870f561fd13002c29e2de6553989048d747097638326de087abc5d9c70d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-xmemdup0.c: 
   copyright: 2008-2009 Free Software Foundation, Inc.
   hash: 4b2575757caf38d863f415b5079c56fd838ffe4a807c81bc83bd296dcbfcaee6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-xprintf-posix.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a3af7c6b24629c4787aa5231313b8f64c3b33cf955dc694a5294ae299c3d0ca5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-xprintf-posix.sh: 
   copyright: ''
   hash: 1ce067e6f56dcb6a5a56ce1246d36be56fcc7f66b31106e803156fd220d3e1d0
   copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
   hash: de7b5c726b634ae4f59358f375b594790755ca1a9cc5ca12cd7192f7ad89d763
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-xstrtol.sh: 
   copyright: ''
   hash: 79873e8a91e9b9088083cb4ef4d0909822f0d7ba1ecbbc98bcb63322735abcbf
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: ac9ad8e875af014830c20d9e09da1311639c83e409ad8db3f4ffebd240e713f4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-yesno.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 3f971eee932cdc6643afc7e82875800dbd694b7d7cce5e5898866d3838e5f8e6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/test-yesno.sh: 
   copyright: ''
   hash: 6d197acd4b62c8295898322d0a74a7d9b6af375c6612d23e8c718d7d3e034d32
   copyright: 2009 Free Software Foundation, Inc.
   hash: 087298e7ab0c96019fc4bbda3234ee52643b112a91685571bec731d121ff32a9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-cased.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-ignorable.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-is-cased.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 77f0f5c8da18d68e55012ca31cd200ccaaf62ce13a0437f969525b324746cab9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-is-casefolded.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 8a64df7d2b39cf72a790f65a4380a5257f3906c479a5c7ff2866e2caf521459e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-is-lowercase.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: e780f461c5ab26573a2f7a337d9dea72d1b535ce9b8c99aa74286904c35e5350
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-is-titlecase.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: ed0e9f7db4df9c5e31d50ff099af7ffd491810832336d9a7b1fa2af8405d927b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-is-uppercase.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: c166575b45c29d58756309538901f3ca2bc4976a7afe7bc9d5c96c2a940702a6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-locale-language.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 7902cd50a3a989d21413e91019f1101ca387732e3a3549e9ee5142a2968122a2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-locale-language.sh: 
   copyright: ''
   hash: 028ff70d75eaa2008146f1da86917178198eacf5cd2951201c91392e88636645
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-mapping-part2.h: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-predicate-part1.h: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-predicate-part2.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u16-casecmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: fbaf1cf87ef4e2cb6c22e345726fbeca61d4f4fde17fe328cd36f69e383210ff
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u16-casecoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a478780b48f6135ed858b897f9cd56b995fa2bea4331f359e845712e7a921b9b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u16-casefold.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 780d80975734f219ef2f735b4735e8977dca243032a3d46705d14bea69577b74
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u16-is-cased.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 4234fb2ee9a3330beba45d579838054b73cb027a32343e6a5bfecb31cb63b5a0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u16-is-casefolded.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: f43cf1df76813ed4ff41af0649ec88984148a1a58474b0510aaef5991f58e476
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u16-is-lowercase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 41ab69760cda76f92490056f713aa78ab1fc91f29b6e85dc11364f4d52cea2cd
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u16-is-titlecase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 7082f5c82633a0a232479102690aec07d560deb2fa2febf9433eb417b2893b6e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u16-is-uppercase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: beeb3d8e2907686e31ae7bcacffa24dabd5b8341e95e71008118a27c965127a9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u16-tolower.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: ec459a8224c2ed7f817f50477cce68cd280caadf3f43fdc758e094ba738dad44
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u16-totitle.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 364955699731118e15b5c015a5b0e2a0ca481108df690c7d2ca72113bdef9bbd
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u16-toupper.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 256d31e7737c279ab0a7fe336bbc2d8a3b2f5c3646a923645408fb5cd647232f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u32-casecmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9179bf8a4dd90067464a8a095910c5a6f53ff0c8b7d4d4d970fb9905caeccab6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u32-casecoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 46cde4ad2bde5e77ddf09650e34490837d03ffa5566c3665745417de0e7d3a1f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u32-casefold.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 4d907542dd3a62d941844298dfe70f36057246c130a8906db2071703fcc5ea26
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u32-is-cased.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: afdd64c3cbdb2db2a6d0a0385c23cadd7acde81fe68ef08c39d1af0e65c1c302
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u32-is-casefolded.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 406ff64a31f1889065d2f75d3e1352d13da79827438f5af6f72920b26e01be5e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u32-is-lowercase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 925d3f074e4eba6fd371968cdf931e8f266dc18f42c4da065890ec4059e99eb9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u32-is-titlecase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 7093a37ec59985094b8e3315f0f3195d83b1656d652ebc113e5d419c996cf396
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u32-is-uppercase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 1378c386b1283dfea9232ebf982922c37fc43e31aa750dbcae3a513d599a37f6
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u32-tolower.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: d7cfcd257ced2d32004af0d357e3e5dfcd9299fdc83447b6fd59f2b0430cb2b9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u32-totitle.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 54ba07d46dd17204c8df179dae285eae06fc47dac38440471866ccfb285780b7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u32-toupper.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9517acce3a3c32363be5998282902d14b76512c2d95007ae0426073b0ae3e66d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u8-casecmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: e55c357f7afbc9a0cfe0f69c8736e09ac327cf0efa110bd54358b26552c15d91
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u8-casecoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: cb8087d7a4cd6f72c7df00d9b74cbb14bbe7ff92f76de65ad5e2688c4008f1cc
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u8-casefold.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 46aa95b956c978d68693a6a7d28e6119e702da6d5852b422cae8ac60feb56e7a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u8-is-cased.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: d2e06421cfef63befc22d5867d91edcde0be66c6e5da6ab56407c62655210ad4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u8-is-casefolded.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 8847ed4d063cb5ef6b9ad3824c768719bf92ceb9dc999867a7e22fe80da46a62
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u8-is-lowercase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 40b3b6176251c3ba3f01a9dfd5ad1e90fc294c6d2187e04c7623d12dbd036e75
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u8-is-titlecase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 4addcc8d4a006652f4e0af349822acb9ceabab38e19f7bf45f2264ce526c734e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u8-is-uppercase.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: d647fd8d839c47edffa85a2edc6a9b5f9d740295d42b861e2097069fc1d973cd
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u8-tolower.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 40ee18dae3078615adcadd02bc1525436c511d80eb00a52c9c7e44cb0e260d19
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u8-totitle.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: daea8586484638f8dff9c0f3972a5e1cc4632eb4c26528f93972f8ba9f1c0435
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-u8-toupper.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 92775e814bc7c28fd54cd36641f38bacbb6e32645a9901abb6d77a7dd3266e15
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-uc_tolower.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-uc_totitle.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-uc_toupper.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-ulc-casecmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a70362d42f608ae8519496f614eab7f6840506198a7b35a54688aae06f8ec537
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-ulc-casecmp1.sh: 
   copyright: ''
   hash: e11e26a26c3195042709f1c53297ff0ee32afb9250cee9144746a30ed82ac770
   copyright: 2009 Free Software Foundation, Inc.
   hash: 4889e501871ae3a0ada5fb5a8099116bbf289c47ced06d26b7d1bcb98f805e51
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unicase/test-ulc-casecoll1.sh: 
   copyright: ''
   hash: 60778acf09ad204d99a6e1e57b880e68d7f53c81bc1dc0473c865922ff99020b
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniconv/test-u16-conv-to-enc.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: ee723fe33867bbe1788462de1e330317d6949f49144cabd6e8e38efca0d447cb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniconv/test-u16-strconv-from-enc.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniconv/test-u16-strconv-to-enc.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 7cc68dc5f7b4f76a27bf80ef26a988398dd0a4288934033f8e604467ebbbddc1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniconv/test-u32-conv-from-enc.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniconv/test-u32-conv-to-enc.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 9d55d78e2f579b4085948278faa02c153cf2889171a763786c40a320053fefb9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniconv/test-u32-strconv-from-enc.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniconv/test-u32-strconv-to-enc.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: f046bf7ce16400906bfb439be832a1e91647af489a78820eb57d0b4ca94f0810
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniconv/test-u8-conv-from-enc.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniconv/test-u8-conv-to-enc.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: b699c5da15c5e1fdb4bf45482b3895de5a4bdf4febbf595cfe241f5eca8d335a
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniconv/test-u8-strconv-from-enc.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniconv/test-u8-strconv-to-enc.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 92b274f28c6b1980e1ffc2bce550639bea47dd069072090dfbbf3db06ee6ab96
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-bidi_byname.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-bidi_name.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-bidi_of.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-bidi_test.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-block_list.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-block_of.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-block_test.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_C.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Cc.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Cf.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Cn.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Co.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Cs.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_L.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Ll.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Lm.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Lo.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Lt.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Lu.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_M.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Mc.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Me.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Mn.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_N.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Nd.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Nl.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_No.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_P.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Pc.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Pd.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Pe.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Pf.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Pi.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Po.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Ps.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_S.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Sc.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Sk.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Sm.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_So.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Z.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Zl.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Zp.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_Zs.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_and.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_and_not.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_byname.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_name.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_none.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_of.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_or.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-categ_test_withtable.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-combining.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-ctype_alnum.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-ctype_alpha.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-ctype_blank.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-ctype_cntrl.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-ctype_digit.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-ctype_graph.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-ctype_lower.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-ctype_print.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-ctype_punct.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-ctype_space.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-ctype_upper.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-ctype_xdigit.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-decdigit.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-decdigit.h: 
   copyright: ''
   hash: d15c2fbaf8a835d6cbc0c2da37cd84fba9905ba6199f021dd4def95e741aeb94
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-digit.h: 
   copyright: ''
   hash: 08530a09f8d458d98e4012b13ec2ab5df415027736aa50e44d5bce7643faffb1
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-numeric.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-numeric.h: 
   copyright: ''
   hash: d6f23324b218034f2f4c008b20dc43866a71580a56841aac37368dc517c0ea52
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_ascii_hex_digit.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_arabic_digit.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_arabic_right_to_left.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_block_separator.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_boundary_neutral.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_common_separator.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_control.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_embedding_or_override.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_eur_num_separator.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_eur_num_terminator.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_european_digit.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_hebrew_right_to_left.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_left_to_right.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_non_spacing_mark.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_other_neutral.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_pdf.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_segment_separator.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_bidi_whitespace.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_byname.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_combining.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_composite.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_currency_symbol.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_dash.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_decimal_digit.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_default_ignorable_code_point.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_deprecated.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_diacritic.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_extender.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_format_control.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_grapheme_base.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_grapheme_extend.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_grapheme_link.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_hex_digit.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_hyphen.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_id_continue.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_id_start.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_ideographic.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_ids_binary_operator.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_ids_trinary_operator.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_ignorable_control.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_iso_control.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_join_control.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_left_of_pair.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_line_separator.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_logical_order_exception.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_lowercase.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_math.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_non_break.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_not_a_character.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_numeric.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_other_alphabetic.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_other_default_ignorable_code_point.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_other_grapheme_extend.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_other_id_continue.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_other_id_start.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_other_lowercase.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_other_math.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_other_uppercase.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_paired_punctuation.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_paragraph_separator.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_pattern_syntax.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_pattern_white_space.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_private_use.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_punctuation.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_quotation_mark.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_radical.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_sentence_terminal.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_soft_dotted.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_space.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_terminal_punctuation.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_test.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_titlecase.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_unassigned_code_value.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_unified_ideograph.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_uppercase.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_variation_selector.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_white_space.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_xid_continue.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_xid_start.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-pr_zero_width.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-predicate-part1.h: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-predicate-part2.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-scripts.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-sy_c_ident.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-sy_c_whitespace.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-sy_java_ident.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unictype/test-sy_java_whitespace.c: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unilbrk/test-u16-possible-linebreaks.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unilbrk/test-u16-width-linebreaks.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unilbrk/test-u32-possible-linebreaks.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unilbrk/test-u32-width-linebreaks.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unilbrk/test-u8-possible-linebreaks.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unilbrk/test-u8-width-linebreaks.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unilbrk/test-ulc-possible-linebreaks.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unilbrk/test-ulc-width-linebreaks.c: 
   copyright: 2008 Free Software Foundation, Inc.
   hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniname/UnicodeDataNames.txt: 
   copyright: ''
   hash: a1676b8b73689618daa1662cabf719b5da50cf74a63224111534949d3e4297fb
   copyright: 2000-2003, 2005, 2007, 2009 Free Software Foundation, Inc.
   hash: 75aa6d9c3dd3d7292e5386895029004117b7bb082ce4f21227c105dc6af43b00
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniname/test-uninames.sh: 
   copyright: ''
   hash: 853dcc547f6774df0e14d3d22621c60a885132801e94352425dc0992f91b1fb4
   copyright: 2009 Free Software Foundation, Inc.
   hash: a448e6e47900ce6ef19b5c003b18e330f376cd946cbd71d73028af86abe135dd
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-compat-decomposition.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 1a1be0d3a07610958181e24240ac9a5ecbf2ab378eee5f10e83361662f9c4846
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-composition.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a9cfc5518ecd4051f86fd4d69f17642c965db52574d6e05e7a6c48d910e863b8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-decomposing-form.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 69576c1fa17d13a8886c698b7d02742d961e36583f54b708bbd69ad096c32a93
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-decomposition.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: e098c1a33862ac43c6a81a23842bcc036bc222abd16cabf7585b40c5ffa9f13b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-nfc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: e9e561889a62796cb7a20a6a9044b31b813500f2a501e285020f9150b1bd8e9b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-nfd.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 9e4d1ad511a5edfbe76247e671aeba2f3a2ccb7d048d408440d9d64a2b6bfd86
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-nfkc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: f852f8cc0ef2cc1d6145b5040910d25bad300da7f4f217b441bf42f48c5b684f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-nfkd.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 996838de5e25b4e10b7be70b8e0139e15b9852eec680d7813b7ac0e9cd4a4254
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u16-nfc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b698b4d1c028fb6ecf50c5fbd520583195bbb1d0e55ad4b6e098487c6ad28d38
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u16-nfd.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 4c837d69f99444f70aa8a5a6b4ac325ffcca6a95ec60cb4fc052a53d8bbe2a44
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u16-nfkc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 498eacf1ec13365c3b4a66b32f14a6a10374555a75e6a3a68916446e76c2b146
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u16-nfkd.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0b13b0dddc12354427fafcf78195149905174c48a77bdfea7de548c164de9ec8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u16-normcmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u16-normcmp.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u16-normcoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: ceee340b1298ce1b06479da651ec2099f4356abfe07c42a2cf75b2f3ccc53855
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u32-nfc-big.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 0d2777874284fe0a8c91d2b3b2a5399b823cb2dad79d585383eb83c79b57c81c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u32-nfc-big.sh: 
   copyright: ''
   hash: 756efd18ad52a52ef3c82289a3036f7c5fff9304a556162298fa05572b3ad8d5
   copyright: 2009 Free Software Foundation, Inc.
   hash: 1b33b266858f6f5526266ebd1602fa80e26475d58bdeb7e6c376bfb53ba04963
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u32-nfd-big.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 63854a2632b7cbc28cf0082fff71e81449b3459399888d8c59085994b440fbd1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u32-nfd-big.sh: 
   copyright: ''
   hash: 7df6600ba689632b1923565f4cea0c349205eb81ab54e48adbe2b4f19f1a0710
   copyright: 2009 Free Software Foundation, Inc.
   hash: 1d11efc667f9a1a96ae0c1cf7a7ff48efeb6343fd34d5bf65bc009926b652e1b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u32-nfkc-big.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 03584a064142db823aa30f198f34140a95768d7cb752d9bc2b4fd2b5064d9967
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u32-nfkc-big.sh: 
   copyright: ''
   hash: 9c1bbb4dc3679b54e635a3f50ac29520d1bdf8fcff118b56b01b7760af61a802
   copyright: 2009 Free Software Foundation, Inc.
   hash: 4cb74b532545362c81ed6ff3a88bc7ae33d0663e9262942ee6c264d1190e1fbd
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u32-nfkd-big.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 12acb786931e36a2d9a6ba2d9807d967a72b06b659b6e37181b20b6168235f5f
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u32-nfkd-big.sh: 
   copyright: ''
   hash: 59c7882b0d8e4cb0a3f3b3d4deceaed6b01da8bcd5dcd430931782d394e9a581
   copyright: 2009 Free Software Foundation, Inc.
   hash: 35ed77ced7909ca500b2c08af6836d013992774deafe0846b72ecfa13d6f031c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u32-normalize-big.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u32-normalize-big.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u32-normcmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u32-normcmp.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u32-normcoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 3b3591a744117db52df87ebfee1374c242580690a9d38dd72b9264d47d519b12
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u8-nfc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 1cc025cec921d4f28a082455f5ee5c4c03ba8293305aa7b8c3b0c1fbba30c4fa
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u8-nfd.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: ab1a65db2659f7732acdd205f0b1ea3117f4b85013e5c38a9f46d225ad2ae0f0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u8-nfkc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: d7082ba6f4b74e4554c6653e18151eb793cdda74f1b47770530230295d2e3e2e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u8-nfkd.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: a813ff37ff6161e75f5290a0fc5a2e80284c57f42d059e4ba9bd16159a1fdfc8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u8-normcmp.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u8-normcmp.h: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-u8-normcoll.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: d7aa94f225cc5310484036b430a51f201b05b9bc7784316c1d21f6a605a339ea
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uninorm/test-uninorm-filter-nfc.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: b66d309ad83a237d8d0a247cedfab3884798bad886cc15f3a6ba1d9f5e13b9ad
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u16-asnprintf1.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 4cd1fc1c179cccfb1ae23beba8905574b7607b734ca02cb70a1267216322a5a4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u16-asnprintf1.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 76a1f62bd7c8d5161add6df04b31cd91ada3814cc0ca69bd9753a73a17dfcea4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u16-printf1.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 909d6f0cefa405afb2e1072bb26eb4df9ba77e176f713b5f446a0c35b6b45ee7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u16-vasnprintf1.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 3d425ccab1f150ddf5f5b81607ce8bfcfdd0c2ccb574609fe36a93297b08258e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u16-vasnprintf2.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: c42edbef700ece3826498e7ec7562a528f72171d32e1dcadd5589aade0a62cc1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u16-vasnprintf2.sh: 
   copyright: ''
   hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 6b80497faada59178ae32663d8cc7aac6607d31f69c43bd2ab2a411492bfa495
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u16-vasnprintf3.sh: 
   copyright: ''
   hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: d559b3310501b16f524c4cf845f697c47b883582976b38184410d2f88971682c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u16-vsnprintf1.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: bbea74e4dfbebb15cf5bdf3dae5d9e5b9c0fecf7b81cd5d597686a27b8e12570
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u16-vsprintf1.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 51f1b19e6f03063d8833db2914a0b59598e146143ff42eb5789564b39888d994
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u32-asnprintf1.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: d249b9b64091c3e4f41e6e9b0e7e856c278716eb4db6a989f603c9859fedf963
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u32-asnprintf1.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 8b746d35a6ed28682834e7bd2e553b62a12e899d022589df093e016b38fb03af
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u32-printf1.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 2aa402941192f63adcad98959781ac2774070979f335f1332164a3863cc54404
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u32-vasnprintf1.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 2d05aa67379ffb2f79eb2308a4bc06bfd43b048ee90b89ae18730279e363c524
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u32-vasnprintf2.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: b083a2377405a07fe51eb035ad09a0489bf65067207a0566910712abcb30726b
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u32-vasnprintf2.sh: 
   copyright: ''
   hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 4fcf74ce885ab101762032b20b3ad9f1cfbfb52430e736add8c65743ec40eade
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u32-vasnprintf3.sh: 
   copyright: ''
   hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: eabc0bb1a9dbe71c93902c4a1490621caad6c67d3e03f4ac411b05807cb595e4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u32-vsnprintf1.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 2fb5c97c1868ff9f912aae2bc8784dbe759e65cfcb02ac8263da73868a208a49
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u32-vsprintf1.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: 36cf2e191798aa14ab7c7a791b0d61357029ec015af3c1feb99aaf853e1b8803
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u8-asnprintf1.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: f2754ecea17ff7e997c7ba8312c71a022f600e49807de5f420c8bb62f0871cd8
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u8-asnprintf1.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 46bdc3f468fe19b87aaacbecbd84f662c90c6ab838125defd47e5412c9bd67c1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u8-printf1.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 1b1973376c0d8b5d5f884d50b7b1ab402e3e31243b03bc3f8e9c3251e39c66ec
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u8-vasnprintf1.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: feffbb7a585c58b542b866102777167000d487253536607fd7500a6f21c5a1d5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u8-vasnprintf2.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 6964834677d5fd9d5fcec4e56ebc23c309ef467f98ae1827e81e9739de99eaa2
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u8-vasnprintf2.sh: 
   copyright: ''
   hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 59c1d2cbfeabd9ca557c7c72f2f556faab45e78c6113db11244cbe00eafb4c91
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u8-vasnprintf3.sh: 
   copyright: ''
   hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 005e299ef65aa2dfd2c981e1fb5ae933957acfc190152132b9bd9da6b75afc68
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u8-vsnprintf1.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: f0f1a7e874f9cdb481d2920816076e14198c8279ed8878458668578ce82643d5
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-u8-vsprintf1.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: ecfe8f24ee3cdd3323a0192f09dd50590f4201122e5b203aa84879ae682ff319
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-ulc-asnprintf1.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: f460de9dace19bfa0b9e79f25557bd411248db7e9c41ded07d1b450087c5e1cb
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-ulc-asnprintf1.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: cd00792dc677501bacb09b04f578ee318c85955822b7e39b71f20ded701252f9
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-ulc-printf1.h: 
   copyright: 2007 Free Software Foundation, Inc.
   hash: 52719b059d0fe4592ec7de9c12156520eacdf740e6a9b43edaf32d1650a8c992
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-ulc-vasnprintf1.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 38f11760c3832f5b714de061118c87e63e5e70c624e5f25bb835676b6055e6b4
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-ulc-vasnprintf2.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: be7efc5b5cb950d1b005d9fe5af23b12c0eb89bc049db7294d999044a6329e1e
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-ulc-vasnprintf2.sh: 
   copyright: ''
   hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 90ffc7b3f6cb85309a0e342f0f768c7a4c2c729a08d2b831a0f549e8e01718d0
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-ulc-vasnprintf3.sh: 
   copyright: ''
   hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 0db7617d589e3703964119869d14691abb2498a1fc25d64a755eec64dfd07413
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-ulc-vsnprintf1.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: bb840d45e39a1be31b0b4daad61d03d30d8376f10220704e06c94f655cc3a564
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/unistdio/test-ulc-vsprintf1.c: 
   copyright: 2007-2009 Free Software Foundation, Inc.
   hash: d062894ca1aa3e3cc138093e10d57c39a38df1464ffcf75538249c801da83c35
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniwbrk/test-u16-wordbreaks.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 11ab1e7ac1c6c7ba08cea587aadb03a6aa110a3169c7bf643d0ea2764e240537
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniwbrk/test-u32-wordbreaks.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: f49f7bebcb1395a7fa915f963b4a677a3698fc1d2e5ff93f955be0299357baee
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniwbrk/test-u8-wordbreaks.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: bb82bf9821127ceb2c7da498d0c101d05faef0dd319c018e41d56ed0f3ac1c31
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniwbrk/test-ulc-wordbreaks.c: 
   copyright: 2009 Free Software Foundation, Inc.
   hash: 1609df8eadc7abda56ce3dec4a2ec747326360d74afb059c522331d5b242533c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniwbrk/test-ulc-wordbreaks.sh: 
   copyright: ''
   hash: d1d3525c27882f7ded09b3b5fa177ebddcfb16a75b19ef3804ae6f4731f2962c
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: e5c07a0d8d419dff0b836a33748dee1cc6e0f9d71808ca383caefda4c8f0d551
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniwidth/test-u16-width.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 6874b1458a692740482ff6e7172bf490f6dcc01985040b888e7bd2d7f7243261
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniwidth/test-u32-strwidth.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: a4d26a909a61a615cf5aa5b183b291ca10258e5123a9eea0aec24856da402b1d
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniwidth/test-u32-width.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: e651f14a8b91f79e7b9cbf7403e88af982c9d37e0b1a5327c89da40f1bde988c
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniwidth/test-u8-strwidth.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: fcf5c6c2c481b0375772edb286bed88b0ca421d6736214ae4e0a64567beb75c7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniwidth/test-u8-width.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 9e7db4127bec42b0e97fa3a07242099cb818e1e533c208c158bcc2969c7d7c31
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniwidth/test-uc_width.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniwidth/test-uc_width2.c: 
   copyright: 2007-2008 Free Software Foundation, Inc.
   hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./tests/uniwidth/test-uc_width2.sh: 
   copyright: ''
   hash: 26f58b4ef6788b773c28c79baabad9e1739f820166b24458450bfa7cd542370f
   copyright: 2009 Free Software Foundation, Inc.
   hash: f1e50a6aba1af63593fff7b9ec71317ade999e0e10d738a6594aa3de16536da7
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./top/GNUmakefile: 
   copyright: 2001, 2003, 2006-2009 Free Software Foundation, Inc.
   hash: 1db2e4a3959febe32d5c70280a5b28547600d854b8d1b61ec85d3a9b670a2b23
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./top/maint.mk: 
   copyright: 2001-2009 Free Software Foundation, Inc.
   hash: eef091164cb5f26dc538fb6b3940b82d779d05390f32dffea43d1161be06adc1
   license: GPL-3+
-  license_text: ''
+  license_text: "This program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 ./users.txt: 
   copyright: ''
   hash: f5c05b7f2c33b93dcda0aa8f108195721e70410ef027614d4e342b00ccd15536
index 0aab663..5ef211a 100644 (file)
@@ -61,6 +61,18 @@ File: ./MODULES.html.sh
 Hash: 30633aa046887d3d7c2edee238d5e009b260d8eaec001809cdcdcef205089d59
 Copyright: 2002-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ##
@@ -137,6 +149,18 @@ File: ./build-aux/announce-gen
 Hash: 9ebe62448e2c3a71f08521ec64d65dd561761e446347edc914f396fe810040ba
 Copyright: 2002-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/usr/bin/perl -w
 ## Generate a release announcement message.
@@ -157,6 +181,18 @@ File: ./build-aux/bootstrap
 Hash: f97568fc9b26977bf8aa781f26a1f5df7c9e5dc7c8d9a4e54e2c8d7892765096
 Copyright: 2003-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 #
@@ -177,6 +213,18 @@ File: ./build-aux/bootstrap.conf
 Hash: 95cc00b43d60d3bff61561355253d777ac82e105338bf23faf29168086d392c2
 Copyright: 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ## Bootstrap configuration.
 #
@@ -197,6 +245,19 @@ File: ./build-aux/compile
 Hash: 1a1d949ff906c036a902a8021154e8f127f6bdeaa7b22843a9bd13badc24253a
 Copyright: 1999, 2000, 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 ##! /bin/sh
 ## Wrapper for compilers which do not understand `-c -o'.
@@ -217,6 +278,19 @@ File: ./build-aux/config.guess
 Hash: 1fc09da52d50a533ff9166226320f69603e3c5189271118a66d0cc514e6a3d71
 Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 ##! /bin/sh
 ## Attempt to guess a canonical system name.
@@ -237,6 +311,18 @@ File: ./build-aux/config.libpath
 Hash: ac72222f705d2427683a67b643cf25045db2915ab66319cf535c68b847472ad3
 Copyright: 1996-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ## Output a system dependent set of variables, describing how to set the
@@ -277,6 +363,19 @@ File: ./build-aux/config.sub
 Hash: 6e2b7e1143d443ea670be8edea2db4d9a6ac57e6f22aa4a88443959ab8ad42c7
 Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 ##! /bin/sh
 ## Configuration validation subroutine script.
@@ -297,6 +396,18 @@ File: ./build-aux/csharpcomp.sh.in
 Hash: 13d53b69f8e2663d2abeb4053b3cd45b2b3f99563e826a5fd67abcf4ac201e22
 Copyright: 2003-2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## Compile a C# program.
@@ -317,6 +428,18 @@ File: ./build-aux/csharpexec.sh.in
 Hash: 08e6e1564fcf7509ae893ac7b3121aa831344458a4ff420c1994918d9792b151
 Copyright: 2003, 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## Execute a C# program.
@@ -337,6 +460,19 @@ File: ./build-aux/depcomp
 Hash: ab3cbcc8d9b25ff49daba60a573055149a8330158ab61b0602538a1cdf27e9f8
 Copyright: 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 ##! /bin/sh
 ## depcomp - compile a program generating dependencies as side-effects
@@ -357,6 +493,19 @@ File: ./build-aux/elisp-comp
 Hash: 650765cd58e0b384cc47b3c257ea4955be8b26117eb05106cd7a39ef002314ed
 Copyright: 1995, 2000, 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 ##!/bin/sh
 ## Copyright (C) 1995, 2000, 2003, 2004, 2005, 2009 Free Software
@@ -377,6 +526,18 @@ File: ./build-aux/gendocs.sh
 Hash: 203ece29ab9caad64ebd3b3a75725444676b43bd66f2f22b8fc836c5bab0ec78
 Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## gendocs.sh -- generate a GNU manual in many formats.  This script is
@@ -397,6 +558,18 @@ File: ./build-aux/git-version-gen
 Hash: a08c7e5c0619d75de3d15e0bdf4ff226dc7f5a89a1e3c6f7b1d5b664b96cf692
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## Print a version string.
@@ -417,6 +590,18 @@ File: ./build-aux/gitlog-to-changelog
 Hash: 9cca6130908ff793b8a1af70cc476f55970e378cddd4177d5a602decbeb94542
 Copyright: 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/usr/bin/perl
 ## Convert git log output to ChangeLog format.
@@ -437,6 +622,19 @@ File: ./build-aux/gnupload
 Hash: bff7381ec4c19e81634ea630fca8a053cfe1333142662cd70b32c4fe46f3e36e
 Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 ##!/bin/sh
 ## Sign files and upload them.
@@ -457,6 +655,18 @@ File: ./build-aux/install-reloc
 Hash: 613894d1c2a2855e0f3eb82986175598d077c45c05dbac2f339031487a83f4e4
 Copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## install-reloc - install a program including a relocating wrapper
@@ -523,6 +733,18 @@ File: ./build-aux/javacomp.sh.in
 Hash: a2fa68883ebe7994ced1edf628a9c6cb6d79ef3edfd0c14996e1e14ef0d7c4c6
 Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## Compile a Java program.
@@ -543,6 +765,18 @@ File: ./build-aux/javaexec.sh.in
 Hash: 8b8c346d69504f34a6426de103455a52b09deb2a0c5a74bb8d4368cad9d6b8d4
 Copyright: 2001, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## Execute a Java program.
@@ -563,6 +797,18 @@ File: ./build-aux/ldd.sh.in
 Hash: 6bfa3933015b9b05e431eb13f03e5297cc73bb56bc426d811f1fa41ec7844650
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## Determine the dynamically linked dependencies of a program.
@@ -603,6 +849,19 @@ File: ./build-aux/mdate-sh
 Hash: ae36e3c36cd08de4a5aaadc7311d0863108cbc4fcda21b18e902f6218e675035
 Copyright: 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 ##!/bin/sh
 ## Get modification time of a file or directory and pretty-print it.
@@ -623,6 +882,19 @@ File: ./build-aux/missing
 Hash: d8c7220550f4985316cb4c11d4c304b84debd55902b7528ad3f944a478f0c90e
 Copyright: 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 ##! /bin/sh
 ## Common stub for a few missing GNU programs while installing.
@@ -666,6 +938,18 @@ File: ./build-aux/mktempd
 Hash: 5c32320b58d10b6b74af578eb9a1bf5015360211ac2b2932f4303648b3e7a354
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## Create a temporary directory, much like mktemp -d does.
@@ -685,6 +969,18 @@ File: ./build-aux/move-if-change
 Hash: 804812198e7aadc810a167cc8015b32770e16ac23315a92f8ce3bba2c1ecbfe1
 Copyright: 2002-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## Like mv $1 $2, but if the files are the same, just delete $1.
@@ -705,6 +1001,18 @@ File: ./build-aux/ncftpput-ftp
 Hash: 462b4e7cc8f6796fd32420382ed3f3f5e2246d58bd186469614dcd8d3a89a239
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ##
@@ -744,6 +1052,18 @@ File: ./build-aux/pmccabe2html
 Hash: a93c5cea3b0bf8641cfbe982861478458a8419d5adffa3e4e88c5c5450d54ebe
 Copyright: 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/usr/bin/awk -f
 ## pmccabe2html - pmccabe to html converter
@@ -799,6 +1119,18 @@ File: ./build-aux/reloc-ldflags
 Hash: 7455efaa7fbcc667838f3599223fba7bddc4873e38527f938e7168c709602ffb
 Copyright: 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ## Output a system dependent linker command for putting a relocatable library
@@ -819,6 +1151,18 @@ File: ./build-aux/relocatable.sh.in
 Hash: 9999da027001765970462a1eefc6bb884cbed4f8e7c548585f0b21c86e9851da
 Copyright: 2003, 2005-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ## The functions in this file provide support for relocatability of
 ## shell scripts.  They should be included near the beginning of each
@@ -839,6 +1183,18 @@ File: ./build-aux/texinfo.tex
 Hash: 6e6bda9f2252f034e86fb076cb53b27dbe4b35c676205310c46642a86d6bf51d
 Copyright: 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #% texinfo.tex -- TeX macros to handle Texinfo files.
 #%
@@ -859,6 +1215,18 @@ File: ./build-aux/update-copyright
 Hash: a49986e631d5bcdc1ae01896d48c4012ff114f92427b2290dc166a7512804b56
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/usr/bin/perl -0777 -pi
 ## Update an FSF copyright year list to include the current year.
@@ -879,6 +1247,18 @@ File: ./build-aux/useless-if-before-free
 Hash: 3328c2c72241c0c23c28e4c19a5a353b08e308334956478cce81534a6a5cf7e2
 Copyright: 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/usr/bin/perl -T
 ## Detect instances of "if (p) free (p);".
@@ -899,6 +1279,18 @@ File: ./build-aux/vc-list-files
 Hash: 37cfcaca7e77bc33ad04c6bc2f69980b41136c6610fa24b30dd929126d28e8eb
 Copyright: 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## List version-controlled file names.
@@ -919,6 +1311,18 @@ File: ./build-aux/x-to-1.in
 Hash: 435c01c15a67e002b489e7cd3ceaa0680f4817e6410f07f8209bc67a061f9498
 Copyright: 2001, 2003, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ##
@@ -939,6 +1343,18 @@ File: ./check-module
 Hash: 0773e749793f3ec28522fb356985b4f51ce4d7f17b99c7f1ec92a80bfff8b026
 Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/usr/bin/perl -w
 ## Check a gnulib module.
@@ -982,6 +1398,18 @@ File: ./config/srclist-update
 Hash: 07d2f67dd25798899d772b1db8639368147e43615c175443b9d8720f7ae0d428
 Copyright: 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## $Id: srclist-update,v 1.19 2007-03-30 23:44:27 karl Exp $
@@ -1022,6 +1450,18 @@ File: ./config/srclistvars.sh
 Hash: 009a6f6d36cf2b47a67c2e404d912b491cb310a8653631b8302a8691da1b7f6b
 Copyright: 2002, 2003, 2004 2005, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ## $Id: srclistvars.sh,v 1.28 2006-08-22 19:38:57 eggert Exp $
 ## Variables for srclist-update and srclist.txt.
@@ -18090,6 +18530,13 @@ File: ./doc/inet_ntoa.texi
 Hash: 44cfa1261391ab7b6da6a8387826d35826ef9238214aea7713a3bdae92621afc
 Copyright: 2005 Free Software Foundation, Inc.
 License: GFDL-1.3+-NIV
+ Permission is granted to copy, distribute and/or modify this document
+ under the terms of the GNU Free Documentation License, Version 1.3 or
+ any later version published by the Free Software Foundation; with no
+ Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+ Texts.  A copy of the license is included in the ``GNU Free
+ Documentation License'' file as part of this distribution.
+
 #Header:
 #@node inet_ntoa
 #@section inet_ntoa
@@ -18097,12 +18544,6 @@ License: GFDL-1.3+-NIV
 #
 #@c Copyright (C) 2005 Free Software Foundation, Inc.
 #
- Permission is granted to copy, distribute and/or modify this document
- under the terms of the GNU Free Documentation License, Version 1.3 or
- any later version published by the Free Software Foundation; with no
- Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
- Texts.  A copy of the license is included in the ``GNU Free
- Documentation License'' file as part of this distribution.
 #
 #The @code{inet_ntoa} function need not be reentrant, and consequently
 #is not required to be thread safe.  Implementations of
@@ -18188,6 +18629,12 @@ File: ./doc/maintain.texi
 Hash: c3f2ff808bd13ddf5c9dfdecff85d6bc5581e6338bf9919e43aa41a7d2a5ed05
 Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GFDL-1.3+-NIV
+ Permission is granted to copy, distribute and/or modify this document
+ under the terms of the GNU Free Documentation License, Version 1.3 or
+ any later version published by the Free Software Foundation; with no
+ Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+ Texts.  A copy of the license is included in the ``GNU Free
+ Documentation License'' file as part of this distribution.
 #Header:
 #\input texinfo.tex    @c -*-texinfo-*-
 #@c %**start of header
@@ -44219,18 +44666,18 @@ File: ./doc/quote.texi
 Hash: 9cc2b24f70ec69e8dbc53ef7d8100f87dbcf6e4f207d834ce82c872fbeed98bf
 Copyright: 2005 Free Software Foundation, Inc.
 License: GFDL-1.3+-NIV
-#Header:
-#@node Quoting
-#@section Quoting
-#
-#@c Copyright (C) 2005 Free Software Foundation, Inc.
-#
  Permission is granted to copy, distribute and/or modify this document
  under the terms of the GNU Free Documentation License, Version 1.3 or
  any later version published by the Free Software Foundation; with no
  Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
  Texts.  A copy of the license is included in the ``GNU Free
  Documentation License'' file as part of this distribution.
+#Header:
+#@node Quoting
+#@section Quoting
+#
+#@c Copyright (C) 2005 Free Software Foundation, Inc.
+#
 #
 #@cindex Quoting
 #@findex quote
@@ -44239,16 +44686,16 @@ File: ./doc/regexprops-generic.texi
 Hash: 953ea60aeff18a45851d07c4fd84c6d47156d1cb6056d2808293b45b3663d4c4
 Copyright: 1994, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GFDL-1.3+-NIV
-#Header:
-#@c Copyright (C) 1994, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2006, 2007
-#@c
-#@c
  Permission is granted to copy, distribute and/or modify this document
  under the terms of the GNU Free Documentation License, Version 1.3 or
  any later version published by the Free Software Foundation; with no
  Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
  Texts.  A copy of the license is included in the ``GNU Free
  Documentation License'' file as part of this distribution.
+#Header:
+#@c Copyright (C) 1994, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2006, 2007
+#@c
+#@c
 #
 #@c this regular expression description is for: generic
 #
@@ -44407,6 +44854,18 @@ File: ./gnulib-tool
 Hash: 506eacbbefeba098819ee35b897a3ac4805d5f1f583b31e03a7513f912d9d7c5
 Copyright: 2002-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ##
@@ -44470,6 +44929,18 @@ File: ./lib/accept.c
 Hash: 81e7c1c7a740ff4f41971972abd0fce7d0177c859d16af4f191136397a1d820b
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* accept.c --- wrappers for Windows accept function
 #
@@ -44490,6 +44961,19 @@ File: ./lib/accept4.c
 Hash: 51542463f5bad636c373ba51c3b2ab426e33b3f939bcbabfcaf2d97af6165104
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Accept a connection on a socket, with specific opening flags.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -44510,6 +44994,18 @@ File: ./lib/acl-internal.h
 Hash: eb885f58854359d77e7d3ecfc31a71a4df2476ec860d7e1a51aa30411c71e39e
 Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Internal implementation of access control lists.
 #
@@ -44530,6 +45026,18 @@ File: ./lib/acl.h
 Hash: 51d61a70672664344e91e265051c9409abd29da6e53bfaa37b774cad919a1b19
 Copyright: 2002, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* acl.c - access control lists
 #
@@ -44550,6 +45058,18 @@ File: ./lib/acl_entries.c
 Hash: 9f85cc40b290acec6fd2d1429421749158816b59818b6542d1058873b08fe6db
 Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Return the number of entries in an ACL.
 #
@@ -44585,6 +45105,19 @@ File: ./lib/alignof.h
 Hash: 3462758dafa0cfd9ac5dbecc7fdd45d21f7b7f2a8e87ee35a5b37b251a4b1dca
 Copyright: 2003-2004, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Determine alignment of types.
 #   Copyright (C) 2003-2004, 2006, 2009 Free Software Foundation, Inc.
@@ -44623,6 +45156,19 @@ File: ./lib/alloca.in.h
 Hash: b7dcd93bf4979e9478ae25207f011254c3ac6fa5173505035f727801905dc65d
 Copyright: 1995, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Memory allocation on the stack.
 #
@@ -44642,6 +45188,19 @@ File: ./lib/alphasort.c
 Hash: d9acf3be813a3d6e39e7814ed4bf572e796559daad249c11b26c649d7e4cb68d
 Copyright: 1992, 1997, 1998, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 1992, 1997, 1998, 2009 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -44662,6 +45221,19 @@ File: ./lib/arcfour.c
 Hash: c8fed8d528f531f03939034fac2a66aa2101940d2e1a25ae81ecd33397aefd41
 Copyright: 2000, 2001, 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* arcfour.c --- The arcfour stream cipher
 # * Copyright (C) 2000, 2001, 2002, 2003, 2005, 2006 Free Software
@@ -44682,6 +45254,19 @@ File: ./lib/arcfour.h
 Hash: 9ac0e9cf9af5561f523190d722544db4ddbbb9e2bb40f47b34daf7cc45ac6f7f
 Copyright: 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* arcfour.h --- The arcfour stream cipher
 # * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005
@@ -44702,6 +45287,19 @@ File: ./lib/arctwo.c
 Hash: 2ddafebd0cc6dd4d8ad0fefad69ae2c676755062511550843b130b44e6af00e1
 Copyright: 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* arctwo.c --- The RC2 cipher as described in RFC 2268.
 # * Copyright (C) 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
@@ -44722,6 +45320,19 @@ File: ./lib/arctwo.h
 Hash: 8ebc8bf993f2598e4a531b9c879ea30686307379e18170bb774a34814fab8ad4
 Copyright: 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* arctwo.h --- The arctwo block cipher
 # * Copyright (C) 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
@@ -44742,6 +45353,18 @@ File: ./lib/areadlink-with-size.c
 Hash: 93cb0c93eeecd42ebcb6f5d41b313d8e54d6e85c97d872159053aadb4412cf8b
 Copyright: 2001, 2003-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* readlink wrapper to return the link name in malloc'd storage.
 #   Unlike xreadlink and xreadlink_with_size, don't ever call exit.
@@ -44761,6 +45384,18 @@ File: ./lib/areadlink.c
 Hash: 3358ac448b45959a1e867e7f73e753dc1a9c0c493a68e0ef9d43d26f412ec68c
 Copyright: 2001, 2003-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* areadlink.c -- readlink wrapper to return the link name in malloc'd storage
 #   Unlike xreadlink and xreadlink_with_size, don't ever call exit.
@@ -44780,6 +45415,18 @@ File: ./lib/areadlink.h
 Hash: 2bd213824c6fa8c5380a7addae975805c2f1550a27120bef5cc9faeae3f6cbe7
 Copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Read symbolic links without size limitation.
 #
@@ -44800,6 +45447,18 @@ File: ./lib/argmatch.c
 Hash: 76a31c441174aa08a151b841cc9b489075b3e0a4cd0edd4d36279854bdd463ea
 Copyright: 1990, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* argmatch.c -- find a match for a string in an array
 #
@@ -44819,6 +45478,18 @@ File: ./lib/argmatch.h
 Hash: 384958e174b369516cfd605f99dc3cbd78763d5df9ecd5a023704eb1009335a6
 Copyright: 1990, 1998, 1999, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* argmatch.h -- definitions and prototypes for argmatch.c
 #
@@ -44838,6 +45509,18 @@ File: ./lib/argp-ba.c
 Hash: 9661f51641633441a54245954be390ca3d303e3389349b0ff3a221abaa4b080e
 Copyright: 1996, 1997, 1999, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Default definition for ARGP_PROGRAM_BUG_ADDRESS.
 #   Copyright (C) 1996, 1997, 1999, 2009 Free Software Foundation, Inc.
@@ -44857,6 +45540,18 @@ File: ./lib/argp-eexst.c
 Hash: b9ad8bc0fa9a452f44ebb0fa9e15e43aba269cc76119db3a0ab3014d0ffaf8b4
 Copyright: 1997 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Default definition for ARGP_ERR_EXIT_STATUS
 #   Copyright (C) 1997 Free Software Foundation, Inc.
@@ -44876,6 +45571,18 @@ File: ./lib/argp-fmtstream.c
 Hash: 78c93c6002f45ab98bfcf9487cc421139dc415033d221d8f900454feeb878fab
 Copyright: 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Word-wrapping and line-truncating streams
 #   Copyright (C) 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc.
@@ -44895,6 +45602,18 @@ File: ./lib/argp-fmtstream.h
 Hash: a9f5474e0d954582819cb3aec9d04b3ed039a5bcae81d5aff11a632693cf5949
 Copyright: 1997, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Word-wrapping and line-truncating streams.
 #   Copyright (C) 1997, 2006-2008 Free Software Foundation, Inc.
@@ -44914,6 +45633,18 @@ File: ./lib/argp-fs-xinl.c
 Hash: f42be327cb0f817cef2cf6b3f54ca487960053ff7e4f66a7b9179304f03270bd
 Copyright: 1997, 2003, 2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Real definitions for extern inline functions in argp-fmtstream.h
 #   Copyright (C) 1997, 2003, 2004 Free Software Foundation, Inc.
@@ -44933,6 +45664,18 @@ File: ./lib/argp-help.c
 Hash: 5ca3499ee19a2ab145823797673107b2eb288d217a9a1f500e6d77b1eb29bbe2
 Copyright: 1995-2005, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Hierarchial argument parsing help output
 #   Copyright (C) 1995-2005, 2007 Free Software Foundation, Inc.
@@ -44952,6 +45695,18 @@ File: ./lib/argp-namefrob.h
 Hash: 3aba78e59efd19a0514f4d27c434803bbc7b7b67ce6a9a26e257ea726b0f88a8
 Copyright: 1997, 2003, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Name frobnication for compiling argp outside of glibc
 #   Copyright (C) 1997, 2003, 2007 Free Software Foundation, Inc.
@@ -44971,6 +45726,18 @@ File: ./lib/argp-parse.c
 Hash: 09167da5bae9280333ff29c12986e2e0ef0d0c761efc54d26ae78f4393d0b24f
 Copyright: 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Hierarchial argument parsing, layered over getopt
 #   Copyright (C) 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc.
@@ -44990,6 +45757,18 @@ File: ./lib/argp-pin.c
 Hash: 136b821e9b1fcec0809ccd1714aba2e4e7d17cc22ec9f7fda27b53c926aff858
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Full and short program names for argp module
 #   Copyright (C) 2005 Free Software Foundation, Inc.
@@ -45010,6 +45789,18 @@ File: ./lib/argp-pv.c
 Hash: 3a9ac90d20dda74af5afcc874cbb8f69eb81cd80c21009d94815d6ac64ff79c1
 Copyright: 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Default definition for ARGP_PROGRAM_VERSION.
 #   Copyright (C) 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc.
@@ -45029,6 +45820,18 @@ File: ./lib/argp-pvh.c
 Hash: 9bf839864fb8929972b914067dca6bcceb4f05776fc9ecd4d4225356e01042bc
 Copyright: 1996, 1997, 1999, 2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Default definition for ARGP_PROGRAM_VERSION_HOOK.
 #   Copyright (C) 1996, 1997, 1999, 2004 Free Software Foundation, Inc.
@@ -45048,6 +45851,18 @@ File: ./lib/argp-version-etc.c
 Hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Version hook for Argp.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -45068,6 +45883,18 @@ File: ./lib/argp-version-etc.h
 Hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Version hook for Argp.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -45088,6 +45915,18 @@ File: ./lib/argp-xinl.c
 Hash: 55403221c704ff78de0f4fedde5c49143077592a946456cd1dc707caab2ccc94
 Copyright: 1997, 1998, 2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Real definitions for extern inline functions in argp.h
 #   Copyright (C) 1997, 1998, 2004 Free Software Foundation, Inc.
@@ -45107,6 +45946,18 @@ File: ./lib/argp.h
 Hash: a47d0da1b66595eecbf61c738d5cbcb2c66cb38f2ff958466b5bdaad40e8ce79
 Copyright: 1995-1999,2003-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Hierarchial argument parsing, layered over getopt.
 #   Copyright (C) 1995-1999,2003-2008 Free Software Foundation, Inc.
@@ -45126,6 +45977,18 @@ File: ./lib/argv-iter.c
 Hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Iterate over arguments from argv or --files0-from=FILE
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -45146,6 +46009,18 @@ File: ./lib/argv-iter.h
 Hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Iterate over arguments from argv or --files0-from=FILE
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -45166,6 +46041,19 @@ File: ./lib/argz.c
 Hash: 1c24aecbfd5cd788fc849e7d534c75f86f4e42acb16bc7a18d23e00ba251da74
 Copyright: 1995-1998, 2000-2002, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Functions for dealing with '\0' separated arg vectors.
 #   Copyright (C) 1995-1998, 2000-2002, 2006, 2008 Free Software Foundation, Inc.
@@ -45186,6 +46074,18 @@ File: ./lib/argz.in.h
 Hash: b5f8d15d436b04bc7e91bc0a133e8ef45b4a70906bd0a4aba412c9ba1bf1a924
 Copyright: 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc.
 License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Routines for dealing with '\0' separated arg vectors.
 #   Copyright (C) 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc.
@@ -45206,6 +46106,19 @@ File: ./lib/arpa_inet.in.h
 Hash: d921498b43bfc8b6c8bd8bc3af58f20194194561344fb042169b9aa720c2dd7f
 Copyright: 2005-2006, 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* A GNU-like <arpa/inet.h>.
 #
@@ -45226,6 +46139,18 @@ File: ./lib/array-mergesort.h
 Hash: 0b6a5a731180bd7f2271e98ae120c9b01c751899c685fe91ed94efdc215557b0
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Stable-sorting of an array using mergesort.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -45262,6 +46187,19 @@ File: ./lib/asnprintf.c
 Hash: 8e81f2c3c535f505added072b5281fa5c590144c3aa3e083dad0c3ed52b45aa0
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -45282,6 +46220,19 @@ File: ./lib/asprintf.c
 Hash: 2045ea0ccc9c1e33818278aae4f856ccbec17f95c16ed6b1264dbc5f98df421c
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -45302,6 +46253,18 @@ File: ./lib/at-func.c
 Hash: 6123fbee08097fe452caf222c168f32e36f7b9a10d815c8679e22fd0c1fea90f
 Copyright: 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Define an at-style functions like fstatat, unlinkat, fchownat, etc.
 #   Copyright (C) 2006, 2009 Free Software Foundation, Inc.
@@ -45322,6 +46285,18 @@ File: ./lib/atanl.c
 Hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
 Copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
 #
@@ -45359,6 +46334,18 @@ File: ./lib/atoll.c
 Hash: 43af4461379692b1d5e3db98d3b75cf38757d5cd3b2e0c26efb0287da4ef034f
 Copyright: 1991, 1997, 1998, 2008 Free Software Foundation, Inc.
 License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1991, 1997, 1998, 2008 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -45379,6 +46366,18 @@ File: ./lib/backupfile.c
 Hash: de3f6f972c0d97e43fda93581b76623a6314b9e5cab5c0559f0b6622d0425874
 Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* backupfile.c -- make Emacs style backup file names
 #
@@ -45399,6 +46398,18 @@ File: ./lib/backupfile.h
 Hash: 08b55cc0243fe8a455eda4a2ce69f879623f6fadfaf004386062e4c15e9a24dc
 Copyright: 1990, 1991, 1992, 1997, 1998, 1999, 2003, 2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* backupfile.h -- declarations for making Emacs style backup file names
 #
@@ -45418,6 +46429,19 @@ File: ./lib/base64.c
 Hash: a4fedb1d6d2bee5c7d6100ab2f73c5a24e0cd932921577dd9bca74b57e97c0ff
 Copyright: 1999, 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* base64.c -- Encode binary data using printable characters.
 #   Copyright (C) 1999, 2000, 2001, 2004, 2005, 2006 Free Software
@@ -45438,6 +46462,19 @@ File: ./lib/base64.h
 Hash: 92f71847fff2b46fe5623f1da8199c223944384bfe92cf9d66710d17b2969583
 Copyright: 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* base64.h -- Encode binary data using printable characters.
 #   Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
@@ -45458,6 +46495,18 @@ File: ./lib/basename.c
 Hash: ca4490814d70e42aa42de5259bc7f9535664c76469f4ad8a5b741bd738171b78
 Copyright: 1990, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* basename.c -- return the last element in a file name
 #
@@ -45497,6 +46546,18 @@ File: ./lib/binary-io.h
 Hash: ea71f7a3ab4b4dbfdbe578a2bedc51341a632fae63edc9687ddb301a8e88db6b
 Copyright: 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Binary mode I/O.
 #   Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
@@ -45517,6 +46578,18 @@ File: ./lib/bind.c
 Hash: 345fb14e8ab45ff32e86d497f729743b9085d3924d0dcd8dcc4f9b5d28cb843b
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* bind.c --- wrappers for Windows bind function
 #
@@ -45537,6 +46610,18 @@ File: ./lib/bitrotate.h
 Hash: bf4e90d06ff8a7eb32a59c54394204b84741046fa15f0ee9dfd0cec19cc2cf25
 Copyright: 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* bitrotate.h - Rotate bits in integers
 #   Copyright (C) 2008, 2009 Free Software Foundation, Inc.
@@ -45557,6 +46642,18 @@ File: ./lib/btowc.c
 Hash: 4c263e1c7b7add699324c83acf27490eae484d98e3ec75ec8abfe89e50e4c3e2
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert unibyte character to wide character.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -45577,6 +46674,18 @@ File: ./lib/byteswap.in.h
 Hash: bd089dcccc601992343eadc9ac5d1173fe47adaa6be9f554de9b56e0ada6ef30
 Copyright: 2005, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* byteswap.h - Byte swapping
 #   Copyright (C) 2005, 2007 Free Software Foundation, Inc.
@@ -45597,6 +46706,19 @@ File: ./lib/c-ctype.c
 Hash: 3247e6ae86bda58108f0933bb516ac7092c6b972c747ebbe1ea530edf06c0793
 Copyright: 2000-2003, 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Character handling in C locale.
 #
@@ -45617,6 +46739,19 @@ File: ./lib/c-ctype.h
 Hash: 221f512fb0a226a9fe28608c4f065c4f1aea37664edc45787cf2b677d3347988
 Copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Character handling in C locale.
 #
@@ -45637,6 +46772,18 @@ File: ./lib/c-stack.c
 Hash: 0fe02d3bbf8b73c2f3eea5841027b52860666ee94e2795b444dcc98ef79dc503
 Copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Stack overflow handling.
 #
@@ -45656,6 +46803,18 @@ File: ./lib/c-stack.h
 Hash: a21e1759d3e498e26d93665fe500f7ac93027b38ee4c9413df473f6bbe8d0b22
 Copyright: 2002, 2004, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Stack overflow handling.
 #
@@ -45676,6 +46835,19 @@ File: ./lib/c-strcase.h
 Hash: 700123f142dd7be6a02cb443ec2ec16c5e55412c9b767cb6fb5f41972f2986be
 Copyright: 1995-1996, 2001, 2003, 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Case-insensitive string comparison functions in C locale.
 #   Copyright (C) 1995-1996, 2001, 2003, 2005 Free Software Foundation, Inc.
@@ -45696,6 +46868,19 @@ File: ./lib/c-strcasecmp.c
 Hash: 5813026dcc5c543c5f539fe753092ea0f0419c3a0e5cd28271a66403efd66608
 Copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* c-strcasecmp.c -- case insensitive string comparator in C locale
 #   Copyright (C) 1998-1999, 2005-2006 Free Software Foundation, Inc.
@@ -45716,6 +46901,18 @@ File: ./lib/c-strcaseeq.h
 Hash: 41a44de05c8794489a85f495714c9ebe9b7e86bf93882e1157c7c29ef7e87654
 Copyright: 2001-2002, 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Optimized case-insensitive string comparison in C locale.
 #   Copyright (C) 2001-2002, 2007 Free Software Foundation, Inc.
@@ -45736,6 +46933,18 @@ File: ./lib/c-strcasestr.c
 Hash: a3ef7838539fb370edb6d04a09043224c3852cfa0eb88252705569d7194b217a
 Copyright: 2005-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* c-strcasestr.c -- case insensitive substring search in C locale
 #   Copyright (C) 2005-2008 Free Software Foundation, Inc.
@@ -45756,6 +46965,18 @@ File: ./lib/c-strcasestr.h
 Hash: fb9f0ccc3a0843600f8f3c546536dd03d882a1cce67ed06d95299307810a67c7
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-insensitive searching in a string in C locale.
 #   Copyright (C) 2005 Free Software Foundation, Inc.
@@ -45776,6 +46997,19 @@ File: ./lib/c-strncasecmp.c
 Hash: 0f5960e9963b050aa381c57b2fb6d08ad32e86d833e906014b9f965a4f233b7e
 Copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* c-strncasecmp.c -- case insensitive string comparator in C locale
 #   Copyright (C) 1998-1999, 2005-2006 Free Software Foundation, Inc.
@@ -45796,6 +47030,18 @@ File: ./lib/c-strstr.c
 Hash: c435d0a89670ee2ac73fad0445f0d15de13e09ddf466ebf15dc872d62b3b5f4c
 Copyright: 2005-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* c-strstr.c -- substring search in C locale
 #   Copyright (C) 2005-2008 Free Software Foundation, Inc.
@@ -45816,6 +47062,18 @@ File: ./lib/c-strstr.h
 Hash: a562f768d2d1e2f44652b98dca2e7ae58e2880eada876116a6d3bf342a312cc0
 Copyright: 2001-2003, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Searching in a string.
 #   Copyright (C) 2001-2003, 2006 Free Software Foundation, Inc.
@@ -45836,6 +47094,18 @@ File: ./lib/c-strtod.c
 Hash: 40bcd0ae43e731e785caaf327c327c32e95074019aa23a02fd58c1af79beebaa
 Copyright: 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert string to double, using the C locale.
 #
@@ -45856,6 +47126,18 @@ File: ./lib/c-strtod.h
 Hash: d1d38e765e9bb24e6331acb59798291a42525d3d52b5945a06e04131fda2622c
 Copyright: 2003-2004, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert string to double, using the C locale.
 #
@@ -45883,6 +47165,18 @@ File: ./lib/calloc.c
 Hash: 813b2807d1779eccdc16e52eaa6272c8d2cad79b90dcd1a121c59fccbd7db54c
 Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* calloc() function that is glibc compatible.
 #   This wrapper function is required at least on Tru64 UNIX 5.1 and mingw.
@@ -45903,6 +47197,18 @@ File: ./lib/canon-host.c
 Hash: 6e769abcb94fe823344005341e9d566650fc3f05e22afeb853cd498391890071
 Copyright: 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Host name canonicalization
 #
@@ -45923,6 +47229,18 @@ File: ./lib/canon-host.h
 Hash: 15c3b5a2570e4d2b2501c12ea7f690cd76be7a4271c9f620df17b9e24574ff2d
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Host name canonicalization
 #
@@ -45943,6 +47261,18 @@ File: ./lib/canonicalize-lgpl.c
 Hash: 31572bb94d292f1be2374999e03d2ca1ff506f643e889f1211ad4ec9e42709c3
 Copyright: 1996-2003, 2005-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Return the canonical absolute name of a given file.
 #   Copyright (C) 1996-2003, 2005-2009 Free Software Foundation, Inc.
@@ -45963,6 +47293,18 @@ File: ./lib/canonicalize.c
 Hash: 317fb2484d6a487a7ab5c964f7fd86fa711e1ab1ab3fd34518c6d6ae7eb77f6d
 Copyright: 1996-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Return the canonical absolute name of a given file.
 #   Copyright (C) 1996-2009 Free Software Foundation, Inc.
@@ -45983,6 +47325,18 @@ File: ./lib/canonicalize.h
 Hash: 8946ae555e9b6d4173814e28c850eef63233d5026e291074af2d999e567e3303
 Copyright: 1996-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Return the canonical absolute name of a given file.
 #   Copyright (C) 1996-2007 Free Software Foundation, Inc.
@@ -46003,6 +47357,18 @@ File: ./lib/ceil.c
 Hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Round towards positive infinity.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -46023,6 +47389,18 @@ File: ./lib/ceilf.c
 Hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Round towards positive infinity.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -46043,6 +47421,18 @@ File: ./lib/ceill.c
 Hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Round towards positive infinity.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -46063,6 +47453,18 @@ File: ./lib/chdir-long.c
 Hash: 9bfeec4664bd8ea174475e5c7ca4f26bee69370881752dacddb6aeed908600c7
 Copyright: 2004-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* provide a chdir function that tries not to fail due to ENAMETOOLONG
 #   Copyright (C) 2004-2009 Free Software Foundation, Inc.
@@ -46083,6 +47485,18 @@ File: ./lib/chdir-long.h
 Hash: 43c6066052ad511d0bbc773ab569ed70bfe41a4e8f0168495d53f289d3b8292c
 Copyright: 2004, 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* provide a chdir function that tries not to fail due to ENAMETOOLONG
 #   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
@@ -46103,6 +47517,18 @@ File: ./lib/chdir-safer.c
 Hash: 7fb9baacfff6082c7a5913c4aae0557ff60cfb3e65bd0c09ebd438669d66a570
 Copyright: 2005-2006, 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* much like chdir(2), but safer
 #
@@ -46123,6 +47549,18 @@ File: ./lib/chdir-safer.h
 Hash: e3232b6124ac91a0910daf805e412816cd3a6ee5a8268acdaa366f4c35f9ed51
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* much like chdir(2), but safer
 #
@@ -46143,6 +47581,19 @@ File: ./lib/check-version.c
 Hash: b9147d6cca01ee62c2de29c59777283b45be1735a457fb9a748256b9f9cd8f43
 Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* check-version.h --- Check version string compatibility.
 #   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
@@ -46163,6 +47614,19 @@ File: ./lib/check-version.h
 Hash: eb1e24d6d5f441f55ca7b9ad07249b71a8056ba2eb91ad6584428f97a5a836b5
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* check-version.h --- Check version string compatibility.
 #   Copyright (C) 2005 Free Software Foundation, Inc.
@@ -46183,6 +47647,18 @@ File: ./lib/chown.c
 Hash: e72dbae39e506979332040aa02e82336372fc710944efc83f3da40c5c09ca7a6
 Copyright: 1997, 2004-2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* provide consistent interface to chown for systems that don't interpret
 #   an ID of -1 as meaning `don't change the corresponding ID'.
@@ -46202,6 +47678,18 @@ File: ./lib/classpath.c
 Hash: d1d34ae2c6f3915f1a22d0399df01102840772c8733b3782ccd4fe220e819b6a
 Copyright: 2001-2003, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Java CLASSPATH handling.
 #   Copyright (C) 2001-2003, 2006 Free Software Foundation, Inc.
@@ -46222,6 +47710,18 @@ File: ./lib/classpath.h
 Hash: 9b2071cc61bb9c5fc67562c4b2ae4270c0e61235f0052a91e63542ed1c161ff1
 Copyright: 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Java CLASSPATH handling.
 #   Copyright (C) 2003 Free Software Foundation, Inc.
@@ -46242,6 +47742,18 @@ File: ./lib/clean-temp.c
 Hash: 36bc4ff5220f99fef224ee81984f458a050b76097c5a2e5fe8ee40d5d84e1bf4
 Copyright: 2001, 2003, 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Temporary directories and temporary files with automatic cleanup.
 #   Copyright (C) 2001, 2003, 2006-2007 Free Software Foundation, Inc.
@@ -46262,6 +47774,18 @@ File: ./lib/clean-temp.h
 Hash: 7fb51e989292b9fee1580dc431185ca8ee300709983c7ab0137bfc372d6a2b18
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Temporary directories and temporary files with automatic cleanup.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -46282,6 +47806,18 @@ File: ./lib/cloexec.c
 Hash: 1f7579bc9888a0a5a4eb18a6a04be6dea54324e346baa4a0c76b240f01ed3329
 Copyright: 1991, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* closexec.c - set or clear the close-on-exec descriptor flag
 #
@@ -46309,6 +47845,18 @@ File: ./lib/close-hook.c
 Hash: ec1354c985be7435887fe9b514e9777b573cf13b674dc55eeffbbf2b6f738034
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Hook for making the close() function extensible.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -46329,6 +47877,18 @@ File: ./lib/close-hook.h
 Hash: 0bd92bcbb0e461e75824497facbf3a66e7ae7d8eaf7cc4b91fa7dcb0b827b504
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Hook for making the close() function extensible.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -46349,6 +47909,18 @@ File: ./lib/close-stream.c
 Hash: 5b1b946e2cdae710a10239f75e632eaac2c083ad0a895384be7a76254efcdb42
 Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Close a stream, with nicer error checking than fclose's.
 #
@@ -46375,6 +47947,18 @@ File: ./lib/close.c
 Hash: bb1b7ca07113ae43ac558dbd9ba9c62ccef65d984ff7a462df394ded1e8e5a4c
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* close replacement.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -46395,6 +47979,18 @@ File: ./lib/closein.c
 Hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Close standard input, rewinding seekable stdin if necessary.
 #
@@ -46415,6 +48011,18 @@ File: ./lib/closein.h
 Hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Close standard input, rewinding seekable stdin if necessary.
 #
@@ -46435,6 +48043,18 @@ File: ./lib/closeout.c
 Hash: 0208f6e721c11f8964c3a52a6e8c4bd6f19d35db790e2a5815dfea345d7444eb
 Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Close standard output and standard error, exiting with a diagnostic on error.
 #
@@ -46454,6 +48074,18 @@ File: ./lib/closeout.h
 Hash: 2b48405fde7535d4e60a3e539a77ab974fd3e372cf97d8c0ed3a82991c3b9cbe
 Copyright: 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Close standard output and standard error.
 #
@@ -46473,6 +48105,18 @@ File: ./lib/concat-filename.c
 Hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
 Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Construct a full filename from a directory and a relative filename.
 #   Copyright (C) 2001-2004, 2006-2008 Free Software Foundation, Inc.
@@ -46493,6 +48137,18 @@ File: ./lib/concat-filename.h
 Hash: b84d2c6c2e5a8307529fe2a1345949b40a55aee7271142bf3e56ec008231bc0e
 Copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Construct a full filename from a directory and a relative filename.
 #   Copyright (C) 2001-2004, 2007-2008 Free Software Foundation, Inc.
@@ -46513,6 +48169,19 @@ File: ./lib/config.charset
 Hash: 6f0998e29a63e3fcb8c4e044840a073a733d777ab343c1a3f045ce6ab2e9ecf9
 Copyright: 2000-2004, 2006-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 ##! /bin/sh
 ## Output a system dependent table of character encoding aliases.
@@ -46533,6 +48202,18 @@ File: ./lib/connect.c
 Hash: e9e4f3ca46ee356688d1d58e5eba96562c3850b470cc266856bae4cfc7ef5372
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* connect.c --- wrappers for Windows connect function
 #
@@ -46553,6 +48234,18 @@ File: ./lib/copy-acl.c
 Hash: 40c730e383e47065909dd9b5cfabcdf662f5ca1d3491528c2726551c49d88e49
 Copyright: 2002-2003, 2005-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* copy-acl.c - copy access control list from one file to another file
 #
@@ -46573,6 +48266,18 @@ File: ./lib/copy-file.c
 Hash: 8d79873160d6735d8e50841f62ddb06b8a12bb54fc4ccaa29e8fd4c8009e7ce9
 Copyright: 2001-2003, 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copying of files.
 #   Copyright (C) 2001-2003, 2006-2007 Free Software Foundation, Inc.
@@ -46593,6 +48298,18 @@ File: ./lib/copy-file.h
 Hash: b83fade95166bced102f06075d40d1b52c09d72aa62e313053f297f2e89e05e4
 Copyright: 2001-2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copying of files.
 #   Copyright (C) 2001-2003 Free Software Foundation, Inc.
@@ -46630,6 +48347,18 @@ File: ./lib/count-one-bits.h
 Hash: 9bfc5b555787364b6d14caddb1e35b0c076627938d3049c7b0d3d0b411409e10
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* count-one-bits.h -- counts the number of 1-bits in a word.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -46650,6 +48379,18 @@ File: ./lib/crc.c
 Hash: 444a38281c2c920f7e54307e2fb960e7e045a71ede5a7793c8b59d19dd42fecc
 Copyright: 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* crc.c -- cyclic redundancy checks
 #   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
@@ -46670,6 +48411,18 @@ File: ./lib/crc.h
 Hash: d20e1f1c17cf2ef4fe9383e09809c60590708ecadd57cf6d967c5634c968eea0
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* crc.h -- cyclic redundancy checks
 #   Copyright (C) 2005 Free Software Foundation, Inc.
@@ -46690,6 +48443,18 @@ File: ./lib/creat-safer.c
 Hash: 675f74818da9e9543301afdb0bacc0922294d33b13d7411ff97044bc83ee5186
 Copyright: 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke creat, but avoid some glitches.
 #
@@ -46710,6 +48475,18 @@ File: ./lib/csharpcomp.c
 Hash: 60500489341e803a1e684450bb9cb161aa03e3d71fd8c469f1bb47b9e5ddcbf4
 Copyright: 2003-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compile a C# program.
 #   Copyright (C) 2003-2008 Free Software Foundation, Inc.
@@ -46730,6 +48507,18 @@ File: ./lib/csharpcomp.h
 Hash: ed80ee1bdd6a323445877e7988c969b8b4a0699bb70bea8a8f6fd2e98df2f9a2
 Copyright: 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compile a C# program.
 #   Copyright (C) 2003 Free Software Foundation, Inc.
@@ -46750,6 +48539,18 @@ File: ./lib/csharpexec.c
 Hash: 9c8d0cf212dcaf02bcbd13a6f9fc04f6bde9b26961bcb6b84c8d613eccedbe40
 Copyright: 2003-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Execute a C# program.
 #   Copyright (C) 2003-2008 Free Software Foundation, Inc.
@@ -46770,6 +48571,18 @@ File: ./lib/csharpexec.h
 Hash: b52a0f9c1967e21f490cb0a86d5d0910af3e34b693c1937e965561bbe2b01916
 Copyright: 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Execute a C# program.
 #   Copyright (C) 2003 Free Software Foundation, Inc.
@@ -46790,6 +48603,18 @@ File: ./lib/cycle-check.c
 Hash: 42e37d48e8e2bde63e12bb394fa4c50a6209ed1b592e6c236411dd339e0756a1
 Copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* help detect directory cycles efficiently
 #
@@ -46810,13 +48635,25 @@ File: ./lib/cycle-check.h
 Hash: 42b5265fff4a67fad7b32708c5ffe9ecb8ee2edac006073355fcc563d9cf7e11
 Copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
-#Header:
-#/* help detect directory cycles efficiently
-#
-#   Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc.
-#
-#   This program is free software: you can redistribute it and/or modify
-#   it under the terms of the GNU General Public License as published by
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* help detect directory cycles efficiently
+#
+#   Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
 #   the Free Software Foundation; either version 3 of the License, or
 #   (at your option) any later version.
 #
@@ -46830,6 +48667,19 @@ File: ./lib/des.c
 Hash: fd7196b6a2a037973cfc74df6861f31d3ca3a201113252ddc69f6d49843296df
 Copyright: 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* des.c --- DES and Triple-DES encryption/decryption Algorithm
 # * Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
@@ -46850,6 +48700,19 @@ File: ./lib/des.h
 Hash: 0657bba6a068db36353ae4fc668777b7948049ea563a6e04d5643878c73c0553
 Copyright: 2005, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* des.h --- DES cipher implementation.
 # * Copyright (C) 2005, 2007 Free Software Foundation, Inc.
@@ -46888,6 +48751,18 @@ File: ./lib/diacrit.c
 Hash: 8fe4fbeca6533f94fe5e22b403d4e9659a74a43af7777951d616971cb58a2865
 Copyright: 1990, 1991, 1992, 1993, 2000, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Diacritics processing for a few character codes.
 #
@@ -46908,6 +48783,18 @@ File: ./lib/diacrit.h
 Hash: 1e18e6c700599854713425ac91ef20e1dc1b48d3842826f8ce12c5b8777f6cac
 Copyright: 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Diacritics processing for a few character codes.
 #   Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
@@ -46928,6 +48815,18 @@ File: ./lib/diffseq.h
 Hash: 8e10c66c285feea8e568e48fc868abfd29fca86308f93231c42016b821f5473d
 Copyright: 1988-1989, 1992-1995, 2001-2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Analyze differences between two vectors.
 #
@@ -46947,6 +48846,18 @@ File: ./lib/dirchownmod.c
 Hash: c257ba60a2b1e58c04bdd873d5f000f1f03c6f2f364bd25f3f6bda2ce19bf4b7
 Copyright: 2006, 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Change the ownership and mode bits of a directory.
 #
@@ -46974,6 +48885,18 @@ File: ./lib/dirent--.h
 Hash: 07dc0881d2aaf744a41393f3eecee439192d76eb2eb03c62fad51514dc6ffb35
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Like dirent.h, but redefine some names to avoid glitches.
 #
@@ -46994,6 +48917,18 @@ File: ./lib/dirent-safer.h
 Hash: 6fa32838fa81f1b4a4e1df89282bd0493df71361847142562db0ebb79c0349da
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke dirent-like functions, but avoid some glitches.
 #
@@ -47014,6 +48949,18 @@ File: ./lib/dirent.in.h
 Hash: 6826b90dd9abb410dd4949515a1d15f184e8db441b5ad50f12c2eaf4f6f542c6
 Copyright: 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* A GNU-like <dirent.h>.
 #   Copyright (C) 2006-2009 Free Software Foundation, Inc.
@@ -47034,6 +48981,18 @@ File: ./lib/dirfd.c
 Hash: 3d93cdf70fd7be9fc29911d59fe09cb189e040224aaad98a8c9e83309e9c7bc5
 Copyright: 2001, 2006, 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* dirfd.c -- return the file descriptor associated with an open DIR*
 #
@@ -47054,6 +49013,18 @@ File: ./lib/dirname.c
 Hash: e875ed57e50a82603de0ee7a830a6d495673d3cf95ad330deed4ec9cc540fd7f
 Copyright: 1990, 1998, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* dirname.c -- return all but the last element in a file name
 #
@@ -47073,6 +49044,18 @@ File: ./lib/dirname.h
 Hash: 5ecde11db04080822441842ce9cdf1c7d12872412af9305e768bfc5c867e3000
 Copyright: 1998, 2001, 2003-2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*  Take file names apart into directory and base names.
 #
@@ -47093,6 +49076,18 @@ File: ./lib/dprintf.c
 Hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to a file descriptor.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -47113,6 +49108,18 @@ File: ./lib/dummy.c
 Hash: 3afbebab4922858335d8687bdd39bf0881f6eea6ed63f9d8d2999e9010b6704c
 Copyright: 2004, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* A dummy file, to prevent empty libraries from breaking builds.
 #   Copyright (C) 2004, 2007 Free Software Foundation, Inc.
@@ -47133,6 +49140,18 @@ File: ./lib/dup-safer.c
 Hash: 37fd02f35d9bbe9b3673b9681de76101a235e4a0fc4d7c630773aabe959455fa
 Copyright: 2001, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke dup, but avoid some glitches.
 #
@@ -47152,6 +49171,18 @@ File: ./lib/dup2.c
 Hash: a27cbfd58d5eb3c2d99b2a053764f3f1085841d3f29434c0a8001d845d1387c8
 Copyright: 1999, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Duplicate an open file descriptor to a specified file descriptor.
 #
@@ -47171,6 +49202,19 @@ File: ./lib/dup3.c
 Hash: 5a1a146029856f33980e0ca9fb03df16e17c36957b8af8c5f19839cba93b392d
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copy a file descriptor, applying specific flags.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -47191,6 +49235,18 @@ File: ./lib/eealloc.h
 Hash: 14128ce1ce8fbad4f7358db50d4b6d6ce1c9c524e4ea23b6e266f36b39a82695
 Copyright: 2003, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Memory allocation with expensive empty allocations.
 #   Copyright (C) 2003, 2008 Free Software Foundation, Inc.
@@ -47210,6 +49266,19 @@ File: ./lib/errno.in.h
 Hash: fe88fbd6fac6eb6acc5b84e204ef7b20b5968de6725682e3694d1f027bcf3b32
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* A POSIX-like <errno.h>.
 #
@@ -47230,6 +49299,18 @@ File: ./lib/error.c
 Hash: 759532401c6333a4e942e57b2d1ec3efe68990086230f50dfc8018148c6241a9
 Copyright: 1990-1998, 2000-2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Error handler for noninteractive utilities
 #   Copyright (C) 1990-1998, 2000-2007, 2009 Free Software Foundation, Inc.
@@ -47250,6 +49331,18 @@ File: ./lib/error.h
 Hash: c14e8a46030c1ac6f69b89a732b7b3a0c35ab78d550419c08c02a626010c3073
 Copyright: 1995, 1996, 1997, 2003, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Declaration for error-reporting function
 #   Copyright (C) 1995, 1996, 1997, 2003, 2006, 2008 Free Software Foundation, Inc.
@@ -47270,6 +49363,18 @@ File: ./lib/euidaccess.c
 Hash: 88c401261238a10e8eb01df632a0149146590e3692034046262b614e176b7677
 Copyright: 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* euidaccess -- check if effective user id can access file
 #
@@ -47290,6 +49395,18 @@ File: ./lib/exclude.c
 Hash: d841af1f422218e8e2c99fbda36b8626a810eae7a5e2be71c587bf33ecf2a895
 Copyright: 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* exclude.c -- exclude file names
 #
@@ -47309,6 +49426,18 @@ File: ./lib/exclude.h
 Hash: 2b13111b63be6c6ecb81a5e34429097b34c88b4a889ea6a41ef41309a6ef3ca5
 Copyright: 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* exclude.h -- declarations for excluding file names
 #
@@ -47328,6 +49457,18 @@ File: ./lib/execute.c
 Hash: fada894c258c01aed0dcacdb27e67b8302428f122a9a80bd346df99e5e29b461
 Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Creation of autonomous subprocesses.
 #   Copyright (C) 2001-2004, 2006-2009 Free Software Foundation, Inc.
@@ -47348,6 +49489,18 @@ File: ./lib/execute.h
 Hash: 4e56a6cb0389acc2d1a3f91209fd3781803a0acfeb907ff3d0448286af4e35d9
 Copyright: 2001-2003, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Creation of autonomous subprocesses.
 #   Copyright (C) 2001-2003, 2008 Free Software Foundation, Inc.
@@ -47368,6 +49521,18 @@ File: ./lib/exitfail.c
 Hash: 5a9a124a57c5dacad4bf2b5e021b77a42a33ee35872481ff71c4e0cd00afc2ec
 Copyright: 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Failure exit status
 #
@@ -47388,6 +49553,18 @@ File: ./lib/exitfail.h
 Hash: 877a42c98a8a8b7975c4a116bcc0afead63f92402e05649936af61e72493f252
 Copyright: 2002 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Failure exit status
 #
@@ -47408,6 +49585,18 @@ File: ./lib/expl.c
 Hash: f570f9a7eb0fc19acf0bd0b30e1482a7ed8ba594dc26eb7951dd8a8f119be46c
 Copyright: 2002, 2003, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Emulation for expl.
 #   Contributed by Paolo Bonzini
@@ -47428,6 +49617,18 @@ File: ./lib/faccessat.c
 Hash: b11aa6f0dacf29b21357e6fc7694c750c8a7b4d6601f5fbc8b869d1f7c1cfff5
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Check the access rights of a file relative to an open directory.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -47448,6 +49649,18 @@ File: ./lib/fatal-signal.c
 Hash: 2439def8a904b9fec75774ba5e8dcc0c4df0ac24598e0395fa54277e258bcaf8
 Copyright: 2003-2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Emergency actions in case of a fatal signal.
 #   Copyright (C) 2003-2004, 2006-2008 Free Software Foundation, Inc.
@@ -47468,6 +49681,18 @@ File: ./lib/fatal-signal.h
 Hash: 161abae5aa433aa22b95dbeacf7abe6b3813df0983bbc3e90d1ac806b398dcdc
 Copyright: 2003-2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Emergency actions in case of a fatal signal.
 #   Copyright (C) 2003-2004 Free Software Foundation, Inc.
@@ -47488,6 +49713,18 @@ File: ./lib/fbufmode.c
 Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -47508,6 +49745,18 @@ File: ./lib/fbufmode.h
 Hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -47528,6 +49777,18 @@ File: ./lib/fchdir.c
 Hash: 1cff01be35d904c715c02a565711422784c3ab81ba68517b8d166ed3fdc8172b
 Copyright: 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* fchdir replacement.
 #   Copyright (C) 2006-2009 Free Software Foundation, Inc.
@@ -47548,6 +49809,18 @@ File: ./lib/fchmodat.c
 Hash: cb14ca8efe705c5d31767cda4078b03e79cb5401098cd07215414b4af7ccda80
 Copyright: 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Change the protections of file relative to an open directory.
 #   Copyright (C) 2006, 2009 Free Software Foundation, Inc.
@@ -47588,6 +49861,18 @@ File: ./lib/fchownat.c
 Hash: f4ccacb449cfd52c9bb32d38c9282f9eb6db3e21bb40fe343f32361e2f2eee4b
 Copyright: 2006-2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* This function serves as replacement for a missing fchownat function,
 #   as well as a work around for the fchownat bug in glibc-2.4:
@@ -47608,6 +49893,18 @@ File: ./lib/fclose.c
 Hash: b9ff3e698a5bc176cc516f2d1bc0f1caeb31ce6ef5bc03a59f86d41f8c9a061a
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* fclose replacement.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -47628,6 +49925,18 @@ File: ./lib/fcntl--.h
 Hash: 3b7416a86275dcfa8f78d2f70ac320e95583cb68a3c2710dfd3d0c0ad79674f5
 Copyright: 2005, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Like fcntl.h, but redefine some names to avoid glitches.
 #
@@ -47648,6 +49957,18 @@ File: ./lib/fcntl-safer.h
 Hash: 1b38a5c280f10b1be082ade7aa7a7094e8e48ad6610748a54b3e1e463c6955ec
 Copyright: 2005, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke fcntl-like functions, but avoid some glitches.
 #
@@ -47668,6 +49989,18 @@ File: ./lib/fcntl.in.h
 Hash: 8f4cd6edcf635c7f343e2b03cd1b7d40d742b57ea937a23b4acbac9f79deb464
 Copyright: 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Like <fcntl.h>, but with non-working flags defined to 0.
 #
@@ -47688,6 +50021,18 @@ File: ./lib/fd-safer.c
 Hash: fe1b4e960de5e5b3af0103f56e2cb6654a051d17aee26df93bda76176ba04d00
 Copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Return a safer copy of a file descriptor.
 #
@@ -47708,6 +50053,18 @@ File: ./lib/fdopendir.c
 Hash: 6fa3102cfff5b57b78e4709b2c03cdcb8dc5519c9889f635ba73c34887212a84
 Copyright: 2004-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* provide a replacement fdopendir function
 #   Copyright (C) 2004-2009 Free Software Foundation, Inc.
@@ -47728,6 +50085,18 @@ File: ./lib/fflush.c
 Hash: 2622273e90952bfaa2fca8364132393c33b80f90a66a35c6b75240af7e94606c
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* fflush.c -- allow flushing input streams
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -47748,7 +50117,19 @@ File: ./lib/file-has-acl.c
 Hash: 2f4bae0d818e2fcf56e772e9c9caa2310f7f7dc7d3cd3556335b0d04d46964a2
 Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
 License: GPL-3+
-#Header:
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
 #/* Test whether a file has a nontrivial access control list.
 #
 #   Copyright (C) 2002-2003, 2005-2009 Free Software Foundation, Inc.
@@ -47768,6 +50149,18 @@ File: ./lib/file-set.c
 Hash: 45dea5f9b0a95afa2babe22d9de18010fe4078005351697ce25c587c75173b3a
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Specialized functions to manipulate a set of files.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -47805,6 +50198,18 @@ File: ./lib/file-type.c
 Hash: 9b360c9dba47a27fbcdcfa7c880672f23094a4332459655d5a06abaf75724544
 Copyright: 1993, 1994, 2001, 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Return a string describing the type of a file.
 #
@@ -47824,6 +50229,18 @@ File: ./lib/file-type.h
 Hash: 33f7ce18b9037520c8a1d64bce9ba5ccfccc1ac39b4b08510f2f2caab56064b9
 Copyright: 1993, 1994, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Return a string describing the type of a file.
 #
@@ -47843,6 +50260,18 @@ File: ./lib/fileblocks.c
 Hash: 15debca15418300f226a883a5ce4e98d3b687ef448b5b30e08247e56908be2ae
 Copyright: 1990, 1997, 1998, 1999, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert file size to number of blocks on System V-like machines.
 #
@@ -47862,6 +50291,18 @@ File: ./lib/filemode.c
 Hash: 169a543533dec3c22ffde0c0391528ea49b2440c80bc3ffde47196967ad49af0
 Copyright: 1985, 1990, 1993, 1998-2000, 2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* filemode.c -- make a string describing file modes
 #
@@ -47881,6 +50322,18 @@ File: ./lib/filemode.h
 Hash: 6439a9bafba8f71ce6dd51c897b653f713d013a8496413a19361cac6f515dcaf
 Copyright: 1998, 1999, 2003, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Make a string describing file modes.
 #
@@ -47901,6 +50354,18 @@ File: ./lib/filename.h
 Hash: 4f53c064d5d3411085081f0e8d109ed3132ab4333b1eefff9c22a968fa751ad8
 Copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Basic filename support macros.
 #   Copyright (C) 2001-2004, 2007-2008 Free Software Foundation, Inc.
@@ -47921,6 +50386,18 @@ File: ./lib/filenamecat.c
 Hash: d956c0d319ac571bc4c8d3e7d5be91e47dfbe356a8f4c2c64abe944b8e094af8
 Copyright: 1996-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Concatenate two arbitrary file names.
 #
@@ -47941,6 +50418,18 @@ File: ./lib/filenamecat.h
 Hash: 6ddfa3af34686669e746d1cb478b10753b7d450b3097c4b856230acdf11a5a6a
 Copyright: 1996, 1997, 2003, 2005, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Concatenate two arbitrary file names.
 #
@@ -47961,6 +50450,18 @@ File: ./lib/filevercmp.c
 Hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
 Copyright: 2008-2009 Free Software Foundation, Inc. / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 #   Copyright (C) 1995 Ian Jackson <iwj10@cus.cam.ac.uk>
@@ -47980,6 +50481,18 @@ File: ./lib/filevercmp.h
 Hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
 Copyright: 2008-2009 Free Software Foundation, Inc. / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 #   Copyright (C) 1995 Ian Jackson <iwj10@cus.cam.ac.uk>
@@ -47999,6 +50512,18 @@ File: ./lib/findprog-lgpl.c
 Hash: f142976d34ef0acffd72143865aadaacf7318c9391ac036941d725be41fd1424
 Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locating a program in PATH.
 #   Copyright (C) 2001-2004, 2006-2008 Free Software Foundation, Inc.
@@ -48019,6 +50544,18 @@ File: ./lib/findprog.c
 Hash: 0dfc19e772afe61de75fb5844aec46027116c8e89e71b3d1da85482635daf928
 Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locating a program in PATH.
 #   Copyright (C) 2001-2004, 2006-2008 Free Software Foundation, Inc.
@@ -48039,6 +50576,18 @@ File: ./lib/findprog.h
 Hash: 52461483d830d7ff18633a15addd92530f4b6d1632f3cb1dbf15de8092a7758f
 Copyright: 2001-2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locating a program in PATH.
 #   Copyright (C) 2001-2003 Free Software Foundation, Inc.
@@ -48059,6 +50608,19 @@ File: ./lib/float+.h
 Hash: e0f837de3dc39e0b747f0927653fa501e3e873bdfe1c26b0961519fd8dd897b4
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Supplemental information about the floating-point formats.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -48079,6 +50641,18 @@ File: ./lib/float.in.h
 Hash: 0c19c5ab4c8e1d8499f9edd1fd44d287083f329b75ec2b54100b101310e88ab6
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* A correct <float.h>.
 #
@@ -48099,6 +50673,18 @@ File: ./lib/flock.c
 Hash: c4837f3ed93fcac221405077e40e31648eda752325afe74b7b28d32928fbdec3
 Copyright: 2008 Free Software Foundation, Inc.
 License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Emulate flock on platforms that lack it, primarily Windows and MinGW.
 #
@@ -48118,6 +50704,18 @@ File: ./lib/floor.c
 Hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Round towards negative infinity.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -48138,6 +50736,18 @@ File: ./lib/floorf.c
 Hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Round towards negative infinity.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -48158,6 +50768,18 @@ File: ./lib/floorl.c
 Hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Round towards negative infinity.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -48178,6 +50800,19 @@ File: ./lib/fnmatch.c
 Hash: a1023b214fa5f3433ca30359a6857be416dc1dade27370bdbd7100857341f56c
 Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009
 #      Free Software Foundation, Inc.
@@ -48198,6 +50833,19 @@ File: ./lib/fnmatch.in.h
 Hash: a5c8c5adbf49f1404d18740af34363323265ef6c7588387425b5797518dd9317
 Copyright: 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003,
 #   2005, 2007 Free Software Foundation, Inc.
@@ -48217,6 +50865,19 @@ File: ./lib/fnmatch_loop.c
 Hash: 5351dffc7f21918d5a731915aca1c452c091beb8a7df2ed78acf823afad6d785
 Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006
 #   Free Software Foundation, Inc.
@@ -48237,6 +50898,18 @@ File: ./lib/fopen-safer.c
 Hash: 2c3a39bc70dada2b591df7cbf00ccc0ceed6e2f66c08fd5e01c7f70cc55eade6
 Copyright: 2001, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke fopen, but avoid some glitches.
 #
@@ -48256,6 +50929,18 @@ File: ./lib/fopen.c
 Hash: 0eae410e55fc3de8810a3f68d37626df92ba75bbadf58269f8e802be2c05310b
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Open a stream to a file.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -48276,6 +50961,18 @@ File: ./lib/fpending.c
 Hash: af0350b9abdd28ebb8e56a842c10a760620a22b242a6a2f74402ee4222dcc8a2
 Copyright: 2000, 2004, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* fpending.c -- return the number of pending output bytes on a stream
 #   Copyright (C) 2000, 2004, 2006, 2007 Free Software Foundation, Inc.
@@ -48296,6 +50993,18 @@ File: ./lib/fpending.h
 Hash: 01eea55927650242b2ec6a6293963c43ab840f135e5d4e9895c43aaff5d529a1
 Copyright: 2000, 2003, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Declare __fpending.
 #
@@ -48316,6 +51025,18 @@ File: ./lib/fprintf.c
 Hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
 Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to a stream.
 #   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
@@ -48343,6 +51064,18 @@ File: ./lib/fprintftime.h
 Hash: 4f0efdf4cf65af56c865a1cf73b3314360fe7b326a00eb9994ba12a5bb0d2920
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Generate time strings directly to the output.  */
 #
@@ -48363,6 +51096,18 @@ File: ./lib/fpucw.h
 Hash: e47878db46d7035debf5275a50634b563f90405b938fb8721ade14b526fc4738
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Manipulating the FPU control word.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -48383,6 +51128,18 @@ File: ./lib/fpurge.c
 Hash: 979d16d694737fea189e9bf8d29a91f31305bc10386618604a2efd317703b257
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Flushing buffers of a FILE stream.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -48403,6 +51160,18 @@ File: ./lib/freadable.c
 Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -48423,6 +51192,18 @@ File: ./lib/freadable.h
 Hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -48443,6 +51224,18 @@ File: ./lib/freadahead.c
 Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -48463,6 +51256,18 @@ File: ./lib/freadahead.h
 Hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -48483,6 +51288,18 @@ File: ./lib/freading.c
 Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -48503,6 +51320,18 @@ File: ./lib/freading.h
 Hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -48523,6 +51352,18 @@ File: ./lib/freadptr.c
 Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -48543,6 +51384,18 @@ File: ./lib/freadptr.h
 Hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -48563,6 +51416,18 @@ File: ./lib/freadseek.c
 Hash: e5dad14d411c6ebf4122bb8b36c186dc7c6c396d1a13b24aeea84bd19679c098
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Skipping input from a FILE stream.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -48583,6 +51448,18 @@ File: ./lib/freadseek.h
 Hash: c7545f90ba5bf8bba37c297551a1a35b4c1814f8cf6d6c3f8d57b2e56ebaba0c
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Skipping input from a FILE stream.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -48603,6 +51480,18 @@ File: ./lib/free.c
 Hash: b573f5b5fea990902e68d85f02b015cf9320100fe56678f14e732f90cf83e473
 Copyright: 2003, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Work around incompatibility on older systems where free (NULL) fails.
 #
@@ -48623,6 +51512,18 @@ File: ./lib/freopen.c
 Hash: 58204a89790d1470a883e67f10cd0ddd7153655334e185ca64530467b797a4f9
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Open a stream to a file.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -48643,6 +51544,18 @@ File: ./lib/frexp.c
 Hash: 91c12c41ce9b83e5cb3b66a32ee07dd6c30c8d24dd94f452238c006a0322287e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Split a double into fraction and mantissa.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -48663,15 +51576,27 @@ File: ./lib/frexpl.c
 Hash: c03c58defe40517c302193125927eacad08dcda5bf4f49afaec567a5729e3a3d
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
-#Header:
-#/* Split a 'long double' into fraction and mantissa.
-#   Copyright (C) 2007 Free Software Foundation, Inc.
-#
-#   This program is free software: you can redistribute it and/or modify
-#   it under the terms of the GNU General Public License as published by
-#   the Free Software Foundation; either version 3 of the License, or
-#   (at your option) any later version.
-#
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Split a 'long double' into fraction and mantissa.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 3 of the License, or
+#   (at your option) any later version.
+#
 #   This program is distributed in the hope that it will be useful,
 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
@@ -48683,6 +51608,18 @@ File: ./lib/fseek.c
 Hash: 0047d7b482dad80bda7de91feaa9d092a02a2a7fdcc852df3c8dc2f9c4bd0191
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* An fseek() function that, together with fflush(), is POSIX compliant.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -48703,6 +51640,19 @@ File: ./lib/fseeko.c
 Hash: 7b2541be24bdcf54f417ab2189fb821a645f6a4f06a21adaff8f058594862194
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* An fseeko() function that, together with fflush(), is POSIX compliant.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -48723,6 +51673,18 @@ File: ./lib/fseterr.c
 Hash: 7db3706c69835761a78a456fd39fb66f59d80b7ec061c6c204cceb4ac8cc5094
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Set the error indicator of a stream.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -48743,6 +51705,18 @@ File: ./lib/fseterr.h
 Hash: 59926523da017089371d4894c0e5bccd77843a75a6a837ab203c875d993393fb
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Set the error indicator of a stream.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -48763,6 +51737,18 @@ File: ./lib/fstatat.c
 Hash: e4dee1ca9774aa96627d99386e03d3a973f79dd331825b6d818b8f50a77bd65d
 Copyright: 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Work around an fstatat bug on Solaris 9.
 #
@@ -48783,6 +51769,18 @@ File: ./lib/fstrcmp.c
 Hash: bfca8347502966f7b7e533a47fc2545366b589adee21a653689f4503158b2e5e
 Copyright: 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008, Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Functions to make fuzzy comparisons between strings
 #   Copyright (C) 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008
@@ -48803,6 +51801,18 @@ File: ./lib/fstrcmp.h
 Hash: affd05fb827a563d7f36a218fddb5aabf27be47e86157d97d850ff3f98ef74e1
 Copyright: 1995, 2000, 2002-2003, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Fuzzy string comparison.
 #   Copyright (C) 1995, 2000, 2002-2003, 2006, 2008 Free Software
@@ -48823,6 +51833,18 @@ File: ./lib/fsusage.c
 Hash: bf6546df7e894ec6855dfb9c9548dae4acbe9b4d69acde87b3c3d5deb1534091
 Copyright: 1991-1992, 1996, 1998-1999, 2002-2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* fsusage.c -- return space usage of mounted file systems
 #
@@ -48842,6 +51864,18 @@ File: ./lib/fsusage.h
 Hash: 0fbfea12b9dabb5987b88390bdc84d23c2dcd6a435f842f44d26c0a985a490b7
 Copyright: 1991, 1992, 1997, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* fsusage.h -- declarations for file system space usage info
 #
@@ -48861,6 +51895,18 @@ File: ./lib/fsync.c
 Hash: 3d47bf5b981a180ca9cc8a052b84b52744342a9cc13c1c814274b04ed0ccce99
 Copyright: 2008 Free Software Foundation, Inc.
 License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Emulate fsync on platforms that lack it, primarily Windows and
 #   cross-compilers like MinGW.
@@ -48886,6 +51932,18 @@ File: ./lib/ftell.c
 Hash: bdacd27661da79a67395f4c109a4ca358cbf5f7708013ac8b4597e1748cb866c
 Copyright: 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* An ftell() function that works around platform bugs.
 #   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
@@ -48906,6 +51964,18 @@ File: ./lib/ftello.c
 Hash: 8eb3edb3ac0a89c7d9fbf79c0f5b80d54bf4ba9150f30175b5c00d56b78da476
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* An ftello() function that works around platform bugs.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -48946,6 +52016,18 @@ File: ./lib/fts-cycle.c
 Hash: fc1d44a722404dd98d94914dab1b5ec263ac0d9749adcb8eadab0455348c1b8e
 Copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Detect cycles in file tree walks.
 #
@@ -49079,6 +52161,18 @@ File: ./lib/full-read.c
 Hash: 8a27da95d11da5cac1d6d93a7c5408ac9e9e9b84c727c9d6426d536d74329533
 Copyright: 2002, 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* An interface to read that retries after partial reads and interrupts.
 #   Copyright (C) 2002, 2003 Free Software Foundation, Inc.
@@ -49099,6 +52193,18 @@ File: ./lib/full-read.h
 Hash: d4d3d1e43b305e2074d6ceb67dfc077058f73fa50b9188c61e3322de4c84a156
 Copyright: 2002 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* An interface to read() that reads all it is asked to read.
 #
@@ -49119,6 +52225,18 @@ File: ./lib/full-write.c
 Hash: 14aac294502e565d0475a4605c4fa84cd3ba3b006dc9f31359bd20cd01d223fb
 Copyright: 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* An interface to read and write that retries (if necessary) until complete.
 #
@@ -49138,6 +52256,18 @@ File: ./lib/full-write.h
 Hash: 6fc92b2c6f57f68ee664efc58bd464d3694584a11c7895b3e10d073f7463e4eb
 Copyright: 2002-2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* An interface to write() that writes all it is asked to write.
 #
@@ -49158,6 +52288,18 @@ File: ./lib/fwritable.c
 Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -49178,6 +52320,18 @@ File: ./lib/fwritable.h
 Hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -49198,6 +52352,18 @@ File: ./lib/fwriteerror.c
 Hash: 1a1137f1f41c92585bea0ad15c2c294253d8d496638763318511930ddc34559f
 Copyright: 2003-2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Detect write error on a stream.
 #   Copyright (C) 2003-2006, 2008 Free Software Foundation, Inc.
@@ -49218,6 +52384,18 @@ File: ./lib/fwriteerror.h
 Hash: 57d77b30a81499334eeb50f7dfc84fa69ae4232ff0670018e7d4544f670e33a0
 Copyright: 2003, 2005-2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Detect write error on a stream.
 #   Copyright (C) 2003, 2005-2006 Free Software Foundation, Inc.
@@ -49238,6 +52416,18 @@ File: ./lib/fwriting.c
 Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -49258,6 +52448,18 @@ File: ./lib/fwriting.h
 Hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Retrieve information about a FILE stream.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -49278,6 +52480,19 @@ File: ./lib/gai_strerror.c
 Hash: 6fa8c98c6159a1bc336cc672906d02a7c2b14a0db56b900ebd375c79e93e0a51
 Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -49298,6 +52513,19 @@ File: ./lib/gc-gnulib.c
 Hash: a1a6cd40081db989deb6d637777e1ea5e616b3d6a283a7a7f4a9d5e09291c419
 Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* gc-gnulib.c --- Common gnulib internal crypto interface functions
 # * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
@@ -49318,6 +52546,19 @@ File: ./lib/gc-libgcrypt.c
 Hash: 17a44f44fe9aa32fa885740126dc77e9789d91af8a7b6481c1c03a99b378b010
 Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* gc-libgcrypt.c --- Crypto wrappers around Libgcrypt for GC.
 # * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
@@ -49338,6 +52579,19 @@ File: ./lib/gc-pbkdf2-sha1.c
 Hash: 2286c6ae2cbbc15032408e0ab1b986db3f9ba1b141f1a542dbddcbb50c8dce4c
 Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* gc-pbkdf2-sha1.c --- Password-Based Key Derivation Function a'la PKCS#5
 #   Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
@@ -49358,6 +52612,19 @@ File: ./lib/gc.h
 Hash: a4f94bdf9e032840c9e93a7a9da02fd788642e5def0abcfa0107c6a129f2f4b8
 Copyright: 2002, 2003, 2004, 2005, 2007, 2008 Simon Josefsson
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* gc.h --- Header file for implementation agnostic crypto wrapper API.
 # * Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008  Simon Josefsson
@@ -49378,6 +52645,18 @@ File: ./lib/gcd.c
 Hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
 Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Arithmetic.
 #   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
@@ -49398,6 +52677,18 @@ File: ./lib/gcd.h
 Hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
 Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Arithmetic.
 #   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
@@ -49418,6 +52709,18 @@ File: ./lib/gen-uni-tables.c
 Hash: aad2b45b19beca4f2ac5d5f5bb9edce6d0afc88e1b7b9d1047748f876a287f4a
 Copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Generate Unicode conforming character classification tables and
 #   line break properties tables and word break property tables and
@@ -49438,6 +52741,19 @@ File: ./lib/getaddrinfo.c
 Hash: adc75b9ed0c95c54930e8aed577992958efb7d055fee5326a497b8abb69d0316
 Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Get address information (partial implementation).
 #   Copyright (C) 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software
@@ -49457,6 +52773,18 @@ File: ./lib/getcwd.c
 Hash: 5875b69c2fe815331158284d7517251ab1bf88edae205ac42d739b529a6d4873
 Copyright: 1991-1999, 2004-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1991-1999, 2004-2009 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -49477,6 +52805,18 @@ File: ./lib/getdate.h
 Hash: b9389accd94ac78a67232edb3c527f3f70ee67ad6f01602d68b55ba4fbcd0dba
 Copyright: 1995, 1997, 1998, 2003, 2004, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Parse a string into an internal time stamp.
 #
@@ -49496,6 +52836,18 @@ File: ./lib/getdate.y
 Hash: b5fca8ba27d142ddf8675e4f97a669f215e388619b18a6be948a2fb748066a5c
 Copyright: 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #%{
 #/* Parse a string into an internal time stamp.
@@ -49516,6 +52868,19 @@ File: ./lib/getdelim.c
 Hash: 992ace4fcbea4653a4c94a5e3161682e707b458f19befe7a2efe9b6d0536c45b
 Copyright: 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* getdelim.c --- Implementation of replacement getdelim function.
 #   Copyright (C) 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007,
@@ -49536,6 +52901,18 @@ File: ./lib/getdomainname.c
 Hash: 49d9ff73b25a4e25ab534f038da03ecc6bd4f1e55511d312f3e3652d79e561f3
 Copyright: 2003, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* getdomainname emulation for systems that doesn't have it.
 #
@@ -49556,6 +52933,18 @@ File: ./lib/getdtablesize.c
 Hash: 51191e642c33bb0d979044844f6eff55029ec458cd21474f85bb0b0d51eb1353
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* getdtablesize() function for platforms that don't have it.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -49576,6 +52965,18 @@ File: ./lib/getgroups.c
 Hash: 0f0b9f4b7e5c2b88b951017ee86711bfeafe90b04b0b610061b888563f4fdded
 Copyright: 1996, 1999, 2003, 2006, 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* provide consistent interface to getgroups for systems that don't allow N==0
 #
@@ -49595,6 +52996,18 @@ File: ./lib/gethostname.c
 Hash: 08b8fc75fb3ab4c65596a95988f9a243016039c6a6d58db033df382b3e85ef91
 Copyright: 1992, 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* gethostname emulation for SysV and POSIX.1.
 #
@@ -49615,6 +53028,18 @@ File: ./lib/gethrxtime.c
 Hash: 1cec40c1dcc320f69be6e1c805d217f9abab323dfc4d321daeb53e6d8a47b7d8
 Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* gethrxtime -- get high resolution real time
 #
@@ -49635,6 +53060,18 @@ File: ./lib/gethrxtime.h
 Hash: 0f5ade662a7551e4b033ef5d892a59fa220a1ca1e4fca8feb3778e6102444739
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* gethrxtime -- get high resolution real time
 #
@@ -49655,6 +53092,19 @@ File: ./lib/getline.c
 Hash: db509c33815c26829232154304e781d89be477ad3f316afe1d06f654877e7697
 Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* getline.c --- Implementation of replacement getline function.
 #   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
@@ -49675,6 +53125,18 @@ File: ./lib/getloadavg.c
 Hash: 2d24f7a43c161425aa87eff2a7f2fb2bc4a9a1f84761f74178139d04c1fece2b
 Copyright: 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Get the system load averages.
 #
@@ -49695,6 +53157,19 @@ File: ./lib/getlogin_r.c
 Hash: 71342da5c9fce5ffc521819fbf5ea380288d8dd31a5a80d9272b7f75b422173c
 Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Provide a working getlogin_r for systems which lack it.
 #
@@ -49715,6 +53190,18 @@ File: ./lib/getndelim2.c
 Hash: 9ee7610ebe6f8a37f5a5a68a7b3449214c14a38ff0d7dd572812bb7859df98f1
 Copyright: 1993, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* getndelim2 - Read a line from a stream, stopping at one of 2 delimiters,
 #   with bounded memory allocation.
@@ -49735,6 +53222,18 @@ File: ./lib/getndelim2.h
 Hash: f5045e0d348580d1368f95e10cdc98ef5dc5cb756ace0005aa8ea0b4b3ec3c44
 Copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* getndelim2 - Read a line from a stream, stopping at one of 2 delimiters,
 #   with bounded memory allocation.
@@ -49754,6 +53253,18 @@ File: ./lib/getnline.c
 Hash: bbdd86a205f27f15ef28fbde34d1623b507bb2453e631af80a1afab6cd8981ec
 Copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* getnline - Read a line from a stream, with bounded memory allocation.
 #
@@ -49774,13 +53285,25 @@ File: ./lib/getnline.h
 Hash: 03573e9a526808be4f0f78b44449e9d23df1f24379e10ec2ba8ca76d47a3c4a6
 Copyright: 2003, 2004 Free Software Foundation, Inc.
 License: GPL-3+
-#Header:
-#/* getnline - Read a line from a stream, with bounded memory allocation.
-#
-#   Copyright (C) 2003, 2004 Free Software Foundation, Inc.
-#
-#   This program is free software: you can redistribute it and/or modify
-#   it under the terms of the GNU General Public License as published by
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* getnline - Read a line from a stream, with bounded memory allocation.
+#
+#   Copyright (C) 2003, 2004 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
 #   the Free Software Foundation; either version 3 of the License, or
 #   (at your option) any later version.
 #
@@ -49794,6 +53317,18 @@ File: ./lib/getopt.c
 Hash: 4d0fd46f29bb8073586f8ec6d6970bb6076904b387b4ba39b52e67f894fad2ac
 Copyright: 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002,2003,2004,2006,2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Getopt for GNU.
 #   NOTE: getopt is now part of the C library, so if you don't know what
@@ -49814,6 +53349,18 @@ File: ./lib/getopt.in.h
 Hash: 85fd6cbd9bf519076eb2762b34c713e170afc8e197126defee267fedcee58ff4
 Copyright: 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Declarations for getopt.
 #   Copyright (C) 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007
@@ -49833,6 +53380,18 @@ File: ./lib/getopt1.c
 Hash: 40109d2a58167504326aad2cb1b61592e621cfc075c9499cc9fc8c4428517863
 Copyright: 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* getopt_long and getopt_long_only entry points for GNU getopt.
 #   Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009
@@ -49852,6 +53411,18 @@ File: ./lib/getopt_int.h
 Hash: 54606da8ebed47f74fd89143417b60de590aa10ec0620f8a7a78ebd0c36557e3
 Copyright: 1989-1994,1996-1999,2001,2003,2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Internal declarations for getopt.
 #   Copyright (C) 1989-1994,1996-1999,2001,2003,2004
@@ -49871,6 +53442,18 @@ File: ./lib/getpagesize.c
 Hash: cc8c7a17126f58bdff2c354feec2eed60d44ff713caa57dc3075bc3f136601ba
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* getpagesize emulation for systems where it cannot be done in a C macro.
 #
@@ -49891,6 +53474,19 @@ File: ./lib/getpass.c
 Hash: 3c4602671b814d6de906dbab501db462e449060ec3b662a3cc813158469c1c41
 Copyright: 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software
 #   Foundation, Inc.
@@ -49910,6 +53506,19 @@ File: ./lib/getpass.h
 Hash: 715da55d6addef9aba7f35a6d79bf776995ba58b92e85e1355038b36d4dd757c
 Copyright: 2004 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* getpass.h -- Read a password of arbitrary length from /dev/tty or stdin.
 #   Copyright (C) 2004 Free Software Foundation, Inc.
@@ -49930,6 +53539,18 @@ File: ./lib/getpeername.c
 Hash: 3a2f22e1c404ed3915fd5dfe38a6d499d2cb70e1fd51eaa0dd53aadc7b7be703
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* getpeername.c --- wrappers for Windows getpeername function
 #
@@ -49950,6 +53571,18 @@ File: ./lib/getsockname.c
 Hash: db4f104421692ccfcaec0efbeefb8abf3170e8e83c3f80d16d4088a9570c0747
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* getsockname.c --- wrappers for Windows getsockname function
 #
@@ -49970,6 +53603,18 @@ File: ./lib/getsockopt.c
 Hash: cfa28503953c834f7db8e9d1e3113792201bf64a0b7ef2ef1e4f2cbb56b5ac98
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* getsockopt.c --- wrappers for Windows getsockopt function
 #
@@ -49990,6 +53635,18 @@ File: ./lib/getsubopt.c
 Hash: ec9a4323b51dc83a8a3dab5470517e58f1bb6eade183c6dc3eba458312ab0d3e
 Copyright: 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Parse comma separated list into words.
 #   Copyright (C) 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc.
@@ -50009,6 +53666,19 @@ File: ./lib/gettext.h
 Hash: 136f1ff682700ad9f5fb60428eeada20f160e6ed38a19ad78bd1dc4e440f55f0
 Copyright: 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Convenience header for conditional use of GNU <libintl.h>.
 #   Copyright (C) 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc.
@@ -50029,6 +53699,18 @@ File: ./lib/gettime.c
 Hash: 77086b931aa5e0345ebf249afe25b980450af522098b0dc7db39c72cda600702
 Copyright: 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* gettime -- get the system clock
 #
@@ -50049,6 +53731,19 @@ File: ./lib/gettimeofday.c
 Hash: cde7080c035c43c360bf0a39981d8e1f56a5745a9f0857f3fab617c0414c9aa6
 Copyright: 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Provide gettimeofday for systems that don't have it or for which it's broken.
 #
@@ -50068,6 +53763,18 @@ File: ./lib/getugroups.c
 Hash: 270b3c42be956bed158bfc6996f80f6ea8860856d9d24ce150bc04e2d49c0cb4
 Copyright: 1990, 1991, 1998-2000, 2003-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* getugroups.c -- return a list of the groups a user is in
 #
@@ -50088,6 +53795,18 @@ File: ./lib/getugroups.h
 Hash: 5a293b9aa238d490fa967e3b2edb180d4e6dc234cc662fd796ebefe226ef0c7d
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Get a list of group IDs associated with a specified user ID.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -50108,6 +53827,18 @@ File: ./lib/getusershell.c
 Hash: 1fd7fb9cb095692b1bf2300b27d245389e99a34347ace403e72b60d4bf3dd633
 Copyright: 1991, 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* getusershell.c -- Return names of valid user shells.
 #
@@ -50127,6 +53858,19 @@ File: ./lib/git-merge-changelog.c
 Hash: 1eb639ccc3a04697cdb5744ebbcb63f90893e0de7ec866b6dd449e350d28915f
 Copyright: 2008-2009 Bruno Haible <bruno@clisp.org>
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* git-merge-changelog - git "merge" driver for GNU style ChangeLog files.
 #   Copyright (C) 2008-2009 Bruno Haible <bruno@clisp.org>
@@ -50147,6 +53891,18 @@ File: ./lib/gl_anyavltree_list1.h
 Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a binary tree.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50167,6 +53923,18 @@ File: ./lib/gl_anyavltree_list2.h
 Hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a binary tree.
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -50187,6 +53955,18 @@ File: ./lib/gl_anyhash_list1.h
 Hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a hash table with another list.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50207,6 +53987,18 @@ File: ./lib/gl_anyhash_list2.h
 Hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a hash table with another list.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50227,6 +54019,18 @@ File: ./lib/gl_anylinked_list1.h
 Hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a linked list.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50247,6 +54051,18 @@ File: ./lib/gl_anylinked_list2.h
 Hash: ebec01e1e27b8f47a348c6c8aab61a6cd8a6d756d7af2d6af0fb0717ebac9699
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a linked list.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -50267,6 +54083,18 @@ File: ./lib/gl_anyrbtree_list1.h
 Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a binary tree.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50287,6 +54115,18 @@ File: ./lib/gl_anyrbtree_list2.h
 Hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a binary tree.
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -50307,6 +54147,18 @@ File: ./lib/gl_anytree_list1.h
 Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a binary tree.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50327,6 +54179,18 @@ File: ./lib/gl_anytree_list2.h
 Hash: 40c2faf4dbc261cf4e9ef93bd5c202d96530b5ad6198c8421f85b2d5c9e841ef
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a binary tree.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -50347,6 +54211,18 @@ File: ./lib/gl_anytree_oset.h
 Hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Ordered set data type implemented by a binary tree.
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -50367,6 +54243,18 @@ File: ./lib/gl_anytreehash_list1.h
 Hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a hash table with a binary tree.
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -50387,6 +54275,18 @@ File: ./lib/gl_anytreehash_list2.h
 Hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a hash table with a binary tree.
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -50407,6 +54307,18 @@ File: ./lib/gl_array_list.c
 Hash: 0c25ceacf9c0bdb5aab3741b0cb9cda44011e1dc5d268cbc8bf5101e0acce283
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by an array.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -50427,6 +54339,18 @@ File: ./lib/gl_array_list.h
 Hash: 863f801e67908ee9891c3f0dcb4f8ce0e131de5453303e2a7790b0bd3958ca0a
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by an array.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50447,6 +54371,18 @@ File: ./lib/gl_array_oset.c
 Hash: c819d4f4a184e90641f6cefcacbf6b02abed3b6e38373b86c138dea7cac916ac
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Ordered set data type implemented by an array.
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -50467,6 +54403,18 @@ File: ./lib/gl_array_oset.h
 Hash: 019de04fadf81baec6bf31de9ff73bb78d4ad248796b60a6875b604a8a4fbaa7
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Ordered set data type implemented by an array.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50487,6 +54435,18 @@ File: ./lib/gl_avltree_list.c
 Hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
 Copyright: 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a binary tree.
 #   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
@@ -50507,6 +54467,18 @@ File: ./lib/gl_avltree_list.h
 Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a binary tree.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50527,6 +54499,18 @@ File: ./lib/gl_avltree_oset.c
 Hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Ordered set data type implemented by a binary tree.
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -50547,6 +54531,18 @@ File: ./lib/gl_avltree_oset.h
 Hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Ordered set data type implemented by a binary tree.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50567,6 +54563,18 @@ File: ./lib/gl_avltreehash_list.c
 Hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
 Copyright: 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a hash table with a binary tree.
 #   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
@@ -50587,6 +54595,18 @@ File: ./lib/gl_avltreehash_list.h
 Hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a hash table with a binary tree.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50607,6 +54627,18 @@ File: ./lib/gl_carray_list.c
 Hash: 1231124fa2b6eb2388f59849dfadbcc1121ac93c1498182180307abef125f81e
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a circular array.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -50627,6 +54659,18 @@ File: ./lib/gl_carray_list.h
 Hash: 69dc4efd9c2c04954ad4b58ec33e4e452068e7afc4bd466a824816dc6a94dc82
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a circular array.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50647,6 +54691,18 @@ File: ./lib/gl_linked_list.c
 Hash: ed7862364a0ad9a0b599013e8efaf9a1bd4ca2fee8ca914048d25296fa8a55af
 Copyright: 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a linked list.
 #   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
@@ -50667,16 +54723,28 @@ File: ./lib/gl_linked_list.h
 Hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
-#Header:
-#/* Sequential list data type implemented by a linked list.
-#   Copyright (C) 2006 Free Software Foundation, Inc.
-#   Written by Bruno Haible <bruno@clisp.org>, 2006.
-#
-#   This program is free software: you can redistribute it and/or modify
-#   it under the terms of the GNU General Public License as published by
-#   the Free Software Foundation; either version 3 of the License, or
-#   (at your option) any later version.
-#
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Sequential list data type implemented by a linked list.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 3 of the License, or
+#   (at your option) any later version.
+#
 #   This program is distributed in the hope that it will be useful,
 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
@@ -50687,6 +54755,18 @@ File: ./lib/gl_linkedhash_list.c
 Hash: 0ac3aac0adac6ac1565820f39242ce8abaf6ce35fe9f110d5bda696eb80db47f
 Copyright: 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a hash table with a linked list.
 #   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
@@ -50707,6 +54787,18 @@ File: ./lib/gl_linkedhash_list.h
 Hash: dd97ead793ac89798799ec721b21cc9e52051b5bf68d0c4b5a0437b938a30069
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a hash table with a linked list.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50727,6 +54819,18 @@ File: ./lib/gl_list.c
 Hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Abstract sequential list data type.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -50747,6 +54851,18 @@ File: ./lib/gl_list.h
 Hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Abstract sequential list data type.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -50767,6 +54883,18 @@ File: ./lib/gl_oset.c
 Hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Abstract ordered set data type.
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -50787,6 +54915,18 @@ File: ./lib/gl_oset.h
 Hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Abstract ordered set data type.
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -50807,6 +54947,18 @@ File: ./lib/gl_rbtree_list.c
 Hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
 Copyright: 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a binary tree.
 #   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
@@ -50827,6 +54979,18 @@ File: ./lib/gl_rbtree_list.h
 Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a binary tree.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50847,6 +55011,18 @@ File: ./lib/gl_rbtree_oset.c
 Hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Ordered set data type implemented by a binary tree.
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -50867,6 +55043,18 @@ File: ./lib/gl_rbtree_oset.h
 Hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Ordered set data type implemented by a binary tree.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50887,6 +55075,18 @@ File: ./lib/gl_rbtreehash_list.c
 Hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
 Copyright: 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a hash table with a binary tree.
 #   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
@@ -50907,6 +55107,18 @@ File: ./lib/gl_rbtreehash_list.h
 Hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type implemented by a hash table with a binary tree.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50927,6 +55139,18 @@ File: ./lib/gl_sublist.c
 Hash: 73915aa3876fd8f8947afe4eea6a3383db1680e283ed8da437d4ce635e8148d5
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type backed by another list.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -50947,6 +55171,18 @@ File: ./lib/gl_sublist.h
 Hash: 6b2c4954c29b3c4f64ecfc9ea385e7613778fe57581326d0bb0865f30f47bdf2
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sequential list data type backed by another list.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -50967,6 +55203,18 @@ File: ./lib/glob-libc.h
 Hash: b8ac91c8cae0271efb81ee15e750224494a993f3198db3e110c2affbe1dbbf6d
 Copyright: 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc.
 License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -50987,6 +55235,18 @@ File: ./lib/glob.c
 Hash: f71e836c564095b672ee61d58fa2acf0272842c03360d1642e7ada6d132305a0
 Copyright: 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
 #   Free Software Foundation, Inc.
@@ -51007,6 +55267,19 @@ File: ./lib/glob.in.h
 Hash: 6064b1858ef6f12b46d80c41a6c8e25567a40c42ea0a9e7712fcbf75d7d1b499
 Copyright: 2005-2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* glob.h -- Find a path matching a pattern.
 #
@@ -51027,6 +55300,19 @@ File: ./lib/glthread/cond.c
 Hash: d5641ae46998e1a8654c5e3549b9c7b3db1d3ca85dd8fe7f311bc8e674cb71e2
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Condition variables for multithreading.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -51047,6 +55333,19 @@ File: ./lib/glthread/cond.h
 Hash: b3332b7fa3f32abab59fe03fbc119d02861b28da6534ce9ad1f3469f070f0971
 Copyright: 2005-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Condition variables for multithreading.
 #   Copyright (C) 2005-2008 Free Software Foundation, Inc.
@@ -51067,6 +55366,19 @@ File: ./lib/glthread/lock.c
 Hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
 Copyright: 2005-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Locking in multithreaded situations.
 #   Copyright (C) 2005-2008 Free Software Foundation, Inc.
@@ -51087,6 +55399,19 @@ File: ./lib/glthread/lock.h
 Hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
 Copyright: 2005-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Locking in multithreaded situations.
 #   Copyright (C) 2005-2008 Free Software Foundation, Inc.
@@ -51107,6 +55432,19 @@ File: ./lib/glthread/thread.c
 Hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
 Copyright: 2005-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Creating and controlling threads.
 #   Copyright (C) 2005-2008 Free Software Foundation, Inc.
@@ -51127,6 +55465,19 @@ File: ./lib/glthread/thread.h
 Hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
 Copyright: 2005-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Creating and controlling threads.
 #   Copyright (C) 2005-2008 Free Software Foundation, Inc.
@@ -51147,6 +55498,19 @@ File: ./lib/glthread/threadlib.c
 Hash: 2294600f29fbe5bce62a905bfe009f89a1c37bd29adcd4b57528e33d3e793a06
 Copyright: 2005-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Multithreading primitives.
 #   Copyright (C) 2005-2009 Free Software Foundation, Inc.
@@ -51167,6 +55531,18 @@ File: ./lib/glthread/tls.c
 Hash: 23dde3cdce3671ccb6ea2e6d89bad99e9b6be9e40ad0295a2bc4025aa4e99f07
 Copyright: 2005-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Thread-local storage in multithreaded situations.
 #   Copyright (C) 2005-2008 Free Software Foundation, Inc.
@@ -51187,6 +55563,18 @@ File: ./lib/glthread/tls.h
 Hash: ed954c215d967d813727cef3ec96b920dbfecedb4774907236526505e9fc97ac
 Copyright: 2005, 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Thread-local storage in multithreaded situations.
 #   Copyright (C) 2005, 2007-2008 Free Software Foundation, Inc.
@@ -51207,6 +55595,19 @@ File: ./lib/glthread/yield.h
 Hash: 2bcbee6893754730a99361ac72c8b8af2bcb514f7ee153772ff69c10a6ad7ea7
 Copyright: 2005-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Yielding the processor to other threads and processes.
 #   Copyright (C) 2005-2008 Free Software Foundation, Inc.
@@ -51227,6 +55628,18 @@ File: ./lib/group-member.c
 Hash: 8474fc86e2ee602d1afb18ec7ebbae7f9f83d113d63848cfb4df91f6b741bbad
 Copyright: 1994, 1997, 1998, 2003, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* group-member.c -- determine whether group id is in calling user's group list
 #
@@ -51246,6 +55659,18 @@ File: ./lib/group-member.h
 Hash: 563dcdfc1c58f40bf17d5ab635d790c0c7844c61ccd6e496de34fa33a2b3dd40
 Copyright: 1994, 1997, 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine whether group id is in calling user's group list.
 #
@@ -51266,6 +55691,18 @@ File: ./lib/hard-locale.c
 Hash: ac46d3e77162a575cb9cd0c05179c4a69489214f6bc3c02f037007dfca33d5eb
 Copyright: 1997, 1998, 1999, 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* hard-locale.c -- Determine whether a locale is hard.
 #
@@ -51285,6 +55722,18 @@ File: ./lib/hard-locale.h
 Hash: ecaf6cfa27e7cf1f1d6352bb186bc8e4e65b5fdfcb09c13e99ef463705a8fb0c
 Copyright: 1999, 2003, 2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine whether a locale is hard.
 #
@@ -51305,6 +55754,18 @@ File: ./lib/hash-pjw.c
 Hash: b468ec2f4a022e97eaf348f80c034c2e2e60123e1ac7e7616870d776d32f223d
 Copyright: 2001, 2003, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* hash-pjw.c -- compute a hash value from a NUL-terminated string.
 #
@@ -51325,6 +55786,18 @@ File: ./lib/hash-pjw.h
 Hash: 102a798ca5da9f9351c39aa2c91082bf9d774f1a330d81b924966f58543eed81
 Copyright: 2001, 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* hash-pjw.h -- declaration for a simple hash function
 #   Copyright (C) 2001, 2003 Free Software Foundation, Inc.
@@ -51345,6 +55818,18 @@ File: ./lib/hash-triple.c
 Hash: fbf36f90dc1c8954ed95b4cccf669147164280573695a4286b79f36dc4c1c4ec
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Hash functions for file-related triples: name, device, inode.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -51384,6 +55869,18 @@ File: ./lib/hash.c
 Hash: 4062f069a5ed949dfecf5ed42bddd98a48a5090946d9b54d800d6fa02c4c611d
 Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* hash - hashing table processing.
 #
@@ -51404,6 +55901,18 @@ File: ./lib/hash.h
 Hash: f6f040c23d292aacf272c2311ed2e73b4e442125219242180ca61b8a8b8a01c1
 Copyright: 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* hash - hashing table processing.
 #   Copyright (C) 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc.
@@ -51424,6 +55933,19 @@ File: ./lib/hmac-md5.c
 Hash: ed5bd8c5068d05ebc413d1374482c55577681191971dbfd83a866beb78da5152
 Copyright: 2005, 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* hmac-md5.c -- hashed message authentication codes
 #   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
@@ -51444,6 +55966,19 @@ File: ./lib/hmac-sha1.c
 Hash: 4bf9541934465ef6d67baa91aceb2287bc67777ed6f7c25c0952c43c6ea464a8
 Copyright: 2005, 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* hmac-sha1.c -- hashed message authentication codes
 #   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
@@ -51464,6 +55999,19 @@ File: ./lib/hmac.h
 Hash: 567a64cdb7bc0339a02d4df869ded8aab7a23849fbd9e981af8a9a9acfa0d215
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* hmac.h -- hashed message authentication codes
 #   Copyright (C) 2005 Free Software Foundation, Inc.
@@ -51484,6 +56032,18 @@ File: ./lib/human.c
 Hash: e32265ab4d043a7abcb8f615e2cc58a500928f0421d37ecc9d774895580c1e4d
 Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* human.c -- print human readable file size
 #
@@ -51503,6 +56063,18 @@ File: ./lib/human.h
 Hash: 9cecd9075608ba01827d4b74ea741b74eeb0b933f1a8850b7163cbfefaeaf456
 Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* human.h -- print human readable file size
 #
@@ -51522,6 +56094,18 @@ File: ./lib/i-ring.c
 Hash: 04cc3226eee4b74df051e43d1b1131567b9837369d3dd9f02a53ebc685f1607d
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* a simple ring buffer
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -51542,6 +56126,18 @@ File: ./lib/i-ring.h
 Hash: 83d5e547a1b2282a81722d24d3fd7ab460d6d5d9062532235e0030df6de1bdb2
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* definitions for a simple ring buffer
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -51562,6 +56158,19 @@ File: ./lib/iconv.c
 Hash: 3059e46d2d2c44be2ae300d27f485ee07d544f254865f96ebf86dea813b4fffa
 Copyright: 1999-2001, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Character set conversion.
 #   Copyright (C) 1999-2001, 2007 Free Software Foundation, Inc.
@@ -51582,6 +56191,19 @@ File: ./lib/iconv.in.h
 Hash: a0c00abb098262610f94109af9bc3bc9f27219dd9f3169ad081a47cd9228d1ca
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* A GNU-like <iconv.h>.
 #
@@ -51602,6 +56224,19 @@ File: ./lib/iconv_close.c
 Hash: 4871e1d8a40deb9c674779c24cf93e04b326ab61be8bcb4cc8e739d22ba70961
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Character set conversion.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -51722,6 +56357,19 @@ File: ./lib/iconv_open.c
 Hash: 9ed1da2147b3e675bbd6775a42ab67d25e2fe781f6cdf15eaab5c231273ff0e7
 Copyright: 2007, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Character set conversion.
 #   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
@@ -51742,6 +56390,18 @@ File: ./lib/iconveh.h
 Hash: 67e4aaef11864ffbdc1e1f005051bea04babd77da24011ef95dbb4d36320570e
 Copyright: 2001-2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Character set conversion handler type.
 #   Copyright (C) 2001-2007, 2009 Free Software Foundation, Inc.
@@ -51762,6 +56422,18 @@ File: ./lib/idcache.c
 Hash: b9013a2865d4a3daaca3b55f2be4ed9e3a20a075a05ea60d26ea660978090977
 Copyright: 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* idcache.c -- map user and group IDs, cached for speed
 #
@@ -51797,6 +56469,18 @@ File: ./lib/idpriv-drop.c
 Hash: 7f9a23470304193f0c1f172af0a8809eabc7b87a17c08a904e03e6f0e23c4412
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Dropping uid/gid privileges of the current process permanently.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -51817,6 +56501,18 @@ File: ./lib/idpriv-droptemp.c
 Hash: 489bb045e6211eb0d6389cfc83518e2fe2ddc45fe2c192956d5403520ab12454
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Dropping uid/gid privileges of the current process temporarily.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -51837,6 +56533,18 @@ File: ./lib/idpriv.h
 Hash: 46f34c0a8796bc8842508928d2398c9e0348051b305656e2e8a6b0a7b6f16b85
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Dropping uid/gid privileges of the current process.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -51857,6 +56565,18 @@ File: ./lib/ignore-value.h
 Hash: b844f7425a0066e987565375e711d4932b9f502ff6f149a93c5ba9120c99ea63
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ignore a function return without a compiler warning
 #
@@ -51877,6 +56597,18 @@ File: ./lib/imaxabs.c
 Hash: 4c3cd71956269b0c624236e9f02355a8ab08d726ee6663e731a88cb79a85330f
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* imaxabs() function: absolute value of 'intmax_t'.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -51897,6 +56629,18 @@ File: ./lib/imaxdiv.c
 Hash: 1c1e3f382e0b77378c6c8f9632d7c4635f390115c0897a74b6b7b22a3ac34be7
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* imaxdiv() function: division of 'intmax_t'.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -51925,6 +56669,32 @@ File: ./lib/inet_ntop.c
 Hash: bb85be451bd6abe2730ae9c900eca3d5dfeb58717a5fe8020fd32c3197efe395
 Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc. / 1996-1999 by Internet Software Consortium
 License: GPL-2+ and ISC
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software Foundation,
+   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+   
+  Permission to use, copy, modify, and distribute this software for any
+  purpose with or without fee is hereby granted, provided that the above
+  copyright notice and this permission notice appear in all copies.
+  THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
+  ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
+  OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
+  CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
+  DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
+  PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
+  ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
+  SOFTWARE.
 #Header:
 #/* inet_ntop.c -- convert IPv4 and IPv6 addresses from binary to text form
 #
@@ -51945,6 +56715,33 @@ File: ./lib/inet_pton.c
 Hash: 33b53b62f48e6b8843c4109e0cb9632ed41cd3ff07ea81a3842fb24a3d42781e
 Copyright: 1996,1999 by Internet Software Consortium / 2006, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+ and ISC
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+  
+  Copyright (c) 1996,1999 by Internet Software Consortium.
+  Permission to use, copy, modify, and distribute this software for any
+  purpose with or without fee is hereby granted, provided that the above
+  copyright notice and this permission notice appear in all copies.
+  THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
+  ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
+  OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
+  CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
+  DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
+  PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
+  ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
+  SOFTWARE.
 #Header:
 #/* inet_pton.c -- convert IPv4 and IPv6 addresses from text to binary form
 #
@@ -51965,6 +56762,18 @@ File: ./lib/intprops.h
 Hash: 9e2808fa7e1039a775f0131499ed427895f2ae4376bf394d44e98dc59d256c3b
 Copyright: 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* intprops.h -- properties of integer types
 #
@@ -51985,6 +56794,18 @@ File: ./lib/inttostr.c
 Hash: 1890559866d6095b73e83459b5eaca3ea71812c130099e512534096ef240c29e
 Copyright: 2001, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* inttostr.c -- convert integers to printable strings
 #
@@ -52005,6 +56826,18 @@ File: ./lib/inttostr.h
 Hash: 7f7f2820aac6266245de58217005c72002285153e793b1bdbdbab45aea9b2234
 Copyright: 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* inttostr.h -- convert integers to printable strings
 #
@@ -52024,6 +56857,18 @@ File: ./lib/inttypes.in.h
 Hash: b572e765fe79d49fffbc38520ba9a41cf3b650f9078db83da161ddf1bd81d03d
 Copyright: 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2006-2009 Free Software Foundation, Inc.
 #   Written by Paul Eggert, Bruno Haible, Derek Price.
@@ -52044,6 +56889,18 @@ File: ./lib/ioctl.c
 Hash: a838bb30b06340f3dd9a82218a003ea0bd38e4312c6342ae7f20c6bc1fef878b
 Copyright: 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ioctl.c --- wrappers for Windows ioctl function
 #
@@ -52064,6 +56921,18 @@ File: ./lib/isapipe.c
 Hash: 457e1ad81d87c14336cc33a66c0a6470db91a5d315e83811d98e82aab1dfe238
 Copyright: 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether a file descriptor is a pipe.
 #
@@ -52095,6 +56964,18 @@ File: ./lib/isdir.c
 Hash: 03760bca801b4b55e9e0a1e0cf3b2df572ad1dc4a10cceac16254afd692ad1f2
 Copyright: 1990, 1998, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* isdir.c -- determine whether a directory exists
 #
@@ -52115,6 +56996,19 @@ File: ./lib/isfinite.c
 Hash: 040962d83f2dc48a4f86e204594272a3a1345da3bf72f77a0141696c2e67670d
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Test for finite value (zero, subnormal, or normal, and not infinite or NaN).
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -52135,6 +57029,19 @@ File: ./lib/isinf.c
 Hash: 8b36f7949b786a5b398b697020f0bae0094e677bc8237320acdf88dd784c4f27
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Test for positive or negative infinity.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -52155,6 +57062,18 @@ File: ./lib/isnan.c
 Hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test for NaN that does not need libm.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -52175,6 +57094,18 @@ File: ./lib/isnand-nolibm.h
 Hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test for NaN that does not need libm.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -52195,6 +57126,18 @@ File: ./lib/isnand.c
 Hash: 130313c72e69a6238a9736af813940f148965be7cd35509e7a7db5af4b502737
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test for NaN that does not need libm.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -52215,6 +57158,18 @@ File: ./lib/isnanf-nolibm.h
 Hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test for NaN that does not need libm.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -52235,6 +57190,18 @@ File: ./lib/isnanf.c
 Hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test for NaN that does not need libm.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -52255,6 +57222,18 @@ File: ./lib/isnanl-nolibm.h
 Hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test for NaN that does not need libm.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -52275,6 +57254,18 @@ File: ./lib/isnanl.c
 Hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test for NaN that does not need libm.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -52295,6 +57286,18 @@ File: ./lib/javacomp.c
 Hash: 5510a586bdbed690c0f58f407e86f128dd19f69e30f7b763fc80645dfdb5fdab
 Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compile a Java program.
 #   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
@@ -52315,6 +57318,18 @@ File: ./lib/javacomp.h
 Hash: 7796f276d24731ee6d3c7f5294adfe566e8c046007020386e7f14820b6e0719a
 Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compile a Java program.
 #   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
@@ -52335,6 +57350,18 @@ File: ./lib/javaexec.c
 Hash: d5c2f1711f1f3dd4c31a2579a9a93a3f361c1b1b03e78713f1935e5c360e3e01
 Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Execute a Java program.
 #   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
@@ -52355,6 +57382,18 @@ File: ./lib/javaexec.h
 Hash: fdd928324e8ecf1d026624ada4377dc47be047d3e38b42a0456e1dec3b50a51b
 Copyright: 2001-2002 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Execute a Java program.
 #   Copyright (C) 2001-2002 Free Software Foundation, Inc.
@@ -52375,6 +57414,18 @@ File: ./lib/javaversion.c
 Hash: fdead42e957d45aad5a32be39fc000b965f101ba1255624f9b54cccc347dab26
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine the Java version supported by javaexec.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -52399,6 +57450,18 @@ File: ./lib/javaversion.h
 Hash: 29a446b837cf48407147af943a7093bdb31bb10c00fc791eab8870a4acc0602e
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine the Java version supported by javaexec.
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -52419,6 +57482,18 @@ File: ./lib/javaversion.java
 Hash: a97b370d2fde64e69acc4e2896d1da82e09cbf28058f4565b2f61d6433088d72
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Show the Java version.
 # * Copyright (C) 2006 Free Software Foundation, Inc.
@@ -52439,6 +57514,18 @@ File: ./lib/lchown.c
 Hash: 953d98a6f7fe6ee1359d3d4946aa47ae6596a61298964fd3c03b359f351f0338
 Copyright: 1998, 1999, 2002, 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Provide a stub lchown function for systems that lack it.
 #
@@ -52458,6 +57545,18 @@ File: ./lib/ldexpl.c
 Hash: c540324ac2ca2517b41b719aad57bf1773ee104baf901c03daa8bbf5208d3e3c
 Copyright: 2002, 2003, 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Emulation for ldexpl.
 #   Contributed by Paolo Bonzini
@@ -52478,6 +57577,18 @@ File: ./lib/linebuffer.c
 Hash: d85578cc459795d236f48e817ded298d632fa6890aac27376aecf0c47a856fa8
 Copyright: 1986, 1991, 1998, 1999, 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* linebuffer.c -- read arbitrarily long lines
 #
@@ -52497,6 +57608,18 @@ File: ./lib/linebuffer.h
 Hash: 34656b0c4b8d689a203a09d7b36721f38b76bcb871571a8c4b0d923840a9fe58
 Copyright: 1986, 1991, 1998, 1999, 2002, 2003, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* linebuffer.h -- declarations for reading arbitrarily long lines
 #
@@ -52516,6 +57639,19 @@ File: ./lib/link.c
 Hash: c0b30ef6d1e001b2928d2bb394b5762a98b6b6ede802eaa83c1319c2e03dce1e
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Emulate link on platforms that lack it, namely native Windows platforms.
 #
@@ -52536,6 +57672,18 @@ File: ./lib/listen.c
 Hash: c6134f3762f75b62f22278b0c4dd5119a598c12d4e5c20957e32c6cd33314666
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* listen.c --- wrappers for Windows listen function
 #
@@ -52556,6 +57704,19 @@ File: ./lib/localcharset.c
 Hash: 1548af2400728ae263f6a2bb0118e7778437b3639878649dc0257a527e4e0629
 Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Determine a canonical name for the current locale's character encoding.
 #
@@ -52576,6 +57737,19 @@ File: ./lib/localcharset.h
 Hash: 119c2de543436735fe784154d840a118ae31756c5fbbbb7f30b1cd3e2b54616a
 Copyright: 2000-2003 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Determine a canonical name for the current locale's character encoding.
 #   Copyright (C) 2000-2003 Free Software Foundation, Inc.
@@ -52596,6 +57770,18 @@ File: ./lib/locale.in.h
 Hash: 208f60fb61b19efcd077917af5a61aad7ac1210ed158ba35d67c172ead537649
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* A POSIX <locale.h>.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -52616,6 +57802,20 @@ File: ./lib/localename.c
 Hash: f6fbb8df7f52b6eafa7552a49d6e5eee9816b690a0d89c2b03462044652914d2
 Copyright: 1995-1999, 2000-2008 Free Software Foundation, Inc.
 License: LGPL-2+
+   This program is free software; you can redistribute it and/or modify it
+   under the terms of the GNU Library General Public License as published
+   by the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+   
+   You should have received a copy of the GNU Library General Public
+   License along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+   USA.
 #Header:
 #/* Determine name of the currently selected locale.
 #   Copyright (C) 1995-1999, 2000-2008 Free Software Foundation, Inc.
@@ -52636,6 +57836,20 @@ File: ./lib/localename.h
 Hash: 6a79383773a37a8b6886c6d119e3890f98db4a414a013cc80eac6449b8e5fe4b
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-2+
+   This program is free software; you can redistribute it and/or modify it
+   under the terms of the GNU Library General Public License as published
+   by the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+   
+   You should have received a copy of the GNU Library General Public
+   License along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+   USA.
 #Header:
 #/* Determine name of the currently selected locale.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -52656,6 +57870,18 @@ File: ./lib/logl.c
 Hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
 Copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
 #
@@ -52675,6 +57901,18 @@ File: ./lib/long-options.c
 Hash: 4365412d9fe5d790d7ad8e3e03649fe0e872a7e666491c956fbbdaded0030cc0
 Copyright: 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Utility to accept --help and --version options as unobtrusively as possible.
 #
@@ -52694,6 +57932,18 @@ File: ./lib/long-options.h
 Hash: 4f9add7cfbe1ff66d2f74e25eefc73829aef3fb75c1d70eb1760a07c288b5a31
 Copyright: 1993, 1994, 1998, 1999, 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* long-options.h -- declaration for --help- and --version-handling function.
 #   Copyright (C) 1993, 1994, 1998, 1999, 2003 Free Software Foundation, Inc.
@@ -52714,6 +57964,19 @@ File: ./lib/lseek.c
 Hash: 02f75754750c8263d25c4282d7b6167a2d40d0c8f8cf8a952486fc65dc812321
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* An lseek() function that detects pipes.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -52734,6 +57997,18 @@ File: ./lib/lstat.c
 Hash: 345ec037534ce5c96f9599c78e87c36be1fee4649a8ec187168445e6bb2d1cc7
 Copyright: 1997-1999, 2000-2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Work around a bug of lstat on some systems
 #
@@ -52754,6 +58029,19 @@ File: ./lib/malloc.c
 Hash: 7754ece2820e7ddc5a364b370c2560187d53c00f4695409abd04ecedeff2aa94
 Copyright: 1997, 1998, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* malloc() function that is glibc compatible.
 #
@@ -52774,6 +58062,19 @@ File: ./lib/malloca.c
 Hash: e0f9431b8801560a2ec9fecb1893f9c1443bd37ac24a4785196d0c03321f52da
 Copyright: 2003, 2006-2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Safe automatic memory allocation.
 #   Copyright (C) 2003, 2006-2007 Free Software Foundation, Inc.
@@ -52794,6 +58095,19 @@ File: ./lib/malloca.h
 Hash: 56c3717d1d0f5f3cbdf6f2b581ad097dd47935c459a239db9ca84db9fd339f1c
 Copyright: 2003-2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Safe automatic memory allocation.
 #   Copyright (C) 2003-2007 Free Software Foundation, Inc.
@@ -52826,6 +58140,18 @@ File: ./lib/math.in.h
 Hash: 1d71d3fe653ddb331f364aadd7e0db6e31fc0a63300b049925c39c9120777288
 Copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* A GNU-like <math.h>.
 #
@@ -52846,6 +58172,18 @@ File: ./lib/mbchar.c
 Hash: 1b800acccc08b7bf9876ec834e26931f8cbc2ca5f69d788879010a196026a89a
 Copyright: 2001, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2001, 2006 Free Software Foundation, Inc.
 #
@@ -52865,6 +58203,18 @@ File: ./lib/mbchar.h
 Hash: 419eac128ee022faceedcbce731388308f72bf42d570dcc74d67721645d9ad75
 Copyright: 2001, 2005-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Multibyte character data type.
 #   Copyright (C) 2001, 2005-2007 Free Software Foundation, Inc.
@@ -52885,6 +58235,18 @@ File: ./lib/mbfile.h
 Hash: f148ab5a88b3ab7847530f40507a08b257c44574da3e3824feca0501fc1ff87d
 Copyright: 2001, 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Multibyte character I/O: macros for multi-byte encodings.
 #   Copyright (C) 2001, 2005 Free Software Foundation, Inc.
@@ -52905,6 +58267,18 @@ File: ./lib/mbiter.h
 Hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
 Copyright: 2001, 2005, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Iterating through multibyte strings: macros for multi-byte encodings.
 #   Copyright (C) 2001, 2005, 2007 Free Software Foundation, Inc.
@@ -52925,6 +58299,18 @@ File: ./lib/mbmemcasecmp.c
 Hash: f5ab326ce04660d7c088d2589429beeb7310d839bd0559a3a37f42497870f830
 Copyright: 1998-1999, 2005-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare two memory areas with possibly different lengths, case-insensitive.
 #   Copyright (C) 1998-1999, 2005-2009 Free Software Foundation, Inc.
@@ -52944,6 +58330,18 @@ File: ./lib/mbmemcasecmp.h
 Hash: 85c672759815348bfc4928739797c22787d4f55386d3bb5effd4685cd12f7496
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare two memory areas with possibly different lengths, case-insensitive.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -52964,6 +58362,18 @@ File: ./lib/mbmemcasecoll.c
 Hash: cab139308f71e0434b70aeaf0f3dbed1381ead7271c0d992e00b93438c1d6499
 Copyright: 2001, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale-specific case-ignoring memory comparison.
 #   Copyright (C) 2001, 2009 Free Software Foundation, Inc.
@@ -52984,6 +58394,18 @@ File: ./lib/mbmemcasecoll.h
 Hash: 746e4714316afcd2eb3d13bb38d3c2776496e6f2f77b745a1d694e53a6f74a61
 Copyright: 2001, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale-specific case-ignoring memory comparison.
 #   Copyright (C) 2001, 2009 Free Software Foundation, Inc.
@@ -53004,6 +58426,18 @@ File: ./lib/mbrlen.c
 Hash: 34f5f51edaf35ee0284c34df8f8288a04625716cf5817d6eefc9c8dad9b06473
 Copyright: 1999-2000, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Recognize multibyte character.
 #   Copyright (C) 1999-2000, 2008 Free Software Foundation, Inc.
@@ -53024,6 +58458,18 @@ File: ./lib/mbrtowc.c
 Hash: 76ee0ca75066f435d593cbebd63b7abab83e289e38af89d03f5fbba1a1b9ca8a
 Copyright: 1999-2002, 2005-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert multibyte character to wide character.
 #   Copyright (C) 1999-2002, 2005-2009 Free Software Foundation, Inc.
@@ -53044,6 +58490,18 @@ File: ./lib/mbscasecmp.c
 Hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
 Copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-insensitive string comparison function.
 #   Copyright (C) 1998-1999, 2005-2008 Free Software Foundation, Inc.
@@ -53063,6 +58521,18 @@ File: ./lib/mbscasestr.c
 Hash: 067b762668e77d779287cb9e16e0d9d0d54425834153a41df667fe96abe6d5ea
 Copyright: 2005-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-insensitive searching in a string.
 #   Copyright (C) 2005-2008 Free Software Foundation, Inc.
@@ -53083,6 +58553,18 @@ File: ./lib/mbschr.c
 Hash: 0400e89b869bf824f778a6860325c96dbf6fc811f1872770a0bd662a5af0f847
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Searching a string for a character.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -53103,6 +58585,18 @@ File: ./lib/mbscspn.c
 Hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
 Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Searching a string for a character among a given set of characters.
 #   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
@@ -53123,6 +58617,18 @@ File: ./lib/mbsinit.c
 Hash: 295fe542f5ad6e27ca5816217b9805d2428ea1aabd57962bdb2d3306a6c769fb
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test for initial conversion state.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -53143,6 +58649,18 @@ File: ./lib/mbslen.c
 Hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Counting the multibyte characters in a string.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -53163,6 +58681,18 @@ File: ./lib/mbsncasecmp.c
 Hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
 Copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-insensitive string comparison function.
 #   Copyright (C) 1998-1999, 2005-2008 Free Software Foundation, Inc.
@@ -53182,6 +58712,18 @@ File: ./lib/mbsnlen.c
 Hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Counting the multibyte characters in a string.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -53202,6 +58744,18 @@ File: ./lib/mbsnrtowcs.c
 Hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert string to wide string.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -53222,6 +58776,18 @@ File: ./lib/mbspbrk.c
 Hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
 Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Searching a string for a character among a given set of characters.
 #   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
@@ -53242,6 +58808,18 @@ File: ./lib/mbspcasecmp.c
 Hash: 07f7fe969a7c752b56b078f855dce95806287b22873440d798b831f5629d3589
 Copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-insensitive string comparison function.
 #   Copyright (C) 1998-1999, 2005-2008 Free Software Foundation, Inc.
@@ -53262,6 +58840,18 @@ File: ./lib/mbsrchr.c
 Hash: aae99e9b396b908d7c7fcd21ce6bcb2e4aaef1810a36771e91c2436918d26978
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Searching a string for the last occurrence of a character.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -53282,6 +58872,18 @@ File: ./lib/mbsrtowcs-state.c
 Hash: c1ee8e5f9ff539152510bee610b85b5129447259bd0740852310fbe0aa05dcfb
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert string to wide string.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -53302,6 +58904,18 @@ File: ./lib/mbsrtowcs.c
 Hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert string to wide string.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -53322,6 +58936,18 @@ File: ./lib/mbssep.c
 Hash: e91f2687c32b2d7fbb211e0e114d331fff93022b0c657cc6b2a6a934cb3b67b4
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Tokenizing a string.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -53342,6 +58968,18 @@ File: ./lib/mbsspn.c
 Hash: 96a736a43629e5ae2f508a50e854f65078635e6552ac998e4b72d981b4de9333
 Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Searching a string for a character outside a given set of characters.
 #   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
@@ -53362,6 +59000,18 @@ File: ./lib/mbsstr.c
 Hash: 05f8fd03123cf70b50e8a4ca02b2bef23c41c488ce1f33530c0e5b912b20898c
 Copyright: 2005-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Searching in a string.
 #   Copyright (C) 2005-2008 Free Software Foundation, Inc.
@@ -53382,6 +59032,18 @@ File: ./lib/mbstok_r.c
 Hash: 1f180b2d8a6c65bfff77cd72bec0837f16a2a39411db702acaeeddcd0797a7cf
 Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Tokenizing a string.
 #   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
@@ -53402,6 +59064,18 @@ File: ./lib/mbswidth.c
 Hash: 20f724a9c2c1b2039071c36cc6fa2828284e3561211957e7800e0275df016a16
 Copyright: 2000-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine the number of screen columns needed for a string.
 #   Copyright (C) 2000-2008 Free Software Foundation, Inc.
@@ -53422,6 +59096,18 @@ File: ./lib/mbswidth.h
 Hash: f66eede184bcac83a9639c243acc2e81ac0b5c2ce302a8ef776ce3896ab69682
 Copyright: 2000-2004, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine the number of screen columns needed for a string.
 #   Copyright (C) 2000-2004, 2007 Free Software Foundation, Inc.
@@ -53442,6 +59128,18 @@ File: ./lib/mbuiter.h
 Hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
 Copyright: 2001, 2005, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Iterating through multibyte strings: macros for multi-byte encodings.
 #   Copyright (C) 2001, 2005, 2007 Free Software Foundation, Inc.
@@ -53462,6 +59160,19 @@ File: ./lib/md2.c
 Hash: 04204819baa32da88084b2206ea067ea6a78cde426759ad1eaf12598747f9715
 Copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Functions to compute MD2 message digest of files or memory blocks.
 #   according to the definition of MD2 in RFC 1319 from April 1992.
@@ -53481,6 +59192,19 @@ File: ./lib/md2.h
 Hash: 1635bb2eff1d6c4202462a1493aa8fa1122f0b8c628f9d5e1a1bd1b959fdab11
 Copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Declarations of functions and data types used for MD2 sum
 #   library functions.
@@ -53500,6 +59224,19 @@ File: ./lib/md4.c
 Hash: 0862a8a513fa370cc94a968cac68ab365d1c9a3648137d2af8aaf5c719a4b737
 Copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Functions to compute MD4 message digest of files or memory blocks.
 #   according to the definition of MD4 in RFC 1320 from April 1992.
@@ -53519,6 +59256,19 @@ File: ./lib/md4.h
 Hash: dcc57d0ac574c78b51a7293f7ad573d8a4c524cf2988b283d86fc5ff1b5f57bf
 Copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Declarations of functions and data types used for MD4 sum
 #   library functions.
@@ -53538,6 +59288,19 @@ File: ./lib/md5.c
 Hash: ffa2dd5235fc5bc1cff6f871fca1f3804da0f74bbdcfa48050479b24225ac1e6
 Copyright: 1995,1996,1997,1999,2000,2001,2005,2006,2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Functions to compute MD5 message digest of files or memory blocks.
 #   according to the definition of MD5 in RFC 1321 from April 1992.
@@ -53558,6 +59321,19 @@ File: ./lib/md5.h
 Hash: e0f5a2253099054a9a71d12e1df625a6f7afa5bed4c53400f687e1b319bd0f95
 Copyright: 1995-1997,1999,2000,2001,2004,2005,2006,2008,2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Declaration of functions and data types used for MD5 sum computing
 #   library functions.
@@ -53578,6 +59354,18 @@ File: ./lib/memcasecmp.c
 Hash: 807b6ac25ddd6d8ae26a583a2ae26a3a1cfb85acd6c8c70fd81e0dcbb30b7905
 Copyright: 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-insensitive buffer comparator.
 #   Copyright (C) 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
@@ -53598,6 +59386,18 @@ File: ./lib/memcasecmp.h
 Hash: 18edc330f64fe3fe7683e14bcb89316afede0ebbf8ce49bc0abcd324eaecdf41
 Copyright: 1996, 1998, 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-insensitive buffer comparator.
 #
@@ -53618,6 +59418,18 @@ File: ./lib/memchr.c
 Hash: 1b3448d898ff7ee9149e469a0d1dfaa91777ad13ac93aeca526c1d7534006686
 Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008
 #   Free Software Foundation, Inc.
@@ -53657,6 +59469,18 @@ File: ./lib/memchr2.c
 Hash: f8a8a07596253d814b66f51a219b27446056819948a185735c326a34032971de
 Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006,
 #   2008 Free Software Foundation, Inc.
@@ -53676,6 +59500,18 @@ File: ./lib/memchr2.h
 Hash: 5b2e0321ef5edf4284193b2bb4a6b3837d05ba4d909864b2faea89fa327027c0
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Scan memory for the first of two bytes.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -53715,6 +59551,18 @@ File: ./lib/memcmp.c
 Hash: 115e253d20ce838f3f9a7b7bdb87ca7bc9c5f1cfb6217d3659c62d22b284250f
 Copyright: 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software
 #   Foundation, Inc.
@@ -53735,6 +59583,18 @@ File: ./lib/memcmp2.c
 Hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare two memory areas with possibly different lengths.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -53755,6 +59615,18 @@ File: ./lib/memcmp2.h
 Hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare two memory areas with possibly different lengths.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -53775,6 +59647,18 @@ File: ./lib/memcoll.c
 Hash: 45afdae44d3da5345c4e1ff5bbbe23a35f6c8f04d1f7913937376f96d3927dd6
 Copyright: 1999, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale-specific memory comparison.
 #
@@ -53795,6 +59679,18 @@ File: ./lib/memcoll.h
 Hash: ceebe2fe05b83b4b212dc4dc72283ab2d56ca2e8778bd92fd1867d9df2c2b1ba
 Copyright: 1999, 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale-specific memory comparison.
 #
@@ -53815,16 +59711,28 @@ File: ./lib/memcpy.c
 Hash: e77f76fb0280fc06e306294c9d397a3319c397fa293104c6f3c231c149ae3597
 Copyright: 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
 License: GPL-3+
-#Header:
-#/* Copyright (C) 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
-#
-#   This program is free software: you can redistribute it and/or modify
-#   it under the terms of the GNU General Public License as published by
-#   the Free Software Foundation; either version 3 of the License, or
-#   (at your option) any later version.
-#
-#   This program is distributed in the hope that it will be useful,
-#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copyright (C) 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 3 of the License, or
+#   (at your option) any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #   GNU General Public License for more details.
 #
@@ -53834,6 +59742,19 @@ File: ./lib/memmem.c
 Hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
 Copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software
 #   Foundation, Inc.
@@ -53874,6 +59795,19 @@ File: ./lib/mempcpy.c
 Hash: 162deb5da2eb01183cd1ea3c6c29887ff8f634735322780be17607aa892ec4a5
 Copyright: 2003, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copy memory area and return pointer after last written byte.
 #   Copyright (C) 2003, 2007 Free Software Foundation, Inc.
@@ -53894,6 +59828,18 @@ File: ./lib/memrchr.c
 Hash: 7df103a286eed4dd6f31836264675378b140d030d4dcbb3e810f24d122227d43
 Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* memrchr -- find the last occurrence of a byte in a memory block
 #
@@ -53914,6 +59860,19 @@ File: ./lib/memset.c
 Hash: 40655652ef5140299df50fcd8dbb02a23d78c3961e6078fcf866232c481752b7
 Copyright: 1991, 2003 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* memset.c -- set an area of memory to a given value
 #   Copyright (C) 1991, 2003 Free Software Foundation, Inc.
@@ -53934,6 +59893,18 @@ File: ./lib/memxfrm.c
 Hash: 925c125df6e81f5c5be0eee6a767546cf977fc4e55b5712c490cd84f80061da8
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent memory area transformation for comparison.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -53954,6 +59925,18 @@ File: ./lib/memxfrm.h
 Hash: 8fbe3c5f0271469b59387f418cf5a7a39d02a67082c24952d53ad9e12e1ff3f2
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent memory area transformation for comparison.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -53974,6 +59957,19 @@ File: ./lib/memxor.c
 Hash: 95bea5a33c7fc7fa109f69789827d4274d5f8f8b0d8ad5e195fcfa3df0838ac5
 Copyright: 2005, 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* memxor.c -- perform binary exclusive OR operation of two memory blocks.
 #   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
@@ -53994,6 +59990,19 @@ File: ./lib/memxor.h
 Hash: 8b8f42a17c5880f430a23152165a2a48a1d9ce6f523fcc08cf0fa013d207820c
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* memxor.h -- perform binary exclusive OR operation on memory blocks.
 #   Copyright (C) 2005 Free Software Foundation, Inc.
@@ -54014,6 +60023,19 @@ File: ./lib/minmax.h
 Hash: fc14ab477958a0d028d651e94f71938ac898148d7a4fb3641065e97ffc0033ac
 Copyright: 1995, 1998, 2001, 2003, 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* MIN, MAX macros.
 #   Copyright (C) 1995, 1998, 2001, 2003, 2005 Free Software Foundation, Inc.
@@ -54034,6 +60056,18 @@ File: ./lib/mkancesdirs.c
 Hash: fbf7223604ae868a286a8b7782520dcfecf8871450373ce6eddd4231d6987d86
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Make a file's ancestor directories.
 #
@@ -54063,6 +60097,18 @@ File: ./lib/mkdir-p.c
 Hash: cca87ad7e743252b92404f484d9be69bc26ebc17de6d3091edfe804910f54529
 Copyright: 1990, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* mkdir-p.c -- Ensure that a directory and its parents exist.
 #
@@ -54082,6 +60128,18 @@ File: ./lib/mkdir-p.h
 Hash: bf444d5e7cf40b933757ee95b2fb1d8348f6c03d75afbb4b093609ff4cc6d27a
 Copyright: 1994, 1995, 1996, 1997, 2000, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* mkdir-p.h -- Ensure that a directory and its parents exist.
 #
@@ -54101,6 +60159,18 @@ File: ./lib/mkdir.c
 Hash: e036cb236f6cf2b150e76519fa45b1e2d5a887bf7d45803e686f5a302b0f4e66
 Copyright: 2001, 2003, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* On some systems, mkdir ("foo/", 0700) fails because of the trailing
 #   slash.  On those systems, this wrapper removes the trailing slash.
@@ -54120,6 +60190,18 @@ File: ./lib/mkdirat.c
 Hash: e9de0eaf6cda53b633eb6f3b637d1a89e21ee06ea81e2578412a0a1f4f33a0ae
 Copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* fd-relative mkdir
 #   Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
@@ -54140,6 +60222,18 @@ File: ./lib/mkdtemp.c
 Hash: 90c1ed532e82f71aea40266d94df8e15d52ef9622ee699ae2a3358ba9e0fa5db
 Copyright: 1999, 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1999, 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -54160,6 +60254,18 @@ File: ./lib/mkostemp.c
 Hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
 Copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
 #   This file is derived from the one in the GNU C Library.
@@ -54180,6 +60286,18 @@ File: ./lib/mkstemp-safer.c
 Hash: 5dfad6cc702f2dcd88df092b3ebee11ef4795e45592e03d7f1c7841a9a5e48e2
 Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke mkstemp, but avoid some glitches.
 #
@@ -54200,6 +60318,18 @@ File: ./lib/mkstemp.c
 Hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
 Copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
 #   This file is derived from the one in the GNU C Library.
@@ -54220,6 +60350,19 @@ File: ./lib/mktime.c
 Hash: 1a80cec494e14569464c9c913b8d639fde5ca46a2ad8b19c097398be567c3987
 Copyright: 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Convert a `struct tm' to a time_t value.
 #   Copyright (C) 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc.
@@ -54239,6 +60382,18 @@ File: ./lib/modechange.c
 Hash: 04c294fd66aee3490b759ca54e9bbc039f30063774f91b695f200425413f52cc
 Copyright: 1989, 1990, 1997, 1998, 1999, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* modechange.c -- file mode manipulation
 #
@@ -54258,6 +60413,18 @@ File: ./lib/modechange.h
 Hash: 9e926e58af501dd9da1d504389fed35d905b66bccc24a4ab3a30e0e2eb6d8d5b
 Copyright: 1989, 1990, 1997, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* modechange.h -- definitions for file mode manipulation
 #
@@ -54277,6 +60444,18 @@ File: ./lib/mountlist.c
 Hash: 8131b2bba35b93115b79375a032a364f5821a6773dbee18aa26a24e896829459
 Copyright: 1991, 1992, 1997-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* mountlist.c -- return a list of mounted file systems
 #
@@ -54297,6 +60476,18 @@ File: ./lib/mountlist.h
 Hash: 19c16002f5ad4f33a7ebd8c726e357e18d9a7f2f8ae6b1a42459ecb2eba2e0c8
 Copyright: 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* mountlist.h -- declarations for list of mounted file systems
 #
@@ -54316,6 +60507,18 @@ File: ./lib/mpsort.c
 Hash: 754a18c37e339daeaa3129f85d1e11a2e8eb04ce0b9b382d25a02b40dee33112
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Sort a vector of pointers to data.
 #
@@ -54343,6 +60546,18 @@ File: ./lib/nanosleep.c
 Hash: 2fb5279d8f37cfd3ec3a500d9127e805131b37d39fa15187a82bfefb3b7fbe77
 Copyright: 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Provide a replacement for the POSIX nanosleep function.
 #
@@ -54362,6 +60577,19 @@ File: ./lib/netdb.in.h
 Hash: 313d83faf1e58b363f56df9abd41c694cc877655a1f383b9c96c52f2b5492090
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Provide a netdb.h header file for systems lacking it (read: MinGW).
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -54382,6 +60610,19 @@ File: ./lib/netinet_in.in.h
 Hash: ba843c9c4800f24e66a3b94aefe21730afdc0233254175a20b3f503b12b022a1
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Substitute for <netinet/in.h>.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -54402,6 +60643,19 @@ File: ./lib/nproc.c
 Hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Detect the number of processors.
 #
@@ -54422,6 +60676,19 @@ File: ./lib/nproc.h
 Hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Detect the number of processors.
 #
@@ -54442,6 +60709,18 @@ File: ./lib/obstack.c
 Hash: c51f2b4012075fb4a6f199dc311d6a80a6da3a59080e65c78ab906d198fa52c8
 Copyright: 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* obstack.c - subroutines used implicitly by object stack macros
 #
@@ -54462,6 +60741,18 @@ File: ./lib/obstack.h
 Hash: bec03a89fef72b0110d29ed4efaa664fc79fd03132e71c57e2088432a3af65ba
 Copyright: 1988-1994,1996-1999,2003,2004,2005,2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* obstack.h - object stack macros
 #   Copyright (C) 1988-1994,1996-1999,2003,2004,2005,2006
@@ -54481,6 +60772,19 @@ File: ./lib/obstack_printf.c
 Hash: ec3b6ee4cf323b218382e7b0b4c647e67f88d44b9bde87ad0faf1004fa480c69
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Formatted output to obstacks.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -54509,6 +60813,18 @@ File: ./lib/open-safer.c
 Hash: f5c5c83637f90b3f8e7310337390ff817b1c3eb020f5f944b7d2cc04f809f581
 Copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke open, but avoid some glitches.
 #
@@ -54529,6 +60845,18 @@ File: ./lib/open.c
 Hash: 1700deda821715bdbac72d0da2e09c3ce1dc34279381170e21eab9187e142c63
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Open a descriptor to a file.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -54549,6 +60877,18 @@ File: ./lib/openat-die.c
 Hash: c32e1b799da53de52b5bee09ffcbbe4f2b4b4db28ef45bbcdf0af0346fee99c8
 Copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Report a save- or restore-cwd failure in our openat replacement and then exit.
 #
@@ -54569,6 +60909,18 @@ File: ./lib/openat-priv.h
 Hash: de3bc79756c38bf4c0d3930bd43e5559159edaff0ee82652ee068d1f3ce3507a
 Copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Internals for openat-like functions.
 #
@@ -54589,6 +60941,18 @@ File: ./lib/openat-proc.c
 Hash: 5adc0d5b70d50bb5b44d3de2819622c2e2f6ebbb06b868b4013b245d24e772e3
 Copyright: 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Create /proc/self/fd-related names for subfiles of open directories.
 #
@@ -54609,6 +60973,18 @@ File: ./lib/openat-safer.c
 Hash: 56934bd9aed0b0823c2ee17a8b46147af53d10daea72b9ca7c1a132ceead70d2
 Copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke openat, but avoid some glitches.
 #
@@ -54629,6 +61005,18 @@ File: ./lib/openat.c
 Hash: 2cc87825fb5511fc2a3e5e700dceb67002be17775fa619eb19d96a15d8b5be2a
 Copyright: 2004-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* provide a replacement openat function
 #   Copyright (C) 2004-2009 Free Software Foundation, Inc.
@@ -54649,6 +61037,18 @@ File: ./lib/openat.h
 Hash: aef33cd705f809a57238d48fd05fb4491c97687b372cecf7c69341cdcab2f654
 Copyright: 2004-2006, 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* provide a replacement openat function
 #   Copyright (C) 2004-2006, 2008-2009 Free Software Foundation, Inc.
@@ -54669,6 +61069,18 @@ File: ./lib/opendir-safer.c
 Hash: 2429dbf23e1213eb581af6196c671f69f35fed4b342c7fd3fff0d504356d93a5
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke opendir, but avoid some glitches.
 #
@@ -54689,6 +61101,18 @@ File: ./lib/pagealign_alloc.c
 Hash: 556403e976c41313f9325e500d34e5165c9f3173eeb22c7d1e80481b40a08425
 Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Memory allocation aligned to system page boundaries.
 #
@@ -54709,6 +61133,18 @@ File: ./lib/pagealign_alloc.h
 Hash: eb99842218a16ee4d0c565f1ad99bb5143f4ee3a77e8dcce80a0bd95cf085cd5
 Copyright: 2005, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Memory allocation aligned to system page boundaries.
 #
@@ -54729,6 +61165,18 @@ File: ./lib/parse-duration.c
 Hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Parse a time duration and return a seconds count
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -54749,6 +61197,18 @@ File: ./lib/parse-duration.h
 Hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Parse a time duration and return a seconds count
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -54769,6 +61229,19 @@ File: ./lib/pathmax.h
 Hash: c643310e04770fbcc160973a5552561f7c122f2a5e6a61adba5b1f6f6073596d
 Copyright: 1992, 1999, 2001, 2003, 2005, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Define PATH_MAX somehow.  Requires sys/types.h.
 #   Copyright (C) 1992, 1999, 2001, 2003, 2005, 2009 Free Software Foundation, Inc.
@@ -54789,6 +61262,18 @@ File: ./lib/perror.c
 Hash: 9a22ceeb839da7e1b91e96f5d0812174c06aa7deb3f1312c1b9d137bbe191602
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Print a message describing error code.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -54809,6 +61294,18 @@ File: ./lib/physmem.c
 Hash: b06bd14f93155ac98d9a92df716ba22a1fa39c63b510a32beb9c06627c183012
 Copyright: 2000, 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Calculate the size of physical memory.
 #
@@ -54828,6 +61325,18 @@ File: ./lib/physmem.h
 Hash: 3a6cbe3d952eab59a5cd17b28b2b869ebdc9b8f19c1eded770524ea7c863270a
 Copyright: 2000, 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Calculate the size of physical memory.
 #
@@ -54848,6 +61357,18 @@ File: ./lib/pipe-filter-aux.h
 Hash: dd7eec8d6ec8c14b97efee5589cb013a0d4bf682e94019d235b35fead5b42d07
 Copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Auxiliary code for filtering of data through a subprocess.
 #   Copyright (C) 2001-2003, 2008-2009 Free Software Foundation, Inc.
@@ -54868,6 +61389,18 @@ File: ./lib/pipe-filter-gi.c
 Hash: 7b798dfae0edb799145d56afbab5ad04a9af74dfbe6bb5614fcf4f5357e51aea
 Copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Filtering of data through a subprocess.
 #   Copyright (C) 2001-2003, 2008-2009 Free Software Foundation, Inc.
@@ -54887,6 +61420,18 @@ File: ./lib/pipe-filter-ii.c
 Hash: 9049b5c7b4ed08a8c9dd5a090c5f0632c4f769691c9d0bc3abafd2ed205c449a
 Copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Filtering of data through a subprocess.
 #   Copyright (C) 2001-2003, 2008-2009 Free Software Foundation, Inc.
@@ -54907,6 +61452,18 @@ File: ./lib/pipe-filter.h
 Hash: cb4091cc5532a11d2184725fbafb495b5dc0e0e99d888529d15ec9f6ac8db90b
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Filtering of data through a subprocess.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -54926,6 +61483,18 @@ File: ./lib/pipe-safer.c
 Hash: 8b0ecacdeacd13de295a1575a525fb82a56a4a6315081874b0c32cf2cfe958e0
 Copyright: 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke pipe, but avoid some glitches.
 #   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
@@ -54946,6 +61515,18 @@ File: ./lib/pipe.c
 Hash: 4bad855b30e4735483d65e1b608087804110d24a67ba16cf7ed987c5f5bcd5c2
 Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Creation of subprocesses, communicating via pipes.
 #   Copyright (C) 2001-2004, 2006-2009 Free Software Foundation, Inc.
@@ -54966,6 +61547,18 @@ File: ./lib/pipe.h
 Hash: 8e9240d53e76426a4087f6a35ebd4b865be3105da821c9139043bf9232c4c171
 Copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Creation of subprocesses, communicating via pipes.
 #   Copyright (C) 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
@@ -54986,6 +61579,19 @@ File: ./lib/pipe2.c
 Hash: 61562647025e035a2e08fcbba935557f0ce2b3a273ca93855a3184d523bdc97f
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Create a pipe, with specific opening flags.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -55006,6 +61612,19 @@ File: ./lib/poll.c
 Hash: 033d3d5afa8977c21203f543b7bac8bc53f51acf846088848087638d72ff8bf0
 Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Emulation for poll(2)
 #   Contributed by Paolo Bonzini.
@@ -55026,6 +61645,19 @@ File: ./lib/poll.in.h
 Hash: 75e680c286d79502b2c414e7b8929c31247c980612c852936f7ca1d1593362b8
 Copyright: 2001, 2002, 2003, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Header for poll(2) emulation
 #   Contributed by Paolo Bonzini.
@@ -55046,6 +61678,18 @@ File: ./lib/popen-safer.c
 Hash: da9c884b0efa4edd9844b332c14b060d0cab98c6049f38731a3d590b89a00d06
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke popen, but avoid some glitches.
 #
@@ -55066,6 +61710,18 @@ File: ./lib/popen.c
 Hash: d7c25fe6b43efdd98d5042c3424eba51cd53ea80bb948f9a92a099fb8c02142c
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Open a stream to a sub-process.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -55086,6 +61742,18 @@ File: ./lib/posixtm.c
 Hash: 4ba1c7c3e6714bb668acbece4b919082141b0a2736fb94262f2eb8e2598235d5
 Copyright: 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Parse dates for touch and date.
 #
@@ -55105,6 +61773,18 @@ File: ./lib/posixtm.h
 Hash: 942d45b6994556544668951294f7b94af106ac8b0b2ce064003998679266d698
 Copyright: 1998, 2003, 2005, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Parse dates for touch and date.
 #
@@ -55125,6 +61805,18 @@ File: ./lib/posixver.c
 Hash: f931363ed3fde9bde1676789900417a39c317a4fd6dd869b69d1dbe7ff3a035a
 Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Which POSIX version to conform to, for utilities.
 #
@@ -55150,6 +61842,19 @@ File: ./lib/printf-args.c
 Hash: 12bb86c9307ecf947c3e487e6bf53531b56f83f43d5e9babf59a2a57cde92c7c
 Copyright: 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Decomposed printf argument list.
 #   Copyright (C) 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc.
@@ -55170,6 +61875,19 @@ File: ./lib/printf-args.h
 Hash: cf140b5cb22fa0718dbc5a41c94ab6327a7a447612d93e4b6c51016418701bc8
 Copyright: 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Decomposed printf argument list.
 #   Copyright (C) 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc.
@@ -55190,6 +61908,18 @@ File: ./lib/printf-frexp.c
 Hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Split a double into fraction and mantissa, for hexadecimal printf.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -55210,6 +61940,18 @@ File: ./lib/printf-frexp.h
 Hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Split a double into fraction and mantissa, for hexadecimal printf.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -55230,6 +61972,18 @@ File: ./lib/printf-frexpl.c
 Hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Split a 'long double' into fraction and mantissa, for hexadecimal printf.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -55250,6 +62004,18 @@ File: ./lib/printf-frexpl.h
 Hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Split a 'long double' into fraction and mantissa, for hexadecimal printf.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -55270,6 +62036,19 @@ File: ./lib/printf-parse.c
 Hash: e87d67950b9b8fd0411ed7bd3201b3ae9eb97549cf5d6255c2f6065e46d1aff1
 Copyright: 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc.
@@ -55290,6 +62069,19 @@ File: ./lib/printf-parse.h
 Hash: 1cbba74b564ba38b983e35311a8dcb098229112ee464a2940dae6abba3a12247
 Copyright: 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Parse printf format string.
 #   Copyright (C) 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc.
@@ -55310,6 +62102,18 @@ File: ./lib/printf.c
 Hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to a stream.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -55330,6 +62134,18 @@ File: ./lib/priv-set.c
 Hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Query, remove, or restore a Solaris privilege.
 #
@@ -55350,6 +62166,18 @@ File: ./lib/priv-set.h
 Hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Query, remove, or restore a Solaris privilege.
 #
@@ -55370,6 +62198,18 @@ File: ./lib/progname.c
 Hash: 92661819f28e9fd0cb1b6c24c52d6f96e2746bf9eb417cf6cd6fb92a009d0fbb
 Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Program name management.
 #   Copyright (C) 2001-2003, 2005-2009 Free Software Foundation, Inc.
@@ -55390,6 +62230,18 @@ File: ./lib/progname.h
 Hash: fb156ffb4593024e0b50a3bfa0f8e0c9d280dfe5cc173a7c2b3796e892b3243b
 Copyright: 2001-2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Program name management.
 #   Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc.
@@ -55410,6 +62262,18 @@ File: ./lib/progreloc.c
 Hash: babc96a49ada0b13bd47d6931240b971ddf7a571a2c9a989c351f1b54caec1df
 Copyright: 2003-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Provide relocatable programs.
 #   Copyright (C) 2003-2009 Free Software Foundation, Inc.
@@ -55430,6 +62294,18 @@ File: ./lib/propername.c
 Hash: 453584a838b6191dd3f10ed6858fbc73356af59689880952a06d1984c013e443
 Copyright: 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Localization of proper names.
 #   Copyright (C) 2006-2009 Free Software Foundation, Inc.
@@ -55450,6 +62326,18 @@ File: ./lib/propername.h
 Hash: b709e58dcf9e44473ab7139d39df8d4143a783b73be0b4b8e5f589e2f37ff33f
 Copyright: 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Localization of proper names.
 #   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
@@ -55470,6 +62358,19 @@ File: ./lib/pthread.in.h
 Hash: ef4cc2c979afda964299a12c9b1d50231399227aa30af97c27d6fad997de2255
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Implement a trivial subset of the pthreads library.
 #
@@ -55490,11 +62391,23 @@ File: ./lib/putenv.c
 Hash: 17b29fb75137b2e5e475f2813253c186798f360d5711c1ac87ef1796680902b1
 Copyright: 1991, 1994, 1997-1998, 2000, 2003-2008 Free Software Foundation, Inc.
 License: GPL-3+
-#Header:
-#/* Copyright (C) 1991, 1994, 1997-1998, 2000, 2003-2008
-#   Free Software Foundation, Inc.
-#
-#   NOTE: The canonical source of this file is maintained with the GNU C
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copyright (C) 1991, 1994, 1997-1998, 2000, 2003-2008
+#   Free Software Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C
 #   Library.  Bugs can be reported to bug-glibc@prep.ai.mit.edu.
 #
 #   This program is free software: you can redistribute it and/or modify it
@@ -55510,6 +62423,18 @@ File: ./lib/quote.c
 Hash: c4a8b48c291af2ee7a2a7f70e0a643b88950e3ade7d29053180a8e109d792efa
 Copyright: 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* quote.c - quote arguments for output
 #
@@ -55529,6 +62454,18 @@ File: ./lib/quote.h
 Hash: 5d10e05c536ff1a439a2f8460f1e6ac91d61ba93ebf6280fe6ab090f9321d27b
 Copyright: 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* quote.h - prototypes for quote.c
 #
@@ -55548,6 +62485,18 @@ File: ./lib/quotearg.c
 Hash: aa0d608c0d77808b3ad8e91a0a3b802b9a13118b657be7df6bd43b7aec178ef0
 Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* quotearg.c - quote arguments for output
 #
@@ -55572,6 +62521,18 @@ File: ./lib/quotearg.h
 Hash: 2e6f8072d5c251a83bae1fd9e1d85ed223633968bae640a6ab6e759963b50d0c
 Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* quotearg.h - quote arguments for output
 #
@@ -55591,6 +62552,18 @@ File: ./lib/raise.c
 Hash: 50b03c3b985400bc1e7f8910337b51a9ce593ebd8b792aa1f1a1788960c9c26a
 Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Provide a non-threads replacement for the POSIX raise function.
 #
@@ -55674,6 +62647,18 @@ File: ./lib/rawmemchr.c
 Hash: 45a83b9183090995a3bb18e9b251a511464e420d7fa99da1e03ce2d9bd3d4e6b
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Searching in a string.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -55711,6 +62696,19 @@ File: ./lib/read-file.c
 Hash: 51c7d95dd1381f2a59ceb5c375cfb7998aec903e9b91e27baa7da0afa5e8468c
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* read-file.c -- read file contents into a string
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -55731,6 +62729,19 @@ File: ./lib/read-file.h
 Hash: ca324b683cf28737c1848bb23eb0b92cdc0044ee67094c57e91c08bdbf81f53e
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* read-file.h -- read file contents into a string
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -55751,6 +62762,18 @@ File: ./lib/readline.c
 Hash: 1c45ecec189bf0ab208143e3b0965baabebfcccb8f2389c02fe5ba6b4b7648a0
 Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* readline.c --- Simple implementation of readline.
 #   Copyright (C) 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
@@ -55771,6 +62794,18 @@ File: ./lib/readline.h
 Hash: 4cafc96af802460b1d7f54218bf92ca62cf6b7cd0a2abffc02d7ea516d1d1946
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* readline.h --- Simple implementation of readline.
 #   Copyright (C) 2005 Free Software Foundation, Inc.
@@ -55791,6 +62826,18 @@ File: ./lib/readlink.c
 Hash: 4a11f960e0153527f36536d9b396257683b425331d992420cffc853dfec35ddc
 Copyright: 2003-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Stub for readlink().
 #   Copyright (C) 2003-2007 Free Software Foundation, Inc.
@@ -55811,6 +62858,18 @@ File: ./lib/readtokens.c
 Hash: ffc9a757ad67bba5dcce13dfac14da216892391e5879cee666b99d8154c49b0e
 Copyright: 1990-1991, 1999-2004, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* readtokens.c  -- Functions for reading tokens from an input stream.
 #
@@ -55831,6 +62890,18 @@ File: ./lib/readtokens.h
 Hash: 452dfbc07c636749aa830a30599c7c5bc109f4c51b72d8891b968640b102b9d5
 Copyright: 1990, 1991, 1999, 2001-2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* readtokens.h -- Functions for reading tokens from an input stream.
 #
@@ -55851,6 +62922,18 @@ File: ./lib/readtokens0.c
 Hash: 8cb5713080fed145a957a71a48ce5c11d1d74bd0964b2f90d2d52f9e643a1db4
 Copyright: 2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* readtokens0.c -- Read NUL-separated tokens from an input stream.
 #
@@ -55871,6 +62954,18 @@ File: ./lib/readtokens0.h
 Hash: fa2844a8aefa737f7d2630364652206697cebc7c5d15193fb3273257c1afa96b
 Copyright: 2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* readtokens0.h -- read NUL-separated tokens from an input stream.
 #
@@ -55891,6 +62986,18 @@ File: ./lib/readutmp.c
 Hash: 6018c3b26e7b6cc70156a39368851213becaa215df3e58ef5966e9237d173463
 Copyright: 1992-2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* GNU's read utmp module.
 #
@@ -55910,6 +63017,18 @@ File: ./lib/readutmp.h
 Hash: e4edf9b2cd3b4a9662bd1a50b7a068f8dadee724d6b47e05b5c629cc890cb0f4
 Copyright: 1992-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Declarations for GNU's read utmp module.
 #
@@ -55930,6 +63049,18 @@ File: ./lib/realloc.c
 Hash: b65d6b9cadf8e53a3ff901459826791ef77acce1f247a65f3759c647442f3de9
 Copyright: 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* realloc() function that is glibc compatible.
 #
@@ -55950,6 +63081,18 @@ File: ./lib/recv.c
 Hash: 86a2667aca771f6d5c7502ac7cbddf51018f3dea268d5a1461b98f7b9af5f095
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* recv.c --- wrappers for Windows recv function
 #
@@ -55970,6 +63113,18 @@ File: ./lib/recvfrom.c
 Hash: 76c2990bcd168811c2511e685b811321ebc18fb7257375d1cb2f7d025d90dd34
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* recvfrom.c --- wrappers for Windows recvfrom function
 #
@@ -55990,6 +63145,19 @@ File: ./lib/ref-add.sin
 Hash: 384e11c05bb265e3613f6e8b6c445f77d0cecc679e59cddac3c606015c6f5fc3
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 ## Add this package to a list of references stored in a text file.
 ##
@@ -56010,6 +63178,19 @@ File: ./lib/ref-del.sin
 Hash: 55d01b01839af2472b2f966cda363787756440f9ac8024938ea8dfa8b2323862
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 ## Remove this package from a list of references stored in a text file.
 ##
@@ -56030,6 +63211,19 @@ File: ./lib/regcomp.c
 Hash: c2483b14cafcc8625bd4c467a5fd09efa0d50666fbb8a5fd38e2123b1ecb0945
 Copyright: 2002,2003,2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Extended regular expression matching and search library.
 #   Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009
@@ -56050,6 +63244,19 @@ File: ./lib/regex.c
 Hash: b01492f4d85ec55b5acc0f48cbe61e292c5b461a01bda985e49a53989594e947
 Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Extended regular expression matching and search library.
 #   Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
@@ -56069,6 +63276,19 @@ File: ./lib/regex.h
 Hash: c53492d2516ee161d8077ce24002a78d186df06b5c5941fa8401ef7998ac8375
 Copyright: 1985,1989-93,1995-98,2000,2001,2002,2003,2005,2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Definitions for data structures and routines for the regular
 #   expression library.
@@ -56089,6 +63309,19 @@ File: ./lib/regex_internal.c
 Hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
 Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Extended regular expression matching and search library.
 #   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
@@ -56109,6 +63342,19 @@ File: ./lib/regex_internal.h
 Hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
 Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Extended regular expression matching and search library.
 #   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
@@ -56129,6 +63375,19 @@ File: ./lib/regexec.c
 Hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
 Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Extended regular expression matching and search library.
 #   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
@@ -56149,6 +63408,20 @@ File: ./lib/relocatable.c
 Hash: 0d1858bafd12c7ab346742483ec5d97e6efbdebfd46524a7a8f231696f2a22ac
 Copyright: 2003-2006, 2008 Free Software Foundation, Inc.
 License: LGPL-2+
+   This program is free software; you can redistribute it and/or modify it
+   under the terms of the GNU Library General Public License as published
+   by the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+   
+   You should have received a copy of the GNU Library General Public
+   License along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+   USA.
 #Header:
 #/* Provide relocatable packages.
 #   Copyright (C) 2003-2006, 2008 Free Software Foundation, Inc.
@@ -56169,6 +63442,20 @@ File: ./lib/relocatable.h
 Hash: bcbac1b3bdd53abac5276b593b5ab4e22160d29de32e77245f5d9a04269770cf
 Copyright: 2003, 2005, 2008 Free Software Foundation, Inc.
 License: LGPL-2+
+   This program is free software; you can redistribute it and/or modify it
+   under the terms of the GNU Library General Public License as published
+   by the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+   
+   You should have received a copy of the GNU Library General Public
+   License along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+   USA.
 #Header:
 #/* Provide relocatable packages.
 #   Copyright (C) 2003, 2005, 2008 Free Software Foundation, Inc.
@@ -56189,6 +63476,18 @@ File: ./lib/relocwrapper.c
 Hash: c167810a619a4782afbe8842f06bdd194461d73cc0a1f4c1dfc0e5c49815a107
 Copyright: 2003, 2005-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Relocating wrapper program.
 #   Copyright (C) 2003, 2005-2007 Free Software Foundation, Inc.
@@ -56209,6 +63508,18 @@ File: ./lib/rename-dest-slash.c
 Hash: ef1b249ccdf7cb59741f8b296b4aad87ef269ecddf2d084a4d560b83e6a804e2
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* A rename wrapper to make tools like mv -- that would normally rely
 #   on the underlying rename syscall -- work more consistently.
@@ -56228,6 +63539,18 @@ File: ./lib/rename.c
 Hash: 1f9e11ca836ae5b2fb8b9e66aed55f3d358c7e104a480df3fd71801eb0a0bb64
 Copyright: 2001, 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Work around rename bugs in some systems.  On SunOS 4.1.1_U1
 #   and mips-dec-ultrix4.4, rename fails when the source file has
@@ -56428,6 +63751,18 @@ File: ./lib/rmdir.c
 Hash: 018a558c35eb9dac411a0a1df8bc31f403fdd1d5de43451c3a4dfc748b0a4ed6
 Copyright: 1988, 1990, 1999, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* BSD compatible remove directory function for System V
 #
@@ -56447,6 +63782,19 @@ File: ./lib/round.c
 Hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Round toward nearest, breaking ties away from zero.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -56467,6 +63815,19 @@ File: ./lib/roundf.c
 Hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Round toward nearest, breaking ties away from zero.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -56487,6 +63848,19 @@ File: ./lib/roundl.c
 Hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Round toward nearest, breaking ties away from zero.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -56507,6 +63881,18 @@ File: ./lib/rpmatch.c
 Hash: 55373da72f4e3da7649f19e32ad56f0c83c97a9d3259a237b8997c00ddcf5b9a
 Copyright: 1996, 1998, 2000, 2002, 2003, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine whether string value is affirmation or negative response
 #   according to current locale's data.
@@ -56527,6 +63913,18 @@ File: ./lib/safe-alloc.c
 Hash: 9844c4950cc5bf374ef430b7dc9b69be026b2120e88864e26aea2bbf2855ae62
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * safe-alloc.c: safer memory allocation
@@ -56547,6 +63945,18 @@ File: ./lib/safe-alloc.h
 Hash: 5211b4e3531c33d28506f04532eeffb65e8df0d999c5b9a00e3f36d3fe7bf46c
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * safe-alloc.h: safer memory allocation
@@ -56567,6 +63977,18 @@ File: ./lib/safe-read.c
 Hash: d12efe172ef14861fdb86cf76cb61277327a60cabf2a7afdafc1ade15afb9187
 Copyright: 1993, 1994, 1998, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* An interface to read and write that retries after interrupts.
 #
@@ -56586,6 +64008,18 @@ File: ./lib/safe-read.h
 Hash: 2667a28d26546c5be4bcaa1fca81b4e13cd518f9717d314db29d047fdd7494d6
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* An interface to read() that retries after interrupts.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -56606,6 +64040,18 @@ File: ./lib/safe-write.c
 Hash: 6aa76f15c5e0ee9a8e0b1be63deb69b31fe263a9d1c5c10ffb2e8fe6dcd7c0f1
 Copyright: 2002 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* An interface to write that retries after interrupts.
 #   Copyright (C) 2002 Free Software Foundation, Inc.
@@ -56626,6 +64072,18 @@ File: ./lib/safe-write.h
 Hash: 8179ca35d82597a466d03026c42e05761523d0036556a873fe42692f500476ae
 Copyright: 2002 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* An interface to write() that retries after interrupts.
 #   Copyright (C) 2002 Free Software Foundation, Inc.
@@ -56646,6 +64104,18 @@ File: ./lib/same-inode.h
 Hash: 81b80979de8a7e53f45381e99597bc7390cfaa00e499dac502c31c58415b42a8
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine whether two stat buffers refer to the same file.
 #
@@ -56666,6 +64136,18 @@ File: ./lib/same.c
 Hash: ce1a1ec04e3aec75a5006861db979396761bc69c62096f1996e7ba2f5f3bbba4
 Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine whether two file names refer to the same file.
 #
@@ -56685,6 +64167,18 @@ File: ./lib/same.h
 Hash: 01df5ca3af0102dba2561b287d19d5651e891876ac5c54f1dde91b7bd23bb64c
 Copyright: 1997, 1998, 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine whether two file names refer to the same file.
 #
@@ -56704,6 +64198,18 @@ File: ./lib/save-cwd.c
 Hash: 422df5e09ad67e75a7c147e25f3da9a175fa80d7259241a3da6155c5ce96f539
 Copyright: 1995, 1997, 1998, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* save-cwd.c -- Save and restore current working directory.
 #
@@ -56723,6 +64229,18 @@ File: ./lib/save-cwd.h
 Hash: 4b0e13da5aef3208b1bce2ab1b10c453cbf1e370c969b41bac7be51e2b76e809
 Copyright: 1995, 1997, 1998, 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Save and restore current working directory.
 #
@@ -56743,6 +64261,18 @@ File: ./lib/savedir.c
 Hash: 928cfb9bf8e834b1b6ef7b1825e58d6b44fd5770a7cea787dd66589c84e8c274
 Copyright: 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* savedir.c -- save the list of files in a directory in a string
 #
@@ -56762,6 +64292,18 @@ File: ./lib/savedir.h
 Hash: cfa56cb818e618c3fe57c975e9f0c5ba8723bc62e0de5473481cd5587cbe8350
 Copyright: 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Save the list of files in a directory in a string.
 #
@@ -56782,6 +64324,18 @@ File: ./lib/savewd.c
 Hash: 587bc08918885aa18f980c1c6950d2dcd55e2ffa0c869d562185891b6960dc6f
 Copyright: 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Save and restore the working directory, possibly using a child process.
 #
@@ -56802,6 +64356,18 @@ File: ./lib/savewd.h
 Hash: 6d491cbfc2163751c419f2376a46d56cb899e625395ca51efb08dfeb6ad2b7ea
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Save and restore the working directory, possibly using a subprocess.
 #
@@ -56822,6 +64388,19 @@ File: ./lib/scandir.c
 Hash: 2bea6e6d81d5f7fd79619df895eaf13e5823217eeabbf1ef38c343dc53d17b06
 Copyright: 1992-1998, 2000, 2002, 2003, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 1992-1998, 2000, 2002, 2003, 2009 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -56842,6 +64421,18 @@ File: ./lib/sched.in.h
 Hash: 5c835c4e5fd04776b804eab97562bd18f61757bfecab83a838e62f90997512b6
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Replacement <sched.h> for platforms that lack it.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -56900,6 +64491,18 @@ File: ./lib/search.in.h
 Hash: 98707f0a63adefec5733713c576243f083b682775057a7d5971cef4277fc8960
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* A GNU-like <search.h>.
 #
@@ -56920,6 +64523,19 @@ File: ./lib/select.c
 Hash: db938a6d1b5d591ba63dd3673bb2ccd0ecd9f8b9fcaad86d3c607368122268a8
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Emulation for select(2)
 #   Contributed by Paolo Bonzini.
@@ -56940,6 +64556,18 @@ File: ./lib/selinux-at.c
 Hash: e73ac0c418e767f09a8d77674df132f0b446c5448c43a1d9303e58907d17018f
 Copyright: 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* openat-style fd-relative functions for SE Linux
 #   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
@@ -56960,6 +64588,18 @@ File: ./lib/selinux-at.h
 Hash: 2e95007054f57abccc9c2dbc0df4520778025ef925f3b74873d5d58af819e36e
 Copyright: 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Prototypes for openat-style fd-relative SELinux functions
 #   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
@@ -56980,6 +64620,18 @@ File: ./lib/send.c
 Hash: 47748f45a6a25cadf5542f9543f49778f7ea6b2c87fef1bf9926c8c66e7f5661
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* send.c --- wrappers for Windows send function
 #
@@ -57000,6 +64652,18 @@ File: ./lib/sendto.c
 Hash: 634c06211e79ad265f869003e97612a84a67d40fa6d275ace86b12592b0a8eab
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* sendto.c --- wrappers for Windows sendto function
 #
@@ -57020,6 +64684,18 @@ File: ./lib/set-mode-acl.c
 Hash: e859e38ad22b32346c568c33be9a662b92a792f63402be0645020fe91e7a865e
 Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* set-mode-acl.c - set access control list equivalent to a mode
 #
@@ -57040,6 +64716,18 @@ File: ./lib/setenv.c
 Hash: 5927758c893aede52f8fdc5263d4117e4614fb619646a37d5464b249f19cc91e
 Copyright: 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57060,6 +64748,18 @@ File: ./lib/setsockopt.c
 Hash: 1fe9bb029b10267e47bbc61360ce31f9915584f8824b3da8569b084bba160c32
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* setsockopt.c --- wrappers for Windows setsockopt function
 #
@@ -57080,6 +64780,18 @@ File: ./lib/settime.c
 Hash: f3fef53696d8c8b81a746528ddebe430eabebc29f83bae24fefffef92380d23e
 Copyright: 2002, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* settime -- set the system clock
 #
@@ -57099,6 +64811,18 @@ File: ./lib/sh-quote.c
 Hash: 27a65b308d278b6fdef8dcaac9558d0d90b8ff6974551e8892d1767765097bc7
 Copyright: 2001-2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Shell quoting.
 #   Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc.
@@ -57119,6 +64843,18 @@ File: ./lib/sh-quote.h
 Hash: e049a481e491c1fd1433d5f930becd727d362737d16f575f5108daf88ed3e08e
 Copyright: 2001-2002, 2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Shell quoting.
 #   Copyright (C) 2001-2002, 2004 Free Software Foundation, Inc.
@@ -57139,6 +64875,19 @@ File: ./lib/sha1.c
 Hash: e6f4ad18bb6193ea3a3c57b7bdd4d4c371e65ba20e2af676b3fd8578c462c6e9
 Copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* sha1.c - Functions to compute SHA1 message digest of files or
 #   memory blocks according to the NIST specification FIPS-180-1.
@@ -57159,6 +64908,19 @@ File: ./lib/sha1.h
 Hash: 59bead7118f2949f37fdfa01470646bd275f2507e9be8ab76882bbe653057d9b
 Copyright: 2000, 2001, 2003, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Declarations of functions and data types used for SHA1 sum
 #   library functions.
@@ -57178,6 +64940,18 @@ File: ./lib/sha256.c
 Hash: 3425dcf95c1f50702ebec678cc893f4d4c851054bf580de3d9a3f56bd0e01978
 Copyright: 2005, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* sha256.c - Functions to compute SHA256 and SHA224 message digest of files or
 #   memory blocks according to the NIST specification FIPS-180-2.
@@ -57197,6 +64971,18 @@ File: ./lib/sha256.h
 Hash: 66581e4bc70d286563b89d7bb632dc9f3591df5dc926494ef60ac5e1ffb478ab
 Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Declarations of functions and data types used for SHA256 and SHA224 sum
 #   library functions.
@@ -57217,6 +65003,18 @@ File: ./lib/sha512.c
 Hash: 2d33540040b9cfd894cfda268216acf3ba9cf967d1e536a8661ae9bbf6b2e4ff
 Copyright: 2005, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* sha512.c - Functions to compute SHA512 and SHA384 message digest of files or
 #   memory blocks according to the NIST specification FIPS-180-2.
@@ -57236,6 +65034,18 @@ File: ./lib/sha512.h
 Hash: ee0dec75a513f6772789a0b6bf0ee1ead955abeb34696a489d19ec6e13e3388b
 Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Declarations of functions and data types used for SHA512 and SHA384 sum
 #   library functions.
@@ -57256,6 +65066,18 @@ File: ./lib/shutdown.c
 Hash: 51160b16d7393090800e4bf94a60a1df431f62ec86b1ae2f26a6c51152458de6
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* shutdown.c --- wrappers for Windows shutdown function
 #
@@ -57276,6 +65098,18 @@ File: ./lib/sig-handler.h
 Hash: dc43801fc9a9f3dc8ba0d661a7db3e864cb14324b7c2cb2196f3b59a89fd6159
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convenience declarations when working with <signal.h>.
 #
@@ -57296,6 +65130,18 @@ File: ./lib/sig2str.c
 Hash: ca70d2eda30326ad5a9d6cf9336be308827519fa3ec0a948ddb151f104506663
 Copyright: 2002, 2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* sig2str.c -- convert between signal names and numbers
 #
@@ -57316,6 +65162,18 @@ File: ./lib/sig2str.h
 Hash: e5747ec456c7780cd6b05fbfd22631cbc4bd955a230a013649b51f33a60b8011
 Copyright: 2002, 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* sig2str.h -- convert between signal names and numbers
 #
@@ -57336,6 +65194,18 @@ File: ./lib/sigaction.c
 Hash: 961a07c6f2a1fa494905a8c380725451d27e61e2cade6aff296fd560d9f41564
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* POSIX compatible signal blocking.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -57356,6 +65226,18 @@ File: ./lib/siglist.h
 Hash: 1f7435d5ada1229db0e79551b2d1ded46d3de7caa6030ade8ed1a9c8385b7475
 Copyright: 1996,97,98,99,2008 Free Software Foundation, Inc.
 License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Canonical list of all signal names.
 #   Copyright (C) 1996,97,98,99,2008 Free Software Foundation, Inc.
@@ -57376,6 +65258,18 @@ File: ./lib/signal.in.h
 Hash: a49f6db94dacf94abe74624ea1ddddc7559f95c8feb120e671e0b4ff215382ef
 Copyright: 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* A GNU-like <signal.h>.
 #
@@ -57396,6 +65290,18 @@ File: ./lib/signbitd.c
 Hash: 4fe9d03e71253b7cb6553e84b2c0c91449a1cac16afa810f0e5f1db489edd244
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* signbit() macro: Determine the sign bit of a floating-point number.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -57416,11 +65322,23 @@ File: ./lib/signbitf.c
 Hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
 Copyright: 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
-#Header:
-#/* signbit() macro: Determine the sign bit of a floating-point number.
-#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
-#
-#   This program is free software: you can redistribute it and/or modify
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* signbit() macro: Determine the sign bit of a floating-point number.
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
 #   it under the terms of the GNU General Public License as published by
 #   the Free Software Foundation; either version 3 of the License, or
 #   (at your option) any later version.
@@ -57436,6 +65354,18 @@ File: ./lib/signbitl.c
 Hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
 Copyright: 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* signbit() macro: Determine the sign bit of a floating-point number.
 #   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
@@ -57456,6 +65386,18 @@ File: ./lib/sigpipe-die.c
 Hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Report a SIGPIPE signal and exit.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -57476,6 +65418,18 @@ File: ./lib/sigpipe-die.h
 Hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Report a SIGPIPE signal and exit.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -57496,6 +65450,18 @@ File: ./lib/sigprocmask.c
 Hash: 64a5bd137e4ffceed28ce56b1c3ebeebbf5a2bceb1dbf8274afb4563db1a856e
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* POSIX compatible signal blocking.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -57516,6 +65482,18 @@ File: ./lib/sincosl.c
 Hash: 1772f687d81fd114abb5d80bbb46c95f407f818faa4b6c89cf9c0eb57f2e536d
 Copyright: 1999, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Quad-precision floating point trigonometric functions on <-pi/4,pi/4>.
 #   Copyright (C) 1999, 2006, 2007 Free Software Foundation, Inc.
@@ -57552,6 +65530,19 @@ File: ./lib/size_max.h
 Hash: 26c9e27b3895dc767fb1cd998cd3d2039f08bc4eb973ca8344a2957a21ea8d3f
 Copyright: 2005-2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* size_max.h -- declare SIZE_MAX through system headers
 #   Copyright (C) 2005-2006 Free Software Foundation, Inc.
@@ -57572,6 +65563,18 @@ File: ./lib/sleep.c
 Hash: 648a1c7305e84d30515cb11664201e9544fe1f2d824adb21b4e66a75bbfaaf7f
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Pausing execution of the current thread.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -57592,6 +65595,19 @@ File: ./lib/snprintf.c
 Hash: da7f665f0930c194dc67de8e3f84305d1d9efb6941fb0c1f75bfb3017e6e2501
 Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
@@ -57612,6 +65628,18 @@ File: ./lib/socket.c
 Hash: 73aa233a19dcdef4826a6e9c76995947a86d2671e189f51b08cd39743b9395ab
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* socket.c --- wrappers for Windows socket function
 #
@@ -57632,6 +65660,18 @@ File: ./lib/sockets.c
 Hash: 99bf26833d5e9d9cd2556408cf92c515c24d6f5473b27e278d51604655b38611
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* sockets.c --- wrappers for Windows socket functions
 #
@@ -57652,6 +65692,18 @@ File: ./lib/sockets.h
 Hash: 2c890a5e463ceb8ea9e9bbdb6f2a4a07c745c89fe71888191634079bd96b28d3
 Copyright: 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* sockets.h - wrappers for Windows socket functions
 #
@@ -57672,6 +65724,18 @@ File: ./lib/spawn.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57692,6 +65756,18 @@ File: ./lib/spawn.in.h
 Hash: dd423bdec70d026b36d8aca617a940f03fe19b9a450e3981de91dfdad00e2a4a
 Copyright: 2000, 2003, 2004, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Definitions for POSIX spawn interface.
 #   Copyright (C) 2000, 2003, 2004, 2008 Free Software Foundation, Inc.
@@ -57712,6 +65788,18 @@ File: ./lib/spawn_faction_addclose.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57732,6 +65820,18 @@ File: ./lib/spawn_faction_adddup2.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57752,6 +65852,18 @@ File: ./lib/spawn_faction_addopen.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57772,6 +65884,18 @@ File: ./lib/spawn_faction_destroy.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57792,6 +65916,18 @@ File: ./lib/spawn_faction_init.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57812,6 +65948,18 @@ File: ./lib/spawn_int.h
 Hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
 Copyright: 2000, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000, 2008 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57832,6 +65980,18 @@ File: ./lib/spawnattr_destroy.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57852,6 +66012,18 @@ File: ./lib/spawnattr_getdefault.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57872,6 +66044,18 @@ File: ./lib/spawnattr_getflags.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57892,6 +66076,18 @@ File: ./lib/spawnattr_getpgroup.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57912,6 +66108,18 @@ File: ./lib/spawnattr_getschedparam.c
 Hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
 Copyright: 2000, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000, 2008 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57932,6 +66140,18 @@ File: ./lib/spawnattr_getschedpolicy.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57952,6 +66172,18 @@ File: ./lib/spawnattr_getsigmask.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57972,6 +66204,18 @@ File: ./lib/spawnattr_init.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -57992,6 +66236,18 @@ File: ./lib/spawnattr_setdefault.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -58012,6 +66268,18 @@ File: ./lib/spawnattr_setflags.c
 Hash: 7f583d13179aba639b22ec305fd749afdeecb96823d2c32cb4dd9294a51bdbd2
 Copyright: 2000, 2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000, 2004 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -58032,6 +66300,18 @@ File: ./lib/spawnattr_setpgroup.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -58052,6 +66332,18 @@ File: ./lib/spawnattr_setschedparam.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -58072,6 +66364,18 @@ File: ./lib/spawnattr_setschedpolicy.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -58092,6 +66396,18 @@ File: ./lib/spawnattr_setsigmask.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -58112,6 +66428,18 @@ File: ./lib/spawni.c
 Hash: 62be6e45aaad94e9dbc02b27f7dba559de55fac508f2e3954479674ce637e015
 Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Guts of POSIX spawn interface.  Generic POSIX.1 version.
 #   Copyright (C) 2000-2006, 2008-2009 Free Software Foundation, Inc.
@@ -58132,6 +66460,18 @@ File: ./lib/spawnp.c
 Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
 Copyright: 2000 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 2000 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -58152,6 +66492,18 @@ File: ./lib/sprintf.c
 Hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
 Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
@@ -58172,6 +66524,18 @@ File: ./lib/sqrtl.c
 Hash: 755a6706b4cfafc6b498d6efa76315b826063474b7f91834ef5aac159f116c5e
 Copyright: 2002, 2003, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Emulation for sqrtl.
 #   Contributed by Paolo Bonzini
@@ -58200,6 +66564,18 @@ File: ./lib/stat-time.h
 Hash: 9aba76bc91ed527925d4c43ee4224d8ef90fa0d21475d5e4fe2976cf797daa08
 Copyright: 2005, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* stat-related time functions.
 #
@@ -58220,6 +66596,19 @@ File: ./lib/stdarg.in.h
 Hash: fed8bc6587d9b9b46807cec06b2104a0c7f4f4edd00f5c3104c86ab78d64722e
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Substitute for and wrapper around <stdarg.h>.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -58240,6 +66629,19 @@ File: ./lib/stdbool.in.h
 Hash: e8683e07480c37941452e3970f57d5f5bbcd0d742248766ea32158872b843013
 Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
 #   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
@@ -58260,6 +66662,19 @@ File: ./lib/stddef.in.h
 Hash: f3ff9d2469e9e018bbfe1a8d85d2454f7a54673420acdb29aa429cd583e45834
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* A substitute for POSIX 2008 <stddef.h>, for platforms that have issues.
 #
@@ -58280,6 +66695,19 @@ File: ./lib/stdint.in.h
 Hash: 31871000acd29901edf1cd726ea2f32b9837e497b9e19a49c00374e0291c1997
 Copyright: 2001-2002, 2004-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 2001-2002, 2004-2009 Free Software Foundation, Inc.
 #   Written by Paul Eggert, Bruno Haible, Sam Steingold, Peter Burwood.
@@ -58300,6 +66728,18 @@ File: ./lib/stdio--.h
 Hash: 8c7711ff90032c75717f2f7363d9a7ee7e94afa86d29510878f66dba39bb3f5b
 Copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Like stdio.h, but redefine some names to avoid glitches.
 #
@@ -58320,6 +66760,18 @@ File: ./lib/stdio-impl.h
 Hash: 1ab5922a50832223e0ffc2c70fc544f9d91a363ecb50bcdb55e55c991d88b33d
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Implementation details of FILE streams.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -58340,6 +66792,18 @@ File: ./lib/stdio-safer.h
 Hash: bcaf909a5c5f8071d1141fe63d90c50832df9f511b5934124b18613c2cc60631
 Copyright: 2001, 2003, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke stdio functions, but avoid some glitches.
 #
@@ -58360,15 +66824,27 @@ File: ./lib/stdio-write.c
 Hash: ef387fa21fd98ef04fd7a0c63399aecb0f271036efc4d192baeca9c964fb1b05
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
-#Header:
-#/* POSIX compatible FILE stream write function.
-#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
-#   Written by Bruno Haible <bruno@clisp.org>, 2008.
-#
-#   This program is free software: you can redistribute it and/or modify
-#   it under the terms of the GNU General Public License as published by
-#   the Free Software Foundation; either version 3 of the License, or
-#   (at your option) any later version.
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* POSIX compatible FILE stream write function.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 3 of the License, or
+#   (at your option) any later version.
 #
 #   This program is distributed in the hope that it will be useful,
 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -58380,6 +66856,19 @@ File: ./lib/stdio.in.h
 Hash: 90996147d8e36f5883486d804050c8256ebd75940339821fbe964fc12816a9db
 Copyright: 2004, 2007-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* A GNU-like <stdio.h>.
 #
@@ -58400,6 +66889,18 @@ File: ./lib/stdlib--.h
 Hash: 6f719ffb3bd563d1191de42881829b2e53ac17d32dd1d6708c4c22b0c065181b
 Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Like stdlib.h, but redefine some names to avoid glitches.
 #
@@ -58420,6 +66921,18 @@ File: ./lib/stdlib-safer.h
 Hash: ad05b244170755ded620afdb4d6a499a61182625b45f4458df212dd48b9b05fc
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke stdlib.h functions, but avoid some glitches.
 #
@@ -58440,6 +66953,18 @@ File: ./lib/stdlib.in.h
 Hash: 0ffeef75662fb92247d373df32beb5d8dcc8d52845a1a0cf2e3afe0f75df2164
 Copyright: 1995, 2001-2004, 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* A GNU-like <stdlib.h>.
 #
@@ -58460,6 +66985,18 @@ File: ./lib/stpcpy.c
 Hash: e277a69ab969893f97dbf9b683e7462bd56bb4a3d83e01b3637c705a0b240b0d
 Copyright: 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* stpcpy.c -- copy a string and return pointer to end of new string
 #   Copyright (C) 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc.
@@ -58480,6 +67017,18 @@ File: ./lib/stpncpy.c
 Hash: 63243814e0160f070d456614689aea5b26f421817aa249c25f3449b22bd82220
 Copyright: 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc.
 #
@@ -58499,6 +67048,19 @@ File: ./lib/str-kmp.h
 Hash: 6ebb0ef34e3af533dd72b1cac88faebfab78edf50fcbe16d66a8f53ad4da159a
 Copyright: 2005-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Substring search in a NUL terminated string of 'char' elements,
 #   using the Knuth-Morris-Pratt algorithm.
@@ -58518,6 +67080,19 @@ File: ./lib/str-two-way.h
 Hash: 333e7d492bb7a06bd7eceb738c5bbfaa45fd376cd1fa873159ae6c102fb5abe8
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Byte-wise substring search, using the Two-Way algorithm.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -58537,6 +67112,19 @@ File: ./lib/strcasecmp.c
 Hash: 9fac5af7b69ba93dda82ad7e40d81dce148b1b3805ad1f85e96ed8f361e75307
 Copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Case-insensitive string comparison function.
 #   Copyright (C) 1998-1999, 2005-2007 Free Software Foundation, Inc.
@@ -58557,6 +67145,19 @@ File: ./lib/strcasestr.c
 Hash: df44f98303720564f510cd6080f83b2479ba81a607e0ff35a70065d332775e9d
 Copyright: 2005-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Case-insensitive searching in a string.
 #   Copyright (C) 2005-2008 Free Software Foundation, Inc.
@@ -58577,6 +67178,18 @@ File: ./lib/strchrnul.c
 Hash: 4f484d4cc0befecd8997334083c58252e9234ad7b53c9ed4e68dbb21366491ea
 Copyright: 2003, 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Searching in a string.
 #   Copyright (C) 2003, 2007, 2008 Free Software Foundation, Inc.
@@ -58614,6 +67227,18 @@ File: ./lib/strcspn.c
 Hash: 9c6096a1c313c8363bc4fb7ea9c8670d50859635fa4fbf18354f17b98fcdf6e4
 Copyright: 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software Foundation, Inc.
 #
@@ -58633,6 +67258,19 @@ File: ./lib/strdup.c
 Hash: 12e93fe471e7edcd885e207e311df99c6d850b7b9ca5c3b28e39e316c66fb2ab
 Copyright: 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 Free
 #   Software Foundation, Inc.
@@ -58652,6 +67290,18 @@ File: ./lib/streq.h
 Hash: 9830f7c0042519dd01e35295d2e694c760b032cd222a31f3855f44b1a526e12c
 Copyright: 2001-2002, 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Optimized string comparison.
 #   Copyright (C) 2001-2002, 2007 Free Software Foundation, Inc.
@@ -58672,6 +67322,18 @@ File: ./lib/strerror.c
 Hash: f4503783120d3b66707b724877e32b0ea1eda13cbf9e79f4640b32e3f44c7019
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* strerror.c --- POSIX compatible system error routine
 #
@@ -58692,6 +67354,18 @@ File: ./lib/strftime.c
 Hash: 7600ea0821aa8b38178ea32004b358cc84e69df14ea395dd865c955b8677c320
 Copyright: 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software
 #   Foundation, Inc.
@@ -58712,6 +67386,18 @@ File: ./lib/strftime.h
 Hash: 4c32312ac57884519ab011ab68c92dd237dd76c2f232cd5395e8d283f365bc1e
 Copyright: 2002, 2004, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* declarations for strftime.c
 #
@@ -58732,6 +67418,19 @@ File: ./lib/striconv.c
 Hash: 5e8b516e5b0f28f80803a45eb2c6be6a4c0a2282bedc384d0c3b6324c3d0df55
 Copyright: 2001-2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Charset conversion.
 #   Copyright (C) 2001-2007 Free Software Foundation, Inc.
@@ -58752,6 +67451,19 @@ File: ./lib/striconv.h
 Hash: daea9a49adb2283a8f85bb18fda76f59028c8bfdd046db63226ca0c0e0350702
 Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Charset conversion.
 #   Copyright (C) 2001-2004, 2006-2007 Free Software Foundation, Inc.
@@ -58772,6 +67484,18 @@ File: ./lib/striconveh.c
 Hash: 34bb63b9a451ec7185541467e05029b4d5fbd1cbf5a03d3fe84ac381843e053c
 Copyright: 2001-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Character set conversion with error handling.
 #   Copyright (C) 2001-2009 Free Software Foundation, Inc.
@@ -58792,6 +67516,18 @@ File: ./lib/striconveh.h
 Hash: 86eb681bccb0a53f2a391f680da5d74679c2482f39258d92ef8d6b0ef17ab474
 Copyright: 2001-2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Character set conversion with error handling.
 #   Copyright (C) 2001-2007, 2009 Free Software Foundation, Inc.
@@ -58812,6 +67548,18 @@ File: ./lib/striconveha.c
 Hash: 5cb3167be3296d381de5cc20753a6e13eb849c736c76cdf79875fa9ffa1a41ea
 Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Character set conversion with error handling and autodetection.
 #   Copyright (C) 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
@@ -58832,6 +67580,18 @@ File: ./lib/striconveha.h
 Hash: d78d74cdfaacc28ecd3e6b1d1c1934ef42f23ffe6e6a940c2fd8b9f3396d78b5
 Copyright: 2002, 2005, 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Character set conversion with error handling and autodetection.
 #   Copyright (C) 2002, 2005, 2007-2009 Free Software Foundation, Inc.
@@ -58852,6 +67612,19 @@ File: ./lib/string.in.h
 Hash: 1136d0b98b57be6dd7253ef5cacf9f4da5f028f2d885723c8bbc35a3ab13745b
 Copyright: 1995-1996, 2001-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* A GNU-like <string.h>.
 #
@@ -58872,6 +67645,19 @@ File: ./lib/strings.in.h
 Hash: 10e5bc3121d2994aa8fc0890d99464664f2b9d6f3e67177e371d1f4c072bc250
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* A substitute <strings.h>.
 #
@@ -58892,6 +67678,18 @@ File: ./lib/stripslash.c
 Hash: ca9f072b31bf11e52cbb5c73957988d28de77f56c962b0785f07af77418be677
 Copyright: 1990, 2001, 2003-2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* stripslash.c -- remove redundant trailing slashes from a file name
 #
@@ -58912,6 +67710,19 @@ File: ./lib/strncasecmp.c
 Hash: 815116d5f75c679aca0d1bb421a8370e66e40168c384ed9dd6a98d3f5ca83391
 Copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* strncasecmp.c -- case insensitive string comparator
 #   Copyright (C) 1998-1999, 2005-2007 Free Software Foundation, Inc.
@@ -58932,6 +67743,19 @@ File: ./lib/strndup.c
 Hash: 493b47a8d6f269acc1510b98b35176cc820945e10980a25eff018b436ae1bcfe
 Copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* A replacement function, for systems that lack strndup.
 #
@@ -58951,6 +67775,19 @@ File: ./lib/strnlen.c
 Hash: 90b853a0e4af9628fcd17de3f30a70c1a406d6517e1d18a5f5b9413c856b1c10
 Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Find the length of STRING, but scan at most MAXLEN characters.
 #   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
@@ -58971,6 +67808,18 @@ File: ./lib/strnlen1.c
 Hash: ca122eb96644afef5d06ddd05a5ee8d1672a9df41eb9dee6a04360b119d62dac
 Copyright: 2005-2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Find the length of STRING + 1, but scan at most MAXLEN bytes.
 #   Copyright (C) 2005-2006 Free Software Foundation, Inc.
@@ -58991,6 +67840,18 @@ File: ./lib/strnlen1.h
 Hash: 150c8f3b97a0d8163ec53ce9eeac9922489186f5ca66d9250750116cb1f8a5c1
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Find the length of STRING + 1, but scan at most MAXLEN bytes.
 #   Copyright (C) 2005 Free Software Foundation, Inc.
@@ -59011,6 +67872,19 @@ File: ./lib/strpbrk.c
 Hash: 96b98866fadc00e26886d758144724ccbbc594f237800fb4314473bede51c53e
 Copyright: 1991, 1994, 2000, 2002-2003, 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 1991, 1994, 2000, 2002-2003, 2006 Free Software
 #   Foundation, Inc.
@@ -59031,6 +67905,19 @@ File: ./lib/strptime.c
 Hash: e7a81072f584025045e8cd27a8aed09e13a467c6a3a157eee758bd6613856191
 Copyright: 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -59051,6 +67938,19 @@ File: ./lib/strsep.c
 Hash: af7bac86580b20527ae1d65b6b78a1b038b7b9e0b005a67835c2058a71215932
 Copyright: 2004, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 2004, 2007 Free Software Foundation, Inc.
 #
@@ -59071,6 +67971,18 @@ File: ./lib/strsignal.c
 Hash: e182db866c03cb48b20804d461064af0a10923ccec042890b5604c9c43d228ca
 Copyright: 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc.
 License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -59091,6 +68003,19 @@ File: ./lib/strstr.c
 Hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
 Copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software
 #   Foundation, Inc.
@@ -59111,6 +68036,18 @@ File: ./lib/strtod.c
 Hash: 528883e0f68c192c7f4c418737f36efc6ede11ce51636f8145c70d1101163e8b
 Copyright: 1991, 1992, 1997, 1999, 2003, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1991, 1992, 1997, 1999, 2003, 2006, 2008 Free
 #   Software Foundation, Inc.
@@ -59131,6 +68068,18 @@ File: ./lib/strtoimax.c
 Hash: 7973e7dce509583335e94002f1d80e0f651365102e54f37f6643260b5a0f3a11
 Copyright: 1999, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert string representation of a number into an intmax_t value.
 #
@@ -59150,6 +68099,18 @@ File: ./lib/strtok_r.c
 Hash: aef52797442d97f89d26281a0226055638efc2009e04f911fb4bbbccf7671efb
 Copyright: 1991,1996-1999,2001,2004,2007,2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Reentrant string tokenizer.  Generic version.
 #   Copyright (C) 1991,1996-1999,2001,2004,2007,2009 Free Software Foundation, Inc.
@@ -59170,6 +68131,18 @@ File: ./lib/strtol.c
 Hash: 9a28728b276103445a0aa97cad8332a2cc26aa2b9be2c964b2c166b56391b73c
 Copyright: 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert string representation of a number into an integer value.
 #
@@ -59190,6 +68163,18 @@ File: ./lib/strtoll.c
 Hash: ffeacd90d3869005c1cbaa8aa6090606681dd0ce4407a93a241510abba0719ea
 Copyright: 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Function to parse a `long long int' from text.
 #   Copyright (C) 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc.
@@ -59210,6 +68195,18 @@ File: ./lib/strtoul.c
 Hash: be855c203200b5a984ae3290890f46d4580f377b4bdafd0266e7873dab9b1731
 Copyright: 1991, 1997 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1991, 1997 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -59230,6 +68227,18 @@ File: ./lib/strtoull.c
 Hash: a844c45a1416b2420bd76bef0e85cb2d0a7e363cf88325e65d285bbf5882e58e
 Copyright: 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Function to parse an `unsigned long long int' from text.
 #   Copyright (C) 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
@@ -59256,6 +68265,19 @@ File: ./lib/strverscmp.c
 Hash: dd6243d19084dfaafaac9441be9a71dde27f33c595c685beee735da6b4158cf4
 Copyright: 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Compare strings while treating digits characters numerically.
 #   Copyright (C) 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc.
@@ -59275,6 +68297,18 @@ File: ./lib/symlinkat.c
 Hash: dcc854e76c58e26c2b9f652e67d1f4d656d1115d1dc966d5a8ac27025490d91a
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Create a symlink relative to an open directory.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -59295,6 +68329,19 @@ File: ./lib/sys_file.in.h
 Hash: 868915ed2b23fee8738485eaf605b0f29674ea76f2f27fc0a330c7e40476e7e1
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Provide a more complete sys/file.h.
 #
@@ -59315,6 +68362,19 @@ File: ./lib/sys_ioctl.in.h
 Hash: 5a85be194ab973fc6eee2464d2f6043be6ca5a0e0ca50c24c8e1947d3ba9c366
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Substitute for and wrapper around <sys/ioctl.h>.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -59335,6 +68395,19 @@ File: ./lib/sys_select.in.h
 Hash: 6385d79cdb0b4995cd2158dcdc2df844a99ee46a25909c5c4f1227065077e6a8
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Substitute for <sys/select.h>.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -59355,6 +68428,19 @@ File: ./lib/sys_socket.in.h
 Hash: 362d22c2394c4e40e8e2f5184c97bbd879f5b56d4ee18b4d91e7c6e29b7deaf9
 Copyright: 2005-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Provide a sys/socket header file for systems lacking it (read: MinGW)
 #   and for systems where it is incomplete.
@@ -59374,6 +68460,19 @@ File: ./lib/sys_stat.in.h
 Hash: e70e9a10084c5f7be3fb6d2aa62228b6f5ded082be4afadd19c01d119c502415
 Copyright: 2005-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Provide a more complete sys/stat header file.
 #   Copyright (C) 2005-2009 Free Software Foundation, Inc.
@@ -59394,6 +68493,19 @@ File: ./lib/sys_time.in.h
 Hash: 808d4417fc9f057d4ad55b6add3f133d03a5322fabe3dcfe925bd47d14616a66
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Provide a more complete sys/time.h.
 #
@@ -59414,6 +68526,19 @@ File: ./lib/sys_times.in.h
 Hash: 3cf5a711d1c92858d4b654284c43c7ecc25d06763f8418c2e54c3309c914a541
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Provide a sys/times.h header file.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -59434,6 +68559,19 @@ File: ./lib/sys_utsname.in.h
 Hash: fae5021bf23d69bd35dc0d59126fd5506a194d7b57a8c0ffca7d480f8843b12f
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Substitute for <sys/utsname.h>.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -59454,6 +68592,19 @@ File: ./lib/sys_wait.in.h
 Hash: 3c64ce849ea907e265c1bb91f56556fa9f828395cf62f5192851eda0f62cf63e
 Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* A POSIX-like <sys/wait.h>.
 #   Copyright (C) 2001-2003, 2005-2008 Free Software Foundation, Inc.
@@ -59474,6 +68625,18 @@ File: ./lib/sysexits.in.h
 Hash: 2f0fc879d2f3a165ed05292bd2ce8f091f60eced3a2fa6f8fc1445ed4548a5d0
 Copyright: 2003, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* exit() exit codes for some BSD system programs.
 #   Copyright (C) 2003, 2006-2008 Free Software Foundation, Inc.
@@ -59532,6 +68695,18 @@ File: ./lib/tempname.c
 Hash: f8c04e91069ab576b32bf499cda2face1c55ff82a288717173934b8e70a4dc9b
 Copyright: 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* tempname.c - generate the name of a temporary file.
 #
@@ -59552,6 +68727,18 @@ File: ./lib/tempname.h
 Hash: 3c1441c47f4337bfb8d432fa03ee9b1ebaaa25a5dd874e64f37eb260e8c441ad
 Copyright: 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Create a temporary file or directory.
 #
@@ -59572,6 +68759,19 @@ File: ./lib/time.in.h
 Hash: 41f65ec87233a41b8ccfe9364732c124a99001f260b8ac3570402b0a1628a4e1
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* A more-standard <time.h>.
 #
@@ -59592,6 +68792,19 @@ File: ./lib/time_r.c
 Hash: 5dd79182477034f96e494ee4d68c9e08f882485e73c1bd05f0a650f9a46629c2
 Copyright: 2003, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Reentrant time functions like localtime_r.
 #
@@ -59612,6 +68825,19 @@ File: ./lib/timegm.c
 Hash: f8d8b41a303f3b09ee22b4a9a247f85ffa515b47569011d5abe2f205923fc4ed
 Copyright: 1994, 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Convert UTC calendar time to simple time.  Like mktime but assumes UTC.
 #
@@ -59631,6 +68857,19 @@ File: ./lib/times.c
 Hash: ae2efd1b1623d1978cb2d18227edd02db9d9a9f47dbecc71fbf6806f8da628d1
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Get process times
 #
@@ -59651,6 +68890,18 @@ File: ./lib/timespec.h
 Hash: 9d3c4eda40d629233b24827f15f5dd80c40d897e119a01126bf867193d6be14c
 Copyright: 2000, 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* timespec -- System time interface
 #
@@ -59671,6 +68922,18 @@ File: ./lib/tmpdir.c
 Hash: 9de08a71227a2821978be3e6919f6232ccf2022430447f39b22e612021217871
 Copyright: 1999, 2001-2002, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1999, 2001-2002, 2006 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -59691,6 +68954,18 @@ File: ./lib/tmpdir.h
 Hash: 4b2eb7839ae3ddbdafca11312d499ac3f469953e05e927e65a57b2d9308792ef
 Copyright: 2001-2002 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine a temporary directory.
 #   Copyright (C) 2001-2002 Free Software Foundation, Inc.
@@ -59711,6 +68986,18 @@ File: ./lib/tmpfile-safer.c
 Hash: b6f4f570c8724d3c78e2c7ab73929f9b4a3b30aefc058105e71ec434b5d5fc89
 Copyright: 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke tmpfile, but avoid some glitches.
 #   Copyright (C) 2006, 2009 Free Software Foundation, Inc.
@@ -59731,6 +69018,18 @@ File: ./lib/tmpfile.c
 Hash: 5626c82fc49099877c1350e01f8a80e576b6fdc73ea57162c6989f956945259f
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Create a temporary file.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -59751,6 +69050,18 @@ File: ./lib/trigl.c
 Hash: 8b60f78b69de56a777043569a8e3ccbef997faaac10c41e5bc0f4b450c5a66ae
 Copyright: 1999, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Quad-precision floating point argument reduction.
 #   Copyright (C) 1999, 2007 Free Software Foundation, Inc.
@@ -59770,6 +69081,18 @@ File: ./lib/trigl.h
 Hash: 449a860f004a88ea94a76732170e38c1a861ddabf4f12c537138efbb777195c6
 Copyright: 2002, 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Declarations for sinl, cosl, tanl internal functions
 #   Contributed by Paolo Bonzini
@@ -59790,6 +69113,18 @@ File: ./lib/trim.c
 Hash: 44cefabd5123525fff9af425e47c2ddb0a6a20909271f557f7954ed07cedca92
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Removes leading and/or trailing whitespaces
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -59810,6 +69145,18 @@ File: ./lib/trim.h
 Hash: 9bb7a015426b58554581d2f9b0de5a6befeeaa73d42329bcd2d57fe4dcd84b1b
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Removes leading and/or trailing whitespaces
 #   Copyright (C) 2006 Free Software Foundation, Inc.
@@ -59830,6 +69177,18 @@ File: ./lib/trunc.c
 Hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Round towards zero.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -59850,6 +69209,18 @@ File: ./lib/truncf.c
 Hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Round towards zero.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -59870,6 +69241,18 @@ File: ./lib/truncl.c
 Hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Round towards zero.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -59890,6 +69273,18 @@ File: ./lib/tsearch.c
 Hash: 2db46af0a909abf4d92d20a20556b8de4d7d625028def290071fe4974ed0187b
 Copyright: 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc.
 #   Contributed by Bernd Schmidt <crux@Pool.Informatik.RWTH-Aachen.DE>, 1997.
@@ -59910,6 +69305,18 @@ File: ./lib/u64.h
 Hash: 691a491094cad62e2b863a76aeeed5899b9d8b7ecc6c6aef6ea2cbc1f4fd6dff
 Copyright: 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* uint64_t-like operations that work even on hosts lacking uint64_t
 #
@@ -59946,6 +69353,18 @@ File: ./lib/uname.c
 Hash: 68f248ca49d11bdb00b1adfa2bf6527ea340aed829064d91877566fc4841c919
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* uname replacement.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -59966,6 +69385,18 @@ File: ./lib/unicase.h
 Hash: 5ee6233f3be7001239f84aacf30f5e5ca96631f010b6f91a16a9b6f877642fae
 Copyright: 2002, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Unicode character case mappings.
 #   Copyright (C) 2002, 2009 Free Software Foundation, Inc.
@@ -59986,6 +69417,18 @@ File: ./lib/unicase/cased.c
 Hash: c996cbcd82623c5036d89e080e6689b335915047febbe60fe2d10b98b4a99023
 Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether a Unicode character is cased.
 #   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -60031,6 +69474,18 @@ File: ./lib/unicase/casefold.h
 Hash: d0ff7d9648a8496f25c563ab8a2d7b0a1200cbcb64444b238f29606d4bfc6ecb
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Casefolding of Unicode characters.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60051,6 +69506,18 @@ File: ./lib/unicase/caseprop.h
 Hash: bf76e4707fab507bdb7069d1750d83c55e5e7e355a93af71fd735ad042068179
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case related properties of Unicode characters.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60071,6 +69538,18 @@ File: ./lib/unicase/context.h
 Hash: 13a1c95eebeae5e2b3ff2ca41305b3524504304664cd71a17eaa832894493f23
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-mapping contexts of UTF-8/UTF-16/UTF-32 substring.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60091,6 +69570,18 @@ File: ./lib/unicase/empty-prefix-context.c
 Hash: 493f93cb9eabb70c693a5d984111996d190a98c2c7fe60a7c67fd984414df699
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-mapping context of empty prefix string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60111,6 +69602,18 @@ File: ./lib/unicase/empty-suffix-context.c
 Hash: b55f2b593f51969d89f98c6e7c460af0afa6d588e8123971775b1e2629a44b0a
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-mapping context of empty suffix string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60131,6 +69634,18 @@ File: ./lib/unicase/ignorable.c
 Hash: a8487e39b5d100c90eebc45fa11632191a89a473d5ec421ff55594e53de557bb
 Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether a Unicode character is case-ignorable.
 #   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -60171,6 +69686,18 @@ File: ./lib/unicase/invariant.h
 Hash: 2b5beb7dbf02de63e2b3d6debd2322c0d62a0c2d1f309f0cecfb6daa5de73437
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Internal functions for Unicode character case mappings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60191,6 +69718,18 @@ File: ./lib/unicase/locale-language.c
 Hash: 3add1adc16ce963dcff1fd7b7596b8aafaa5e33639dbaff0dcbc4074d86db3d1
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Language code of current locale.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60231,6 +69770,18 @@ File: ./lib/unicase/simple-mapping.h
 Hash: 895a0e771188c08f6fd448c3cee007eb3cd4ffefa11bb366422bb261dd5c851f
 Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Simple case mapping for Unicode characters.
 #   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
@@ -60271,6 +69822,18 @@ File: ./lib/unicase/special-casing.c
 Hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Special casing table.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60291,6 +69854,18 @@ File: ./lib/unicase/special-casing.h
 Hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Special casing table.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60311,6 +69886,18 @@ File: ./lib/unicase/tocasefold.c
 Hash: 703c9c241129843d8d359363451912cddac5124fd6767b3df0331f490d4cef0d
 Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Casefold mapping for Unicode characters (locale and context independent).
 #   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
@@ -60351,6 +69938,18 @@ File: ./lib/unicase/tolower.c
 Hash: 6ea23704da935f20f2444eb5226c07f8a734da7cf55afdb1219395887e6848ca
 Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Lowercase mapping for Unicode characters (locale and context independent).
 #   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
@@ -60391,6 +69990,18 @@ File: ./lib/unicase/totitle.c
 Hash: 7c2f4b5f520e8591e420340d3d582ec1ad48b0936da5b8893b4d7fb00243a9f8
 Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Titlecase mapping for Unicode characters (locale and context independent).
 #   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
@@ -60431,6 +70042,18 @@ File: ./lib/unicase/toupper.c
 Hash: b42a7680521ba55979491c693e3642382a98438c56de36812766067cc151d3b5
 Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Uppercase mapping for Unicode characters (locale and context independent).
 #   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
@@ -60471,6 +70094,18 @@ File: ./lib/unicase/u-casecmp.h
 Hash: bb95e0aba8ef01b225a0c2888a95a322733d0b39d3206f21b44f00d2b11a430d
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case and normalization insensitive comparison of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60491,6 +70126,18 @@ File: ./lib/unicase/u-casecoll.h
 Hash: d3d6b4ec932f80e78f2e81cc958dcc14ff902e2977a213c27ba521270864a873
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent, case and normalization insensitive comparison of Unicode
 #   strings.
@@ -60510,6 +70157,18 @@ File: ./lib/unicase/u-casefold.h
 Hash: fcee85a09cd481698f5296dae6dde1b8d84d33fb95ff41483cc4788c692812f2
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Casefolding mapping for Unicode strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60530,6 +70189,18 @@ File: ./lib/unicase/u-casemap.h
 Hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case mapping for UTF-8/UTF-16/UTF-32 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60550,6 +70221,18 @@ File: ./lib/unicase/u-casexfrm.h
 Hash: 1639cd4e229bbbf5df8d53b658e691f476f9d9485f16edcfe5d7cc148e86a497
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent transformation for case insensitive comparison of Unicode
 #   strings.
@@ -60569,6 +70252,18 @@ File: ./lib/unicase/u-ct-casefold.h
 Hash: a2275dea893b28c3fe92ae867de9c70a7fdf39001053d9ef2f4091a7497e9c1b
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Casefolding mapping for Unicode substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60589,6 +70284,18 @@ File: ./lib/unicase/u-ct-totitle.h
 Hash: 2570f24e1a280b6b4cb7de56c85279674319e4cea7c2ad984241975245e76226
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Titlecase mapping for UTF-8/UTF-16/UTF-32 substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60609,6 +70316,18 @@ File: ./lib/unicase/u-is-cased.h
 Hash: b4e0b17776175ec6033c0aba5d535daa7c3667a42c53463114840fbf600d5cb9
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether case matters for a Unicode string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60629,6 +70348,18 @@ File: ./lib/unicase/u-is-invariant.h
 Hash: f6e201df57529cae6e7639242610ee3722e3447d1d3ecfd99c67f98811982a3a
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether a Unicode string is invariant under a given case mapping.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60649,6 +70380,18 @@ File: ./lib/unicase/u-prefix-context.h
 Hash: 823e52633d441082aa1489c520794e4fb0ef899378e8e5f75838d66a448ae3a7
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-mapping context of prefix UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60669,6 +70412,18 @@ File: ./lib/unicase/u-suffix-context.h
 Hash: 9c7366f076df0f676f00acef4437ffea7f561447d007d2f7d5476e9e0fd6f74b
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-mapping context of suffix UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60689,6 +70444,18 @@ File: ./lib/unicase/u-totitle.h
 Hash: 245ae2aa6d16c22e82aaabe269a3759b3a45a50bf72453eccfcbd3162c57222b
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Titlecase mapping for UTF-8/UTF-16/UTF-32 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60709,6 +70476,18 @@ File: ./lib/unicase/u16-casecmp.c
 Hash: 3a18bce5adf8c96faba2f53500087a79f62fc9e8e3dfe15ec13f0cb1f547f218
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case and normalization insensitive comparison of UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60729,6 +70508,18 @@ File: ./lib/unicase/u16-casecoll.c
 Hash: cf6f8d7d407a05dee71fb2903a326d279bf99c7dcadbcce7dfe2753b99386a94
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent, case and normalization insensitive comparison of UTF-16
 #   strings.
@@ -60748,6 +70539,18 @@ File: ./lib/unicase/u16-casefold.c
 Hash: 75f35ff374fbb2c36d1d0e23f4a52d96dc924835dea6fbd11181b714a8b9a88c
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Casefolding mapping for UTF-16 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60768,6 +70571,18 @@ File: ./lib/unicase/u16-casemap.c
 Hash: 7ca080531110c4bbc03962b55be3cc21200cdb8dce98b6a8b207c1295bb556d7
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case mapping for UTF-16 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60788,6 +70603,18 @@ File: ./lib/unicase/u16-casexfrm.c
 Hash: 2a3efd68520d13af88078b6294c4fb7eb225b0e8671c614ea31dd446d448278a
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent transformation for case insensitive comparison of UTF-16
 #   strings.
@@ -60807,6 +70634,18 @@ File: ./lib/unicase/u16-ct-casefold.c
 Hash: 24f57fcc73e888d74a192de0090f47f428b35a680d6ad7c69c164dab39ff4c47
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Casefolding mapping for UTF-16 substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60827,6 +70666,18 @@ File: ./lib/unicase/u16-ct-tolower.c
 Hash: d7dd5fefe8bd374e2f5f46c7f77a2521bd272c6078ae4cc013e3d1fc65106b30
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Lowercase mapping for UTF-16 substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60847,6 +70698,18 @@ File: ./lib/unicase/u16-ct-totitle.c
 Hash: 0a0527c17c90268b46de1096fbac12b53e7b60ee1e5077f6e34f7fdb6e648aee
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Titlecase mapping for UTF-16 substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60867,6 +70730,18 @@ File: ./lib/unicase/u16-ct-toupper.c
 Hash: 465b7179f665acb6d3c0e552e8d0d765089dce1ade88007d34a0b367f683f47e
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Uppercase mapping for UTF-16 substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60887,6 +70762,18 @@ File: ./lib/unicase/u16-is-cased.c
 Hash: 9ec0139d88d886ab48d1975d53ebd8a5a09332ce426b8febeb5dba0357f68f3a
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether case matters for an UTF-16 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60907,6 +70794,18 @@ File: ./lib/unicase/u16-is-casefolded.c
 Hash: 9d7f494e9dc39a744a34b4c147d142cbeebddff7b543829ad15cc13a9eb29cbf
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-16 string is already case-folded.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60927,6 +70826,18 @@ File: ./lib/unicase/u16-is-invariant.c
 Hash: dd5c520c3534286f4aa5e4327f9d4c303736f424c95627795342c46aeb781cd8
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-16 string is invariant under a given case mapping.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60947,6 +70858,18 @@ File: ./lib/unicase/u16-is-lowercase.c
 Hash: 204472e2bec896b7e33430f737c98353a125ff880b31094642769f4b2f7577ba
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-16 string is entirely lower case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60967,6 +70890,18 @@ File: ./lib/unicase/u16-is-titlecase.c
 Hash: ee90d96cfa019ed4e11214211d2ea9730eb6f098dbff34c2db011a1757c91e87
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-16 string is entirely title case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -60987,6 +70922,18 @@ File: ./lib/unicase/u16-is-uppercase.c
 Hash: 010d6156b827f55f04ceacc5bc59dcf08fab12f5db42c4636d41a15292ad1ce1
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-16 string is entirely upper case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61007,6 +70954,18 @@ File: ./lib/unicase/u16-prefix-context.c
 Hash: da3309e1a77a472f5ade2ed85dc9271221109158157c6579b902e0756539b643
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-mapping context of prefix UTF-16 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61027,6 +70986,18 @@ File: ./lib/unicase/u16-suffix-context.c
 Hash: d51c3f25e16b9bbd18428d84681d7a0acfd756fcce1c341bd472f1079da44f22
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-mapping context of suffix UTF-16 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61047,6 +71018,18 @@ File: ./lib/unicase/u16-tolower.c
 Hash: 655b2ed28eeba9ad9c255747e307455643e2fc47b498a2e71e0178590b25d5b2
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Lowercase mapping for UTF-16 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61067,6 +71050,18 @@ File: ./lib/unicase/u16-totitle.c
 Hash: c4408b2dcc2c238f29f621912ecc12719d353ba1317d179d2224fe8ddb0322fe
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Titlecase mapping for UTF-16 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61087,6 +71082,18 @@ File: ./lib/unicase/u16-toupper.c
 Hash: 220470c0e6a7cfd81d08f4c8f0b8fe5d574782bbd13f1c820af6ef70ed2b3385
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Uppercase mapping for UTF-16 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61107,6 +71114,18 @@ File: ./lib/unicase/u32-casecmp.c
 Hash: 1781408004da90c050ae9a5f6570946516817493ba3fe45afde124d51583089a
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case and normalization insensitive comparison of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61127,6 +71146,18 @@ File: ./lib/unicase/u32-casecoll.c
 Hash: 3300da7050c301689a45980d17099c391d7648b19c03c2d5f42557b804d061ec
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent, case and normalization insensitive comparison of UTF-32
 #   strings.
@@ -61146,6 +71177,18 @@ File: ./lib/unicase/u32-casefold.c
 Hash: 45bb91d48e51b6cec99641778244ab581c70aeacdb122f32a74b8f243d2fda3b
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Casefolding mapping for UTF-32 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61166,6 +71209,18 @@ File: ./lib/unicase/u32-casemap.c
 Hash: 247aa4ba2a663446dce07f5c913f40b60673b7f7e3ca19f403bee9d3a78ea93e
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case mapping for UTF-32 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61186,6 +71241,18 @@ File: ./lib/unicase/u32-casexfrm.c
 Hash: 4ebb9b8760ba8a740ddfab863217d0868628faab7f9e24f26788741b48ea77fa
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent transformation for case insensitive comparison of UTF-32
 #   strings.
@@ -61205,6 +71272,18 @@ File: ./lib/unicase/u32-ct-casefold.c
 Hash: 39bd9add0aed1db997be47956d8e91683fc6fc2db50d12228ef6b49d4c7b9c54
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Casefolding mapping for UTF-32 substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61225,6 +71304,18 @@ File: ./lib/unicase/u32-ct-tolower.c
 Hash: 5e11cb2a0b6b64c1876630a435fb7c2f7d28d37bb656785b75d588cc9369ff27
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Lowercase mapping for UTF-32 substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61245,6 +71336,18 @@ File: ./lib/unicase/u32-ct-totitle.c
 Hash: 5a1479bf7f4997033a317be5e2bece1df438b55cdbc1cb577fac817314f41fa4
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Titlecase mapping for UTF-32 substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61265,6 +71368,18 @@ File: ./lib/unicase/u32-ct-toupper.c
 Hash: e9e26cd78f76cc5a964f8528618e20cd2e3f6689754b5c753feab64e1b9b720d
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Uppercase mapping for UTF-32 substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61285,6 +71400,18 @@ File: ./lib/unicase/u32-is-cased.c
 Hash: 37f54a0969d6155ec3c8bcd617764b5c3cc5188acd4f800693ce4cb905a50a26
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether case matters for an UTF-32 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61305,6 +71432,18 @@ File: ./lib/unicase/u32-is-casefolded.c
 Hash: 266206ce9a0daf342cd70f30bd761d5d4c4c3731299b5db880df0d77ac22effc
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-32 string is already case-folded.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61325,6 +71464,18 @@ File: ./lib/unicase/u32-is-invariant.c
 Hash: 7c8f061345e51ebfdb5ce97958c50ba769e4082cb19dbc42e96981eb4db800b6
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-32 string is invariant under a given case mapping.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61345,6 +71496,18 @@ File: ./lib/unicase/u32-is-lowercase.c
 Hash: 9dc638c9ad9f87b2be59801ccc280ad79b58577dad018f9749e0ca8438f7211e
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-32 string is entirely lower case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61365,10 +71528,22 @@ File: ./lib/unicase/u32-is-titlecase.c
 Hash: d833857fc52a56d8c5c6b41b0170810ecf56c399611254909febef6150854139
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
-#Header:
-#/* Test whether an UTF-32 string is entirely title case.
-#   Copyright (C) 2009 Free Software Foundation, Inc.
-#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test whether an UTF-32 string is entirely title case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
 #
 #   This program is free software: you can redistribute it and/or modify it
 #   under the terms of the GNU Lesser General Public License as published
@@ -61385,6 +71560,18 @@ File: ./lib/unicase/u32-is-uppercase.c
 Hash: e03ec24b3075004b438ab9007fb42afc786d694f1260409db1b8c963dc35be4e
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-32 string is entirely upper case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61405,6 +71592,18 @@ File: ./lib/unicase/u32-prefix-context.c
 Hash: 2d3ebd1fe1ca9d551f7ea8c5ff3dd4eec61c67e8864a251143122304ac020169
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-mapping context of prefix UTF-32 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61425,6 +71624,18 @@ File: ./lib/unicase/u32-suffix-context.c
 Hash: de92f410f7f6c2f4f59fc279e266069f68bebb3cf25d821bde419d5ff8649b49
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-mapping context of suffix UTF-32 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61445,6 +71656,18 @@ File: ./lib/unicase/u32-tolower.c
 Hash: 04e0d3c9e752bb842c5255065caa6fed1aaa7124bbc9872b4bc596b29b646b1a
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Lowercase mapping for UTF-32 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61465,6 +71688,18 @@ File: ./lib/unicase/u32-totitle.c
 Hash: ec057f66ee289c109f8b27dca03f86f335bdd05f950070280d61f2ba618646c3
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Titlecase mapping for UTF-32 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61485,6 +71720,18 @@ File: ./lib/unicase/u32-toupper.c
 Hash: 606b4a302876209c7e238817387def24e5ab25c80234eb6fd6d0e4a996d4dc09
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Uppercase mapping for UTF-32 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61505,6 +71752,18 @@ File: ./lib/unicase/u8-casecmp.c
 Hash: b41ef1fbbe478f5e3b1eb110e5e6b250c5979421502f6ca1b7dd19de6fa798b1
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case and normalization insensitive comparison of UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61525,6 +71784,18 @@ File: ./lib/unicase/u8-casecoll.c
 Hash: 86360fb8c79bf57b016601bee20af58b883c31f6a04536ea4f395a228987d704
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent, case and normalization insensitive comparison of UTF-8
 #   strings.
@@ -61544,6 +71815,18 @@ File: ./lib/unicase/u8-casefold.c
 Hash: a60314a48ef1bae6d56c720648375fb4e57db1acb91ae7b0c208b93ce8535cbd
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Casefolding mapping for UTF-8 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61564,6 +71847,18 @@ File: ./lib/unicase/u8-casemap.c
 Hash: 24edb83e00615db47ba7c0efec239390e1c2d9ed8f6b30e604adcd3a0c82d0f5
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case mapping for UTF-8 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61584,6 +71879,18 @@ File: ./lib/unicase/u8-casexfrm.c
 Hash: 167f36a57e4c24ac18f4a6e9bc73d9257a39d3efa6b38bcbd186084501395295
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent transformation for case insensitive comparison of UTF-8
 #   strings.
@@ -61603,6 +71910,18 @@ File: ./lib/unicase/u8-ct-casefold.c
 Hash: ffad7b59d6730a4f76e99dc964df770e6014da0ee66c45206264d9f709e621bd
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Casefolding mapping for UTF-8 substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61623,6 +71942,18 @@ File: ./lib/unicase/u8-ct-tolower.c
 Hash: b16f9a890b5817213de428b7f08aac3ffe1702b0821d98a0f0a3b56463e1c091
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Lowercase mapping for UTF-8 substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61643,6 +71974,18 @@ File: ./lib/unicase/u8-ct-totitle.c
 Hash: 7304bf1b4bac0c2ba21867f89287a0c478f7ac1b9d0ce1418009798468b69335
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Titlecase mapping for UTF-8 substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61663,6 +72006,18 @@ File: ./lib/unicase/u8-ct-toupper.c
 Hash: ba46d214f489da0c181c73148e83191840c448fd417a17161061a3c5be227066
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Uppercase mapping for UTF-8 substrings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61683,6 +72038,18 @@ File: ./lib/unicase/u8-is-cased.c
 Hash: 2094cfba452dcdde8e0de5eb5b8a34860eccd1673f4f1ec34de86d8887f2deb2
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether case matters for an UTF-8 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61703,6 +72070,18 @@ File: ./lib/unicase/u8-is-casefolded.c
 Hash: ad6836695e22fc1c621033a020438153a8389f1ea9c00c3aa7db503668e87b8c
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-8 string is already case-folded.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61723,6 +72102,18 @@ File: ./lib/unicase/u8-is-invariant.c
 Hash: 896e334b5f842024399c0bf0d0aede192f16c5503e6008659a286281e8d275d3
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-8 string is invariant under a given case mapping.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61743,6 +72134,18 @@ File: ./lib/unicase/u8-is-lowercase.c
 Hash: 9ad379585ec68ebcaf3e6020e2874cb590ef8392bfabe67b0f415a36283d1582
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-8 string is entirely lower case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61763,6 +72166,18 @@ File: ./lib/unicase/u8-is-titlecase.c
 Hash: 40cddd86874cd3df35e51cf677bd29c84f0bdcfda6279263a149d4889018590e
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-8 string is entirely title case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61783,6 +72198,18 @@ File: ./lib/unicase/u8-is-uppercase.c
 Hash: e6b62e7fa6784af5a99641078aa13cd2ed9636c64e9ca02ec2500c009aa90498
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether an UTF-8 string is entirely upper case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61803,6 +72230,18 @@ File: ./lib/unicase/u8-prefix-context.c
 Hash: 2faad600e89a2f4df323bb0bce43f95d9c50c70477c783b5069bdcdcef2c823f
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-mapping context of prefix UTF-8 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61823,6 +72262,18 @@ File: ./lib/unicase/u8-suffix-context.c
 Hash: 9b47dcd3d28b76b4c20ecb89edca813790c5587a53b66d811be0f119344dd512
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case-mapping context of suffix UTF-8 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61843,6 +72294,18 @@ File: ./lib/unicase/u8-tolower.c
 Hash: 3596157072c41f644c9922e9b8b776dda9a83aaad3b5ac6228db0c697dba7b22
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Lowercase mapping for UTF-8 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61863,6 +72326,18 @@ File: ./lib/unicase/u8-totitle.c
 Hash: 6caca3f452e6e3d203e6b9753be9652b60beecad4fa92a0ece54e81814bea56c
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Titlecase mapping for UTF-8 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61883,6 +72358,18 @@ File: ./lib/unicase/u8-toupper.c
 Hash: a6fb8d6fa933fd65fffc9ca374211407209be087c7009bde3a72a43024734e9f
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Uppercase mapping for UTF-8 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61903,6 +72390,18 @@ File: ./lib/unicase/ulc-casecmp.c
 Hash: a14530498e0386b3448529dafb33fdce903ec4592d2be37361260862b2fa0f16
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case and normalization insensitive comparison of strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61923,6 +72422,18 @@ File: ./lib/unicase/ulc-casecoll.c
 Hash: 6f77627a28abe40aea7d9b6d12d0402d8390fc1e9b01ef47f55c8b197544dc48
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent, case and normalization insensitive comparison of strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61943,6 +72454,18 @@ File: ./lib/unicase/ulc-casexfrm.c
 Hash: 34c8a6903e645541b4faddf6fc29db8e42c13da1b6c136dd6f41caa01745f4e4
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent transformation for case insensitive comparison of strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61963,6 +72486,18 @@ File: ./lib/unicase/unicasemap.h
 Hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Case mapping for UTF-8/UTF-16/UTF-32 strings (locale dependent).
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -61983,6 +72518,18 @@ File: ./lib/unicodeio.c
 Hash: 33aacdf0005527850dd4fb652e296df5c0c204a8054ea9ddcfa120866f3a0e9e
 Copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Unicode character output to streams with locale dependent encoding.
 #
@@ -62003,6 +72550,18 @@ File: ./lib/unicodeio.h
 Hash: 1e47f450b9b67595834d03f31709e694aa7d4ad6febfdbb6ecbaa1bec1cee139
 Copyright: 2000-2003, 2005, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Unicode character output to streams with locale dependent encoding.
 #
@@ -62023,6 +72582,18 @@ File: ./lib/uniconv.h
 Hash: 5e6e0f51341a6e53f0b352b8bb7db9465bb35a0e3cd37942b46076d0a7af3702
 Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversions between Unicode and legacy encodings.
 #   Copyright (C) 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
@@ -62043,6 +72614,18 @@ File: ./lib/uniconv/u-conv-from-enc.h
 Hash: 188629e474bbbcd1229c8c6833219797032c420574e752902bca4747712a6d66
 Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion to UTF-16/UTF-32 from legacy encodings.
 #   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -62063,6 +72646,18 @@ File: ./lib/uniconv/u-conv-to-enc.h
 Hash: e0aa45049139d0368fd9cc0402cf2f6ac92e52d781ad1466a494513b14fb40b3
 Copyright: 2002, 2006-2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion from UTF-16/UTF-32 to legacy encodings.
 #   Copyright (C) 2002, 2006-2009 Free Software Foundation, Inc.
@@ -62083,6 +72678,18 @@ File: ./lib/uniconv/u-strconv-from-enc.h
 Hash: 7be24e48ba83701cdbc39b85497b3fdb44b90463a283f46fb720f91ce2d7ae33
 Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion to UTF-8/UTF-16/UTF-32 from legacy encodings.
 #   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -62103,6 +72710,18 @@ File: ./lib/uniconv/u-strconv-to-enc.h
 Hash: 7a46757983eda3f42167efe493ff5b1224b5fa378ccbb3ef3a54a34774fff733
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion from UTF-16/UTF-32 to legacy encodings.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62123,6 +72742,18 @@ File: ./lib/uniconv/u16-conv-from-enc.c
 Hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion to UTF-16 from legacy encodings.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62143,6 +72774,18 @@ File: ./lib/uniconv/u16-conv-to-enc.c
 Hash: 63cf6c42e78a055e4bc0152c66c81d9e677aca47430eeff2566e821608a1f937
 Copyright: 2002, 2006-2008 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion from UTF-16 to legacy encodings.
 #   Copyright (C) 2002, 2006-2008 Free Software Foundation, Inc.
@@ -62163,6 +72806,18 @@ File: ./lib/uniconv/u16-strconv-from-enc.c
 Hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion to UTF-16 from legacy encodings.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62183,6 +72838,18 @@ File: ./lib/uniconv/u16-strconv-from-locale.c
 Hash: abbeae189b434069f8b5082a0b74cc1c0ef22496521de651ee804512ebbcf297
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion to UTF-16 from the locale encoding.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62203,6 +72870,18 @@ File: ./lib/uniconv/u16-strconv-to-enc.c
 Hash: 00764e134b95f7908e7ddd1a025d875ec6785ff8b6b69d9e92d37be3f23fa300
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion from UTF-16 to legacy encodings.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62223,6 +72902,18 @@ File: ./lib/uniconv/u16-strconv-to-locale.c
 Hash: f67645d89afa61a452bfd22d22f76fb39ef24abdd3e44667aade0ac4d78c1fac
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion from UTF-16 to the locale encoding.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62243,6 +72934,18 @@ File: ./lib/uniconv/u32-conv-from-enc.c
 Hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion to UTF-32 from legacy encodings.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62263,6 +72966,18 @@ File: ./lib/uniconv/u32-conv-to-enc.c
 Hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion from UTF-32 to legacy encodings.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62283,6 +72998,18 @@ File: ./lib/uniconv/u32-strconv-from-enc.c
 Hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion to UTF-32 from legacy encodings.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62303,6 +73030,18 @@ File: ./lib/uniconv/u32-strconv-from-locale.c
 Hash: b5f98b5645d8b9d620808c54cbe34c5977a84043ce50fc58401924535f12208f
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion to UTF-32 from the locale encoding.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62323,6 +73062,18 @@ File: ./lib/uniconv/u32-strconv-to-enc.c
 Hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion from UTF-32 to legacy encodings.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62343,6 +73094,18 @@ File: ./lib/uniconv/u32-strconv-to-locale.c
 Hash: e1b205c9ed76dd104a13b1f6427ff0fedfe1ac06bc458fcd942d94557d74e437
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion from UTF-32 to the locale encoding.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62363,6 +73126,18 @@ File: ./lib/uniconv/u8-conv-from-enc.c
 Hash: f48ae3336f9571f13c2904bc2878141e7a9d272c1baf5d3a4688fd1f226f3546
 Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion to UTF-8 from legacy encodings.
 #   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -62383,6 +73158,18 @@ File: ./lib/uniconv/u8-conv-to-enc.c
 Hash: c0e5b93ef7fa66fca4a5b9fbd7dfcabd13c1d87f9713fbaac56bcc56fa4137eb
 Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion from UTF-8 to legacy encodings.
 #   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -62403,6 +73190,18 @@ File: ./lib/uniconv/u8-strconv-from-enc.c
 Hash: c9992a9820bc23e9834057a26dff394918e76ca830c2f5ac97e0d67c102baa7c
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion to UTF-8 from legacy encodings.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62423,6 +73222,18 @@ File: ./lib/uniconv/u8-strconv-from-locale.c
 Hash: 6da43447486f93c497947a213640c53bf620094b211a782c60138d9057455ecb
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion to UTF-8 from the locale encoding.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62443,6 +73254,18 @@ File: ./lib/uniconv/u8-strconv-to-enc.c
 Hash: 0942490a0de4f7b06edd517c57084e60348a1d79142fec2f05c531689a4cb814
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion from UTF-8 to legacy encodings.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62463,6 +73286,18 @@ File: ./lib/uniconv/u8-strconv-to-locale.c
 Hash: e38b1c908eef1d22cb3bee0f7157cbc3b3a409ac8fda47c5f4f9c630687e934c
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion from UTF-8 to the locale encoding.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62483,6 +73318,18 @@ File: ./lib/unictype.h
 Hash: b8e67dc9e906270547a47f99abb0a4b7b1f7b1acf607726786df995910314d43
 Copyright: 2002, 2005-2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Unicode character classification and properties.
 #   Copyright (C) 2002, 2005-2009 Free Software Foundation, Inc.
@@ -62503,6 +73350,19 @@ File: ./lib/unictype/3level.h
 Hash: ca73868d0849016e4c33c48ca11bccc77fda03863928d329ea03f644c3e4e020
 Copyright: 2000-2001 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 2000-2001 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -62523,6 +73383,19 @@ File: ./lib/unictype/3levelbit.h
 Hash: f1ad93bae7eab43736b46a51a2dc7303c2c4d8ad4563a2cd7e0740587a86880a
 Copyright: 2000-2002 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Copyright (C) 2000-2002 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -62563,6 +73436,18 @@ File: ./lib/unictype/bidi_byname.c
 Hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Bidi categories of Unicode characters.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -62583,6 +73468,18 @@ File: ./lib/unictype/bidi_name.c
 Hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Bidi categories of Unicode characters.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -62603,6 +73500,18 @@ File: ./lib/unictype/bidi_of.c
 Hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Bidi categories of Unicode characters.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -62643,6 +73552,18 @@ File: ./lib/unictype/bidi_test.c
 Hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Bidi categories of Unicode characters.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -62663,6 +73584,18 @@ File: ./lib/unictype/bitmap.h
 Hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
 Copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Three-level bitmap lookup.
 #   Copyright (C) 2000-2002, 2005-2007 Free Software Foundation, Inc.
@@ -62683,6 +73616,18 @@ File: ./lib/unictype/block_test.c
 Hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Blocks of Unicode characters.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -62703,6 +73648,18 @@ File: ./lib/unictype/blocks.c
 Hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Blocks of Unicode characters.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -62743,6 +73700,18 @@ File: ./lib/unictype/categ_C.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62783,6 +73752,18 @@ File: ./lib/unictype/categ_Cc.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62823,6 +73804,18 @@ File: ./lib/unictype/categ_Cf.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62863,6 +73856,18 @@ File: ./lib/unictype/categ_Cn.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62903,6 +73908,18 @@ File: ./lib/unictype/categ_Co.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62943,6 +73960,18 @@ File: ./lib/unictype/categ_Cs.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -62983,6 +74012,18 @@ File: ./lib/unictype/categ_L.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63023,6 +74064,18 @@ File: ./lib/unictype/categ_Ll.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63063,6 +74116,18 @@ File: ./lib/unictype/categ_Lm.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63103,6 +74168,18 @@ File: ./lib/unictype/categ_Lo.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63143,6 +74220,18 @@ File: ./lib/unictype/categ_Lt.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63183,6 +74272,18 @@ File: ./lib/unictype/categ_Lu.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63223,6 +74324,18 @@ File: ./lib/unictype/categ_M.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63263,6 +74376,18 @@ File: ./lib/unictype/categ_Mc.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63303,6 +74428,18 @@ File: ./lib/unictype/categ_Me.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63343,6 +74480,18 @@ File: ./lib/unictype/categ_Mn.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63383,6 +74532,18 @@ File: ./lib/unictype/categ_N.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63423,6 +74584,18 @@ File: ./lib/unictype/categ_Nd.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63463,6 +74636,18 @@ File: ./lib/unictype/categ_Nl.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63503,6 +74688,18 @@ File: ./lib/unictype/categ_No.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63543,6 +74740,18 @@ File: ./lib/unictype/categ_P.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63583,6 +74792,18 @@ File: ./lib/unictype/categ_Pc.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63623,6 +74844,18 @@ File: ./lib/unictype/categ_Pd.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63663,6 +74896,18 @@ File: ./lib/unictype/categ_Pe.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63703,6 +74948,18 @@ File: ./lib/unictype/categ_Pf.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63743,6 +75000,18 @@ File: ./lib/unictype/categ_Pi.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63783,6 +75052,18 @@ File: ./lib/unictype/categ_Po.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63823,6 +75104,18 @@ File: ./lib/unictype/categ_Ps.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63863,6 +75156,18 @@ File: ./lib/unictype/categ_S.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63903,6 +75208,18 @@ File: ./lib/unictype/categ_Sc.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63943,6 +75260,18 @@ File: ./lib/unictype/categ_Sk.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -63983,6 +75312,18 @@ File: ./lib/unictype/categ_Sm.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64023,6 +75364,18 @@ File: ./lib/unictype/categ_So.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64063,6 +75416,18 @@ File: ./lib/unictype/categ_Z.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64103,6 +75468,18 @@ File: ./lib/unictype/categ_Zl.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64143,6 +75520,18 @@ File: ./lib/unictype/categ_Zp.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64183,6 +75572,18 @@ File: ./lib/unictype/categ_Zs.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64223,6 +75624,18 @@ File: ./lib/unictype/categ_and.c
 Hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -64243,6 +75656,18 @@ File: ./lib/unictype/categ_and_not.c
 Hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -64263,6 +75688,18 @@ File: ./lib/unictype/categ_byname.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64283,6 +75720,18 @@ File: ./lib/unictype/categ_name.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64303,6 +75752,18 @@ File: ./lib/unictype/categ_none.c
 Hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -64323,6 +75784,18 @@ File: ./lib/unictype/categ_of.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64363,6 +75836,18 @@ File: ./lib/unictype/categ_or.c
 Hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -64383,6 +75868,18 @@ File: ./lib/unictype/categ_test.c
 Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Categories of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64403,6 +75900,18 @@ File: ./lib/unictype/combining.c
 Hash: 90adbd1167196894d026717b09dc16ead930ab4e0e79fc939f9b943b5444cb36
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Combining classes of Unicode characters.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -64443,6 +75952,18 @@ File: ./lib/unictype/ctype_alnum.c
 Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ISO C <ctype.h> like properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64483,6 +76004,18 @@ File: ./lib/unictype/ctype_alpha.c
 Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ISO C <ctype.h> like properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64523,6 +76056,18 @@ File: ./lib/unictype/ctype_blank.c
 Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ISO C <ctype.h> like properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64563,6 +76108,18 @@ File: ./lib/unictype/ctype_cntrl.c
 Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ISO C <ctype.h> like properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64603,6 +76160,18 @@ File: ./lib/unictype/ctype_digit.c
 Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ISO C <ctype.h> like properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64643,6 +76212,18 @@ File: ./lib/unictype/ctype_graph.c
 Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ISO C <ctype.h> like properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64683,6 +76264,18 @@ File: ./lib/unictype/ctype_lower.c
 Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ISO C <ctype.h> like properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64723,6 +76316,18 @@ File: ./lib/unictype/ctype_print.c
 Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ISO C <ctype.h> like properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64763,6 +76368,18 @@ File: ./lib/unictype/ctype_punct.c
 Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ISO C <ctype.h> like properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64803,6 +76420,18 @@ File: ./lib/unictype/ctype_space.c
 Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ISO C <ctype.h> like properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64843,6 +76472,18 @@ File: ./lib/unictype/ctype_upper.c
 Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ISO C <ctype.h> like properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64883,6 +76524,18 @@ File: ./lib/unictype/ctype_xdigit.c
 Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* ISO C <ctype.h> like properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -64923,6 +76576,18 @@ File: ./lib/unictype/decdigit.c
 Hash: dd98fdcdaa9cd24e7260ed5252c6393ca1fc1c32b1afef1b4a9b98e57eadc26d
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Values of decimal digit Unicode characters.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -64963,6 +76628,18 @@ File: ./lib/unictype/digit.c
 Hash: 96f1f23423e02f86953ba94177173864040511deeb2b553746c503eedc69f695
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Values of digit Unicode characters.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -65003,6 +76680,18 @@ File: ./lib/unictype/identsyntaxmap.h
 Hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
 Copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Three-level bitmap lookup.
 #   Copyright (C) 2000-2002, 2005-2007 Free Software Foundation, Inc.
@@ -65023,6 +76712,18 @@ File: ./lib/unictype/mirror.c
 Hash: c8eb63b007266041de16a9e45bf7b8766d2016e3dd82e9b801920e7e8ee0b265
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Mirrored Unicode characters.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -65063,6 +76764,18 @@ File: ./lib/unictype/numeric.c
 Hash: 14a734bfffede7c850c2263c2844a2f42a847a8fdb26c6f4940a825a35a672e2
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Values of numeric Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65103,6 +76816,18 @@ File: ./lib/unictype/pr_alphabetic.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65143,6 +76868,18 @@ File: ./lib/unictype/pr_ascii_hex_digit.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65183,6 +76920,18 @@ File: ./lib/unictype/pr_bidi_arabic_digit.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65223,6 +76972,18 @@ File: ./lib/unictype/pr_bidi_arabic_right_to_left.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65263,6 +77024,18 @@ File: ./lib/unictype/pr_bidi_block_separator.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65303,6 +77076,18 @@ File: ./lib/unictype/pr_bidi_boundary_neutral.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65343,6 +77128,18 @@ File: ./lib/unictype/pr_bidi_common_separator.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65383,6 +77180,18 @@ File: ./lib/unictype/pr_bidi_control.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65423,6 +77232,18 @@ File: ./lib/unictype/pr_bidi_embedding_or_override.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65463,6 +77284,18 @@ File: ./lib/unictype/pr_bidi_eur_num_separator.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65503,6 +77336,18 @@ File: ./lib/unictype/pr_bidi_eur_num_terminator.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65543,6 +77388,18 @@ File: ./lib/unictype/pr_bidi_european_digit.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65583,6 +77440,18 @@ File: ./lib/unictype/pr_bidi_hebrew_right_to_left.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65623,6 +77492,18 @@ File: ./lib/unictype/pr_bidi_left_to_right.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65663,6 +77544,18 @@ File: ./lib/unictype/pr_bidi_non_spacing_mark.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65703,6 +77596,18 @@ File: ./lib/unictype/pr_bidi_other_neutral.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65743,6 +77648,18 @@ File: ./lib/unictype/pr_bidi_pdf.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65783,6 +77700,18 @@ File: ./lib/unictype/pr_bidi_segment_separator.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65823,6 +77752,18 @@ File: ./lib/unictype/pr_bidi_whitespace.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65863,6 +77804,18 @@ File: ./lib/unictype/pr_byname.c
 Hash: d40e7939956111bd30348da1dac41960fd3fdc6cf6f680cb8573e79ccbedc970
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -65903,6 +77856,18 @@ File: ./lib/unictype/pr_combining.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65943,6 +77908,18 @@ File: ./lib/unictype/pr_composite.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -65983,6 +77960,18 @@ File: ./lib/unictype/pr_currency_symbol.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66027,6 +78016,18 @@ File: ./lib/unictype/pr_dash.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66067,6 +78068,18 @@ File: ./lib/unictype/pr_decimal_digit.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66107,6 +78120,18 @@ File: ./lib/unictype/pr_default_ignorable_code_point.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66147,6 +78172,18 @@ File: ./lib/unictype/pr_deprecated.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66187,6 +78224,18 @@ File: ./lib/unictype/pr_diacritic.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66227,6 +78276,18 @@ File: ./lib/unictype/pr_extender.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66267,6 +78328,18 @@ File: ./lib/unictype/pr_format_control.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66307,6 +78380,18 @@ File: ./lib/unictype/pr_grapheme_base.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66347,6 +78432,18 @@ File: ./lib/unictype/pr_grapheme_extend.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66387,6 +78484,18 @@ File: ./lib/unictype/pr_grapheme_link.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66427,6 +78536,18 @@ File: ./lib/unictype/pr_hex_digit.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66467,6 +78588,18 @@ File: ./lib/unictype/pr_hyphen.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66507,6 +78640,18 @@ File: ./lib/unictype/pr_id_continue.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66547,6 +78692,18 @@ File: ./lib/unictype/pr_id_start.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66587,6 +78744,18 @@ File: ./lib/unictype/pr_ideographic.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66627,6 +78796,18 @@ File: ./lib/unictype/pr_ids_binary_operator.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66667,6 +78848,18 @@ File: ./lib/unictype/pr_ids_trinary_operator.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66707,6 +78900,18 @@ File: ./lib/unictype/pr_ignorable_control.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66747,6 +78952,18 @@ File: ./lib/unictype/pr_iso_control.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66787,6 +79004,18 @@ File: ./lib/unictype/pr_join_control.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66827,6 +79056,18 @@ File: ./lib/unictype/pr_left_of_pair.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66867,6 +79108,18 @@ File: ./lib/unictype/pr_line_separator.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66907,6 +79160,18 @@ File: ./lib/unictype/pr_logical_order_exception.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66947,6 +79212,18 @@ File: ./lib/unictype/pr_lowercase.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -66987,6 +79264,18 @@ File: ./lib/unictype/pr_math.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67027,6 +79316,18 @@ File: ./lib/unictype/pr_non_break.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67067,6 +79368,18 @@ File: ./lib/unictype/pr_not_a_character.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67107,6 +79420,18 @@ File: ./lib/unictype/pr_numeric.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67147,6 +79472,18 @@ File: ./lib/unictype/pr_other_alphabetic.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67187,6 +79524,18 @@ File: ./lib/unictype/pr_other_default_ignorable_code_point.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67227,6 +79576,18 @@ File: ./lib/unictype/pr_other_grapheme_extend.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67267,6 +79628,18 @@ File: ./lib/unictype/pr_other_id_continue.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67307,6 +79680,18 @@ File: ./lib/unictype/pr_other_id_start.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67347,6 +79732,18 @@ File: ./lib/unictype/pr_other_lowercase.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67387,6 +79784,18 @@ File: ./lib/unictype/pr_other_math.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67427,6 +79836,18 @@ File: ./lib/unictype/pr_other_uppercase.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67467,6 +79888,18 @@ File: ./lib/unictype/pr_paired_punctuation.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67507,6 +79940,18 @@ File: ./lib/unictype/pr_paragraph_separator.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67547,6 +79992,18 @@ File: ./lib/unictype/pr_pattern_syntax.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67587,6 +80044,18 @@ File: ./lib/unictype/pr_pattern_white_space.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67627,6 +80096,18 @@ File: ./lib/unictype/pr_private_use.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67667,6 +80148,18 @@ File: ./lib/unictype/pr_punctuation.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67707,6 +80200,18 @@ File: ./lib/unictype/pr_quotation_mark.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67747,6 +80252,18 @@ File: ./lib/unictype/pr_radical.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67787,6 +80304,18 @@ File: ./lib/unictype/pr_sentence_terminal.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67827,6 +80356,18 @@ File: ./lib/unictype/pr_soft_dotted.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67867,6 +80408,18 @@ File: ./lib/unictype/pr_space.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67907,6 +80460,18 @@ File: ./lib/unictype/pr_terminal_punctuation.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -67947,6 +80512,18 @@ File: ./lib/unictype/pr_test.c
 Hash: 1f771b18097da3eb006ae20cb5d9a4088eae2d181a611500ba400e2d8ec2df5d
 Copyright: 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2005-2007 Free Software Foundation, Inc.
@@ -67967,6 +80544,18 @@ File: ./lib/unictype/pr_titlecase.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -68007,6 +80596,18 @@ File: ./lib/unictype/pr_unassigned_code_value.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -68047,6 +80648,18 @@ File: ./lib/unictype/pr_unified_ideograph.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -68087,6 +80700,18 @@ File: ./lib/unictype/pr_uppercase.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -68127,6 +80752,18 @@ File: ./lib/unictype/pr_variation_selector.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -68167,6 +80804,18 @@ File: ./lib/unictype/pr_white_space.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -68207,6 +80856,18 @@ File: ./lib/unictype/pr_xid_continue.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -68247,6 +80908,18 @@ File: ./lib/unictype/pr_xid_start.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -68287,6 +80960,18 @@ File: ./lib/unictype/pr_zero_width.c
 Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Properties of Unicode characters.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -68327,6 +81012,18 @@ File: ./lib/unictype/scripts.c
 Hash: 3fcb47fc8c55790740bf21cdfc85cacb89c92805b7a0692b5d331d04839c7431
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Scripts of Unicode characters.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -68387,6 +81084,18 @@ File: ./lib/unictype/sy_c_ident.c
 Hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Syntax properties of Unicode characters.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -68427,6 +81136,18 @@ File: ./lib/unictype/sy_c_whitespace.c
 Hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Syntax properties of Unicode characters.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -68467,6 +81188,18 @@ File: ./lib/unictype/sy_java_ident.c
 Hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Syntax properties of Unicode characters.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -68507,6 +81240,18 @@ File: ./lib/unictype/sy_java_whitespace.c
 Hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Syntax properties of Unicode characters.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -68547,6 +81292,18 @@ File: ./lib/unilbrk.h
 Hash: 2f408b704e7b02de9b9a8224c0bf0b93bedcb50b13ea7f824895f85f9c28eaee
 Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Line breaking of Unicode strings.
 #   Copyright (C) 2001-2003, 2005-2008 Free Software Foundation, Inc.
@@ -68567,6 +81324,18 @@ File: ./lib/unilbrk/lbrkprop1.h
 Hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
 Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Line breaking properties of Unicode characters.  */
@@ -68587,6 +81356,18 @@ File: ./lib/unilbrk/lbrkprop2.h
 Hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
 Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Line breaking properties of Unicode characters.  */
@@ -68607,6 +81388,18 @@ File: ./lib/unilbrk/lbrktables.c
 Hash: 570dd537a8aad86cc9f03b3a187de16b187fa22f7de51a4c78b10bd8513b5140
 Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Line breaking auxiliary tables.
 #   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
@@ -68627,6 +81420,18 @@ File: ./lib/unilbrk/lbrktables.h
 Hash: cc2a66b6d3c60a6a4bc00cc2cacead4543035a5c9a1c2c1dcb6310525ad50d3f
 Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Line breaking auxiliary tables.
 #   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
@@ -68647,6 +81452,18 @@ File: ./lib/unilbrk/u16-possible-linebreaks.c
 Hash: dcb291f946f60f8ce400b0cf6612abce1f55d7525d62c20de92e371964fa2a25
 Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Line breaking of UTF-16 strings.
 #   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
@@ -68667,6 +81484,18 @@ File: ./lib/unilbrk/u16-width-linebreaks.c
 Hash: 858930664890823e81d8b0e0713d7edc3770a87b4a54c5ea4bffc97ae40cf765
 Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Line breaking of UTF-16 strings.
 #   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
@@ -68687,6 +81516,18 @@ File: ./lib/unilbrk/u32-possible-linebreaks.c
 Hash: e5d81325f7140b2d7980081c9c1b1bfe027d481b42d41b84fa859e689614604b
 Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Line breaking of UTF-32 strings.
 #   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
@@ -68707,6 +81548,18 @@ File: ./lib/unilbrk/u32-width-linebreaks.c
 Hash: cb3f972142bc182e67f148e4aee254b9d86e402a8c980d6aced66aa70785fdea
 Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Line breaking of UTF-32 strings.
 #   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
@@ -68727,6 +81580,18 @@ File: ./lib/unilbrk/u8-possible-linebreaks.c
 Hash: e914e04b1abf7f5737295a9365605c4b321978c304d4f779fcbbb02c5ff1558d
 Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Line breaking of UTF-8 strings.
 #   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
@@ -68747,6 +81612,18 @@ File: ./lib/unilbrk/u8-width-linebreaks.c
 Hash: 8250277a0f84de0b4416a1e30345251e466e2245ba64e63269d38d0ec4abdf7c
 Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Line breaking of UTF-8 strings.
 #   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
@@ -68767,6 +81644,18 @@ File: ./lib/unilbrk/ulc-common.c
 Hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
 Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Line breaking auxiliary functions.
 #   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
@@ -68787,6 +81676,18 @@ File: ./lib/unilbrk/ulc-common.h
 Hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
 Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Line breaking auxiliary functions.
 #   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
@@ -68807,6 +81708,18 @@ File: ./lib/unilbrk/ulc-possible-linebreaks.c
 Hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
 Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Line breaking of strings.
 #   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
@@ -68827,6 +81740,18 @@ File: ./lib/unilbrk/ulc-width-linebreaks.c
 Hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
 Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Line breaking of strings.
 #   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
@@ -68847,6 +81772,18 @@ File: ./lib/uniname.h
 Hash: 271fe75b63886d9af9730fc72bcecc8bcf121a97946be427032f4ed46d2d2711
 Copyright: 2000-2002, 2005, 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Association between Unicode characters and their names.
 #   Copyright (C) 2000-2002, 2005, 2007 Free Software Foundation, Inc.
@@ -68887,6 +81824,18 @@ File: ./lib/uniname/uniname.c
 Hash: 96556ea7962ce3b99d5e5559021018733e37096b261e513193d63a30e5ee4b2d
 Copyright: 2000-2002, 2005-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Association between Unicode characters and their names.
 #   Copyright (C) 2000-2002, 2005-2007, 2009 Free Software Foundation, Inc.
@@ -68927,6 +81876,18 @@ File: ./lib/uninorm.h
 Hash: 811b4d2f8b8f36161342c743db5c5509ac8b0043c13551f7a52704c707f135c4
 Copyright: 2001-2002, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Normalization forms (composition and decomposition) of Unicode strings.
 #   Copyright (C) 2001-2002, 2009 Free Software Foundation, Inc.
@@ -68947,6 +81908,18 @@ File: ./lib/uninorm/canonical-decomposition.c
 Hash: 87f0bcf9df0580072c9e56c9b085df3d8e09770d61475e329c904bc2b049e5cb
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Canonical decomposition of Unicode characters.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -68967,6 +81940,18 @@ File: ./lib/uninorm/compat-decomposition.c
 Hash: be35616c47cb657687ee31b508418eb405d8e7175ea0c7ebda9c83d292ee0f76
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compatibility decomposition of Unicode characters.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -68987,6 +81972,18 @@ File: ./lib/uninorm/composition-table.gperf
 Hash: b4aa8605984c2a64f166ac2137a7436cbcf969c067088baf3efc3099cd610685
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Canonical composition of Unicode characters.  */
@@ -69007,6 +82004,18 @@ File: ./lib/uninorm/composition.c
 Hash: b056563f0bb123c409b7ebc8c15d83ff328c9f985c828e088794b6779686593e
 Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Canonical composition of Unicode characters.
 #   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
@@ -69027,6 +82036,18 @@ File: ./lib/uninorm/decompose-internal.c
 Hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Decomposition of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69047,6 +82068,18 @@ File: ./lib/uninorm/decompose-internal.h
 Hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Decomposition of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69067,6 +82100,18 @@ File: ./lib/uninorm/decomposing-form.c
 Hash: 34162fc9b81dddd60e3d1768a87407a9c58c7a4246f8131990655af950eb8fa6
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Decomposing variant of a normalization form.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69087,6 +82132,18 @@ File: ./lib/uninorm/decomposition-table.c
 Hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Decomposition of Unicode characters.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69107,6 +82164,18 @@ File: ./lib/uninorm/decomposition-table.h
 Hash: 7e5319f3d15b429b3ca981cb77d13a14e63eb6d91c87b6896bcb4b261f212864
 Copyright: 2001-2003, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Decomposition of Unicode characters.
 #   Copyright (C) 2001-2003, 2009 Free Software Foundation, Inc.
@@ -69167,6 +82236,18 @@ File: ./lib/uninorm/decomposition.c
 Hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Decomposition of Unicode characters.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69187,6 +82268,18 @@ File: ./lib/uninorm/nfc.c
 Hash: afe74037d702264dada2f09f62b6bcd009116cbade5b92da86a092ec363709fa
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Unicode Normalization Form C.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69207,6 +82300,18 @@ File: ./lib/uninorm/nfd.c
 Hash: 2c52442b51c53cae04d69af55fc465368ef6cdea78236bbd9e4ead35024be8aa
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Unicode Normalization Form D.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69227,6 +82332,18 @@ File: ./lib/uninorm/nfkc.c
 Hash: 7e203b8f3ad1ca16886b641a503c7ef40c63839f2c5013b377ee16191eda890c
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Unicode Normalization Form KC.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69247,6 +82364,18 @@ File: ./lib/uninorm/nfkd.c
 Hash: 96fca2de089de494f5189cc1b6baba83a22050a2f73680251f883dbf4f29c4c6
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Unicode Normalization Form KD.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69267,6 +82396,18 @@ File: ./lib/uninorm/normalize-internal.h
 Hash: dc3a239e87668655e6ffadf04e4e625525bb77f3159f49970bfe1fdd1fb742ec
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Normalization of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69287,6 +82428,18 @@ File: ./lib/uninorm/u-normalize-internal.h
 Hash: 8948c5a1ae3c902f7399c23c670da87e46b5538a4e44cea25fe6092fc69e57f3
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Decomposition and composition of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69307,6 +82460,18 @@ File: ./lib/uninorm/u-normcmp.h
 Hash: a38204b457c2da606da593fbe185d2697622fc39dfa9938580cfc4d21f8fd9d3
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Normalization insensitive comparison of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69327,6 +82492,18 @@ File: ./lib/uninorm/u-normcoll.h
 Hash: d15873e9d0f8361722b856cc6b5a4b141d8c153651a1cb1694c28c0be3fdf15e
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent, normalization insensitive comparison of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69347,6 +82524,18 @@ File: ./lib/uninorm/u-normxfrm.h
 Hash: 2995d01c87bd38694e454d2aa7acd9440bb01ef2fe3775c2ddddfd9a2055d354
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent transformation for comparison of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69367,6 +82556,18 @@ File: ./lib/uninorm/u16-normalize.c
 Hash: c4417f93ba857c0341ad56a963370ce1ac8690dc8d56ea8704d42bc0f4cd57d4
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Normalization of UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69387,6 +82588,18 @@ File: ./lib/uninorm/u16-normcmp.c
 Hash: 70b5b38d00121704a5bdc8dec6c3510938a1ee773296c68bdf4770a9d3ad3ba2
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Normalization insensitive comparison of UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69407,6 +82620,18 @@ File: ./lib/uninorm/u16-normcoll.c
 Hash: b2a6a3dde9a5d277817a7bdf3a9da9cba9c5af84d43f02b8de59972c0efc6e06
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent, normalization insensitive comparison of UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69427,6 +82652,18 @@ File: ./lib/uninorm/u16-normxfrm.c
 Hash: 6a535a6e2b2866d4d2f674604fdec7c48cd37a7d26d1b28aa56b1b55cff64d0c
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent transformation for comparison of UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69447,6 +82684,18 @@ File: ./lib/uninorm/u32-normalize.c
 Hash: 21948dd01001327d66a37ac6a8120566d704ef23efaf3a32134244e0e8b297db
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Normalization of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69467,6 +82716,18 @@ File: ./lib/uninorm/u32-normcmp.c
 Hash: 3aee963a47e892f820670cbdde9841ad7809e3cb739fe6fe4a4eb82b337fe7aa
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Normalization insensitive comparison of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69487,6 +82748,18 @@ File: ./lib/uninorm/u32-normcoll.c
 Hash: e05b8dc2bc7995766bf46052c4718b74c0ffcae0cac15dd8135777dd379c34f4
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent, normalization insensitive comparison of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69507,6 +82780,18 @@ File: ./lib/uninorm/u32-normxfrm.c
 Hash: 6d8ff48fb188d7d15ae549430423f962ca47de75f2e3fa27d0c65099e653e5d8
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent transformation for comparison of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69527,6 +82812,18 @@ File: ./lib/uninorm/u8-normalize.c
 Hash: b46220839acddb8068a99f781da004eeb988271397e318e6077f00e1b4d9eb99
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Normalization of UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69547,6 +82844,18 @@ File: ./lib/uninorm/u8-normcmp.c
 Hash: 88af27918ea6a884ebb5ddc98c75a2f01462cc627d489ca3a0387b2337cfff01
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Normalization insensitive comparison of UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69567,6 +82876,18 @@ File: ./lib/uninorm/u8-normcoll.c
 Hash: 781e09bd1453b3872c591e97c19b1855dc70cee271fded19eef00469baede34f
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent, normalization insensitive comparison of UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69587,6 +82908,18 @@ File: ./lib/uninorm/u8-normxfrm.c
 Hash: d59367c5c15d6f235b1e68265d3e3a57fef210ab8796ed36a04f40d08f302e3f
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale dependent transformation for comparison of UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69607,6 +82940,18 @@ File: ./lib/uninorm/uninorm-filter.c
 Hash: fde778aae106254be586328ae3ecb4ee2843b387fb9bd68bd6e8ebf8b7dfe8f3
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Stream-based normalization of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -69627,6 +82972,18 @@ File: ./lib/unistd--.h
 Hash: adf5345fbcb95c5bb36d54daf54a986985f38945478711e734fb90742f8a5262
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Like unistd.h, but redefine some names to avoid glitches.
 #
@@ -69647,6 +83004,18 @@ File: ./lib/unistd-safer.h
 Hash: f1b41b4d684751d4d0fd03bb4855a4ab9c168f72e25dbcab58fa5e7cf7edebf9
 Copyright: 2001, 2003, 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Invoke unistd-like functions, but avoid some glitches.
 #
@@ -69667,6 +83036,19 @@ File: ./lib/unistd.in.h
 Hash: a6926ba851d67cbfe9bc3f8f5c0a100992084e9d90ff1e51b25bd373b976d588
 Copyright: 2003-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Substitute for and wrapper around <unistd.h>.
 #   Copyright (C) 2003-2009 Free Software Foundation, Inc.
@@ -69687,6 +83069,18 @@ File: ./lib/unistdio.h
 Hash: 670451fad5381e7d81619f0268d7dcac2693a959612603a4fd77a67f102b98eb
 Copyright: 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Elementary Unicode string functions.
 #   Copyright (C) 2002, 2005-2007 Free Software Foundation, Inc.
@@ -69707,6 +83101,18 @@ File: ./lib/unistdio/u-asnprintf.h
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -69727,6 +83133,18 @@ File: ./lib/unistdio/u-asprintf.h
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -69747,6 +83165,18 @@ File: ./lib/unistdio/u-printf-args.c
 Hash: a27d294cbfad2286e039e9816ee9acb269f976fcc6f6c6f13a22d74056689600
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Decomposed printf argument list.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -69767,6 +83197,18 @@ File: ./lib/unistdio/u-printf-args.h
 Hash: a6fe38b9879275d7c142bc95e0b7e4caed91ccce4714c11749fdd64ecf990bf5
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Decomposed printf argument list.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -69787,6 +83229,18 @@ File: ./lib/unistdio/u-printf-parse.h
 Hash: 429fb79a4fedd4e52cd53cd4e50638cd94893eecb1b7a62844d082be64efe0dd
 Copyright: 1999, 2002, 2005, 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Parse printf format string.
 #   Copyright (C) 1999, 2002, 2005, 2007 Free Software Foundation, Inc.
@@ -69807,6 +83261,18 @@ File: ./lib/unistdio/u-snprintf.h
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -69827,6 +83293,18 @@ File: ./lib/unistdio/u-sprintf.h
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -69847,6 +83325,18 @@ File: ./lib/unistdio/u-vasprintf.h
 Hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
 Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
@@ -69867,6 +83357,18 @@ File: ./lib/unistdio/u-vsnprintf.h
 Hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
 Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
@@ -69887,6 +83389,18 @@ File: ./lib/unistdio/u-vsprintf.h
 Hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
 Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
@@ -69907,6 +83421,18 @@ File: ./lib/unistdio/u16-asnprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -69927,6 +83453,18 @@ File: ./lib/unistdio/u16-asprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -69947,6 +83485,18 @@ File: ./lib/unistdio/u16-printf-parse.c
 Hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
 Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -69967,6 +83517,18 @@ File: ./lib/unistdio/u16-snprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -69987,6 +83549,18 @@ File: ./lib/unistdio/u16-sprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70007,6 +83581,18 @@ File: ./lib/unistdio/u16-u16-asnprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70027,6 +83613,18 @@ File: ./lib/unistdio/u16-u16-asprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70047,6 +83645,18 @@ File: ./lib/unistdio/u16-u16-snprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70067,6 +83677,18 @@ File: ./lib/unistdio/u16-u16-sprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70087,6 +83709,18 @@ File: ./lib/unistdio/u16-u16-vasnprintf.c
 Hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to UTF-16 strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70107,6 +83741,18 @@ File: ./lib/unistdio/u16-u16-vasprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70127,6 +83773,18 @@ File: ./lib/unistdio/u16-u16-vsnprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70147,6 +83805,18 @@ File: ./lib/unistdio/u16-u16-vsprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70167,6 +83837,18 @@ File: ./lib/unistdio/u16-vasnprintf.c
 Hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to UTF-16 strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70187,6 +83869,18 @@ File: ./lib/unistdio/u16-vasprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70207,7 +83901,19 @@ File: ./lib/unistdio/u16-vsnprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
-#Header:
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 #
@@ -70227,6 +83933,18 @@ File: ./lib/unistdio/u16-vsprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70247,6 +83965,18 @@ File: ./lib/unistdio/u32-asnprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70267,6 +83997,18 @@ File: ./lib/unistdio/u32-asprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70287,6 +84029,18 @@ File: ./lib/unistdio/u32-printf-parse.c
 Hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
 Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70307,6 +84061,18 @@ File: ./lib/unistdio/u32-snprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70327,6 +84093,18 @@ File: ./lib/unistdio/u32-sprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70347,6 +84125,18 @@ File: ./lib/unistdio/u32-u32-asnprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70367,6 +84157,18 @@ File: ./lib/unistdio/u32-u32-asprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70387,6 +84189,18 @@ File: ./lib/unistdio/u32-u32-snprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70407,6 +84221,18 @@ File: ./lib/unistdio/u32-u32-sprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70427,6 +84253,18 @@ File: ./lib/unistdio/u32-u32-vasnprintf.c
 Hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to UTF-32 strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70447,6 +84285,18 @@ File: ./lib/unistdio/u32-u32-vasprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70467,6 +84317,18 @@ File: ./lib/unistdio/u32-u32-vsnprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70487,6 +84349,18 @@ File: ./lib/unistdio/u32-u32-vsprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70507,6 +84381,18 @@ File: ./lib/unistdio/u32-vasnprintf.c
 Hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to UTF-32 strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70527,6 +84413,18 @@ File: ./lib/unistdio/u32-vasprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70547,6 +84445,18 @@ File: ./lib/unistdio/u32-vsnprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70567,6 +84477,18 @@ File: ./lib/unistdio/u32-vsprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70587,6 +84509,18 @@ File: ./lib/unistdio/u8-asnprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70607,6 +84541,18 @@ File: ./lib/unistdio/u8-asprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70627,6 +84573,18 @@ File: ./lib/unistdio/u8-printf-parse.c
 Hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
 Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70647,6 +84605,18 @@ File: ./lib/unistdio/u8-snprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70667,6 +84637,18 @@ File: ./lib/unistdio/u8-sprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70687,6 +84669,18 @@ File: ./lib/unistdio/u8-u8-asnprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70707,6 +84701,18 @@ File: ./lib/unistdio/u8-u8-asprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70727,6 +84733,18 @@ File: ./lib/unistdio/u8-u8-snprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70747,6 +84765,18 @@ File: ./lib/unistdio/u8-u8-sprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70767,6 +84797,18 @@ File: ./lib/unistdio/u8-u8-vasnprintf.c
 Hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to UTF-8 strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70787,6 +84829,18 @@ File: ./lib/unistdio/u8-u8-vasprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70807,6 +84861,18 @@ File: ./lib/unistdio/u8-u8-vsnprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70827,6 +84893,18 @@ File: ./lib/unistdio/u8-u8-vsprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70847,6 +84925,18 @@ File: ./lib/unistdio/u8-vasnprintf.c
 Hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to UTF-8 strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70867,6 +84957,18 @@ File: ./lib/unistdio/u8-vasprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70887,6 +84989,18 @@ File: ./lib/unistdio/u8-vsnprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70907,6 +85021,18 @@ File: ./lib/unistdio/u8-vsprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70927,6 +85053,18 @@ File: ./lib/unistdio/ulc-asnprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -70947,6 +85085,18 @@ File: ./lib/unistdio/ulc-asprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -70967,6 +85117,18 @@ File: ./lib/unistdio/ulc-fprintf.c
 Hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
 Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to a stream.
 #   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
@@ -70987,6 +85149,18 @@ File: ./lib/unistdio/ulc-printf-parse.c
 Hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
 Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -71007,6 +85181,18 @@ File: ./lib/unistdio/ulc-snprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -71027,6 +85213,18 @@ File: ./lib/unistdio/ulc-sprintf.c
 Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
@@ -71047,6 +85245,18 @@ File: ./lib/unistdio/ulc-vasnprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -71067,6 +85277,18 @@ File: ./lib/unistdio/ulc-vasprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -71087,6 +85309,18 @@ File: ./lib/unistdio/ulc-vfprintf.c
 Hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
 Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to a stream.
 #   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
@@ -71107,6 +85341,18 @@ File: ./lib/unistdio/ulc-vsnprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -71127,6 +85373,18 @@ File: ./lib/unistdio/ulc-vsprintf.c
 Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -71147,6 +85405,18 @@ File: ./lib/unistr.h
 Hash: 13f5e38dabdfbceb3b445638bc8e99064f239e14e73d4e488187a92b7181157a
 Copyright: 2001-2002, 2005-2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Elementary Unicode string functions.
 #   Copyright (C) 2001-2002, 2005-2009 Free Software Foundation, Inc.
@@ -71167,6 +85437,18 @@ File: ./lib/unistr/u-cmp2.h
 Hash: 353c54ecf4321b660412e19cf505114ea8af7b940afc9fb4f817f32c73fe68dc
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare pieces of UTF-8/UTF-16/UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -71187,6 +85469,18 @@ File: ./lib/unistr/u-cpy-alloc.h
 Hash: 33a2cf4d1751fb8b89c16c2e464679a25254a1da5aa823af5026981e3f9f04aa
 Copyright: 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy piece of UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -71207,6 +85501,18 @@ File: ./lib/unistr/u-cpy.h
 Hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy piece of UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71227,6 +85533,18 @@ File: ./lib/unistr/u-endswith.h
 Hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Substring test for UTF-8/UTF-16/UTF-32 strings.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -71247,6 +85565,18 @@ File: ./lib/unistr/u-move.h
 Hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy piece of UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71267,6 +85597,18 @@ File: ./lib/unistr/u-set.h
 Hash: ad540bb3c29abee866d49045d7549895c69e88f9c7e421fc288f06e683371efe
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Fill UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71287,6 +85629,18 @@ File: ./lib/unistr/u-startswith.h
 Hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Substring test for UTF-8/UTF-16/UTF-32 strings.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -71307,6 +85661,18 @@ File: ./lib/unistr/u-stpcpy.h
 Hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71327,6 +85693,18 @@ File: ./lib/unistr/u-stpncpy.h
 Hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71347,6 +85725,18 @@ File: ./lib/unistr/u-strcat.h
 Hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Concatenate UTF-8/UTF-16/UTF-32 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71367,6 +85757,18 @@ File: ./lib/unistr/u-strcoll.h
 Hash: edd8e7309806a8c6748205b082becf74015ca7a86a99f4abfe90fd29cafc9bfe
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare UTF-8/UTF-16/UTF-32 strings using the collation rules of the current
 #   locale.
@@ -71386,6 +85788,18 @@ File: ./lib/unistr/u-strcpy.h
 Hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71406,6 +85820,18 @@ File: ./lib/unistr/u-strcspn.h
 Hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search for some characters in UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71426,6 +85852,18 @@ File: ./lib/unistr/u-strdup.h
 Hash: 29b7da996418f450dc43ca85a629a13e9f41b4e0759a3d26dee1f0f570cd1fdb
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -71446,13 +85884,25 @@ File: ./lib/unistr/u-strlen.h
 Hash: 5ab8a4c4f7df43b1ab702777309a99e463464ecbb02813a12c642b680564a3eb
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
-#Header:
-#/* Determine length of UTF-8/UTF-16/UTF-32 string.
-#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
-#   Written by Bruno Haible <bruno@clisp.org>, 2002.
-#
-#   This program is free software: you can redistribute it and/or modify it
-#   under the terms of the GNU Lesser General Public License as published
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Determine length of UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser General Public License as published
 #   by the Free Software Foundation; either version 3 of the License, or
 #   (at your option) any later version.
 #
@@ -71466,6 +85916,18 @@ File: ./lib/unistr/u-strncat.h
 Hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Concatenate UTF-8/UTF-16/UTF-32 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71486,6 +85948,18 @@ File: ./lib/unistr/u-strncpy.h
 Hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71506,6 +85980,18 @@ File: ./lib/unistr/u-strnlen.h
 Hash: c2287c09b8102ca5941250c212c3065bc5f0310d5047a6d4c540c3d8bd55c71f
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine bounded length of UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71526,6 +86012,18 @@ File: ./lib/unistr/u-strpbrk.h
 Hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search for some characters in UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71546,6 +86044,18 @@ File: ./lib/unistr/u-strspn.h
 Hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search for some characters in UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71566,6 +86076,18 @@ File: ./lib/unistr/u-strstr.h
 Hash: c6fe6020affec0baee70c698a6c983e4924b5b578266c453a7aaf55cc23e2a1c
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Substring test for UTF-8/UTF-16/UTF-32 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71586,6 +86108,18 @@ File: ./lib/unistr/u-strtok.h
 Hash: 124e2d5c65832f8f2b09cb250453ac36538f42bc04e58097b83683954a9fd220
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Tokenize UTF-8/UTF-16/UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71606,6 +86140,18 @@ File: ./lib/unistr/u16-check.c
 Hash: c5ae8c4ac9aa94462744b11f56b7d108a26665c45bfb27222547583236670660
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Check UTF-16 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -71626,6 +86172,18 @@ File: ./lib/unistr/u16-chr.c
 Hash: e3329f60b17e2dfcf738c0ab4d315772c23c15c736a185ef7c9dc9896095d74b
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search character in piece of UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -71646,6 +86204,18 @@ File: ./lib/unistr/u16-cmp.c
 Hash: a178e2ef622d6775701cd298960a8dccafa331ca0d80c79fcaa4de012bd5b28f
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare pieces of UTF-16 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71666,6 +86236,18 @@ File: ./lib/unistr/u16-cmp2.c
 Hash: 2cb5dfa391e0c72cda11f0fb2350422ebde0432a2abf811e5941c06223b8cb67
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare pieces of UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -71686,6 +86268,18 @@ File: ./lib/unistr/u16-cpy-alloc.c
 Hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy piece of UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71706,6 +86300,18 @@ File: ./lib/unistr/u16-cpy.c
 Hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy piece of UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71726,6 +86332,18 @@ File: ./lib/unistr/u16-endswith.c
 Hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Substring test for UTF-16 strings.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -71746,6 +86364,18 @@ File: ./lib/unistr/u16-mblen.c
 Hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
 Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-16 string.
 #   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -71766,6 +86396,18 @@ File: ./lib/unistr/u16-mbsnlen.c
 Hash: 1cdbe9c2450930156e5c3b60065663d3280f3a42a62725b5208c39ced2b34318
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Count characters in UTF-16 string.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -71786,6 +86428,18 @@ File: ./lib/unistr/u16-mbtouc-aux.c
 Hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
 Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion UTF-16 to UCS-4.
 #   Copyright (C) 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -71806,6 +86460,18 @@ File: ./lib/unistr/u16-mbtouc-unsafe-aux.c
 Hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
 Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion UTF-16 to UCS-4.
 #   Copyright (C) 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -71826,6 +86492,18 @@ File: ./lib/unistr/u16-mbtouc-unsafe.c
 Hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
 Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-16 string.
 #   Copyright (C) 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -71846,6 +86524,18 @@ File: ./lib/unistr/u16-mbtouc.c
 Hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
 Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-16 string.
 #   Copyright (C) 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -71866,6 +86556,18 @@ File: ./lib/unistr/u16-mbtoucr.c
 Hash: 2b36b04649b3581ad0cc9161ab1e4715a48625e133a0ec6f539ed6e91dfcf628
 Copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-16 string, returning an error code.
 #   Copyright (C) 1999-2002, 2006-2007 Free Software Foundation, Inc.
@@ -71886,6 +86588,18 @@ File: ./lib/unistr/u16-move.c
 Hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy piece of UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71906,6 +86620,18 @@ File: ./lib/unistr/u16-next.c
 Hash: bac4e802fa60437f5741d1488d912d2d731d12795334311793de72c042b1614f
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Iterate over next character in UTF-16 string.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -71926,6 +86652,18 @@ File: ./lib/unistr/u16-prev.c
 Hash: 966105ec4cf71caa305c1b9bebab2829b77a48e5003424e4c013eeea374f9328
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Iterate over previous character in UTF-16 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -71946,6 +86684,18 @@ File: ./lib/unistr/u16-set.c
 Hash: c5bb09f11189403180a6576abf7d68fb059968f7f39dc4847bc991ac3223f6aa
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Fill UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -71966,6 +86716,18 @@ File: ./lib/unistr/u16-startswith.c
 Hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Substring test for UTF-16 strings.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -71986,6 +86748,18 @@ File: ./lib/unistr/u16-stpcpy.c
 Hash: 6a2cb6d1b10aa92814ff9ed6e973f7c9a0fa2bc7f1465286ac1e39590cb45b73
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -72006,6 +86780,18 @@ File: ./lib/unistr/u16-stpncpy.c
 Hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72026,6 +86812,18 @@ File: ./lib/unistr/u16-strcat.c
 Hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Concatenate UTF-16 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72046,6 +86844,18 @@ File: ./lib/unistr/u16-strchr.c
 Hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search character in UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -72066,6 +86876,18 @@ File: ./lib/unistr/u16-strcmp.c
 Hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare UTF-16 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72086,6 +86908,18 @@ File: ./lib/unistr/u16-strcoll.c
 Hash: f617d544f7c4374c658b004a34b75f439c8492b5d53e032c89fef04f11982f8a
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare UTF-16 strings using the collation rules of the current locale.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -72106,6 +86940,18 @@ File: ./lib/unistr/u16-strcpy.c
 Hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72126,6 +86972,18 @@ File: ./lib/unistr/u16-strcspn.c
 Hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search for some characters in UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72146,6 +87004,18 @@ File: ./lib/unistr/u16-strdup.c
 Hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72166,6 +87036,18 @@ File: ./lib/unistr/u16-strlen.c
 Hash: a9ceaf1d9ede8791c7f986d76c2bba8ed75106e4a6bf10665a66b95683bac6f8
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine length of UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72186,6 +87068,18 @@ File: ./lib/unistr/u16-strmblen.c
 Hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
 Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-16 string.
 #   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -72206,6 +87100,18 @@ File: ./lib/unistr/u16-strmbtouc.c
 Hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
 Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-16 string.
 #   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -72226,6 +87132,18 @@ File: ./lib/unistr/u16-strncat.c
 Hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Concatenate UTF-16 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72246,6 +87164,18 @@ File: ./lib/unistr/u16-strncmp.c
 Hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare UTF-16 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72266,6 +87196,18 @@ File: ./lib/unistr/u16-strncpy.c
 Hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72286,6 +87228,18 @@ File: ./lib/unistr/u16-strnlen.c
 Hash: 4eb212ed57eb468178f80781c20209a087129a621a86543b3c0ec39b4ad5d8bd
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine bounded length of UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72306,6 +87260,18 @@ File: ./lib/unistr/u16-strpbrk.c
 Hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search for some characters in UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72326,6 +87292,18 @@ File: ./lib/unistr/u16-strrchr.c
 Hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search character in UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -72346,6 +87324,18 @@ File: ./lib/unistr/u16-strspn.c
 Hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search for some characters in UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72366,6 +87356,18 @@ File: ./lib/unistr/u16-strstr.c
 Hash: 63d133e15b867e7895edd2352c173567fe0d265932e367156cf3be247cb76d49
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Substring test for UTF-16 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72386,6 +87388,18 @@ File: ./lib/unistr/u16-strtok.c
 Hash: b3612c8df3c80589505dff2b00de24316e2ec6ff9c42ea3e5d1b3d0520ca0b2b
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Tokenize UTF-16 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72406,6 +87420,18 @@ File: ./lib/unistr/u16-to-u32.c
 Hash: c888c31db109f599e0d02beb4ef0ce5f61c56ddaa3ece94bc5b9cc4b2516c852
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert UTF-16 string to UTF-32 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -72426,6 +87452,18 @@ File: ./lib/unistr/u16-to-u8.c
 Hash: 59a93e5bcafc66d68def3b14157e23f301775715a31659046cb4e692b8800674
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert UTF-16 string to UTF-8 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -72446,6 +87484,18 @@ File: ./lib/unistr/u16-uctomb-aux.c
 Hash: 02b5c6e86d0a8def7f78e1a70e0f104a3e283bb1d7a2de6223763bcde8845be7
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion UCS-4 to UTF-16.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -72466,6 +87516,18 @@ File: ./lib/unistr/u16-uctomb.c
 Hash: 88d0197e480ceaa71d8fc9a34aaa68463f25d20524f758f55c023108338967d8
 Copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Store a character in UTF-16 string.
 #   Copyright (C) 2002, 2005-2006, 2009 Free Software Foundation, Inc.
@@ -72486,6 +87548,18 @@ File: ./lib/unistr/u32-check.c
 Hash: 685489582302507fc4d2a831d903c752d9a900d2380f8bc33e8babeaf6a7637d
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Check UTF-32 string.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -72506,6 +87580,18 @@ File: ./lib/unistr/u32-chr.c
 Hash: 3d390e18ce2a42908d41cd6f2b9a9386775538654e35534760251a9e5528b952
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search character in piece of UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72526,6 +87612,18 @@ File: ./lib/unistr/u32-cmp.c
 Hash: 7c6276b59ecfdc1dd63882769b6b4ccf919c844520679d75c03d00ef01610243
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare pieces of UTF-32 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72546,6 +87644,18 @@ File: ./lib/unistr/u32-cmp2.c
 Hash: 57babbf34fd1be9100c5c49c352d468779d176c16711bf88df426bd0b0ecdeb5
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare pieces of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -72566,6 +87676,18 @@ File: ./lib/unistr/u32-cpy-alloc.c
 Hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy piece of UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72586,6 +87708,18 @@ File: ./lib/unistr/u32-cpy.c
 Hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy piece of UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72606,6 +87740,18 @@ File: ./lib/unistr/u32-endswith.c
 Hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Substring test for UTF-32 strings.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -72626,6 +87772,18 @@ File: ./lib/unistr/u32-mblen.c
 Hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-32 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -72646,6 +87804,18 @@ File: ./lib/unistr/u32-mbsnlen.c
 Hash: e2d35901a65cc0a9ef634e286369d131cd95c820698d2cff405423031ee4b9ec
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Count characters in UTF-32 string.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -72666,6 +87836,18 @@ File: ./lib/unistr/u32-mbtouc-unsafe.c
 Hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
 Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-32 string.
 #   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -72686,6 +87868,18 @@ File: ./lib/unistr/u32-mbtouc.c
 Hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
 Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-32 string.
 #   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -72706,7 +87900,19 @@ File: ./lib/unistr/u32-mbtoucr.c
 Hash: 5f2b794282efb3b432d0c8a917dc1f4f498a1c2f89392970a62db00da6c71abb
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
-#Header:
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
 #/* Look at first character in UTF-32 string, returning an error code.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
 #   Written by Bruno Haible <bruno@clisp.org>, 2002.
@@ -72726,6 +87932,18 @@ File: ./lib/unistr/u32-move.c
 Hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy piece of UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72746,6 +87964,18 @@ File: ./lib/unistr/u32-next.c
 Hash: 7ba432d038ecd2515356b8e70fa519d4cdac9e76b0d6e93a8a537ef4fda17448
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Iterate over next character in UTF-32 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -72766,6 +87996,18 @@ File: ./lib/unistr/u32-prev.c
 Hash: 1508e6ba9768221299556836be8fbc1d5791cc3115cf08850ac9bec8623c918c
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Iterate over previous character in UTF-32 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -72786,6 +88028,18 @@ File: ./lib/unistr/u32-set.c
 Hash: 3dd041a6e485dbcd0ea0984b44bab7767b28a4665038ddf05b9955a2d6e6a596
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Fill UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72806,6 +88060,18 @@ File: ./lib/unistr/u32-startswith.c
 Hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Substring test for UTF-32 strings.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -72826,6 +88092,18 @@ File: ./lib/unistr/u32-stpcpy.c
 Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72846,6 +88124,18 @@ File: ./lib/unistr/u32-stpncpy.c
 Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72866,6 +88156,18 @@ File: ./lib/unistr/u32-strcat.c
 Hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Concatenate UTF-32 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72886,6 +88188,18 @@ File: ./lib/unistr/u32-strchr.c
 Hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search character in UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72906,6 +88220,18 @@ File: ./lib/unistr/u32-strcmp.c
 Hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare UTF-32 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72926,6 +88252,18 @@ File: ./lib/unistr/u32-strcoll.c
 Hash: 6420d21bdaae7143502fa4278291a88e2834749b42928b0df438fbb4fc3b95a1
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare UTF-32 strings using the collation rules of the current locale.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -72946,6 +88284,18 @@ File: ./lib/unistr/u32-strcpy.c
 Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72966,6 +88316,18 @@ File: ./lib/unistr/u32-strcspn.c
 Hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search for some characters in UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -72986,6 +88348,18 @@ File: ./lib/unistr/u32-strdup.c
 Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73006,6 +88380,18 @@ File: ./lib/unistr/u32-strlen.c
 Hash: 050991d876a33888be18fc49d7ec4d1146ff674decd9c3b4a3f1a1f9c168e632
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine length of UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73026,6 +88412,18 @@ File: ./lib/unistr/u32-strmblen.c
 Hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-32 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -73046,6 +88444,18 @@ File: ./lib/unistr/u32-strmbtouc.c
 Hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-32 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -73066,6 +88476,18 @@ File: ./lib/unistr/u32-strncat.c
 Hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Concatenate UTF-32 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73086,6 +88508,18 @@ File: ./lib/unistr/u32-strncmp.c
 Hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare UTF-32 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73106,6 +88540,18 @@ File: ./lib/unistr/u32-strncpy.c
 Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73126,6 +88572,18 @@ File: ./lib/unistr/u32-strnlen.c
 Hash: e1a20f548b672e6d0aa8b7954bc31b9c2157c4204b1e7346a250ab8840e7e356
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine bounded length of UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73146,6 +88604,18 @@ File: ./lib/unistr/u32-strpbrk.c
 Hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search for some characters in UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73166,6 +88636,18 @@ File: ./lib/unistr/u32-strrchr.c
 Hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search character in UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73186,6 +88668,18 @@ File: ./lib/unistr/u32-strspn.c
 Hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search for some characters in UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73206,6 +88700,18 @@ File: ./lib/unistr/u32-strstr.c
 Hash: 96be8a0f8ea189120bfe1f5c10629c0b840b2f2e9f64c54df9fce677f701d887
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Substring test for UTF-32 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73226,6 +88732,18 @@ File: ./lib/unistr/u32-strtok.c
 Hash: dedd8fbb7d1265bba868dfd5099d076b6587298e050805ec6eaced0ab5faf332
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Tokenize UTF-32 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73246,6 +88764,18 @@ File: ./lib/unistr/u32-to-u16.c
 Hash: c34e87d4172d3339a781e39d59f8fb9132c09ef980f44c2b1574bfafa685cd66
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert UTF-32 string to UTF-16 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -73266,6 +88796,18 @@ File: ./lib/unistr/u32-to-u8.c
 Hash: d5933d39852f021cbafa03fcd622fe179fbfa3d2b7160e25a2a0f9cf649b331a
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert UTF-32 string to UTF-8 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -73286,6 +88828,18 @@ File: ./lib/unistr/u32-uctomb.c
 Hash: 34f3faef9d257a051c8d8272922f3e20f5fa880baea40b25ba02a9256e3b74df
 Copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Store a character in UTF-32 string.
 #   Copyright (C) 2002, 2005-2006, 2009 Free Software Foundation, Inc.
@@ -73306,6 +88860,18 @@ File: ./lib/unistr/u8-check.c
 Hash: eac2b052e4d9e60b9eb93ae9ec997c386e730de4bf3194fca888eba17a103f37
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Check UTF-8 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -73326,6 +88892,18 @@ File: ./lib/unistr/u8-chr.c
 Hash: 42ec57a2ff9ac547a74c24b611b35ff9d2604edd08dc27f2eec1d887c295d1bd
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search character in piece of UTF-8 string.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -73346,6 +88924,18 @@ File: ./lib/unistr/u8-cmp.c
 Hash: fac6baf649d3fd3670f2fd9aa97dbd2dfa67d7311eba66c76fb96874a6a6f2b9
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare pieces of UTF-8 strings.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73366,6 +88956,18 @@ File: ./lib/unistr/u8-cmp2.c
 Hash: a93c38c1183febaf9ba16e653abf0df27e59ddad5f92762b2ba9e3f6deda64aa
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare pieces of UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -73386,6 +88988,18 @@ File: ./lib/unistr/u8-cpy-alloc.c
 Hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy piece of UTF-8 string.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73406,6 +89020,18 @@ File: ./lib/unistr/u8-cpy.c
 Hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy piece of UTF-8 string.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73426,6 +89052,18 @@ File: ./lib/unistr/u8-endswith.c
 Hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Substring test for UTF-8 strings.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73446,6 +89084,18 @@ File: ./lib/unistr/u8-mblen.c
 Hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
 Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-8 string.
 #   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -73466,6 +89116,18 @@ File: ./lib/unistr/u8-mbsnlen.c
 Hash: d777639cdf076ed27839f1eeaabd23eef4465185239d987ba767f2a866c300bc
 Copyright: 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Count characters in UTF-8 string.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -73486,6 +89148,18 @@ File: ./lib/unistr/u8-mbtouc-aux.c
 Hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
 Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion UTF-8 to UCS-4.
 #   Copyright (C) 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -73506,6 +89180,18 @@ File: ./lib/unistr/u8-mbtouc-unsafe-aux.c
 Hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
 Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion UTF-8 to UCS-4.
 #   Copyright (C) 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -73526,6 +89212,18 @@ File: ./lib/unistr/u8-mbtouc-unsafe.c
 Hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
 Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-8 string.
 #   Copyright (C) 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -73546,6 +89244,18 @@ File: ./lib/unistr/u8-mbtouc.c
 Hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
 Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-8 string.
 #   Copyright (C) 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
@@ -73566,6 +89276,18 @@ File: ./lib/unistr/u8-mbtoucr.c
 Hash: 7eb628bfecb6088142dbddc04daeb302c95a2a16ab2f4ce7fe96ac6515d1f822
 Copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-8 string, returning an error code.
 #   Copyright (C) 1999-2002, 2006-2007 Free Software Foundation, Inc.
@@ -73586,6 +89308,18 @@ File: ./lib/unistr/u8-move.c
 Hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy piece of UTF-8 string.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73606,6 +89340,18 @@ File: ./lib/unistr/u8-next.c
 Hash: 00d3e25ac3c18c5d77c1d250c8220544e99fc346a8015da6b43e3ffe5014baef
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Iterate over next character in UTF-8 string.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73626,6 +89372,18 @@ File: ./lib/unistr/u8-prev.c
 Hash: 3d57d758b00dd01225b001edc0a71b3e6a7dc55957f00b1a5bbc950ae037f281
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Iterate over previous character in UTF-8 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -73646,6 +89404,18 @@ File: ./lib/unistr/u8-set.c
 Hash: bcb3f22a0098c66883640efdd098aed40903b82c9a5d62b7d1936a805148d2a1
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Fill UTF-8 string.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73666,6 +89436,18 @@ File: ./lib/unistr/u8-startswith.c
 Hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Substring test for UTF-8 strings.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73686,6 +89468,18 @@ File: ./lib/unistr/u8-stpcpy.c
 Hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-8 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73706,6 +89500,18 @@ File: ./lib/unistr/u8-stpncpy.c
 Hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-8 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73726,6 +89532,18 @@ File: ./lib/unistr/u8-strcat.c
 Hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Concatenate UTF-8 strings.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73746,6 +89564,18 @@ File: ./lib/unistr/u8-strchr.c
 Hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search character in UTF-8 string.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -73766,6 +89596,18 @@ File: ./lib/unistr/u8-strcmp.c
 Hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare UTF-8 strings.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73786,6 +89628,18 @@ File: ./lib/unistr/u8-strcoll.c
 Hash: 9c5e8a7ef380723d07e0ad180fe59421bf9bf28e1a4d289d05263339cb4025d2
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare UTF-8 strings using the collation rules of the current locale.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -73806,6 +89660,18 @@ File: ./lib/unistr/u8-strcpy.c
 Hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-8 string.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73826,6 +89692,18 @@ File: ./lib/unistr/u8-strcspn.c
 Hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search for some characters in UTF-8 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -73846,6 +89724,18 @@ File: ./lib/unistr/u8-strdup.c
 Hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copy UTF-8 string.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73866,6 +89756,18 @@ File: ./lib/unistr/u8-strlen.c
 Hash: 3f5efa4cf915f83bfdc9adfac2a13ca7d3c75c63c4fc993377e9dee1b36e9f13
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine length of UTF-8 string.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73886,6 +89788,18 @@ File: ./lib/unistr/u8-strmblen.c
 Hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
 Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-8 string.
 #   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -73906,6 +89820,18 @@ File: ./lib/unistr/u8-strmbtouc.c
 Hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
 Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Look at first character in UTF-8 string.
 #   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -73926,6 +89852,18 @@ File: ./lib/unistr/u8-strncat.c
 Hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Concatenate UTF-8 strings.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73946,6 +89884,18 @@ File: ./lib/unistr/u8-strncmp.c
 Hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compare UTF-8 strings.
 #   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
@@ -73966,13 +89916,25 @@ File: ./lib/unistr/u8-strncpy.c
 Hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
 Copyright: 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
-#Header:
-#/* Copy UTF-8 string.
-#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
-#   Written by Bruno Haible <bruno@clisp.org>, 2002.
-#
-#   This program is free software: you can redistribute it and/or modify it
-#   under the terms of the GNU Lesser General Public License as published
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Copy UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   This program is free software: you can redistribute it and/or modify it
+#   under the terms of the GNU Lesser General Public License as published
 #   by the Free Software Foundation; either version 3 of the License, or
 #   (at your option) any later version.
 #
@@ -73986,6 +89948,18 @@ File: ./lib/unistr/u8-strnlen.c
 Hash: e591a71a08b4377ef29017795f592adf1ebf56caa73d172428942ed3d8735e53
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine bounded length of UTF-8 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -74006,6 +89980,18 @@ File: ./lib/unistr/u8-strpbrk.c
 Hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search for some characters in UTF-8 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -74026,6 +90012,18 @@ File: ./lib/unistr/u8-strrchr.c
 Hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search character in UTF-8 string.
 #   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
@@ -74046,6 +90044,18 @@ File: ./lib/unistr/u8-strspn.c
 Hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Search for some characters in UTF-8 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -74066,6 +90076,18 @@ File: ./lib/unistr/u8-strstr.c
 Hash: 62e3171131f084bb524e8e4b7b677e51dc0a4ddd7920c791e861fc6209824057
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Substring test for UTF-8 strings.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -74086,6 +90108,18 @@ File: ./lib/unistr/u8-strtok.c
 Hash: 70422453328ab4382d464bc5e573a7921b44d303c4da2e58aa0cd67c8285ba1d
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Tokenize UTF-8 string.
 #   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
@@ -74106,6 +90140,18 @@ File: ./lib/unistr/u8-to-u16.c
 Hash: 7743fd5caa826417f0cc0e0da91677000cd23088c2b345a21a27aa43b0b595f1
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert UTF-8 string to UTF-16 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -74126,6 +90172,18 @@ File: ./lib/unistr/u8-to-u32.c
 Hash: 7308a76a0f28176be9098511a4dc13f5625aa399c70a8bf9993f78ddf7b319ef
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert UTF-8 string to UTF-32 string.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -74146,6 +90204,18 @@ File: ./lib/unistr/u8-uctomb-aux.c
 Hash: 44e95c47ddf3343b1c02157c12c9a0a950852563cd543850488cb21944559e11
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Conversion UCS-4 to UTF-8.
 #   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
@@ -74166,6 +90236,18 @@ File: ./lib/unistr/u8-uctomb.c
 Hash: 60d6859b731140e5420ea2e3093e3ac272522cc9685459a9eddbdf4909d79f40
 Copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Store a character in UTF-8 string.
 #   Copyright (C) 2002, 2005-2006, 2009 Free Software Foundation, Inc.
@@ -74186,6 +90268,18 @@ File: ./lib/unitypes.h
 Hash: 0eaaeed4ca0138967cd6fe4e6956edef837fa8461248425e893e1fc2fa0cbfee
 Copyright: 2002, 2005-2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Elementary types for the GNU UniString library.
 #   Copyright (C) 2002, 2005-2006 Free Software Foundation, Inc.
@@ -74206,6 +90300,18 @@ File: ./lib/uniwbrk.h
 Hash: 43906fff693dfdb439dee0927665138c03553941b19dec5efbca942a96aaa603
 Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Word breaks in Unicode strings.
 #   Copyright (C) 2001-2003, 2005-2009 Free Software Foundation, Inc.
@@ -74226,6 +90332,18 @@ File: ./lib/uniwbrk/u-wordbreaks.h
 Hash: fc09df77911b0e107a808ffff910b9e323519e9c45a98f3c013cf11a38865d20
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Word breaks in UTF-8/UTF-16/UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -74246,6 +90364,18 @@ File: ./lib/uniwbrk/u16-wordbreaks.c
 Hash: b5dea0d0ecc05dcf54c0de70762cc9cde64ffa38e40aa9ddad0b8a84d01d2c5e
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Word breaks in UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -74266,6 +90396,18 @@ File: ./lib/uniwbrk/u32-wordbreaks.c
 Hash: 4e66094a2b8797f527af80fd87fed6a222d621c8b8acffe7f7bdd9684fd5ac24
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Word breaks in UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -74286,6 +90428,18 @@ File: ./lib/uniwbrk/u8-wordbreaks.c
 Hash: 00a1587322d98dd8948a091a85b45d8ebc70469f9e8c58552e3ea591b1908786
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Word breaks in UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -74306,6 +90460,18 @@ File: ./lib/uniwbrk/ulc-wordbreaks.c
 Hash: 1f3d4b29e74270464b552516539bd93bb486915d5e06e59452e3f58b1732d324
 Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Word breaks in strings.
 #   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
@@ -74326,6 +90492,18 @@ File: ./lib/uniwbrk/wbrkprop.h
 Hash: d8007020c5f8a08911ff92b7ff5bfd74f9448c47e568b430f2f1ab7999fc0d87
 Copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Line breaking properties of Unicode characters.  */
@@ -74346,6 +90524,18 @@ File: ./lib/uniwbrk/wbrktable.c
 Hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Word break auxiliary table.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -74366,6 +90556,18 @@ File: ./lib/uniwbrk/wbrktable.h
 Hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Word break auxiliary table.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -74386,6 +90588,18 @@ File: ./lib/uniwbrk/wordbreak-property.c
 Hash: 4265f2bbb6cd20db8b5b6034d1d7da59b5a2b943cc9543c158091658bb61a36a
 Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Word break property.
 #   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
@@ -74406,6 +90620,18 @@ File: ./lib/uniwidth.h
 Hash: e4c6ff2cb013a8b2de23e758533e34077d64fd62e6c4098af88169ecd9ca1425
 Copyright: 2001-2002, 2005, 2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Display width functions.
 #   Copyright (C) 2001-2002, 2005, 2007 Free Software Foundation, Inc.
@@ -74426,6 +90652,18 @@ File: ./lib/uniwidth/cjk.h
 Hash: 6d886d39c5a9bed7c747138b4025cd035c6b59163b1632e3eff5be730f9db943
 Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test for CJK encoding.
 #   Copyright (C) 2001-2002, 2005-2007 Free Software Foundation, Inc.
@@ -74446,6 +90684,18 @@ File: ./lib/uniwidth/u16-strwidth.c
 Hash: 25a3cc5a8562b7025075a92b2acd9499fb20191bfea045cdfbf6ab778fcd2130
 Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine display width of UTF-16 string.
 #   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
@@ -74466,6 +90716,18 @@ File: ./lib/uniwidth/u16-width.c
 Hash: 6447db6c2460f0cc11bea62a47e273a6cc33ca44ecdca0e7c640756cad86fc70
 Copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine display width of UTF-16 string.
 #   Copyright (C) 2001-2002, 2006-2007 Free Software Foundation, Inc.
@@ -74486,6 +90748,18 @@ File: ./lib/uniwidth/u32-strwidth.c
 Hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
 Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine display width of UTF-32 string.
 #   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
@@ -74506,6 +90780,18 @@ File: ./lib/uniwidth/u32-width.c
 Hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
 Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine display width of UTF-32 string.
 #   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
@@ -74526,6 +90812,18 @@ File: ./lib/uniwidth/u8-strwidth.c
 Hash: 5e92bd8858f143e5c3888e1890f467f6b2a077b1c6e5622e888cdba7922207fb
 Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine display width of UTF-8 string.
 #   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
@@ -74546,6 +90844,18 @@ File: ./lib/uniwidth/u8-width.c
 Hash: 5992f0453d5de4d8a6ba85cd63b8090006ba2c0b148afd9e07ab6d5dc36dea0c
 Copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine display width of UTF-8 string.
 #   Copyright (C) 2001-2002, 2006-2007 Free Software Foundation, Inc.
@@ -74566,6 +90876,18 @@ File: ./lib/uniwidth/width.c
 Hash: 8f8187cd1a09e3412e237881244e68c314bcfb39c5c851ec7f251e17742ab6ab
 Copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine display width of Unicode character.
 #   Copyright (C) 2001-2002, 2006-2009 Free Software Foundation, Inc.
@@ -74586,6 +90908,18 @@ File: ./lib/unlinkdir.c
 Hash: c9c22134c02523e933f8d5d7ca013d594047f1ee23b58a5ae39377525f9f046e
 Copyright: 2005-2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* unlinkdir.c - determine whether we can unlink directories
 #
@@ -74606,6 +90940,18 @@ File: ./lib/unlinkdir.h
 Hash: 02cd119ca3d63148dd23165be0b728a05b4dc02618dbb0d81782d83029dcf4ae
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* unlinkdir.h - determine (and maybe change) whether we can unlink directories
 #
@@ -74626,6 +90972,18 @@ File: ./lib/unlocked-io.h
 Hash: a68721dbc7b80415c8f613c429da32c306e587ca487707e3cc920e7e34ac13a8
 Copyright: 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Prefer faster, non-thread-safe stdio functions if available.
 #
@@ -74646,6 +91004,18 @@ File: ./lib/unsetenv.c
 Hash: 0b078599d4ea56fe10c153183b0254ed4945619c4c08c9ce35d5b32019d920de
 Copyright: 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc.
 #   This file is part of the GNU C Library.
@@ -74666,6 +91036,18 @@ File: ./lib/userspec.c
 Hash: 87e09ee21b48597c439740bea48e07ce2dfe3daee61e331c0fea028a4572f53e
 Copyright: 1989-1992, 1997-1998, 2000, 2002-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* userspec.c -- Parse a user and group string.
 #   Copyright (C) 1989-1992, 1997-1998, 2000, 2002-2007 Free Software
@@ -74701,6 +91083,18 @@ File: ./lib/utime.c
 Hash: 0200b3aa44e66773c0cde9fec4a180d0eb7111465207468fc42520867fb69e64
 Copyright: 1998, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Copyright (C) 1998, 2001, 2002, 2003, 2004, 2006 Free Software
 #   Foundation, Inc.
@@ -74721,6 +91115,18 @@ File: ./lib/utimecmp.c
 Hash: 513c0e1f4b1f45d732838695ab385c411afac14ce1c8841ad8bcc3855d16900c
 Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* utimecmp.c -- compare file time stamps
 #
@@ -74741,6 +91147,18 @@ File: ./lib/utimecmp.h
 Hash: 4f328c1b87b0637f3cbb0c01968bbc5ffc5350b420f90f7f51de75d6872837ae
 Copyright: 2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* utimecmp.h -- compare file time stamps
 #
@@ -74761,6 +91179,18 @@ File: ./lib/utimens.c
 Hash: dd356a50d7062392a2b51927c4e390f09e3cb059bf0c2702ace1865130b3f136
 Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Set file access and modification times.
 #
@@ -74788,6 +91218,19 @@ File: ./lib/vasnprintf.c
 Hash: f826f12032ff66714226a5c720dd2dbd1d645ba0536b39dfbea651b792404c5d
 Copyright: 1999, 2002-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* vsprintf with automatic memory allocation.
 #   Copyright (C) 1999, 2002-2009 Free Software Foundation, Inc.
@@ -74808,6 +91251,19 @@ File: ./lib/vasnprintf.h
 Hash: 2bf66b7f11449085cc6395a5d6d60496f6f13b08aa0187a5f52e9252e6cab2fa
 Copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* vsprintf with automatic memory allocation.
 #   Copyright (C) 2002-2004, 2007-2008 Free Software Foundation, Inc.
@@ -74828,6 +91284,19 @@ File: ./lib/vasprintf.c
 Hash: 48c7f19d29a46ec6dbaf09a38b3ecbde38b8191f9bca32208ece53a6b2de08ee
 Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
@@ -74848,6 +91317,18 @@ File: ./lib/vdprintf.c
 Hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to a file descriptor.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -74868,6 +91349,18 @@ File: ./lib/verify.h
 Hash: a231e15e8b20379f38be81f4674fec177045e91abec1cc68481b6eb081c51312
 Copyright: 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Compile-time assert-like macros.
 #
@@ -74888,6 +91381,18 @@ File: ./lib/verror.c
 Hash: 2d2abd16891d68fb47a4f777060632ab389041f3cecbb9b5cce131f889f0fa8a
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* va_list error handler for noninteractive utilities
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -74908,6 +91413,18 @@ File: ./lib/verror.h
 Hash: bfd2d5bbe94db1c367a3e3e4348fa2597a1c980ef1f74c10b7082ae569d56fb4
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Declaration for va_list error-reporting function
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -74928,6 +91445,18 @@ File: ./lib/version-etc-fsf.c
 Hash: 2200910e2dfcad20e1ed7fa171431d1ee58058ddcf354bc54b58c6f812ece50f
 Copyright: 1999-2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Variable with FSF copyright information, for version-etc.
 #   Copyright (C) 1999-2006 Free Software Foundation, Inc.
@@ -74948,6 +91477,18 @@ File: ./lib/version-etc.c
 Hash: 54f16006d89e39c40e5de0ff2f87f3f8a0498e25d2032fb2ef3b3e5c8a7f8bae
 Copyright: 1999-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Print --version and bug-reporting information in a consistent format.
 #   Copyright (C) 1999-2009 Free Software Foundation, Inc.
@@ -74968,6 +91509,18 @@ File: ./lib/version-etc.h
 Hash: 8fe8c52a2462c979791b9718376564da4abfb5e764de7bca57ec4ff85a97dfc3
 Copyright: 1999, 2003, 2005, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Print --version and bug-reporting information in a consistent format.
 #   Copyright (C) 1999, 2003, 2005, 2009 Free Software Foundation, Inc.
@@ -74988,6 +91541,18 @@ File: ./lib/vfprintf.c
 Hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
 Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to a stream.
 #   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
@@ -75008,6 +91573,18 @@ File: ./lib/vprintf.c
 Hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to a stream.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -75028,6 +91605,19 @@ File: ./lib/vsnprintf.c
 Hash: 2be1271317efe1b22a2d9f18376d0a225658aa69ce7d86064c5a767779711336
 Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
@@ -75048,6 +91638,18 @@ File: ./lib/vsprintf.c
 Hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
 Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Formatted output to strings.
 #   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
@@ -75068,6 +91670,18 @@ File: ./lib/w32sock.h
 Hash: 1fd87a23e6def0b721fd23be4572dc15592716c646eff400eb8fa64fffda4962
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* w32sock.h --- internal auxilliary functions for Windows socket functions
 #
@@ -75088,6 +91702,18 @@ File: ./lib/w32spawn.h
 Hash: 010dd0544b69c6f163c5243a3b721ac0e3d23cc3e1b9ce1a8a30fce6789b7e6a
 Copyright: 2001, 2003, 2004-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Auxiliary functions for the creation of subprocesses.  Native Woe32 API.
 #   Copyright (C) 2001, 2003, 2004-2009 Free Software Foundation, Inc.
@@ -75108,6 +91734,18 @@ File: ./lib/wait-process.c
 Hash: 580ab33dd9e9ad4be37f0440dce7774cf758ac9eef6725756be9a2d08481b529
 Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Waiting for a subprocess to finish.
 #   Copyright (C) 2001-2003, 2005-2009 Free Software Foundation, Inc.
@@ -75128,6 +91766,18 @@ File: ./lib/wait-process.h
 Hash: 9c746de4916059b6ca40492142d370bc7006d4b8f032ad0111f6db7b0f653306
 Copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Waiting for a subprocess to finish.
 #   Copyright (C) 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
@@ -75148,6 +91798,19 @@ File: ./lib/wchar.in.h
 Hash: e2b50e5f1a1293246463b729146da631d3afced4d48e395e00d38ccef20ea230
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* A substitute for ISO C99 <wchar.h>, for platforms that have issues.
 #
@@ -75168,6 +91831,18 @@ File: ./lib/wcrtomb.c
 Hash: 10ecd599d0542d9a8001cca8225ee9c13514679962f22a531c75270aede87343
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert wide character to multibyte character.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -75188,6 +91863,18 @@ File: ./lib/wcsnrtombs.c
 Hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert wide string to string.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -75208,6 +91895,18 @@ File: ./lib/wcsrtombs-state.c
 Hash: 04a4e1633ad0400f2161a87e7cf9a6aed6f826572214e001af1c7dddc850d7aa
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert wide string to string.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -75228,6 +91927,18 @@ File: ./lib/wcsrtombs.c
 Hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert wide string to string.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -75248,6 +91959,18 @@ File: ./lib/wctob.c
 Hash: c1b08427605521353fd457e9a00f2c3c9b08f1b424e5a75a9186d803debec1b5
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Convert wide character to unibyte character.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -75268,6 +91991,19 @@ File: ./lib/wctype.in.h
 Hash: af0dc33178ed26851e8f3cb509f0acd760c6d25a876e8dc19ddb362d74ea46cf
 Copyright: 2006-2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* A substitute for ISO C99 <wctype.h>, for platforms that lack it.
 #
@@ -75288,6 +92024,18 @@ File: ./lib/wcwidth.c
 Hash: 0aa6edaa085279cd62d2af3087586c8d95c4a611a683295b382144145735fede
 Copyright: 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine the number of screen columns needed for a character.
 #   Copyright (C) 2006, 2007 Free Software Foundation, Inc.
@@ -75308,6 +92056,18 @@ File: ./lib/write-any-file.c
 Hash: 91ab05c6935f8e51a763879fb79b2f3e9a68d664409800351c677574461519ce
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Determine whether we can write any file.
 #
@@ -75335,6 +92095,18 @@ File: ./lib/write.c
 Hash: 862d3fd531460e25f2438bd1a28cf38b2f681566dc0e6eb1870e0c903173909c
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* POSIX compatible write() function.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -75355,6 +92127,18 @@ File: ./lib/xalloc-die.c
 Hash: 29f127d04d8c8d1e5999b7a07f26a3c5a00f5162135417f5956adf7ef53b7578
 Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Report a memory allocation failure and exit.
 #
@@ -75374,6 +92158,18 @@ File: ./lib/xalloc.h
 Hash: 671d0dba30c52a75befe251993cc88c9cd3c9d5c047bf49267ccf26b133b4fa2
 Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* xalloc.h -- malloc with out-of-memory checking
 #
@@ -75393,6 +92189,18 @@ File: ./lib/xasprintf.c
 Hash: 8f74172c8681a5c0982e04312d1ce3104bab1aef39016d11869f0176d5fd27ed
 Copyright: 1999, 2002-2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* vasprintf and asprintf with out-of-memory checking.
 #   Copyright (C) 1999, 2002-2004, 2006 Free Software Foundation, Inc.
@@ -75413,6 +92221,18 @@ File: ./lib/xconcat-filename.c
 Hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
 Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Construct a full filename from a directory and a relative filename.
 #   Copyright (C) 2001-2004, 2006-2008 Free Software Foundation, Inc.
@@ -75433,6 +92253,18 @@ File: ./lib/xgetcwd.c
 Hash: 07b391c85dc4337c756a55eec0eda78ec9cd0e0975b181a48c5029c172a023af
 Copyright: 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* xgetcwd.c -- return current directory with unlimited length
 #
@@ -75453,6 +92285,18 @@ File: ./lib/xgetcwd.h
 Hash: 291895105e1bb54b496008ad5954bc8163c0ac56b8287f27e49adbe54e9ed0cf
 Copyright: 1995, 2001, 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* prototype for xgetcwd
 #   Copyright (C) 1995, 2001, 2003 Free Software Foundation, Inc.
@@ -75473,6 +92317,18 @@ File: ./lib/xgetdomainname.c
 Hash: 088792dafaec8531ae554297ad6ae5d481593dfab6921835648a8bce17c0c116
 Copyright: 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* xgetdomainname.c -- Return the NIS domain name, without size limitations.
 #   Copyright (C) 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 Free Software
@@ -75493,6 +92349,18 @@ File: ./lib/xgetdomainname.h
 Hash: b26e437c9a8e6901a5034314c104978730a0753855f02e620edac0428c35b0a0
 Copyright: 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* xgetdomainname.h -- Return the NIS domain name, without size limitations.
 #   Copyright (C) 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc.
@@ -75513,6 +92381,18 @@ File: ./lib/xgethostname.c
 Hash: 2c4e8d5075dbcfa989f2855a9f231d4c98065036c64acf489b1449f4a3af9c39
 Copyright: 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* xgethostname.c -- return current hostname with unlimited length
 #
@@ -75538,6 +92418,18 @@ File: ./lib/xmalloc.c
 Hash: 25035c1bcf6b0d4ab5f9894ec09f8312b715a2e72e95d7f56b4b9ce41f53aade
 Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* xmalloc.c -- malloc with out of memory checking
 #
@@ -75558,6 +92450,18 @@ File: ./lib/xmalloca.c
 Hash: e84a48177ef61605b6eed93be0310de6dac9146bbaf454bd7fb6caa1beb416f5
 Copyright: 2003, 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Safe automatic memory allocation with out of memory checking.
 #   Copyright (C) 2003, 2006-2007 Free Software Foundation, Inc.
@@ -75578,6 +92482,18 @@ File: ./lib/xmalloca.h
 Hash: b8589d4f03fc2e4441ee611dd5596e4a3ac0657bd6974d6b21e95d435aef8f6f
 Copyright: 2003, 2005, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Safe automatic memory allocation with out of memory checking.
 #   Copyright (C) 2003, 2005, 2007 Free Software Foundation, Inc.
@@ -75598,6 +92514,18 @@ File: ./lib/xmemcoll.c
 Hash: f6215d92c92b8dd0afcb4da7a17068eb6b7d997bd3b8f7a3cf6e3e0ae25ed83c
 Copyright: 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Locale-specific memory comparison.
 #
@@ -75625,6 +92553,18 @@ File: ./lib/xmemdup0.c
 Hash: 244bfde7ef2ec650951db25d48ca2a94b61b77db3692c001b316f58057af7d14
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* xmemdup0.c -- copy a block of arbitrary bytes, plus a trailing NUL
 #
@@ -75645,6 +92585,18 @@ File: ./lib/xmemdup0.h
 Hash: 0d3d9d1a970022933ab73db3375f0cc46e5fbf23a16ad79242cbd6461110201d
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* xmemdup0.h -- copy a block of arbitrary bytes, plus a trailing NUL
 #
@@ -75665,8 +92617,20 @@ File: ./lib/xnanosleep.c
 Hash: 587481ebf1cf8ff5a01e7ce8889b66fa2be4a4c631fd020f2df12deb6322f814
 Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
-#Header:
-#/* xnanosleep.c -- a more convenient interface to nanosleep
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* xnanosleep.c -- a more convenient interface to nanosleep
 #
 #   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software
 #   Foundation, Inc.
@@ -75690,6 +92654,18 @@ File: ./lib/xprintf.c
 Hash: 53c512f199ddd3f96147026f3ec162d4a4795ba009341a77dc173cdb6652a06b
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* printf wrappers that fail immediately for non-file-related errors
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -75710,6 +92686,18 @@ File: ./lib/xprintf.h
 Hash: 6d16969445a022a51044c272fb9aeefd3fa1bce9b54006cd10226a704b05f6fb
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* printf wrappers that fail immediately for non-file-related errors
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -75730,6 +92718,18 @@ File: ./lib/xreadlink.c
 Hash: 3cb513689749db6e11f0f29fbee0e970aa1b69b3b1c1ab4b7ebf35f70eb59525
 Copyright: 2001, 2003-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* xreadlink.c -- readlink wrapper to return the link name in malloc'd storage
 #
@@ -75750,6 +92750,18 @@ File: ./lib/xreadlink.h
 Hash: 0137f3b154dfc2a56910915e2522eb83920cfa9dc1684b241d60fae327d93f9e
 Copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Reading symbolic links without size limitation.
 #
@@ -75770,6 +92782,18 @@ File: ./lib/xsetenv.c
 Hash: b18f92f3404ce0f52b6536522986febc64c972fbea548ba151a12abd0550c875
 Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Setting environment variables, with out-of-memory checking.
 #   Copyright (C) 2001-2002, 2005-2007 Free Software Foundation, Inc.
@@ -75790,6 +92814,18 @@ File: ./lib/xsetenv.h
 Hash: 02f0e5d1c1bee87cfcc15ef5d22da97530a2213cce025f98bbd07440a9346aad
 Copyright: 2001-2002, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Setting environment variables, with out-of-memory checking.
 #   Copyright (C) 2001-2002, 2007 Free Software Foundation, Inc.
@@ -75810,6 +92846,19 @@ File: ./lib/xsize.h
 Hash: af3fdcacfe8f3dbae26f9d806b0a9b2274f86ea7daed7117f09e29858b85d38f
 Copyright: 2003, 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* xsize.h -- Checked size_t computations.
 #
@@ -75830,6 +92879,18 @@ File: ./lib/xstriconv.c
 Hash: 42d740ec07e24b23ef7e205783f456e0ab80a5a2d716e4d045408b73365440a5
 Copyright: 2001-2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Charset conversion with out-of-memory checking.
 #   Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc.
@@ -75850,6 +92911,18 @@ File: ./lib/xstriconv.h
 Hash: 07f01b89d3917786fdb52af236bc0007f98425b6167f083f2440d19e17dd3c5f
 Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Charset conversion with out-of-memory checking.
 #   Copyright (C) 2001-2004, 2006-2007 Free Software Foundation, Inc.
@@ -75870,6 +92943,18 @@ File: ./lib/xstriconveh.c
 Hash: e35dae25c1d50a7d5d5b3df39059abf308145f43ae4e85ba73931745e7017995
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Charset conversion with out-of-memory checking.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -75890,6 +92975,18 @@ File: ./lib/xstriconveh.h
 Hash: f64f01e0d0569fa1f4c52371b10abc77b255d1a578f06d141d682561ee8c28bf
 Copyright: 2001-2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Charset conversion with out-of-memory checking.
 #   Copyright (C) 2001-2007, 2009 Free Software Foundation, Inc.
@@ -75910,6 +93007,18 @@ File: ./lib/xstrndup.c
 Hash: 0fb519e75e481ad8278a17ca05d2a40e377c265586ca996d18c4a56ddd4c2697
 Copyright: 2003, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Duplicate a bounded initial segment of a string, with out-of-memory
 #   checking.
@@ -75930,6 +93039,18 @@ File: ./lib/xstrndup.h
 Hash: 41aeea4d051e789e9ee829206990c84da4e6ab74f5a5ebbf1e7444ecdb2e7093
 Copyright: 2003 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Duplicate a bounded initial segment of a string, with out-of-memory
 #   checking.
@@ -75950,6 +93071,18 @@ File: ./lib/xstrtod.c
 Hash: 7433646b920b02364625fd3d4b09fb30c050b37a3c73ee2c644d63ee95bca8c6
 Copyright: 1996, 1999, 2000, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* error-checking interface to strtod-like functions
 #
@@ -75969,6 +93102,18 @@ File: ./lib/xstrtod.h
 Hash: ace9d21f9ff0ac53904c27c990f62e2b8819a7776acbd67c3f05c6893dcaef4a
 Copyright: 1996, 1998, 2003, 2004, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Error-checking interface to strtod-like functions.
 #
@@ -76000,6 +93145,18 @@ File: ./lib/xstrtol-error.c
 Hash: 831f1f9013ce8fe06ea3685fd92d37cebc8125b91e0c87a93758fd5f4b17c47b
 Copyright: 1995, 1996, 1998, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* A more useful interface to strtol.
 #
@@ -76019,6 +93176,18 @@ File: ./lib/xstrtol.c
 Hash: 1de66c39110e53ed0f5d4cc2737b14547ef7657e0c6ff41b7d14bf71b617b792
 Copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* A more useful interface to strtol.
 #
@@ -76038,6 +93207,18 @@ File: ./lib/xstrtol.h
 Hash: 03fe7afdcf7063d6f46436f0ca5dc6cd12a9f6bac186bc36f3af26dd745995d6
 Copyright: 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* A more useful interface to strtol.
 #
@@ -76086,6 +93267,18 @@ File: ./lib/xtime.h
 Hash: 93ba493c1b4263ae9363cbeabfe1a8abe0959b8380c740b34e3c4b3909c9f26d
 Copyright: 2005, 2006 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* xtime -- extended-resolution integer time stamps
 #
@@ -76106,6 +93299,18 @@ File: ./lib/xvasprintf.c
 Hash: 52187c5a41b1f31643add5fb4e3f204c74131d3030ce4b7668476584bc3075cf
 Copyright: 1999, 2002-2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* vasprintf and asprintf with out-of-memory checking.
 #   Copyright (C) 1999, 2002-2004, 2006-2008 Free Software Foundation, Inc.
@@ -76126,6 +93331,18 @@ File: ./lib/xvasprintf.h
 Hash: 43236f9f154af870f714a7b11b1f4955a7e1e7a2e9f322608e5780e185014f63
 Copyright: 2002-2004, 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* vasprintf and asprintf with out-of-memory checking.
 #   Copyright (C) 2002-2004, 2006-2008 Free Software Foundation, Inc.
@@ -76146,6 +93363,18 @@ File: ./lib/yesno.c
 Hash: 89bdc0ba46060accf0008dc08a620a5629f006515f4bf5cc12a17775d448bfa3
 Copyright: 1990, 1998, 2001, 2003-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* yesno.c -- read a yes/no response from stdin
 #
@@ -76166,6 +93395,18 @@ File: ./lib/yesno.h
 Hash: f6ea7fda3622e6ce79f8737d3a6c12e11e9b077489cdbfe3a89e2105aa54493b
 Copyright: 2004 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* declare yesno
 #   Copyright (C) 2004 Free Software Foundation, Inc.
@@ -87286,6 +104527,18 @@ File: ./posix-modules
 Hash: a5ccaf8a1eb82ecf46eb6b2aa5c191573ba82514eb2a06faae04e262348940c7
 Copyright: 2002-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ##
@@ -87330,6 +104583,18 @@ File: ./tests/nan.h
 Hash: 0e920a53922496135430d09f3bfebfc1f03f63142e1f0ff761e842e96d506a56
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Macros for not-a-number.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -87350,6 +104615,18 @@ File: ./tests/test-alignof.c
 Hash: 8bf8f28addd7565ad3f4256848a2aed22f6b4d89ba5b501f5d3e45273b84af36
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <alignof.h>.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -87370,6 +104647,18 @@ File: ./tests/test-alloca-opt.c
 Hash: 7be92bd4805798798cc208871e587c60cff48c8fe695b08405cf2dcc866ddbfc
 Copyright: 2005, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of optional automatic memory allocation.
 #   Copyright (C) 2005, 2007 Free Software Foundation, Inc.
@@ -87390,6 +104679,18 @@ File: ./tests/test-arcfour.c
 Hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -87410,6 +104711,18 @@ File: ./tests/test-arctwo.c
 Hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -87430,6 +104743,18 @@ File: ./tests/test-argmatch.c
 Hash: 374d3cdd98263ea28ad0f3d8c21f8aaf953562d377316a56f32a69534d13603b
 Copyright: 1990, 1998-1999, 2001-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of exact or abbreviated match search.
 #   Copyright (C) 1990, 1998-1999, 2001-2008 Free Software Foundation, Inc.
@@ -87450,6 +104775,18 @@ File: ./tests/test-argp-2.sh
 Hash: aa582c3a737c286f43630868ea734856d5d74809aed1e967403b6d1e21a96ec6
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ## Test suite for argp.
@@ -87470,6 +104807,18 @@ File: ./tests/test-argp-version-etc-1.sh
 Hash: 14124a44a2d4160fc8d3bde7bef3491c53725766368df8d5b97c5473869753bd
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ## Test suite for argp-version-etc.
@@ -87490,6 +104839,18 @@ File: ./tests/test-argp-version-etc.c
 Hash: 9894dd1ed11fe0f5567b33d83bddb190020bbbb37e5792cd8a76a9145eb3e7cc
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test suite for argp-version-etc.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -87510,6 +104871,18 @@ File: ./tests/test-argp.c
 Hash: 3b0ecdaec3be7ac59ab04ba51095836c4843d5fe2016294aef19667d894b0503
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test suite for argp.
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -87530,6 +104903,18 @@ File: ./tests/test-argv-iter.c
 Hash: 87ef6b17b9a78fc466aa9cc85627af6f6e0ac63b0d7c82998d4dab47a9bd298f
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test argv iterator
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -87550,6 +104935,18 @@ File: ./tests/test-arpa_inet.c
 Hash: 79ac8a737e1a83e3bad62ce1868e706a2b08bf46afa32c67681e91beb53462a1
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <arpa/inet.h> substitute.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -87570,6 +104967,18 @@ File: ./tests/test-array-mergesort.c
 Hash: f9c4ef4dc591cbeac70eba11e9533d59181f12cf12d362e00782f45ecd9c36ed
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of stable-sorting of an array using mergesort.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -87590,6 +104999,18 @@ File: ./tests/test-array_list.c
 Hash: e03fc7928bfbe8781c744e1c21b70a907264b62c59bce976a7ac04694d5ff6a2
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of sequential list data type implementation.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -87610,6 +105031,18 @@ File: ./tests/test-array_oset.c
 Hash: c0bae0da40c7a22d6504b362bb30545716f1f9ad8bd5ca4a817a809f88197808
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ordered set data type implementation.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -87630,6 +105063,18 @@ File: ./tests/test-atexit.c
 Hash: 03e140710061dad22ceba20a744340059a599decc42a1f0a57061c370b674eeb
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of execution of program termination handlers.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -87670,6 +105115,18 @@ File: ./tests/test-avltree_list.c
 Hash: 7eda006f64201339fc1716ebf20c065d5bdad5b0c385ae538ed09804b9100628
 Copyright: 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of sequential list data type implementation.
 #   Copyright (C) 2006-2009 Free Software Foundation, Inc.
@@ -87690,6 +105147,18 @@ File: ./tests/test-avltree_oset.c
 Hash: 30f270cd2b85bb909eaa7bbd80590b7f31be418ab29815c404aa0266290f320a
 Copyright: 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ordered set data type implementation.
 #   Copyright (C) 2006-2009 Free Software Foundation, Inc.
@@ -87710,6 +105179,18 @@ File: ./tests/test-avltreehash_list.c
 Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of sequential list data type implementation.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -87730,6 +105211,18 @@ File: ./tests/test-base64.c
 Hash: f1a00fd1ea70356a96758211f9ee6ac4b85a24414ac54c1d218c21c6df7f8a15
 Copyright: 2004, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Self tests for base64.
 #   Copyright (C) 2004, 2008 Free Software Foundation, Inc.
@@ -87750,6 +105243,18 @@ File: ./tests/test-binary-io.c
 Hash: c45b392e94b4c908c583df305c095c968079bb2bbe726a7feefc0c7400de5a58
 Copyright: 2005, 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of binary mode I/O.
 #   Copyright (C) 2005, 2007-2008 Free Software Foundation, Inc.
@@ -87786,6 +105291,18 @@ File: ./tests/test-bitrotate.c
 Hash: b31c900c0b50eeae92b228ab5590bb3f390daf91535632322fe28d791eb1e0b1
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <bitrotate.h> substitute.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -87806,6 +105323,18 @@ File: ./tests/test-btowc.c
 Hash: 5ebcafef18833867faa6529b403f9ea8209c5b226325a645d7f4213d0daf22c1
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion of unibyte character to wide character.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -87866,6 +105395,18 @@ File: ./tests/test-byteswap.c
 Hash: 54ff0c61e08753f6557e58cbd5a9ec794ca5f2e7f51c605f4188f2803a5da67f
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <byteswap.h> substitute.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -87886,6 +105427,18 @@ File: ./tests/test-c-ctype.c
 Hash: 13becd45e283e22f97fac9aa9901241affa9a90f9e2e0a10efd1267cb9bada9e
 Copyright: 2005, 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of character handling in C locale.
 #   Copyright (C) 2005, 2007-2008 Free Software Foundation, Inc.
@@ -87906,6 +105459,18 @@ File: ./tests/test-c-stack.c
 Hash: 3b31d9428c61805262bd02ba033b43f2e82e1152a2cc23f48bae221a7b86dce1
 Copyright: 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of c-stack module.
 #   Copyright (C) 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
@@ -87986,6 +105551,18 @@ File: ./tests/test-c-strcasecmp.c
 Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case-insensitive string comparison function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -88006,6 +105583,18 @@ File: ./tests/test-c-strcasestr.c
 Hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
 Copyright: 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case-insensitive searching in a string.
 #   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
@@ -88026,6 +105615,18 @@ File: ./tests/test-c-strncasecmp.c
 Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case-insensitive string comparison function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -88046,6 +105647,18 @@ File: ./tests/test-c-strstr.c
 Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of searching in a string.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -88066,6 +105679,18 @@ File: ./tests/test-canonicalize-lgpl.c
 Hash: 75c8baa24049fa693e9d21c4e974cbf52f43450a5b050bec610517bc05fe9464
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of execution of program termination handlers.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -88106,6 +105731,18 @@ File: ./tests/test-canonicalize.c
 Hash: 7c61f923516c2bb3723a7449064aadf6b2ecf9568d3e1e05f1869841160852ad
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of execution of file name canonicalization.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -88146,6 +105783,18 @@ File: ./tests/test-carray_list.c
 Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of sequential list data type implementation.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -88166,6 +105815,18 @@ File: ./tests/test-ceilf1.c
 Hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding towards positive infinity.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -88186,6 +105847,18 @@ File: ./tests/test-ceilf2.c
 Hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding towards positive infinity.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -88206,6 +105879,18 @@ File: ./tests/test-ceill.c
 Hash: e09b1df767b4364cee38177843c6dcd444e346b8bb5b5161b90d8acec2dbf97b
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding towards positive infinity.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -88226,6 +105911,18 @@ File: ./tests/test-closein.c
 Hash: 60b704da91782d85057f15589b9adc2d33e1d034e212d4fe256a6e2bc65ffab7
 Copyright: 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of closein module.
 #   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
@@ -88265,6 +105962,18 @@ File: ./tests/test-cond.c
 Hash: cdf0a1afb208f062d159f0bae1e25a2c661d41e33bae74c541e2bd6700dbd280
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of condition variables in multithreaded situations.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -88285,6 +105994,18 @@ File: ./tests/test-copy-acl.c
 Hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of copying of files.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -88325,6 +106046,18 @@ File: ./tests/test-copy-file.c
 Hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of copying of files.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -88365,6 +106098,18 @@ File: ./tests/test-count-one-bits.c
 Hash: 0a1addad31c87ba1dc9b2149bec84703e74bf936dc6807f45f0df6c679c99eba
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2007-2008 Free Software Foundation
@@ -88385,6 +106130,18 @@ File: ./tests/test-crc.c
 Hash: e926964a3909208530797cd9796ec1651f592cdf9925dcc36e6e5a566968712f
 Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2005, 2006, 2007 Free Software Foundation
@@ -88405,6 +106162,19 @@ File: ./tests/test-des.c
 Hash: 2be8e95b0dea714ec5eea7bb03ba88c5768d2dc5376db963fa25bfaae842c979
 Copyright: 2005, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005, 2007 Free Software Foundation
@@ -88425,6 +106195,18 @@ File: ./tests/test-dirent-safer.c
 Hash: 5a22d0608d61b123ddda55784e14d7d257b9110344b8e19243968d9fa0fd2eff
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test that directory streams leave standard fds alone.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -88445,6 +106227,18 @@ File: ./tests/test-dirname.c
 Hash: 502e96f62d9a5b6ce322bbae2e2710d9e0d9865dbc4afa1e08fe7abf01fea73e
 Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the gnulib dirname module.
 #   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
@@ -88465,6 +106259,18 @@ File: ./tests/test-dprintf-posix.c
 Hash: e6f0b4694e38d2d1e76dc966dd73d4afb089176883b07410a1b7f22f1e133b33
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible dprintf() function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -88504,6 +106310,18 @@ File: ./tests/test-dup2.c
 Hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test duplicating file descriptors.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -88524,6 +106342,18 @@ File: ./tests/test-dup3.c
 Hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test duplicating file descriptors.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -88564,6 +106394,18 @@ File: ./tests/test-environ.c
 Hash: 7f9aff3986d989fd5967abe2d2b072d678411dd664064aef0639f7a7602921bd
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of environ variable.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -88584,6 +106426,18 @@ File: ./tests/test-errno.c
 Hash: ca54e2c0451c2ff331290635dc29a1c8f47a42e28a5e85dec52c78e70fa8e810
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <errno.h> substitute.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -88604,6 +106458,18 @@ File: ./tests/test-exclude.c
 Hash: 8ebd7047d8c758e1bb24cb360d2ab93d441a88f10b84384950d69c2977c4165d
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test suite for exclude.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -88624,6 +106490,18 @@ File: ./tests/test-exclude1.sh
 Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ## Test suite for exclude.
@@ -88644,6 +106522,18 @@ File: ./tests/test-exclude2.sh
 Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ## Test suite for exclude.
@@ -88664,6 +106554,18 @@ File: ./tests/test-exclude3.sh
 Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ## Test suite for exclude.
@@ -88684,6 +106586,18 @@ File: ./tests/test-exclude4.sh
 Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ## Test suite for exclude.
@@ -88704,6 +106618,18 @@ File: ./tests/test-exclude5.sh
 Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ## Test suite for exclude.
@@ -88724,6 +106650,18 @@ File: ./tests/test-exclude6.sh
 Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ## Test suite for exclude.
@@ -88744,6 +106682,18 @@ File: ./tests/test-exclude7.sh
 Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ## Test suite for exclude.
@@ -88764,6 +106714,18 @@ File: ./tests/test-fbufmode.c
 Hash: f8bb902cbd6174946430fea20f8b499d96ef441a74fe87b603adc43f53b24ba9
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of fbufmode() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -88784,6 +106746,18 @@ File: ./tests/test-fchdir.c
 Hash: 1ede59e2649f54965b96b11e3defba44f756e66e2f0c750d5f950f4dbe196fa7
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test changing to a directory named by a file descriptor.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -88804,6 +106778,18 @@ File: ./tests/test-fcntl-h.c
 Hash: 356ce47d3e2061b396a00244416fae41a78a4ff320458994f76699c2d5b742d2
 Copyright: 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <fcntl.h> substitute.
 #   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
@@ -88824,6 +106810,18 @@ File: ./tests/test-fcntl-safer.c
 Hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of opening a file descriptor.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -88844,6 +106842,18 @@ File: ./tests/test-fdopendir.c
 Hash: 9847782c540349bedfe816a98eff2e2a2b21de374b5eb0bbaa3f59cbb61ae561
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test opening a directory stream from a file descriptor.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -88864,6 +106874,18 @@ File: ./tests/test-fflush.c
 Hash: 69eca960097ee5c280d159ba1477c6fdf640149e0e14e210b536524114a79618
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible fflush() function.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -88884,6 +106906,18 @@ File: ./tests/test-fflush2.c
 Hash: 0cb46425ac00337c0a55933b576d483da8c84792991892297731d9ffc746f4bd
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible fflush() function.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -88918,6 +106952,18 @@ File: ./tests/test-file-has-acl.c
 Hash: 6c2949f3e460929b2f8bf6c01aed469b5cc37a1eb1233352638770c3930df5df
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test for presence of ACL.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -88958,6 +107004,18 @@ File: ./tests/test-filenamecat.c
 Hash: 2421876d5280739ca72e375a556c1af16509b646f18f3217c4a71c9539b47234
 Copyright: 1996-2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of concatenation of two arbitrary file names.
 #
@@ -88978,6 +107036,18 @@ File: ./tests/test-filevercmp.c
 Hash: e9a609c14b8dce43bffbf6d67ec08a74092aa14c279914cd27cf603657ead587
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of filevercmp() function.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -88998,6 +107068,19 @@ File: ./tests/test-flock.c
 Hash: ed2f3659a200c467c8c3c35b233e01ef87c935180aed9e91946bce9883ea62fe
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Test of flock() function.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -89018,6 +107101,18 @@ File: ./tests/test-floorf1.c
 Hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding towards negative infinity.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -89038,6 +107133,18 @@ File: ./tests/test-floorf2.c
 Hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding towards negative infinity.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -89058,6 +107165,18 @@ File: ./tests/test-floorl.c
 Hash: 8dd61603c1d098520aa003282269b173ff24e36a22c995a82098236b60c0bd12
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding towards negative infinity.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -89078,6 +107197,18 @@ File: ./tests/test-fnmatch.c
 Hash: 0949276b897ba2ca32389bb684582366b42e011338d888e27529fe47643863a0
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of fnmatch string matching function.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -89098,6 +107229,18 @@ File: ./tests/test-fopen-safer.c
 Hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of opening a file stream.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -89118,6 +107261,18 @@ File: ./tests/test-fopen.c
 Hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of opening a file stream.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -89138,6 +107293,18 @@ File: ./tests/test-fopen.h
 Hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of opening a file stream.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -89158,6 +107325,18 @@ File: ./tests/test-fpending.c
 Hash: f674acf1725bc698a2a895260a0ed04e4e7d75079bc902bc25df4eda4626648c
 Copyright: 2004, 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Ensure that __fpending works.
 #
@@ -89195,6 +107374,18 @@ File: ./tests/test-fprintf-posix.c
 Hash: 745ab000bd06f41a498df49ee0daf9fa7feaa93b9f16156e4b958405becd413b
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible fprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -89215,6 +107406,18 @@ File: ./tests/test-fprintf-posix.h
 Hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible vsprintf() and sprintf() functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -89254,6 +107457,18 @@ File: ./tests/test-fprintf-posix2.c
 Hash: 61c448e81f453607a13ca6af87bb998cbde812213f3c001d9ad5bcff9cfe6f57
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible fprintf() function.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -89293,6 +107508,18 @@ File: ./tests/test-fpurge.c
 Hash: fc4f811164270032bce572b9c4f9537ea36963aa67e630a450c0258599c8ddec
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of fpurge() function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -89313,6 +107540,18 @@ File: ./tests/test-freadable.c
 Hash: 8f818a6a890d5569df82559a4e62b02dfbceff150985e779e219669eebf9ec5a
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of freadable() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -89333,6 +107572,18 @@ File: ./tests/test-freadahead.c
 Hash: 9833934459a057c2572f209afac01879e5ca8a3efda95d6790d17ab9938d1917
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of freadahead() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -89363,6 +107614,18 @@ File: ./tests/test-freading.c
 Hash: 36417f8adf8660daefb24719abfcd2d6df61a952656fe82370e243753bce4bd6
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of freading() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -89383,6 +107646,18 @@ File: ./tests/test-freadptr.c
 Hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of freadptr() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -89413,6 +107688,18 @@ File: ./tests/test-freadptr2.c
 Hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of freadptr() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -89443,6 +107730,18 @@ File: ./tests/test-freadseek.c
 Hash: dd89379556b28cba841ae08e74f0d92b1739c31a7e399dcdec050f4e73a51430
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of freadseek() function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -89473,6 +107772,18 @@ File: ./tests/test-freopen.c
 Hash: 1794fac0885679928991ce38c01ee4e5e23331ca73e89de6fa05c0d731ac9ae6
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of opening a file stream.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -89493,6 +107804,18 @@ File: ./tests/test-frexp.c
 Hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of splitting a double into fraction and mantissa.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -89513,6 +107836,18 @@ File: ./tests/test-frexpl.c
 Hash: 06e5c7a95b4f9162db1d74f609c89b24736a09affac663df79cce627cac4355a
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of splitting a 'long double' into fraction and mantissa.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -89533,6 +107868,18 @@ File: ./tests/test-fseek.c
 Hash: ae3126d4ce719f8e50ae5bd6defb067f936333ddd967e018d9d63614e1510ba7
 Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of fseek() function.
 #   Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
@@ -89571,6 +107918,18 @@ File: ./tests/test-fseeko.c
 Hash: 1560dd162ef0b3cfb7b9b2202b21bf9933c216776fc89f20361e521f162b3ce6
 Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of fseeko() function.
 #   Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
@@ -89609,6 +107968,18 @@ File: ./tests/test-fseterr.c
 Hash: 9573252bfae2fe4f10686e73eb86cc0d662f2e25a23b7a4f70036ae38ca30ddf
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test setting the error indicator of a stream.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -89629,6 +108000,18 @@ File: ./tests/test-fstrcmp.c
 Hash: a7b983fc8ba0e4d673899f2631eae4461eeb11be8a5a01a6f57ff6790dde39f9
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of fuzzy string comparison.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -89649,6 +108032,19 @@ File: ./tests/test-fsync.c
 Hash: c3f28d94e1d2539f92e889ad3322fbc9b5fcb9c406f9840452cf355766627792
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Test of fsync() function.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -89669,6 +108065,18 @@ File: ./tests/test-ftell.c
 Hash: b7573164fb69e7149847239bf7ceb7db79f453822f1cbda04e22a52283b3281d
 Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ftell() function.
 #   Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
@@ -89707,6 +108115,18 @@ File: ./tests/test-ftello.c
 Hash: e34687ed84f4523c387c8408a168176c62b7e3da1d7e5c51fd2dbfdd11b61cf9
 Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ftello() function.
 #   Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
@@ -89745,6 +108165,18 @@ File: ./tests/test-func.c
 Hash: bc81ef2fd91ed0c929de4c4958fe9d6af9f4b08a310f02929b7244bc9c3821db
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether __func__ is available
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -89765,6 +108197,18 @@ File: ./tests/test-fwritable.c
 Hash: 319d6c836c355f4f63122cc2f7ba0756183810d27488a8e5a4f09305d31c19d9
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of fwritable() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -89785,6 +108229,18 @@ File: ./tests/test-fwriting.c
 Hash: 499f0954d31a94d7067eb0be27b75766f56ab69c0494e2845759fb24d1703f4e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of fwriting() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -89805,6 +108261,19 @@ File: ./tests/test-gc-arcfour.c
 Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -89825,6 +108294,19 @@ File: ./tests/test-gc-arctwo.c
 Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -89845,6 +108327,19 @@ File: ./tests/test-gc-des.c
 Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -89865,6 +108360,19 @@ File: ./tests/test-gc-hmac-md5.c
 Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -89885,6 +108393,19 @@ File: ./tests/test-gc-hmac-sha1.c
 Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -89905,6 +108426,19 @@ File: ./tests/test-gc-md2.c
 Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -89925,6 +108459,19 @@ File: ./tests/test-gc-md4.c
 Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -89945,6 +108492,19 @@ File: ./tests/test-gc-md5.c
 Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -89965,6 +108525,19 @@ File: ./tests/test-gc-pbkdf2-sha1.c
 Hash: 7799cf357547a841ccf3afeb7e5d9143abc19ee0a898cb087d2de1bb492bae59
 Copyright: 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2002, 2003, 2004, 2005, 2007  Free Software Foundation
@@ -89985,6 +108558,19 @@ File: ./tests/test-gc-rijndael.c
 Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -90005,6 +108591,19 @@ File: ./tests/test-gc-sha1.c
 Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -90025,6 +108624,19 @@ File: ./tests/test-gc.c
 Hash: 8cb1d73b6c4bd47920f369b94539807ae13559bf31d128fea4584223d60675a0
 Copyright: 2005, 2006 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005, 2006 Free Software Foundation
@@ -90045,6 +108657,18 @@ File: ./tests/test-getaddrinfo.c
 Hash: 97815c6bb90ea2860ebdfcd9dfc8554dcbfa522d7aa8ba38ddecbc126e096a8d
 Copyright: 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the getaddrinfo module.
 #
@@ -90065,6 +108689,18 @@ File: ./tests/test-getdate.c
 Hash: 935427c30258eb6e5a9b394cc5d96c1427d7abe260fe0b81fe448b30a4171ba3
 Copyright: 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of getdate() function.
 #   Copyright (C) 2008, 2009 Free Software Foundation, Inc.
@@ -90085,6 +108721,18 @@ File: ./tests/test-getdelim.c
 Hash: c90cc89f32a451ccbfe0910eb584fd389f60f2b051affa2dbe2bdc9d80097081
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of getdelim() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -90105,6 +108753,18 @@ File: ./tests/test-getdtablesize.c
 Hash: 434e5606cbd9d33002d0e279a6af31645a13f37bf9492b61df63bdd7fac591ce
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of getdtablesize() function.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -90125,6 +108785,18 @@ File: ./tests/test-gethostname.c
 Hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
 Copyright: 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2008, 2009 Free Software Foundation
@@ -90145,6 +108817,18 @@ File: ./tests/test-getline.c
 Hash: 324eb53650a3b992efd3fc0cce526be56e493dac9a686c8f32b40a845358556d
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of getline() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -90165,6 +108849,18 @@ File: ./tests/test-getndelim2.c
 Hash: ad18c635ec03c40547062fe271ebb6703e1d91c537b7adf63937c9ae962c1913
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of getndelim2() function.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -90185,6 +108881,18 @@ File: ./tests/test-getopt.c
 Hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of command line argument processing.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -90205,6 +108913,18 @@ File: ./tests/test-getopt.h
 Hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of command line argument processing.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -90225,6 +108945,18 @@ File: ./tests/test-getopt_long.h
 Hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of command line argument processing.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -90245,6 +108977,18 @@ File: ./tests/test-getpass.c
 Hash: 9a0c1937fde38c70927a4eeb336d442bd6127bc5eb69e09a5cd4deb09e2fc195
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test getpass implementation.
 #   Copyright (C) 2005 Free Software Foundation, Inc.
@@ -90265,6 +109009,18 @@ File: ./tests/test-gettimeofday.c
 Hash: 5b419f77d9b7e6e89f7289f386cd548243e4e4adc21e9a52d41d21a027fdf8ee
 Copyright: 2005, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2005, 2007 Free Software Foundation
@@ -90285,6 +109041,18 @@ File: ./tests/test-glob.c
 Hash: 90a78aa60a23cad4495713152d6c476d4e43d510a6392ab6368173e374d14d04
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of glob/globfree functions.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -90305,6 +109073,18 @@ File: ./tests/test-hash.c
 Hash: a74fab88b5cf12f0e0d435a4a5e3fd5e55078cae553004def0998b9222616a24
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2009 Free Software Foundation
@@ -90325,6 +109105,18 @@ File: ./tests/test-hmac-md5.c
 Hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -90345,6 +109137,18 @@ File: ./tests/test-hmac-sha1.c
 Hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -90365,6 +109169,18 @@ File: ./tests/test-i-ring.c
 Hash: 6f100cd5549d218db3fc88df418a556f9aac62f0bcf54163da4ad21c84ccb129
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the simple ring buffer.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -90385,6 +109201,18 @@ File: ./tests/test-iconv-utf.c
 Hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of character set conversion.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -90405,6 +109233,18 @@ File: ./tests/test-iconv.c
 Hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of character set conversion.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -90425,6 +109265,18 @@ File: ./tests/test-iconvme.c
 Hash: d82c108598a30a83eb25992c35c31945f938c62e30203a312361e842c432d069
 Copyright: 2004, 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Recode strings between character sets, using iconv.
 #   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
@@ -90445,6 +109297,18 @@ File: ./tests/test-idpriv-drop.c
 Hash: 887a2d06234e0105a076274b1c0cb5a4b97b25977378f755f305ead016dae39e
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of dropping uid/gid privileges of the current process permanently.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -90505,6 +109369,18 @@ File: ./tests/test-idpriv-droptemp.c
 Hash: 036d78805f967b4753cdba6e50cac8854f7b24390bbf73b5a2d7f0fd6e1c903c
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of dropping uid/gid privileges of the current process temporarily.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -90565,6 +109441,18 @@ File: ./tests/test-inttypes.c
 Hash: 8ca6a2b71d7f538cc79e407439bcd512ffca9203636f7cb336cd8c0d12d322fa
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <inttypes.h> substitute.
 #   Copyright (C) 2006-2007 Free Software Foundation, Inc.
@@ -90585,6 +109473,18 @@ File: ./tests/test-isfinite.c
 Hash: 192e0aefe852ad279cf33f30acbf1e6a5a685ea90a52bda5174baf39c06cd339
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of isfinite() substitute.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -90605,6 +109505,18 @@ File: ./tests/test-isinf.c
 Hash: 467c934361d927c8eb3bb47ae9844379ca009c7ebc4845dd28e567813ab1efcb
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of isinf() substitute.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -90625,6 +109537,18 @@ File: ./tests/test-isnan.c
 Hash: f1159b7f32f37a46e32fc884afa11c72818e02511e9332ee213bd99ffe3319f8
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of isnand() substitute.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -90645,6 +109569,18 @@ File: ./tests/test-isnand-nolibm.c
 Hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of isnand() substitute.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -90665,6 +109601,18 @@ File: ./tests/test-isnand.c
 Hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of isnand() substitute.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -90685,6 +109633,18 @@ File: ./tests/test-isnand.h
 Hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of isnand() substitute.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -90705,6 +109665,18 @@ File: ./tests/test-isnanf-nolibm.c
 Hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of isnanf() substitute.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -90725,6 +109697,18 @@ File: ./tests/test-isnanf.c
 Hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of isnanf() substitute.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -90745,6 +109729,18 @@ File: ./tests/test-isnanf.h
 Hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of isnanf() substitute.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -90765,6 +109761,18 @@ File: ./tests/test-isnanl-nolibm.c
 Hash: d24217e860acd20ff34dacb3bc316ab34a3af4a1d47241da882a51348e4bc34b
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of isnanl() substitute.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -90785,6 +109793,18 @@ File: ./tests/test-isnanl.c
 Hash: a6dad044535d0b8182f8331618c092ddc94769e6aee495678f102047711f05e7
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of isnanl() substitute.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -90805,6 +109825,18 @@ File: ./tests/test-isnanl.h
 Hash: 1ccd58e1e4f6b9d59404fddbe589f2e34e40ea508081a567040c100b60b197c3
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of isnanl() substitute.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -90825,6 +109857,18 @@ File: ./tests/test-ldexpl.c
 Hash: 7ee31a7a49ffebce6a7c8f0225d169567e0be429e67a89882ae1670f5ae9075c
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of multiplying a 'long double' by a power of 2.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -90845,6 +109889,19 @@ File: ./tests/test-link.c
 Hash: 26cc2a58a305192996a7e8ee065b4bf8254c9b13d4e9f4efbe3c77777e2fc065
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/* Test of link() function.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -90885,6 +109942,18 @@ File: ./tests/test-linked_list.c
 Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of sequential list data type implementation.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -90905,6 +109974,18 @@ File: ./tests/test-linkedhash_list.c
 Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of sequential list data type implementation.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -90925,6 +110006,18 @@ File: ./tests/test-locale.c
 Hash: 13e3a273bd14c7064068652cb01722dab29c3661de434218afc58cf29f5900d8
 Copyright: 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <locale.h> substitute.
 #   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
@@ -90945,6 +110038,18 @@ File: ./tests/test-localename.c
 Hash: 7695c1b31209fab6aba6c16e3b612f606d1eae1b0720f1781148cab7fd964e7e
 Copyright: 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of gl_locale_name function.
 #   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
@@ -90965,6 +110070,18 @@ File: ./tests/test-lock.c
 Hash: b995e7ccbf41d3f3ae5e9ed223ede35060a5c1ac152baaf9793fd8bd43210b93
 Copyright: 2005, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of locking in multithreaded situations.
 #   Copyright (C) 2005, 2008 Free Software Foundation, Inc.
@@ -90985,6 +110102,18 @@ File: ./tests/test-lseek.c
 Hash: 67b2fb2011956d378309801b9f809b54658434eb8b2a5c6a77b87090bfbfa9ef
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of lseek() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -91024,6 +110153,18 @@ File: ./tests/test-lstat.c
 Hash: 9cafdb021e073473c5f16a5b4f74a2ac31579de14aadebbdef5a0f625250d0e8
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of lstat() function.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -91044,6 +110185,18 @@ File: ./tests/test-malloca.c
 Hash: 687b864c60a0a939b2d06d15f71bedc6640551c5a46b9d97cf954b7b9dad01aa
 Copyright: 2005, 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of safe automatic memory allocation.
 #   Copyright (C) 2005, 2007 Free Software Foundation, Inc.
@@ -91064,6 +110217,18 @@ File: ./tests/test-math.c
 Hash: 5e0b0077a9753a2a6ab13b7d12ba7a95c37cc998e3886d96a0c15b55bd951f48
 Copyright: 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <math.h> substitute.
 #   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
@@ -91084,6 +110249,18 @@ File: ./tests/test-mbmemcasecmp.c
 Hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case-insensitive memory area comparison function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -91104,6 +110281,18 @@ File: ./tests/test-mbmemcasecmp.h
 Hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case-insensitive memory area comparison function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -91184,6 +110373,18 @@ File: ./tests/test-mbmemcasecoll.c
 Hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case-insensitive memory area comparison function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -91264,6 +110465,18 @@ File: ./tests/test-mbrtowc.c
 Hash: 9e6ff6c6e393938dfae1ad3aa59b09a1aff3de7914e1d9b850ea0c62a2865a0a
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion of multibyte character to wide character.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -91364,6 +110577,18 @@ File: ./tests/test-mbscasecmp.c
 Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case-insensitive string comparison function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -91404,6 +110629,18 @@ File: ./tests/test-mbscasestr1.c
 Hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case-insensitive searching in a string.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -91424,6 +110661,18 @@ File: ./tests/test-mbscasestr2.c
 Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of searching in a string.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -91464,6 +110713,18 @@ File: ./tests/test-mbscasestr3.c
 Hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case-insensitive searching in a string.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -91504,6 +110765,18 @@ File: ./tests/test-mbscasestr4.c
 Hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case-insensitive searching in a string.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -91544,6 +110817,18 @@ File: ./tests/test-mbschr.c
 Hash: e5d6bd10ed694e87f1e1f158fda3d9e3bfe798703c35c003123ad801a988cd9e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of searching a string for a character.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -91584,6 +110869,18 @@ File: ./tests/test-mbscspn.c
 Hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of searching a string for a character among a given set of characters.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -91624,6 +110921,18 @@ File: ./tests/test-mbsinit.c
 Hash: 0a0f9a89e23f44ce8d21a21ec2345e1f3022ba9e3e35e2705f7347e5d3da89c9
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test for initial conversion state.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -91664,6 +110973,18 @@ File: ./tests/test-mbsncasecmp.c
 Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case-insensitive string comparison function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -91704,6 +111025,18 @@ File: ./tests/test-mbsnrtowcs.c
 Hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion of string to wide string.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -91804,6 +111137,18 @@ File: ./tests/test-mbspbrk.c
 Hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of searching a string for a character among a given set of characters.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -91844,6 +111189,18 @@ File: ./tests/test-mbspcasecmp.c
 Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case-insensitive string comparison function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -91884,6 +111241,18 @@ File: ./tests/test-mbsrchr.c
 Hash: 336d238f34950347720810d4eba15e4d22a9aa84098f3ec41fd2856d8aedf6d7
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of searching a string for the last occurrence of a character.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -91924,6 +111293,18 @@ File: ./tests/test-mbsrtowcs.c
 Hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion of string to wide string.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -92024,6 +111405,18 @@ File: ./tests/test-mbsspn.c
 Hash: 2708b6a1359116604ffd1f0488e510bef6ee687588f481e0cad37ed0ec848913
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of searching a string for a character outside a given set of characters.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -92064,6 +111457,18 @@ File: ./tests/test-mbsstr1.c
 Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of searching in a string.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -92084,6 +111489,18 @@ File: ./tests/test-mbsstr2.c
 Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of searching in a string.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -92124,6 +111541,18 @@ File: ./tests/test-mbsstr3.c
 Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of searching in a string.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -92164,6 +111593,19 @@ File: ./tests/test-md2.c
 Hash: abf2f70a1887b653b034add8c99c0436a2e3751e63f73929660b24930fa9f795
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -92184,6 +111626,19 @@ File: ./tests/test-md4.c
 Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-2+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+  
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+  
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software Foundation,
+  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -92204,6 +111659,18 @@ File: ./tests/test-md5.c
 Hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -92224,6 +111691,18 @@ File: ./tests/test-memchr.c
 Hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2008-2009 Free Software Foundation
@@ -92244,6 +111723,18 @@ File: ./tests/test-memchr2.c
 Hash: 8d79550f65f0123da4f6be14234e0fe15616b4ddea78f81d77dd51fd37973be6
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2008-2009 Free Software Foundation
@@ -92264,6 +111755,18 @@ File: ./tests/test-memcmp.c
 Hash: e18a4806f468c3a8e062e5dce871b138ea023af8f3f3aecc2830380fc2d28f6c
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2008-2009 Free Software Foundation
@@ -92284,6 +111787,18 @@ File: ./tests/test-memmem.c
 Hash: 382e52373b1850a70886e1a8b5e6036b56dc71e1a7308522c9bc833e27a18406
 Copyright: 2004, 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2004, 2007-2009 Free Software Foundation
@@ -92304,6 +111819,18 @@ File: ./tests/test-memrchr.c
 Hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2008-2009 Free Software Foundation
@@ -92324,6 +111851,18 @@ File: ./tests/test-netdb.c
 Hash: cf4bf72aa3b66b389ba6ec0da06aefe83c95f0654339a77a8704612bb9599120
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <netdb.h> substitute.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -92344,6 +111883,18 @@ File: ./tests/test-netinet_in.c
 Hash: a848df8c2e882b20250b3a4d479e8fada3d528f8fce8c5627355d6304c80b4dc
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <netinet/in.h> substitute.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -92364,6 +111915,18 @@ File: ./tests/test-obstack-printf.c
 Hash: 9feff5ec7cbb16735b6c9d63f6b8c2bd3d3f4c5553f9b996be3f8cfe4240e4c4
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of obstack_printf() and obstack_vprintf() functions.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -92384,6 +111947,18 @@ File: ./tests/test-open.c
 Hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of opening a file descriptor.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -92404,6 +111979,18 @@ File: ./tests/test-open.h
 Hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of opening a file descriptor.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -92424,6 +112011,18 @@ File: ./tests/test-openat-safer.c
 Hash: d06869d5a44b4d7270af94cdbbb1d4190957d4292c3af8b9564002d4e4d1c985
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test that openat_safer leave standard fds alone.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -92444,6 +112043,18 @@ File: ./tests/test-parse-duration.c
 Hash: 35362dc2615751df013220bee2763c001ae65724f6a65a56708d422de57273a8
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of parsing durations.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -92484,6 +112095,18 @@ File: ./tests/test-perror.c
 Hash: 63d18ff5d46be6478f9569c7270da67595712bcaf5d1057c6948359c2cc04bf5
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of perror() function.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -92524,6 +112147,18 @@ File: ./tests/test-pipe-filter-gi1.c
 Hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of filtering of data through a subprocess.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -92564,6 +112199,18 @@ File: ./tests/test-pipe-filter-gi2-child.c
 Hash: 00ffadb86a75c8f0e27d3d9e7c2c7061b6f4fd0bf9f0ab3ea26323aa6824c621
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Child program invoked by test-pipe-filter-gi2-main.
 #
@@ -92583,6 +112230,18 @@ File: ./tests/test-pipe-filter-gi2-main.c
 Hash: c786b65d8861d3f3889afb7eb1b454ce25bce48f093eee46d8d331939cc7ba71
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test harness for pipe-filter-gi.
 #
@@ -92602,6 +112261,18 @@ File: ./tests/test-pipe-filter-gi2.sh
 Hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 #
@@ -92622,6 +112293,18 @@ File: ./tests/test-pipe-filter-ii1.c
 Hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of filtering of data through a subprocess.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -92662,6 +112345,18 @@ File: ./tests/test-pipe-filter-ii2-child.c
 Hash: bac3649c854de7b46c60ca030b7a379e4abe24edddb70e3dc6e6cf9f1bfc7e8c
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Child program invoked by test-pipe-filter-ii2-main.
 #
@@ -92681,6 +112376,18 @@ File: ./tests/test-pipe-filter-ii2-main.c
 Hash: 8c157d6df939e6d434fec71cdf844cfe366d062d871530d04c05a4f12ae9559d
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test harness for pipe-filter-ii.
 #
@@ -92700,6 +112407,18 @@ File: ./tests/test-pipe-filter-ii2.sh
 Hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 #
@@ -92720,6 +112439,18 @@ File: ./tests/test-pipe.c
 Hash: 87b0ce6f07c7dc998dccca7755d36b68474a4fa9fa1c5479346bbd2a228eeaf9
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of create_pipe_bidi/wait_subprocess.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -92753,6 +112484,18 @@ File: ./tests/test-pipe2.c
 Hash: 73c73a849418178f4ce6c9ad2e85a4a66257efbeeb4c1848901ab0c3bcd6a2cd
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of pipe2.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -92773,6 +112516,18 @@ File: ./tests/test-poll.c
 Hash: 7970e5d5d232352391d076f73881bb98e1eaa9346930e8f191a49ce549b152eb
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of poll() function.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -92793,6 +112548,18 @@ File: ./tests/test-popen-safer.c
 Hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of opening a subcommand stream.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -92813,6 +112580,18 @@ File: ./tests/test-popen-safer2.c
 Hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of opening a subcommand stream.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -92833,6 +112612,18 @@ File: ./tests/test-popen.c
 Hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of opening a subcommand stream.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -92853,6 +112644,18 @@ File: ./tests/test-popen.h
 Hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of opening a subcommand stream.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -92873,6 +112676,18 @@ File: ./tests/test-posix_spawn1.c
 Hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
 Copyright: 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of posix_spawn() function.
 #   Copyright (C) 2008, 2009 Free Software Foundation, Inc.
@@ -92900,6 +112715,18 @@ File: ./tests/test-posix_spawn2.c
 Hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
 Copyright: 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of posix_spawn() function.
 #   Copyright (C) 2008, 2009 Free Software Foundation, Inc.
@@ -92928,6 +112755,18 @@ File: ./tests/test-posix_spawn3.c
 Hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
 Copyright: 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of posix_spawn() function.
 #   Copyright (C) 2008, 2009 Free Software Foundation, Inc.
@@ -92948,6 +112787,18 @@ File: ./tests/test-printf-frexp.c
 Hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of splitting a double into fraction and mantissa.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -92968,6 +112819,18 @@ File: ./tests/test-printf-frexpl.c
 Hash: d9ae7fb6f3efade21dd6bd4f8e39296b78ebe14a2b6904928a9ef5f08847f210
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of splitting a 'long double' into fraction and mantissa.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -92988,6 +112851,18 @@ File: ./tests/test-printf-posix.c
 Hash: e0609f5e2368ee405f7f4a205a106a397a6c889e06ede598f31189fd2786ea64
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible printf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -93008,6 +112883,18 @@ File: ./tests/test-printf-posix.h
 Hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible vsprintf() and sprintf() functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -93067,6 +112954,18 @@ File: ./tests/test-printf-posix2.c
 Hash: f0fff3bfac69b0e70b8370a65b5668bb8c0049c0bd3c7d673c22591f45effae1
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible printf() function.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -93106,6 +113005,18 @@ File: ./tests/test-priv-set.c
 Hash: 459b0d2a4e2ca34dd43609ddf4f6fc9da4ac8485be1f363e50eac88501417fcc
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the priv-set module.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -93126,6 +113037,18 @@ File: ./tests/test-quotearg.c
 Hash: 104703e4201fb5c043c5e3504cebdaf76bee31f82635cd179c12eb576cb8e015
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of quotearg family of functions.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -93166,6 +113089,18 @@ File: ./tests/test-random_r.c
 Hash: 6a99ec02e3274e3054358cfae33be3f646de66a86a4c1190e2459dd79154f0c5
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test random_r.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -93186,6 +113121,18 @@ File: ./tests/test-rawmemchr.c
 Hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2008 Free Software Foundation
@@ -93206,6 +113153,18 @@ File: ./tests/test-rbtree_list.c
 Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of sequential list data type implementation.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -93226,6 +113185,18 @@ File: ./tests/test-rbtree_oset.c
 Hash: e04eacd107bad187ffb5fdb4d4955f66622e0e7f6cee9eb82e80d40657f6cffb
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ordered set data type implementation.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -93246,6 +113217,18 @@ File: ./tests/test-rbtreehash_list.c
 Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of sequential list data type implementation.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -93266,6 +113249,18 @@ File: ./tests/test-read-file.c
 Hash: fe25f8bab073df345c729dec8f6148396d6926783db8a074ab9b9f120ebacd68
 Copyright: 2006-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2006-2007 Free Software Foundation
@@ -93286,6 +113281,18 @@ File: ./tests/test-rijndael.c
 Hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2005 Free Software Foundation
@@ -93306,6 +113313,18 @@ File: ./tests/test-round1.c
 Hash: d481632fac56dafed412331dc1d3c962088c31ca9c3b36086d3667160fd6d480
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding to nearest, breaking ties away from zero.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -93326,6 +113345,18 @@ File: ./tests/test-round2.c
 Hash: 78cd3c59fce9fcf77a9e67787f5add6ab91b27cb39939cec7db1472ba23e07da
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding to nearest, breaking ties away from zero.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -93346,6 +113377,18 @@ File: ./tests/test-roundf1.c
 Hash: 3d1da36b9e0486cd4e508d505e52d43a8e69194525626087e0570a15fb56bd69
 Copyright: 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding to nearest, breaking ties away from zero.
 #   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
@@ -93373,6 +113416,18 @@ File: ./tests/test-roundl.c
 Hash: 78692de38971d672500f95f537d99c3625af5e163292a68f569e9b1c0db3deba
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding to nearest, breaking ties away from zero.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -93393,6 +113448,18 @@ File: ./tests/test-safe-alloc.c
 Hash: 06fa48a371192b3703bb2e5e10ccd93a9034d93b7dcff205253b40547dc5f425
 Copyright: 2009 Free Software Foundation, Inc.
 License: LGPL-2.1+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+   
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Test the safe-alloc macros
@@ -93413,6 +113480,18 @@ File: ./tests/test-sameacls.c
 Hash: 1df2ca38b822fca6b61b6dc422c4b420e8b7ef60e85c53952d92ac21156b8c65
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test whether two files have the same ACLs.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -93433,6 +113512,18 @@ File: ./tests/test-sched.c
 Hash: a1d056a4d72baa204719a7171a5f9cb61426312897c83f8d72c0d329008fe2a6
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <sched.h> substitute.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -93453,6 +113544,18 @@ File: ./tests/test-search.c
 Hash: a75b46b1de8003eaa9822f8ee5de3e28bfd9dfa3808094ed1476e96a9f8b0d9b
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <search.h> substitute.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -93473,6 +113576,18 @@ File: ./tests/test-select-fd.c
 Hash: c39dad9c674c2b86a8b6fabc120a1231d76298f5616852e8ca555a36d57dd057
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of select() substitute, reading or writing from a given file descriptor.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -93533,6 +113648,18 @@ File: ./tests/test-select-stdin.c
 Hash: 2233f158677785767dc09bb2110060927bc2c348fc26ffc95bc44b538dd69287
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of select() substitute, reading from stdin.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -93553,6 +113680,18 @@ File: ./tests/test-select.c
 Hash: 919c5a7db661553ac0cd6de0a423e3fc6d9c988e0a86fa524fae055862fd6ec8
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of select() substitute.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -93573,6 +113712,18 @@ File: ./tests/test-set-mode-acl.c
 Hash: cd6ee6081a51d9b3f3794b017a6b074ff3bc14d6825fd5f251c5fd2d46841250
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of setting an ACL equivalent to a mode.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -93613,6 +113764,18 @@ File: ./tests/test-sha1.c
 Hash: e18f52207f18a229817e86984ad67f9af48bc951d8a18ad1ba9665584fa5d716
 Copyright: 2005, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2005, 2008, 2009 Free Software Foundation, Inc.
@@ -93633,6 +113796,18 @@ File: ./tests/test-sigaction.c
 Hash: 26868ca82f9158a85f3775c877b40da4441122e03a940c9d02dfc347ff66b161
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of sigaction() function.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -93653,6 +113828,18 @@ File: ./tests/test-signal.c
 Hash: a2a63d1070f8da740d3d59dd751aef9681d8f4a1b47d41d92c5258448a7902a0
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <signal.h> substitute.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -93673,6 +113860,18 @@ File: ./tests/test-signbit.c
 Hash: fa9d9d09e834d032dab7e5344a9125bc3a844d179a74b3eac76bc464ca94566e
 Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of signbit() substitute.
 #   Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
@@ -93693,6 +113892,18 @@ File: ./tests/test-sigpipe.c
 Hash: 8babbc5c4c5cf6baadd089082b26b393e84a3d336446bdf26c6170bb3b86fd55
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of SIGPIPE handling.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -93733,6 +113944,18 @@ File: ./tests/test-sleep.c
 Hash: c4c76435bbec1e1ae7a9b8292a1bf834366e04668c11ff07e19eda173e195eb2
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of sleep() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -93753,6 +113976,18 @@ File: ./tests/test-snprintf-posix.c
 Hash: 7fce32e7bb5b8d3bda5a1df8212fb1d14ec7a02dc5e72ebb28dd9225dad5e397
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible snprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -93773,6 +114008,18 @@ File: ./tests/test-snprintf-posix.h
 Hash: 9c968e1b41c6112dfd570d39aae8c0902a54036c53b751224852c002c65aada0
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible vsnprintf() and snprintf() functions.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -93793,6 +114040,18 @@ File: ./tests/test-snprintf.c
 Hash: a8fc7710afcd71af941318a653e85e172eb11dcf342d0362c2bee74cc1361c0a
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of snprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -93813,6 +114072,18 @@ File: ./tests/test-sockets.c
 Hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
 Copyright: 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2008, 2009 Free Software Foundation
@@ -93833,6 +114104,18 @@ File: ./tests/test-sprintf-posix.c
 Hash: bfa4989be540f363296df2cabc7bf499303561023475f1a5272b0a1898cf4746
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible sprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -93853,6 +114136,18 @@ File: ./tests/test-sprintf-posix.h
 Hash: 643c16861240bef0649dd4bcefe6ef1d9996a7d9bf4e16d3f70ecd7d22619764
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible vsprintf() and sprintf() functions.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -93873,6 +114168,18 @@ File: ./tests/test-stat-time.c
 Hash: 13ed608bac62ec91a2526f569107d3f2c029da8a2935eca78a4cc53839419da8
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <stat-time.h>.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -93893,6 +114200,18 @@ File: ./tests/test-stdbool.c
 Hash: c84624aac5e8ef0d17ac6cfba2d9902112d8652ff84f75943bbaab5483a15104
 Copyright: 2002-2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <stdbool.h> substitute.
 #   Copyright (C) 2002-2007 Free Software Foundation, Inc.
@@ -93913,6 +114232,18 @@ File: ./tests/test-stddef.c
 Hash: a7f33ad88ddc3e59c999ce92e4d5c33162876f2dbd2f812612f5f875e098a0e1
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <stddef.h> substitute.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -93933,6 +114264,18 @@ File: ./tests/test-stdint.c
 Hash: 23f2d98a74e19ebc217c7540652a726c29f8393ff93360bc7d491d73ef222896
 Copyright: 2006-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <stdint.h> substitute.
 #   Copyright (C) 2006-2008 Free Software Foundation, Inc.
@@ -93953,6 +114296,18 @@ File: ./tests/test-stdio.c
 Hash: 2ac4b9dd417d2756a7b7531075a8de408eaa834699dcacc33968d0acd485708a
 Copyright: 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <stdio.h> substitute.
 #   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
@@ -93973,6 +114328,18 @@ File: ./tests/test-stdlib.c
 Hash: 054829fa60196e2c3f2af8a2ae7f5906b69a5ca770ea3f67f4bf20e58459cc39
 Copyright: 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <stdlib.h> substitute.
 #   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
@@ -93993,6 +114360,18 @@ File: ./tests/test-stpncpy.c
 Hash: f0900ada3225a1fce15fe1f412789c086482da205d663e8d29b7d44f0a74ff6c
 Copyright: 2003, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the system defined function stpncpy().
 #   Copyright (C) 2003, 2008 Free Software Foundation, Inc.
@@ -94053,6 +114432,18 @@ File: ./tests/test-strcasestr.c
 Hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
 Copyright: 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case-insensitive searching in a string.
 #   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
@@ -94073,6 +114464,18 @@ File: ./tests/test-strchrnul.c
 Hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2008 Free Software Foundation
@@ -94093,6 +114496,18 @@ File: ./tests/test-strerror.c
 Hash: 14a1d27bf7519c28518b2fa09cdbff600099f8fbbdcdd31d19f1e17abd42eec1
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of strerror() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -94113,6 +114528,18 @@ File: ./tests/test-striconv.c
 Hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of character set conversion.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -94133,6 +114560,18 @@ File: ./tests/test-striconveh.c
 Hash: d58780303b58b650191816c9c6f6d31acc192c6b06da016cd940a1daaad76347
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of character set conversion with error handling.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -94153,6 +114592,18 @@ File: ./tests/test-striconveha.c
 Hash: 5613eb13fd03278f3cfae673d2742357a77a24e39aa5464290122bd1f5cc17e9
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of character set conversion with error handling and autodetection.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -94173,6 +114624,18 @@ File: ./tests/test-string.c
 Hash: 0ba6f6d137f27b2f588c41cd0dd4a7f44a8611d2b5650a7623304eb04f2a985c
 Copyright: 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <string.h> substitute.
 #   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
@@ -94193,6 +114656,18 @@ File: ./tests/test-strings.c
 Hash: 1218735581f6fd81e89c932786b84ad7efdb3fd0a98b512cfb6ef7179ee629b9
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <strings.h> substitute.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -94213,6 +114688,18 @@ File: ./tests/test-strsignal.c
 Hash: 911cff60ea0d2142906a8b6e37b8e316a82700ce9dc6f4419abb1544eeb16255
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of strsignal() function.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -94233,6 +114720,18 @@ File: ./tests/test-strstr.c
 Hash: 921b584d5b441ef5314ef79cacb914b5734b212d15a5d3e34d83a3cac45985c7
 Copyright: 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2004, 2007, 2008, 2009 Free Software Foundation
@@ -94253,6 +114752,18 @@ File: ./tests/test-strtod.c
 Hash: 94d0b9d07d2cb7df156fa576ff2f5508151924b4eec0f0394e315fc6c43fde83
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/*
 # * Copyright (C) 2008 Free Software Foundation
@@ -94273,6 +114784,18 @@ File: ./tests/test-strverscmp.c
 Hash: 73715c12c4e50afe8feb14d326eb9d0092f449850bf20bda4a2a09965c37fd2d
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of strverscmp() function.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -94293,6 +114816,18 @@ File: ./tests/test-symlinkat.c
 Hash: 688324a6ce6943ee6fcd5c4bbc12a6ed11ead304de5c082acac34fa5d620244a
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Tests of symlinkat and readlinkat.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -94313,6 +114848,18 @@ File: ./tests/test-sys_select.c
 Hash: e6cbee138afbf2346834176c831267687d1d62f0cc1c182a06b826921c4a2a0b
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <sys/select.h> substitute.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -94333,6 +114880,18 @@ File: ./tests/test-sys_socket.c
 Hash: 27b064bea275a251fd55f12386c38305cfa83d0e2ce5d9b781fc898d400773c6
 Copyright: 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <sys/socket.h> substitute.
 #   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
@@ -94353,6 +114912,18 @@ File: ./tests/test-sys_stat.c
 Hash: 04013ed74812f946e4b59b34d20190ec2cd9ceb8574f5fc52edcd6eac76c352a
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <sys/stat.h> substitute.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -94373,6 +114944,18 @@ File: ./tests/test-sys_time.c
 Hash: 3ebfc9d43b3f8649e84a73cd567fca4c7ae4d825da72da4ed90e6e5a99d94fff
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <sys/time.h> substitute.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -94393,6 +114976,18 @@ File: ./tests/test-sys_times.c
 Hash: b4313ff79695d9b7f87cdd1971b9abde2045f25322923a3e6489c6feea1eacdc
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <sys/times.h> substitute.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -94413,6 +115008,18 @@ File: ./tests/test-sys_utsname.c
 Hash: b1a0f7f5778c07e508753fb8758e87eccbf547386a4590bc130135b051293a38
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <sys/utsname.h> substitute.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -94433,6 +115040,18 @@ File: ./tests/test-sysexits.c
 Hash: 7c3f18282922b3f9c1ebb90c97f14450d340a78ca9e554109d2696866155c1d4
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <sysexits.h> substitute.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -94453,6 +115072,18 @@ File: ./tests/test-time.c
 Hash: e2a57979e9a7175aef1b8845af8f151674553744316aac9805c8db52cbb6dfb2
 Copyright: 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <time.h> substitute.
 #   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
@@ -94473,6 +115104,18 @@ File: ./tests/test-times.c
 Hash: f96de125f14181292c4c8e2e4c0974b25583ad38f9ef6a77d6460b0a6be47bb8
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of times function.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -94493,6 +115136,18 @@ File: ./tests/test-tls.c
 Hash: a371f1638584ea868f8774f0863ed063f15ec220e756dc6cd961ac59be40da55
 Copyright: 2005, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of thread-local storage in multithreaded situations.
 #   Copyright (C) 2005, 2008 Free Software Foundation, Inc.
@@ -94513,14 +115168,26 @@ File: ./tests/test-trunc1.c
 Hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
-#Header:
-#/* Test of rounding towards zero.
-#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
-#
-#   This program is free software: you can redistribute it and/or modify
-#   it under the terms of the GNU General Public License as published by
-#   the Free Software Foundation; either version 3 of the License, or
-#   (at your option) any later version.
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test of rounding towards zero.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 3 of the License, or
+#   (at your option) any later version.
 #
 #   This program is distributed in the hope that it will be useful,
 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -94533,6 +115200,18 @@ File: ./tests/test-trunc2.c
 Hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding towards zero.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -94553,6 +115232,18 @@ File: ./tests/test-truncf1.c
 Hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding towards zero.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -94573,6 +115264,18 @@ File: ./tests/test-truncf2.c
 Hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding towards zero.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -94593,6 +115296,18 @@ File: ./tests/test-truncl.c
 Hash: 503c95b4810a0f30ba1704d1103337c932b495da73ef6c06c21d7a26583b3d60
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of rounding towards zero.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -94613,6 +115328,18 @@ File: ./tests/test-tsearch.c
 Hash: 5fc9ed83fc429236699dce56057e9d206682791a0228c09393bd282e8874f20b
 Copyright: 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc.
 License: LGPL-3+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test program for tsearch et al.
 #   Copyright (C) 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc.
@@ -94650,6 +115377,18 @@ File: ./tests/test-u64.c
 Hash: e479b4ed53ff1ef1ddb7c68c062cc0b016685511ba81a14bfa6c2971d06cab71
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <u64.h>
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -94670,6 +115409,18 @@ File: ./tests/test-uname.c
 Hash: 95dd080068a87ec7a8f8dd8f9c52cfcc3eb411fdc69747e76099b7f55491e9e0
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of system information.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -94690,6 +115441,18 @@ File: ./tests/test-unistd.c
 Hash: 9dec8ae8ec34dede0933ebdae6fea6044297491dfbba7df3544444a73b7cf7fb
 Copyright: 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <unistd.h> substitute.
 #   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
@@ -94710,6 +115473,18 @@ File: ./tests/test-update-copyright.sh
 Hash: 31a6cf464a511c9f798d56d6107ef0eb41dafac06037c8e04649f9ae2d9f2e67
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## Test suite for update-copyright.
@@ -94730,6 +115505,18 @@ File: ./tests/test-vasnprintf-posix.c
 Hash: 4033ae875db9b7dec68ccfb88dc9e8ac872f79ccd3ff8c1bbf475994065a67a3
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible vasnprintf() and asnprintf() functions.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -94750,6 +115537,18 @@ File: ./tests/test-vasnprintf-posix2.c
 Hash: 264ce034a6a0e2af38dd9a7f56d3fc621770b161c40e4868673d2197175d7e9d
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible vasnprintf() and asnprintf() functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -94790,6 +115589,18 @@ File: ./tests/test-vasnprintf.c
 Hash: 61a80e32eb8210bc664d982ac7156c97f5b068023f47eeef9b2712eaa0cf5358
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of vasnprintf() and asnprintf() functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -94810,6 +115621,18 @@ File: ./tests/test-vasprintf-posix.c
 Hash: ec33ca31cf67dba4a443c9cd11bebb34a58110f2c2c15ffb891f9d22b628f47a
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible vasprintf() and asprintf() functions.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -94830,6 +115653,18 @@ File: ./tests/test-vasprintf.c
 Hash: 2bd69a93dc485bffe1c49f3d6e4b411651ed41f823fb47f163b9487c35df55e9
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of vasprintf() and asprintf() functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -94850,6 +115685,18 @@ File: ./tests/test-vc-list-files-cvs.sh
 Hash: 5592779105d6e3c84009c3743f19ba267e3c947df43bd05fce6250d51d38acd8
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## Unit tests for vc-list-files
@@ -94870,6 +115717,18 @@ File: ./tests/test-vc-list-files-git.sh
 Hash: cba59ad2fc05be9c59e16bb50f191c185f4d87a147deb9477fab63dbeaba6169
 Copyright: 2008, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##!/bin/sh
 ## Unit tests for vc-list-files
@@ -94890,6 +115749,18 @@ File: ./tests/test-vdprintf-posix.c
 Hash: 8fc71c626ad4e8b2da0fb5b1661b55fc288ffc3242744e43fd24edf0b22d8d03
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible vdprintf() function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -94929,6 +115800,18 @@ File: ./tests/test-verify.c
 Hash: 17fec5a9ababc4561b627d90f689ea9e12ae05c2cabf962750d3472bb98dcc3c
 Copyright: 2005 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the "verify" module.
 #
@@ -94949,6 +115832,18 @@ File: ./tests/test-version-etc.c
 Hash: 166966c01aec43b6eea70f77889719b4ca98d4f9333c9e7b8ff9fb10235eaf2b
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test suite for version-etc.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -94969,6 +115864,18 @@ File: ./tests/test-version-etc.sh
 Hash: c2dcff71edecfe89df84edb38bc7cf657c88b91a82456014937488b7eed9cf8c
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ##! /bin/sh
 ## Test suite for version-etc.
@@ -94989,6 +115896,18 @@ File: ./tests/test-vfprintf-posix.c
 Hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible vfprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -95028,6 +115947,18 @@ File: ./tests/test-vprintf-posix.c
 Hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible vfprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -95067,6 +115998,18 @@ File: ./tests/test-vsnprintf-posix.c
 Hash: 08921df8083c6cf72f8107df0955a905c1cfc1a7639420651e479889b858372f
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible vsnprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -95087,6 +116030,18 @@ File: ./tests/test-vsnprintf.c
 Hash: 38a886365a5b7333bcddff2e6f7e078b4ccd8affc79c69d525fb628b81e77163
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of vsnprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -95107,6 +116062,18 @@ File: ./tests/test-vsprintf-posix.c
 Hash: 5ff40ad8122a4316b3880b33fa58711292cfe9daf80cf886bc3bf7b4c8b8f7b6
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of POSIX compatible vsprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -95127,6 +116094,18 @@ File: ./tests/test-wchar.c
 Hash: b9f590d320dde15ebc89d1b241f7f1affa3e77afaf21eb72b9d0d848c666aa15
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <wchar.h> substitute.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -95147,6 +116126,18 @@ File: ./tests/test-wcrtomb.c
 Hash: a7e09560f0d1bcf0d97e0961f8aea91e910f34af271cf323261f13ffa0ae7711
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion of wide character to multibyte character.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -95187,6 +116178,18 @@ File: ./tests/test-wcsnrtombs.c
 Hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion of wide string to string.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -95287,6 +116290,18 @@ File: ./tests/test-wcsrtombs.c
 Hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion of wide string to string.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -95387,6 +116402,18 @@ File: ./tests/test-wctype.c
 Hash: 3913b2dadee190c3c7363a11f4698e6dc6e54e77ff0f6f815989f716687b8c66
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of <wctype.h> substitute.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -95407,6 +116434,18 @@ File: ./tests/test-wcwidth.c
 Hash: 621775bd4bf289a67327498e46edf2e12d578a8ba977b62f871f1957de3e43c5
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of wcwidth() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -95427,6 +116466,18 @@ File: ./tests/test-xfprintf-posix.c
 Hash: 2a603870f561fd13002c29e2de6553989048d747097638326de087abc5d9c70d
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of error-checking xfprintf() function with POSIX compatible formatting.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -95447,6 +116498,18 @@ File: ./tests/test-xmemdup0.c
 Hash: 4b2575757caf38d863f415b5079c56fd838ffe4a807c81bc83bd296dcbfcaee6
 Copyright: 2008-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of xmemdup0() function.
 #   Copyright (C) 2008-2009 Free Software Foundation, Inc.
@@ -95467,6 +116530,18 @@ File: ./tests/test-xprintf-posix.c
 Hash: a3af7c6b24629c4787aa5231313b8f64c3b33cf955dc694a5294ae299c3d0ca5
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of error-checking xprintf() function with POSIX compatible formatting.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -95536,6 +116611,18 @@ File: ./tests/test-xstrtol.c
 Hash: de7b5c726b634ae4f59358f375b594790755ca1a9cc5ca12cd7192f7ad89d763
 Copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of xstrtol module.
 #   Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
@@ -95614,6 +116701,18 @@ File: ./tests/test-xvasprintf.c
 Hash: ac9ad8e875af014830c20d9e09da1311639c83e409ad8db3f4ffebd240e713f4
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of xvasprintf() and xasprintf() functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -95634,6 +116733,18 @@ File: ./tests/test-yesno.c
 Hash: 3f971eee932cdc6643afc7e82875800dbd694b7d7cce5e5898866d3838e5f8e6
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of yesno module.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -95674,6 +116785,18 @@ File: ./tests/unicase/test-casecmp.h
 Hash: 087298e7ab0c96019fc4bbda3234ee52643b112a91685571bec731d121ff32a9
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case and normalization insensitive comparison of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -95694,6 +116817,18 @@ File: ./tests/unicase/test-cased.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -95714,6 +116849,18 @@ File: ./tests/unicase/test-ignorable.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -95734,6 +116881,18 @@ File: ./tests/unicase/test-is-cased.h
 Hash: 77f0f5c8da18d68e55012ca31cd200ccaaf62ce13a0437f969525b324746cab9
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether case matters for a Unicode string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -95754,6 +116913,18 @@ File: ./tests/unicase/test-is-casefolded.h
 Hash: 8a64df7d2b39cf72a790f65a4380a5257f3906c479a5c7ff2866e2caf521459e
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether a Unicode string is already case-folded.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -95774,6 +116945,18 @@ File: ./tests/unicase/test-is-lowercase.h
 Hash: e780f461c5ab26573a2f7a337d9dea72d1b535ce9b8c99aa74286904c35e5350
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether a Unicode string is entirely lower case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -95794,6 +116977,18 @@ File: ./tests/unicase/test-is-titlecase.h
 Hash: ed0e9f7db4df9c5e31d50ff099af7ffd491810832336d9a7b1fa2af8405d927b
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether a Unicode string is entirely title case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -95814,6 +117009,18 @@ File: ./tests/unicase/test-is-uppercase.h
 Hash: c166575b45c29d58756309538901f3ca2bc4976a7afe7bc9d5c96c2a940702a6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether a Unicode string is entirely upper case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -95834,6 +117041,18 @@ File: ./tests/unicase/test-locale-language.c
 Hash: 7902cd50a3a989d21413e91019f1101ca387732e3a3549e9ee5142a2968122a2
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of language code determination.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -95874,6 +117093,18 @@ File: ./tests/unicase/test-mapping-part1.h
 Hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of single character case mapping functions.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -95894,6 +117125,18 @@ File: ./tests/unicase/test-mapping-part2.h
 Hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of single character case mapping functions.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -95914,6 +117157,18 @@ File: ./tests/unicase/test-predicate-part1.h
 Hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -95934,6 +117189,18 @@ File: ./tests/unicase/test-predicate-part2.h
 Hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -95954,6 +117221,18 @@ File: ./tests/unicase/test-u16-casecmp.c
 Hash: fbaf1cf87ef4e2cb6c22e345726fbeca61d4f4fde17fe328cd36f69e383210ff
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case and normalization insensitive comparison of UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -95974,6 +117253,18 @@ File: ./tests/unicase/test-u16-casecoll.c
 Hash: a478780b48f6135ed858b897f9cd56b995fa2bea4331f359e845712e7a921b9b
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of locale dependent, case and normalization insensitive comparison of
 #   UTF-16 strings.
@@ -95994,6 +117285,18 @@ File: ./tests/unicase/test-u16-casefold.c
 Hash: 780d80975734f219ef2f735b4735e8977dca243032a3d46705d14bea69577b74
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of casefolding mapping for UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96014,6 +117317,18 @@ File: ./tests/unicase/test-u16-is-cased.c
 Hash: 4234fb2ee9a3330beba45d579838054b73cb027a32343e6a5bfecb31cb63b5a0
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether case matters for an UTF-16 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96034,6 +117349,18 @@ File: ./tests/unicase/test-u16-is-casefolded.c
 Hash: f43cf1df76813ed4ff41af0649ec88984148a1a58474b0510aaef5991f58e476
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether an UTF-16 string is already case-folded.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96054,6 +117381,18 @@ File: ./tests/unicase/test-u16-is-lowercase.c
 Hash: 41ab69760cda76f92490056f713aa78ab1fc91f29b6e85dc11364f4d52cea2cd
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether an UTF-16 string is entirely lower case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96074,6 +117413,18 @@ File: ./tests/unicase/test-u16-is-titlecase.c
 Hash: 7082f5c82633a0a232479102690aec07d560deb2fa2febf9433eb417b2893b6e
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether an UTF-16 string is entirely title case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96094,6 +117445,18 @@ File: ./tests/unicase/test-u16-is-uppercase.c
 Hash: beeb3d8e2907686e31ae7bcacffa24dabd5b8341e95e71008118a27c965127a9
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether an UTF-16 string is entirely upper case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96114,6 +117477,18 @@ File: ./tests/unicase/test-u16-tolower.c
 Hash: ec459a8224c2ed7f817f50477cce68cd280caadf3f43fdc758e094ba738dad44
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of lowercase mapping for UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96134,6 +117509,18 @@ File: ./tests/unicase/test-u16-totitle.c
 Hash: 364955699731118e15b5c015a5b0e2a0ca481108df690c7d2ca72113bdef9bbd
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of titlecase mapping for UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96154,6 +117541,18 @@ File: ./tests/unicase/test-u16-toupper.c
 Hash: 256d31e7737c279ab0a7fe336bbc2d8a3b2f5c3646a923645408fb5cd647232f
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of uppercase mapping for UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96174,6 +117573,18 @@ File: ./tests/unicase/test-u32-casecmp.c
 Hash: 9179bf8a4dd90067464a8a095910c5a6f53ff0c8b7d4d4d970fb9905caeccab6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case and normalization insensitive comparison of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96194,6 +117605,18 @@ File: ./tests/unicase/test-u32-casecoll.c
 Hash: 46cde4ad2bde5e77ddf09650e34490837d03ffa5566c3665745417de0e7d3a1f
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of locale dependent, case and normalization insensitive comparison of
 #   UTF-32 strings.
@@ -96214,6 +117637,18 @@ File: ./tests/unicase/test-u32-casefold.c
 Hash: 4d907542dd3a62d941844298dfe70f36057246c130a8906db2071703fcc5ea26
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of casefolding mapping for UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96234,6 +117669,18 @@ File: ./tests/unicase/test-u32-is-cased.c
 Hash: afdd64c3cbdb2db2a6d0a0385c23cadd7acde81fe68ef08c39d1af0e65c1c302
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether case matters for an UTF-32 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96254,6 +117701,18 @@ File: ./tests/unicase/test-u32-is-casefolded.c
 Hash: 406ff64a31f1889065d2f75d3e1352d13da79827438f5af6f72920b26e01be5e
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether an UTF-32 string is already case-folded.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96274,6 +117733,18 @@ File: ./tests/unicase/test-u32-is-lowercase.c
 Hash: 925d3f074e4eba6fd371968cdf931e8f266dc18f42c4da065890ec4059e99eb9
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether an UTF-32 string is entirely lower case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96294,6 +117765,18 @@ File: ./tests/unicase/test-u32-is-titlecase.c
 Hash: 7093a37ec59985094b8e3315f0f3195d83b1656d652ebc113e5d419c996cf396
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether an UTF-32 string is entirely title case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96314,6 +117797,18 @@ File: ./tests/unicase/test-u32-is-uppercase.c
 Hash: 1378c386b1283dfea9232ebf982922c37fc43e31aa750dbcae3a513d599a37f6
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether an UTF-32 string is entirely upper case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96334,6 +117829,18 @@ File: ./tests/unicase/test-u32-tolower.c
 Hash: d7cfcd257ced2d32004af0d357e3e5dfcd9299fdc83447b6fd59f2b0430cb2b9
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of lowercase mapping for UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96354,14 +117861,26 @@ File: ./tests/unicase/test-u32-totitle.c
 Hash: 54ba07d46dd17204c8df179dae285eae06fc47dac38440471866ccfb285780b7
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
-#Header:
-#/* Test of titlecase mapping for UTF-32 strings.
-#   Copyright (C) 2009 Free Software Foundation, Inc.
-#
-#   This program is free software: you can redistribute it and/or modify
-#   it under the terms of the GNU General Public License as published by
-#   the Free Software Foundation; either version 3 of the License, or
-#   (at your option) any later version.
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#Header:
+#/* Test of titlecase mapping for UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 3 of the License, or
+#   (at your option) any later version.
 #
 #   This program is distributed in the hope that it will be useful,
 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -96374,6 +117893,18 @@ File: ./tests/unicase/test-u32-toupper.c
 Hash: 9517acce3a3c32363be5998282902d14b76512c2d95007ae0426073b0ae3e66d
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of uppercase mapping for UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96394,6 +117925,18 @@ File: ./tests/unicase/test-u8-casecmp.c
 Hash: e55c357f7afbc9a0cfe0f69c8736e09ac327cf0efa110bd54358b26552c15d91
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case and normalization insensitive comparison of UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96414,6 +117957,18 @@ File: ./tests/unicase/test-u8-casecoll.c
 Hash: cb8087d7a4cd6f72c7df00d9b74cbb14bbe7ff92f76de65ad5e2688c4008f1cc
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of locale dependent, case and normalization insensitive comparison of
 #   UTF-8 strings.
@@ -96434,6 +117989,18 @@ File: ./tests/unicase/test-u8-casefold.c
 Hash: 46aa95b956c978d68693a6a7d28e6119e702da6d5852b422cae8ac60feb56e7a
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of casefolding mapping for UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96454,6 +118021,18 @@ File: ./tests/unicase/test-u8-is-cased.c
 Hash: d2e06421cfef63befc22d5867d91edcde0be66c6e5da6ab56407c62655210ad4
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether case matters for an UTF-8 string.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96474,6 +118053,18 @@ File: ./tests/unicase/test-u8-is-casefolded.c
 Hash: 8847ed4d063cb5ef6b9ad3824c768719bf92ceb9dc999867a7e22fe80da46a62
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether an UTF-8 string is already case-folded.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96494,6 +118085,18 @@ File: ./tests/unicase/test-u8-is-lowercase.c
 Hash: 40b3b6176251c3ba3f01a9dfd5ad1e90fc294c6d2187e04c7623d12dbd036e75
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether an UTF-8 string is entirely lower case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96514,6 +118117,18 @@ File: ./tests/unicase/test-u8-is-titlecase.c
 Hash: 4addcc8d4a006652f4e0af349822acb9ceabab38e19f7bf45f2264ce526c734e
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether an UTF-8 string is entirely title case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96534,6 +118149,18 @@ File: ./tests/unicase/test-u8-is-uppercase.c
 Hash: d647fd8d839c47edffa85a2edc6a9b5f9d740295d42b861e2097069fc1d973cd
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of test whether an UTF-8 string is entirely upper case.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96554,6 +118181,18 @@ File: ./tests/unicase/test-u8-tolower.c
 Hash: 40ee18dae3078615adcadd02bc1525436c511d80eb00a52c9c7e44cb0e260d19
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of lowercase mapping for UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96574,6 +118213,18 @@ File: ./tests/unicase/test-u8-totitle.c
 Hash: daea8586484638f8dff9c0f3972a5e1cc4632eb4c26528f93972f8ba9f1c0435
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of titlecase mapping for UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96594,6 +118245,18 @@ File: ./tests/unicase/test-u8-toupper.c
 Hash: 92775e814bc7c28fd54cd36641f38bacbb6e32645a9901abb6d77a7dd3266e15
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of uppercase mapping for UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96614,6 +118277,18 @@ File: ./tests/unicase/test-uc_tolower.c
 Hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character mapping functions.
@@ -96634,6 +118309,18 @@ File: ./tests/unicase/test-uc_totitle.c
 Hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character mapping functions.
@@ -96654,6 +118341,18 @@ File: ./tests/unicase/test-uc_toupper.c
 Hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character mapping functions.
@@ -96674,6 +118373,18 @@ File: ./tests/unicase/test-ulc-casecmp.c
 Hash: a70362d42f608ae8519496f614eab7f6840506198a7b35a54688aae06f8ec537
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of case and normalization insensitive comparison of strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -96734,6 +118445,18 @@ File: ./tests/unicase/test-ulc-casecoll.c
 Hash: 4889e501871ae3a0ada5fb5a8099116bbf289c47ced06d26b7d1bcb98f805e51
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of locale dependent, case and normalization insensitive comparison of
 #   strings.
@@ -96799,6 +118522,18 @@ File: ./tests/uniconv/test-u16-conv-from-enc.c
 Hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion to UTF-16 from legacy encodings.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -96819,6 +118554,18 @@ File: ./tests/uniconv/test-u16-conv-to-enc.c
 Hash: ee723fe33867bbe1788462de1e330317d6949f49144cabd6e8e38efca0d447cb
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion from UTF-16 to legacy encodings.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -96839,6 +118586,18 @@ File: ./tests/uniconv/test-u16-strconv-from-enc.c
 Hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion to UTF-16 from legacy encodings.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -96859,6 +118618,18 @@ File: ./tests/uniconv/test-u16-strconv-to-enc.c
 Hash: 7cc68dc5f7b4f76a27bf80ef26a988398dd0a4288934033f8e604467ebbbddc1
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion from UTF-16 to legacy encodings.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -96879,6 +118650,18 @@ File: ./tests/uniconv/test-u32-conv-from-enc.c
 Hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion to UTF-32 from legacy encodings.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -96899,6 +118682,18 @@ File: ./tests/uniconv/test-u32-conv-to-enc.c
 Hash: 9d55d78e2f579b4085948278faa02c153cf2889171a763786c40a320053fefb9
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion from UTF-32 to legacy encodings.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -96919,6 +118714,18 @@ File: ./tests/uniconv/test-u32-strconv-from-enc.c
 Hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion to UTF-32 from legacy encodings.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -96939,6 +118746,18 @@ File: ./tests/uniconv/test-u32-strconv-to-enc.c
 Hash: f046bf7ce16400906bfb439be832a1e91647af489a78820eb57d0b4ca94f0810
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion from UTF-32 to legacy encodings.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -96959,6 +118778,18 @@ File: ./tests/uniconv/test-u8-conv-from-enc.c
 Hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion to UTF-8 from legacy encodings.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -96979,6 +118810,18 @@ File: ./tests/uniconv/test-u8-conv-to-enc.c
 Hash: b699c5da15c5e1fdb4bf45482b3895de5a4bdf4febbf595cfe241f5eca8d335a
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion from UTF-8 to legacy encodings.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -96999,6 +118842,18 @@ File: ./tests/uniconv/test-u8-strconv-from-enc.c
 Hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion to UTF-8 from legacy encodings.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -97019,6 +118874,18 @@ File: ./tests/uniconv/test-u8-strconv-to-enc.c
 Hash: 92b274f28c6b1980e1ffc2bce550639bea47dd069072090dfbbf3db06ee6ab96
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of conversion from UTF-8 to legacy encodings.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -97039,6 +118906,18 @@ File: ./tests/unictype/test-bidi_byname.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -97059,6 +118938,18 @@ File: ./tests/unictype/test-bidi_name.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -97079,6 +118970,18 @@ File: ./tests/unictype/test-bidi_of.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -97099,6 +119002,18 @@ File: ./tests/unictype/test-bidi_test.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -97119,6 +119034,18 @@ File: ./tests/unictype/test-block_list.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -97139,6 +119066,18 @@ File: ./tests/unictype/test-block_of.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -97159,6 +119098,18 @@ File: ./tests/unictype/test-block_test.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -97179,6 +119130,18 @@ File: ./tests/unictype/test-categ_C.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97199,6 +119162,18 @@ File: ./tests/unictype/test-categ_Cc.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97219,6 +119194,18 @@ File: ./tests/unictype/test-categ_Cf.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97239,6 +119226,18 @@ File: ./tests/unictype/test-categ_Cn.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97259,6 +119258,18 @@ File: ./tests/unictype/test-categ_Co.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97279,6 +119290,18 @@ File: ./tests/unictype/test-categ_Cs.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97299,6 +119322,18 @@ File: ./tests/unictype/test-categ_L.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97319,6 +119354,18 @@ File: ./tests/unictype/test-categ_Ll.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97339,6 +119386,18 @@ File: ./tests/unictype/test-categ_Lm.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97359,6 +119418,18 @@ File: ./tests/unictype/test-categ_Lo.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97379,6 +119450,18 @@ File: ./tests/unictype/test-categ_Lt.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97399,6 +119482,18 @@ File: ./tests/unictype/test-categ_Lu.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97419,6 +119514,18 @@ File: ./tests/unictype/test-categ_M.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97439,6 +119546,18 @@ File: ./tests/unictype/test-categ_Mc.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97459,6 +119578,18 @@ File: ./tests/unictype/test-categ_Me.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97479,6 +119610,18 @@ File: ./tests/unictype/test-categ_Mn.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97499,6 +119642,18 @@ File: ./tests/unictype/test-categ_N.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97519,6 +119674,18 @@ File: ./tests/unictype/test-categ_Nd.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97539,6 +119706,18 @@ File: ./tests/unictype/test-categ_Nl.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97559,6 +119738,18 @@ File: ./tests/unictype/test-categ_No.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97579,6 +119770,18 @@ File: ./tests/unictype/test-categ_P.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97599,6 +119802,18 @@ File: ./tests/unictype/test-categ_Pc.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97619,6 +119834,18 @@ File: ./tests/unictype/test-categ_Pd.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97639,6 +119866,18 @@ File: ./tests/unictype/test-categ_Pe.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97659,6 +119898,18 @@ File: ./tests/unictype/test-categ_Pf.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97679,6 +119930,18 @@ File: ./tests/unictype/test-categ_Pi.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97699,6 +119962,18 @@ File: ./tests/unictype/test-categ_Po.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97719,6 +119994,18 @@ File: ./tests/unictype/test-categ_Ps.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97739,6 +120026,18 @@ File: ./tests/unictype/test-categ_S.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97759,6 +120058,18 @@ File: ./tests/unictype/test-categ_Sc.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97779,6 +120090,18 @@ File: ./tests/unictype/test-categ_Sk.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97799,6 +120122,18 @@ File: ./tests/unictype/test-categ_Sm.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97819,6 +120154,18 @@ File: ./tests/unictype/test-categ_So.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97839,6 +120186,18 @@ File: ./tests/unictype/test-categ_Z.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97859,6 +120218,18 @@ File: ./tests/unictype/test-categ_Zl.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97879,6 +120250,18 @@ File: ./tests/unictype/test-categ_Zp.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97899,6 +120282,18 @@ File: ./tests/unictype/test-categ_Zs.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -97919,6 +120314,18 @@ File: ./tests/unictype/test-categ_and.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -97939,6 +120346,18 @@ File: ./tests/unictype/test-categ_and_not.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -97959,6 +120378,18 @@ File: ./tests/unictype/test-categ_byname.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -97979,6 +120410,18 @@ File: ./tests/unictype/test-categ_name.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -97999,6 +120442,18 @@ File: ./tests/unictype/test-categ_none.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -98019,6 +120474,18 @@ File: ./tests/unictype/test-categ_of.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -98039,6 +120506,18 @@ File: ./tests/unictype/test-categ_or.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -98059,6 +120538,18 @@ File: ./tests/unictype/test-categ_test_withtable.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -98079,6 +120570,18 @@ File: ./tests/unictype/test-combining.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -98099,6 +120602,18 @@ File: ./tests/unictype/test-ctype_alnum.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98119,6 +120634,18 @@ File: ./tests/unictype/test-ctype_alpha.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98139,6 +120666,18 @@ File: ./tests/unictype/test-ctype_blank.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98159,6 +120698,18 @@ File: ./tests/unictype/test-ctype_cntrl.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98179,6 +120730,18 @@ File: ./tests/unictype/test-ctype_digit.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98199,6 +120762,18 @@ File: ./tests/unictype/test-ctype_graph.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98219,6 +120794,18 @@ File: ./tests/unictype/test-ctype_lower.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98239,6 +120826,18 @@ File: ./tests/unictype/test-ctype_print.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98259,6 +120858,18 @@ File: ./tests/unictype/test-ctype_punct.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98279,6 +120890,18 @@ File: ./tests/unictype/test-ctype_space.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98299,6 +120922,18 @@ File: ./tests/unictype/test-ctype_upper.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98319,6 +120954,18 @@ File: ./tests/unictype/test-ctype_xdigit.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98339,6 +120986,18 @@ File: ./tests/unictype/test-decdigit.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -98379,6 +121038,18 @@ File: ./tests/unictype/test-digit.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -98419,6 +121090,18 @@ File: ./tests/unictype/test-mirror.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -98439,6 +121122,18 @@ File: ./tests/unictype/test-numeric.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -98479,6 +121174,18 @@ File: ./tests/unictype/test-pr_alphabetic.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98499,6 +121206,18 @@ File: ./tests/unictype/test-pr_ascii_hex_digit.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98519,6 +121238,18 @@ File: ./tests/unictype/test-pr_bidi_arabic_digit.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98539,6 +121270,18 @@ File: ./tests/unictype/test-pr_bidi_arabic_right_to_left.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98559,6 +121302,18 @@ File: ./tests/unictype/test-pr_bidi_block_separator.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98579,6 +121334,18 @@ File: ./tests/unictype/test-pr_bidi_boundary_neutral.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98599,6 +121366,18 @@ File: ./tests/unictype/test-pr_bidi_common_separator.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98619,6 +121398,18 @@ File: ./tests/unictype/test-pr_bidi_control.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98639,6 +121430,18 @@ File: ./tests/unictype/test-pr_bidi_embedding_or_override.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98659,6 +121462,18 @@ File: ./tests/unictype/test-pr_bidi_eur_num_separator.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98679,6 +121494,18 @@ File: ./tests/unictype/test-pr_bidi_eur_num_terminator.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98699,6 +121526,18 @@ File: ./tests/unictype/test-pr_bidi_european_digit.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98719,6 +121558,18 @@ File: ./tests/unictype/test-pr_bidi_hebrew_right_to_left.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98739,6 +121590,18 @@ File: ./tests/unictype/test-pr_bidi_left_to_right.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98759,6 +121622,18 @@ File: ./tests/unictype/test-pr_bidi_non_spacing_mark.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98779,6 +121654,18 @@ File: ./tests/unictype/test-pr_bidi_other_neutral.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98799,6 +121686,18 @@ File: ./tests/unictype/test-pr_bidi_pdf.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98819,6 +121718,18 @@ File: ./tests/unictype/test-pr_bidi_segment_separator.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98839,6 +121750,18 @@ File: ./tests/unictype/test-pr_bidi_whitespace.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98859,6 +121782,18 @@ File: ./tests/unictype/test-pr_byname.c
 Hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -98879,6 +121814,18 @@ File: ./tests/unictype/test-pr_combining.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98899,6 +121846,18 @@ File: ./tests/unictype/test-pr_composite.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98919,6 +121878,18 @@ File: ./tests/unictype/test-pr_currency_symbol.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98939,6 +121910,18 @@ File: ./tests/unictype/test-pr_dash.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98959,6 +121942,18 @@ File: ./tests/unictype/test-pr_decimal_digit.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98979,6 +121974,18 @@ File: ./tests/unictype/test-pr_default_ignorable_code_point.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -98999,6 +122006,18 @@ File: ./tests/unictype/test-pr_deprecated.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99019,6 +122038,18 @@ File: ./tests/unictype/test-pr_diacritic.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99039,6 +122070,18 @@ File: ./tests/unictype/test-pr_extender.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99059,6 +122102,18 @@ File: ./tests/unictype/test-pr_format_control.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99079,6 +122134,18 @@ File: ./tests/unictype/test-pr_grapheme_base.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99099,6 +122166,18 @@ File: ./tests/unictype/test-pr_grapheme_extend.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99119,6 +122198,18 @@ File: ./tests/unictype/test-pr_grapheme_link.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99139,6 +122230,18 @@ File: ./tests/unictype/test-pr_hex_digit.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99159,6 +122262,18 @@ File: ./tests/unictype/test-pr_hyphen.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99179,6 +122294,18 @@ File: ./tests/unictype/test-pr_id_continue.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99199,6 +122326,18 @@ File: ./tests/unictype/test-pr_id_start.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99219,6 +122358,18 @@ File: ./tests/unictype/test-pr_ideographic.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99239,6 +122390,18 @@ File: ./tests/unictype/test-pr_ids_binary_operator.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99259,6 +122422,18 @@ File: ./tests/unictype/test-pr_ids_trinary_operator.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99279,6 +122454,18 @@ File: ./tests/unictype/test-pr_ignorable_control.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99299,6 +122486,18 @@ File: ./tests/unictype/test-pr_iso_control.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99319,6 +122518,18 @@ File: ./tests/unictype/test-pr_join_control.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99339,6 +122550,18 @@ File: ./tests/unictype/test-pr_left_of_pair.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99359,6 +122582,18 @@ File: ./tests/unictype/test-pr_line_separator.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99379,6 +122614,18 @@ File: ./tests/unictype/test-pr_logical_order_exception.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99399,6 +122646,18 @@ File: ./tests/unictype/test-pr_lowercase.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99419,6 +122678,18 @@ File: ./tests/unictype/test-pr_math.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99439,6 +122710,18 @@ File: ./tests/unictype/test-pr_non_break.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99459,6 +122742,18 @@ File: ./tests/unictype/test-pr_not_a_character.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99479,6 +122774,18 @@ File: ./tests/unictype/test-pr_numeric.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99499,6 +122806,18 @@ File: ./tests/unictype/test-pr_other_alphabetic.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99519,6 +122838,18 @@ File: ./tests/unictype/test-pr_other_default_ignorable_code_point.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99539,6 +122870,18 @@ File: ./tests/unictype/test-pr_other_grapheme_extend.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99559,6 +122902,18 @@ File: ./tests/unictype/test-pr_other_id_continue.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99579,6 +122934,18 @@ File: ./tests/unictype/test-pr_other_id_start.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99599,6 +122966,18 @@ File: ./tests/unictype/test-pr_other_lowercase.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99619,6 +122998,18 @@ File: ./tests/unictype/test-pr_other_math.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99639,6 +123030,18 @@ File: ./tests/unictype/test-pr_other_uppercase.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99659,6 +123062,18 @@ File: ./tests/unictype/test-pr_paired_punctuation.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99679,6 +123094,18 @@ File: ./tests/unictype/test-pr_paragraph_separator.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99699,6 +123126,18 @@ File: ./tests/unictype/test-pr_pattern_syntax.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99719,6 +123158,18 @@ File: ./tests/unictype/test-pr_pattern_white_space.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99739,6 +123190,18 @@ File: ./tests/unictype/test-pr_private_use.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99759,6 +123222,18 @@ File: ./tests/unictype/test-pr_punctuation.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99779,6 +123254,18 @@ File: ./tests/unictype/test-pr_quotation_mark.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99799,6 +123286,18 @@ File: ./tests/unictype/test-pr_radical.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99819,6 +123318,18 @@ File: ./tests/unictype/test-pr_sentence_terminal.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99839,6 +123350,18 @@ File: ./tests/unictype/test-pr_soft_dotted.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99859,6 +123382,18 @@ File: ./tests/unictype/test-pr_space.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99879,6 +123414,18 @@ File: ./tests/unictype/test-pr_terminal_punctuation.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99899,6 +123446,18 @@ File: ./tests/unictype/test-pr_test.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -99919,6 +123478,18 @@ File: ./tests/unictype/test-pr_titlecase.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99939,6 +123510,18 @@ File: ./tests/unictype/test-pr_unassigned_code_value.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99959,6 +123542,18 @@ File: ./tests/unictype/test-pr_unified_ideograph.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99979,6 +123574,18 @@ File: ./tests/unictype/test-pr_uppercase.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -99999,6 +123606,18 @@ File: ./tests/unictype/test-pr_variation_selector.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -100019,6 +123638,18 @@ File: ./tests/unictype/test-pr_white_space.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -100039,6 +123670,18 @@ File: ./tests/unictype/test-pr_xid_continue.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -100059,6 +123702,18 @@ File: ./tests/unictype/test-pr_xid_start.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -100079,6 +123734,18 @@ File: ./tests/unictype/test-pr_zero_width.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -100099,6 +123766,18 @@ File: ./tests/unictype/test-predicate-part1.h
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -100119,6 +123798,18 @@ File: ./tests/unictype/test-predicate-part2.h
 Hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -100139,6 +123830,18 @@ File: ./tests/unictype/test-scripts.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -100159,6 +123862,18 @@ File: ./tests/unictype/test-sy_c_ident.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -100179,6 +123894,18 @@ File: ./tests/unictype/test-sy_c_whitespace.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -100199,6 +123926,18 @@ File: ./tests/unictype/test-sy_java_ident.c
 Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character type functions.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -100219,6 +123958,18 @@ File: ./tests/unictype/test-sy_java_whitespace.c
 Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 #/* Test the Unicode character type functions.
@@ -100239,6 +123990,18 @@ File: ./tests/unilbrk/test-u16-possible-linebreaks.c
 Hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of line breaking of UTF-16 strings.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -100259,6 +124022,18 @@ File: ./tests/unilbrk/test-u16-width-linebreaks.c
 Hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of line breaking of UTF-16 strings.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -100279,6 +124054,18 @@ File: ./tests/unilbrk/test-u32-possible-linebreaks.c
 Hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of line breaking of UTF-32 strings.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -100299,6 +124086,18 @@ File: ./tests/unilbrk/test-u32-width-linebreaks.c
 Hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of line breaking of UTF-32 strings.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -100319,6 +124118,18 @@ File: ./tests/unilbrk/test-u8-possible-linebreaks.c
 Hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of line breaking of UTF-8 strings.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -100339,6 +124150,18 @@ File: ./tests/unilbrk/test-u8-width-linebreaks.c
 Hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of line breaking of UTF-8 strings.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -100359,6 +124182,18 @@ File: ./tests/unilbrk/test-ulc-possible-linebreaks.c
 Hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of line breaking of strings.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -100379,6 +124214,18 @@ File: ./tests/unilbrk/test-ulc-width-linebreaks.c
 Hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
 Copyright: 2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of line breaking of strings.
 #   Copyright (C) 2008 Free Software Foundation, Inc.
@@ -100419,6 +124266,18 @@ File: ./tests/uniname/test-uninames.c
 Hash: 75aa6d9c3dd3d7292e5386895029004117b7bb082ce4f21227c105dc6af43b00
 Copyright: 2000-2003, 2005, 2007, 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test the Unicode character name functions.
 #   Copyright (C) 2000-2003, 2005, 2007, 2009 Free Software Foundation, Inc.
@@ -100452,6 +124311,18 @@ File: ./tests/uninorm/test-canonical-decomposition.c
 Hash: a448e6e47900ce6ef19b5c003b18e330f376cd946cbd71d73028af86abe135dd
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of canonical decomposition of Unicode characters.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100472,6 +124343,18 @@ File: ./tests/uninorm/test-compat-decomposition.c
 Hash: 1a1be0d3a07610958181e24240ac9a5ecbf2ab378eee5f10e83361662f9c4846
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of compatibility decomposition of Unicode characters.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100492,6 +124375,18 @@ File: ./tests/uninorm/test-composition.c
 Hash: a9cfc5518ecd4051f86fd4d69f17642c965db52574d6e05e7a6c48d910e863b8
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of canonical composition of Unicode characters.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100512,6 +124407,18 @@ File: ./tests/uninorm/test-decomposing-form.c
 Hash: 69576c1fa17d13a8886c698b7d02742d961e36583f54b708bbd69ad096c32a93
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of decomposing variant of a normalization form.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100532,6 +124439,18 @@ File: ./tests/uninorm/test-decomposition.c
 Hash: e098c1a33862ac43c6a81a23842bcc036bc222abd16cabf7585b40c5ffa9f13b
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of decomposition of Unicode characters.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100552,6 +124471,18 @@ File: ./tests/uninorm/test-nfc.c
 Hash: e9e561889a62796cb7a20a6a9044b31b813500f2a501e285020f9150b1bd8e9b
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of canonical normalization of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100572,6 +124503,18 @@ File: ./tests/uninorm/test-nfd.c
 Hash: 9e4d1ad511a5edfbe76247e671aeba2f3a2ccb7d048d408440d9d64a2b6bfd86
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of canonical decomposition of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100592,6 +124535,18 @@ File: ./tests/uninorm/test-nfkc.c
 Hash: f852f8cc0ef2cc1d6145b5040910d25bad300da7f4f217b441bf42f48c5b684f
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of compatibility normalization of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100612,6 +124567,18 @@ File: ./tests/uninorm/test-nfkd.c
 Hash: 996838de5e25b4e10b7be70b8e0139e15b9852eec680d7813b7ac0e9cd4a4254
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of compatibility decomposition of Unicode strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100632,6 +124599,18 @@ File: ./tests/uninorm/test-u16-nfc.c
 Hash: b698b4d1c028fb6ecf50c5fbd520583195bbb1d0e55ad4b6e098487c6ad28d38
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of canonical normalization of UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100652,6 +124631,18 @@ File: ./tests/uninorm/test-u16-nfd.c
 Hash: 4c837d69f99444f70aa8a5a6b4ac325ffcca6a95ec60cb4fc052a53d8bbe2a44
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of canonical decomposition of UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100672,6 +124663,18 @@ File: ./tests/uninorm/test-u16-nfkc.c
 Hash: 498eacf1ec13365c3b4a66b32f14a6a10374555a75e6a3a68916446e76c2b146
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of compatibility normalization of UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100692,6 +124695,18 @@ File: ./tests/uninorm/test-u16-nfkd.c
 Hash: 0b13b0dddc12354427fafcf78195149905174c48a77bdfea7de548c164de9ec8
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of compatibility decomposition of UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100712,6 +124727,18 @@ File: ./tests/uninorm/test-u16-normcmp.c
 Hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of normalization insensitive comparison of UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100732,6 +124759,18 @@ File: ./tests/uninorm/test-u16-normcmp.h
 Hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of normalization insensitive comparison of UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100752,6 +124791,18 @@ File: ./tests/uninorm/test-u16-normcoll.c
 Hash: ceee340b1298ce1b06479da651ec2099f4356abfe07c42a2cf75b2f3ccc53855
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of locale dependent, normalization insensitive comparison of
 #   UTF-16 strings.
@@ -100772,6 +124823,18 @@ File: ./tests/uninorm/test-u32-nfc-big.c
 Hash: 0d2777874284fe0a8c91d2b3b2a5399b823cb2dad79d585383eb83c79b57c81c
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of Unicode compliance of canonical normalization of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100799,6 +124862,18 @@ File: ./tests/uninorm/test-u32-nfc.c
 Hash: 1b33b266858f6f5526266ebd1602fa80e26475d58bdeb7e6c376bfb53ba04963
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of canonical normalization of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100819,6 +124894,18 @@ File: ./tests/uninorm/test-u32-nfd-big.c
 Hash: 63854a2632b7cbc28cf0082fff71e81449b3459399888d8c59085994b440fbd1
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of Unicode compliance of canonical decomposition of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100846,6 +124933,18 @@ File: ./tests/uninorm/test-u32-nfd.c
 Hash: 1d11efc667f9a1a96ae0c1cf7a7ff48efeb6343fd34d5bf65bc009926b652e1b
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of canonical decomposition of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100866,6 +124965,18 @@ File: ./tests/uninorm/test-u32-nfkc-big.c
 Hash: 03584a064142db823aa30f198f34140a95768d7cb752d9bc2b4fd2b5064d9967
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of Unicode compliance of compatibility normalization of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100893,6 +125004,18 @@ File: ./tests/uninorm/test-u32-nfkc.c
 Hash: 4cb74b532545362c81ed6ff3a88bc7ae33d0663e9262942ee6c264d1190e1fbd
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of compatibility normalization of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100913,6 +125036,18 @@ File: ./tests/uninorm/test-u32-nfkd-big.c
 Hash: 12acb786931e36a2d9a6ba2d9807d967a72b06b659b6e37181b20b6168235f5f
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of Unicode compliance of compatibility decomposition of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100940,6 +125075,18 @@ File: ./tests/uninorm/test-u32-nfkd.c
 Hash: 35ed77ced7909ca500b2c08af6836d013992774deafe0846b72ecfa13d6f031c
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of compatibility decomposition of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100960,6 +125107,18 @@ File: ./tests/uninorm/test-u32-normalize-big.c
 Hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of Unicode compliance of normalization of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -100980,6 +125139,18 @@ File: ./tests/uninorm/test-u32-normalize-big.h
 Hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of Unicode compliance of normalization of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -101000,6 +125171,18 @@ File: ./tests/uninorm/test-u32-normcmp.c
 Hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of normalization insensitive comparison of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -101020,6 +125203,18 @@ File: ./tests/uninorm/test-u32-normcmp.h
 Hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of normalization insensitive comparison of UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -101040,6 +125235,18 @@ File: ./tests/uninorm/test-u32-normcoll.c
 Hash: 3b3591a744117db52df87ebfee1374c242580690a9d38dd72b9264d47d519b12
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of locale dependent, normalization insensitive comparison of
 #   UTF-32 strings.
@@ -101060,6 +125267,18 @@ File: ./tests/uninorm/test-u8-nfc.c
 Hash: 1cc025cec921d4f28a082455f5ee5c4c03ba8293305aa7b8c3b0c1fbba30c4fa
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of canonical normalization of UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -101080,6 +125299,18 @@ File: ./tests/uninorm/test-u8-nfd.c
 Hash: ab1a65db2659f7732acdd205f0b1ea3117f4b85013e5c38a9f46d225ad2ae0f0
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of canonical decomposition of UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -101100,6 +125331,18 @@ File: ./tests/uninorm/test-u8-nfkc.c
 Hash: d7082ba6f4b74e4554c6653e18151eb793cdda74f1b47770530230295d2e3e2e
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of compatibility normalization of UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -101120,6 +125363,18 @@ File: ./tests/uninorm/test-u8-nfkd.c
 Hash: a813ff37ff6161e75f5290a0fc5a2e80284c57f42d059e4ba9bd16159a1fdfc8
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of compatibility decomposition of UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -101140,6 +125395,18 @@ File: ./tests/uninorm/test-u8-normcmp.c
 Hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of normalization insensitive comparison of UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -101160,6 +125427,18 @@ File: ./tests/uninorm/test-u8-normcmp.h
 Hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of normalization insensitive comparison of UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -101180,6 +125459,18 @@ File: ./tests/uninorm/test-u8-normcoll.c
 Hash: d7aa94f225cc5310484036b430a51f201b05b9bc7784316c1d21f6a605a339ea
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of locale dependent, normalization insensitive comparison of
 #   UTF-8 strings.
@@ -101200,6 +125491,18 @@ File: ./tests/uninorm/test-uninorm-filter-nfc.c
 Hash: b66d309ad83a237d8d0a247cedfab3884798bad886cc15f3a6ba1d9f5e13b9ad
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of canonical normalization of streams.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -101220,6 +125523,18 @@ File: ./tests/unistdio/test-u16-asnprintf1.c
 Hash: 4cd1fc1c179cccfb1ae23beba8905574b7607b734ca02cb70a1267216322a5a4
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u16_asnprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101240,6 +125555,18 @@ File: ./tests/unistdio/test-u16-asnprintf1.h
 Hash: 76a1f62bd7c8d5161add6df04b31cd91ada3814cc0ca69bd9753a73a17dfcea4
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u16_[v]asnprintf() function.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -101260,6 +125587,18 @@ File: ./tests/unistdio/test-u16-printf1.h
 Hash: 909d6f0cefa405afb2e1072bb26eb4df9ba77e176f713b5f446a0c35b6b45ee7
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u16_v[a]s[n]printf() function.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -101280,6 +125619,18 @@ File: ./tests/unistdio/test-u16-vasnprintf1.c
 Hash: 3d425ccab1f150ddf5f5b81607ce8bfcfdd0c2ccb574609fe36a93297b08258e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u16_vasnprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101300,6 +125651,18 @@ File: ./tests/unistdio/test-u16-vasnprintf2.c
 Hash: c42edbef700ece3826498e7ec7562a528f72171d32e1dcadd5589aade0a62cc1
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u16_vasnprintf() function in an ISO-8859-1 locale.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101339,6 +125702,18 @@ File: ./tests/unistdio/test-u16-vasnprintf3.c
 Hash: 6b80497faada59178ae32663d8cc7aac6607d31f69c43bd2ab2a411492bfa495
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u16_vasnprintf() function in an UTF-8 locale.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101378,6 +125753,18 @@ File: ./tests/unistdio/test-u16-vasprintf1.c
 Hash: d559b3310501b16f524c4cf845f697c47b883582976b38184410d2f88971682c
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u16_vasprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101398,6 +125785,18 @@ File: ./tests/unistdio/test-u16-vsnprintf1.c
 Hash: bbea74e4dfbebb15cf5bdf3dae5d9e5b9c0fecf7b81cd5d597686a27b8e12570
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u16_vsnprintf() function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -101418,6 +125817,18 @@ File: ./tests/unistdio/test-u16-vsprintf1.c
 Hash: 51f1b19e6f03063d8833db2914a0b59598e146143ff42eb5789564b39888d994
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u16_vsprintf() function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -101438,6 +125849,18 @@ File: ./tests/unistdio/test-u32-asnprintf1.c
 Hash: d249b9b64091c3e4f41e6e9b0e7e856c278716eb4db6a989f603c9859fedf963
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u32_asnprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101458,6 +125881,18 @@ File: ./tests/unistdio/test-u32-asnprintf1.h
 Hash: 8b746d35a6ed28682834e7bd2e553b62a12e899d022589df093e016b38fb03af
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u32_[v]asnprintf() function.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -101478,6 +125913,18 @@ File: ./tests/unistdio/test-u32-printf1.h
 Hash: 2aa402941192f63adcad98959781ac2774070979f335f1332164a3863cc54404
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u32_v[a]s[n]printf() function.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -101498,6 +125945,18 @@ File: ./tests/unistdio/test-u32-vasnprintf1.c
 Hash: 2d05aa67379ffb2f79eb2308a4bc06bfd43b048ee90b89ae18730279e363c524
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u32_vasnprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101518,6 +125977,18 @@ File: ./tests/unistdio/test-u32-vasnprintf2.c
 Hash: b083a2377405a07fe51eb035ad09a0489bf65067207a0566910712abcb30726b
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u32_vasnprintf() function in an ISO-8859-1 locale.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101557,6 +126028,18 @@ File: ./tests/unistdio/test-u32-vasnprintf3.c
 Hash: 4fcf74ce885ab101762032b20b3ad9f1cfbfb52430e736add8c65743ec40eade
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u32_vasnprintf() function in an UTF-8 locale.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101596,6 +126079,18 @@ File: ./tests/unistdio/test-u32-vasprintf1.c
 Hash: eabc0bb1a9dbe71c93902c4a1490621caad6c67d3e03f4ac411b05807cb595e4
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u32_vasprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101616,6 +126111,18 @@ File: ./tests/unistdio/test-u32-vsnprintf1.c
 Hash: 2fb5c97c1868ff9f912aae2bc8784dbe759e65cfcb02ac8263da73868a208a49
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u32_vsnprintf() function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -101636,6 +126143,18 @@ File: ./tests/unistdio/test-u32-vsprintf1.c
 Hash: 36cf2e191798aa14ab7c7a791b0d61357029ec015af3c1feb99aaf853e1b8803
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u32_vsprintf() function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -101656,6 +126175,18 @@ File: ./tests/unistdio/test-u8-asnprintf1.c
 Hash: f2754ecea17ff7e997c7ba8312c71a022f600e49807de5f420c8bb62f0871cd8
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u8_asnprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101676,6 +126207,18 @@ File: ./tests/unistdio/test-u8-asnprintf1.h
 Hash: 46bdc3f468fe19b87aaacbecbd84f662c90c6ab838125defd47e5412c9bd67c1
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u8_[v]asnprintf() function.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -101696,6 +126239,18 @@ File: ./tests/unistdio/test-u8-printf1.h
 Hash: 1b1973376c0d8b5d5f884d50b7b1ab402e3e31243b03bc3f8e9c3251e39c66ec
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u8_v[a]s[n]printf() function.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -101716,6 +126271,18 @@ File: ./tests/unistdio/test-u8-vasnprintf1.c
 Hash: feffbb7a585c58b542b866102777167000d487253536607fd7500a6f21c5a1d5
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u8_vasnprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101736,6 +126303,18 @@ File: ./tests/unistdio/test-u8-vasnprintf2.c
 Hash: 6964834677d5fd9d5fcec4e56ebc23c309ef467f98ae1827e81e9739de99eaa2
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u8_vasnprintf() function in an ISO-8859-1 locale.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101775,6 +126354,18 @@ File: ./tests/unistdio/test-u8-vasnprintf3.c
 Hash: 59c1d2cbfeabd9ca557c7c72f2f556faab45e78c6113db11244cbe00eafb4c91
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u8_vasnprintf() function in an UTF-8 locale.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101814,6 +126405,18 @@ File: ./tests/unistdio/test-u8-vasprintf1.c
 Hash: 005e299ef65aa2dfd2c981e1fb5ae933957acfc190152132b9bd9da6b75afc68
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u8_vasprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101834,6 +126437,18 @@ File: ./tests/unistdio/test-u8-vsnprintf1.c
 Hash: f0f1a7e874f9cdb481d2920816076e14198c8279ed8878458668578ce82643d5
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u8_vsnprintf() function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -101854,6 +126469,18 @@ File: ./tests/unistdio/test-u8-vsprintf1.c
 Hash: ecfe8f24ee3cdd3323a0192f09dd50590f4201122e5b203aa84879ae682ff319
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u8_vsprintf() function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -101874,6 +126501,18 @@ File: ./tests/unistdio/test-ulc-asnprintf1.c
 Hash: f460de9dace19bfa0b9e79f25557bd411248db7e9c41ded07d1b450087c5e1cb
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ulc_asnprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101894,6 +126533,18 @@ File: ./tests/unistdio/test-ulc-asnprintf1.h
 Hash: cd00792dc677501bacb09b04f578ee318c85955822b7e39b71f20ded701252f9
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ulc_[v]asnprintf() functions.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -101914,6 +126565,18 @@ File: ./tests/unistdio/test-ulc-printf1.h
 Hash: 52719b059d0fe4592ec7de9c12156520eacdf740e6a9b43edaf32d1650a8c992
 Copyright: 2007 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ulc_v[a]s[n]printf() functions.
 #   Copyright (C) 2007 Free Software Foundation, Inc.
@@ -101934,6 +126597,18 @@ File: ./tests/unistdio/test-ulc-vasnprintf1.c
 Hash: 38f11760c3832f5b714de061118c87e63e5e70c624e5f25bb835676b6055e6b4
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ulc_vasnprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101954,6 +126629,18 @@ File: ./tests/unistdio/test-ulc-vasnprintf2.c
 Hash: be7efc5b5cb950d1b005d9fe5af23b12c0eb89bc049db7294d999044a6329e1e
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ulc_vasnprintf() function in an ISO-8859-1 locale.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -101993,6 +126680,18 @@ File: ./tests/unistdio/test-ulc-vasnprintf3.c
 Hash: 90ffc7b3f6cb85309a0e342f0f768c7a4c2c729a08d2b831a0f549e8e01718d0
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ulc_vasnprintf() function in an UTF-8 locale.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -102032,6 +126731,18 @@ File: ./tests/unistdio/test-ulc-vasprintf1.c
 Hash: 0db7617d589e3703964119869d14691abb2498a1fc25d64a755eec64dfd07413
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ulc_vasprintf() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -102052,6 +126763,18 @@ File: ./tests/unistdio/test-ulc-vsnprintf1.c
 Hash: bb840d45e39a1be31b0b4daad61d03d30d8376f10220704e06c94f655cc3a564
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ulc_vsnprintf() function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -102072,6 +126795,18 @@ File: ./tests/unistdio/test-ulc-vsprintf1.c
 Hash: d062894ca1aa3e3cc138093e10d57c39a38df1464ffcf75538249c801da83c35
 Copyright: 2007-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of ulc_vsprintf() function.
 #   Copyright (C) 2007-2009 Free Software Foundation, Inc.
@@ -102092,6 +126827,18 @@ File: ./tests/uniwbrk/test-u16-wordbreaks.c
 Hash: 11ab1e7ac1c6c7ba08cea587aadb03a6aa110a3169c7bf643d0ea2764e240537
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of word breaks in UTF-16 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -102112,6 +126859,18 @@ File: ./tests/uniwbrk/test-u32-wordbreaks.c
 Hash: f49f7bebcb1395a7fa915f963b4a677a3698fc1d2e5ff93f955be0299357baee
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of word breaks in UTF-32 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -102132,6 +126891,18 @@ File: ./tests/uniwbrk/test-u8-wordbreaks.c
 Hash: bb82bf9821127ceb2c7da498d0c101d05faef0dd319c018e41d56ed0f3ac1c31
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of word breaks in UTF-8 strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -102152,6 +126923,18 @@ File: ./tests/uniwbrk/test-ulc-wordbreaks.c
 Hash: 1609df8eadc7abda56ce3dec4a2ec747326360d74afb059c522331d5b242533c
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of word breaks in strings.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -102192,6 +126975,18 @@ File: ./tests/uniwidth/test-u16-strwidth.c
 Hash: e5c07a0d8d419dff0b836a33748dee1cc6e0f9d71808ca383caefda4c8f0d551
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u16_strwidth() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -102212,6 +127007,18 @@ File: ./tests/uniwidth/test-u16-width.c
 Hash: 6874b1458a692740482ff6e7172bf490f6dcc01985040b888e7bd2d7f7243261
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u16_width() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -102232,6 +127039,18 @@ File: ./tests/uniwidth/test-u32-strwidth.c
 Hash: a4d26a909a61a615cf5aa5b183b291ca10258e5123a9eea0aec24856da402b1d
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u32_strwidth() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -102252,6 +127071,18 @@ File: ./tests/uniwidth/test-u32-width.c
 Hash: e651f14a8b91f79e7b9cbf7403e88af982c9d37e0b1a5327c89da40f1bde988c
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u32_width() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -102272,6 +127103,18 @@ File: ./tests/uniwidth/test-u8-strwidth.c
 Hash: fcf5c6c2c481b0375772edb286bed88b0ca421d6736214ae4e0a64567beb75c7
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u8_strwidth() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -102292,6 +127135,18 @@ File: ./tests/uniwidth/test-u8-width.c
 Hash: 9e7db4127bec42b0e97fa3a07242099cb818e1e533c208c158bcc2969c7d7c31
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of u8_width() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -102312,6 +127167,18 @@ File: ./tests/uniwidth/test-uc_width.c
 Hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of uc_width() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -102332,6 +127199,18 @@ File: ./tests/uniwidth/test-uc_width2.c
 Hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
 Copyright: 2007-2008 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Test of uc_width() function.
 #   Copyright (C) 2007-2008 Free Software Foundation, Inc.
@@ -102372,6 +127251,18 @@ File: ./tests/zerosize-ptr.h
 Hash: f1e50a6aba1af63593fff7b9ec71317ade999e0e10d738a6594aa3de16536da7
 Copyright: 2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 #/* Return a pointer to a zero-size object in memory.
 #   Copyright (C) 2009 Free Software Foundation, Inc.
@@ -102392,6 +127283,18 @@ File: ./top/GNUmakefile
 Hash: 1db2e4a3959febe32d5c70280a5b28547600d854b8d1b61ec85d3a9b670a2b23
 Copyright: 2001, 2003, 2006-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ## Having a separate GNUmakefile lets me `include' the dynamically
 ## generated rules created via cfg.mk (package-local configuration)
@@ -102412,6 +127315,18 @@ File: ./top/maint.mk
 Hash: eef091164cb5f26dc538fb6b3940b82d779d05390f32dffea43d1161be06adc1
 Copyright: 2001-2009 Free Software Foundation, Inc.
 License: GPL-3+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+   
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+   
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #Header:
 ## -*-Makefile-*-
 ## This Makefile fragment tries to be general-purpose enough to be
index 0ae9344..144b58d 100644 (file)
@@ -915,15 +915,11 @@ Files: ./lib/random_r.c
 Copyright: 1983 Regents of the University of California / 1995, 2005, 2008 Free Software Foundation, Inc.
 License: BSD (3 clause) and LGPL-2.1+ [REF15]
 
-Files: ./doc/maintain.texi
-Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-License: GFDL-1.3+-NIV
-
 Files: ./doc/verify.texi
 Copyright: 2006 Free Software Foundation, Inc.
 License: GFDL-1.3+-NIV [REF16]
 
-Files: ./doc/standards.texi
+Files: ./doc/maintain.texi, ./doc/standards.texi
 Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 License: GFDL-1.3+-NIV [REF17]
 
@@ -977,2027 +973,2027 @@ License: GFDL-1.3+-NIV [REF17]
 
 Files: ./lib/regex.h
 Copyright: 1985,1989-93,1995-98,2000,2001,2002,2003,2005,2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/fnmatch.in.h
 Copyright: 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/strpbrk.c
 Copyright: 1991, 1994, 2000, 2002-2003, 2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/strdup.c
 Copyright: 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/memset.c
 Copyright: 1991, 2003 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/fnmatch_loop.c
 Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/fnmatch.c
 Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/memmem.c, ./lib/strstr.c
 Copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./build-aux/config.guess
 Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./build-aux/config.sub
 Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/alphasort.c
 Copyright: 1992, 1997, 1998, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/pathmax.h
 Copyright: 1992, 1999, 2001, 2003, 2005, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/scandir.c
 Copyright: 1992-1998, 2000, 2002, 2003, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/getpass.c
 Copyright: 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/mktime.c
 Copyright: 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/getdelim.c
 Copyright: 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/timegm.c
 Copyright: 1994, 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./build-aux/mdate-sh
 Copyright: 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/minmax.h
 Copyright: 1995, 1998, 2001, 2003, 2005 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/alloca.in.h
 Copyright: 1995, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./build-aux/elisp-comp
 Copyright: 1995, 2000, 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/md2.c, ./lib/md4.c
 Copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/md5.c
 Copyright: 1995,1996,1997,1999,2000,2001,2005,2006,2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/c-strcase.h
 Copyright: 1995-1996, 2001, 2003, 2005 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/string.in.h
 Copyright: 1995-1996, 2001-2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/md5.h
 Copyright: 1995-1997,1999,2000,2001,2004,2005,2006,2008,2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/gettext.h
 Copyright: 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/argz.c
 Copyright: 1995-1998, 2000-2002, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/strndup.c
 Copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./build-aux/missing
 Copyright: 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/malloc.c
 Copyright: 1997, 1998, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/strverscmp.c
 Copyright: 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/getaddrinfo.c
 Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/gai_strerror.c
 Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/check-version.c
 Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/des.c
 Copyright: 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/c-strcasecmp.c, ./lib/c-strncasecmp.c
 Copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/strcasecmp.c, ./lib/strncasecmp.c
 Copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/base64.c
 Copyright: 1999, 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./build-aux/depcomp
 Copyright: 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./build-aux/compile
 Copyright: 1999, 2000, 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/asnprintf.c
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/asprintf.c
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/vasprintf.c
 Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/printf-parse.h
 Copyright: 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/printf-args.c
 Copyright: 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/printf-args.h
 Copyright: 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/vasnprintf.c
 Copyright: 1999, 2002-2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/printf-parse.c
 Copyright: 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/iconv.c
 Copyright: 1999-2001, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/ref-add.sin, ./lib/ref-del.sin
 Copyright: 2000 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/arcfour.h
 Copyright: 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/arctwo.h
 Copyright: 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/arcfour.c
 Copyright: 2000, 2001, 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/sha1.c
 Copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/sha1.h
 Copyright: 2000, 2001, 2003, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/md2.h, ./lib/md4.h
 Copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/unictype/3level.h
 Copyright: 2000-2001 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/unictype/3levelbit.h
 Copyright: 2000-2002 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/localcharset.h
 Copyright: 2000-2003 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/c-ctype.c
 Copyright: 2000-2003, 2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/c-ctype.h
 Copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/config.charset
 Copyright: 2000-2004, 2006-2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/localcharset.c
 Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/gettimeofday.c
 Copyright: 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/poll.in.h
 Copyright: 2001, 2002, 2003, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/stdint.in.h
 Copyright: 2001-2002, 2004-2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/sys_wait.in.h
 Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/stdbool.in.h
 Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/poll.c
 Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/striconv.h
 Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/striconv.c
 Copyright: 2001-2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/gc-pbkdf2-sha1.c
 Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/gc-gnulib.c, ./lib/gc-libgcrypt.c, ./lib/regex_internal.c, ./lib/regex_internal.h, ./lib/regexec.c
 Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./tests/test-gc-pbkdf2-sha1.c
 Copyright: 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/gc.h
 Copyright: 2002, 2003, 2004, 2005, 2007, 2008 Simon Josefsson
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/regex.c
 Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/strptime.c
 Copyright: 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/regcomp.c
 Copyright: 2002,2003,2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/vasnprintf.h
 Copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/arctwo.c
 Copyright: 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/time_r.c
 Copyright: 2003, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/malloca.c
 Copyright: 2003, 2006-2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/mempcpy.c
 Copyright: 2003, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/xsize.h
 Copyright: 2003, 2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/alignof.h
 Copyright: 2003-2004, 2006, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/malloca.h
 Copyright: 2003-2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/unistd.in.h
 Copyright: 2003-2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/getpass.h
 Copyright: 2004 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/base64.h
 Copyright: 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./build-aux/gnupload
 Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/snprintf.c, ./lib/vsnprintf.c
 Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/strsep.c
 Copyright: 2004, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/stdio.in.h
 Copyright: 2004, 2007-2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/check-version.h, ./lib/hmac.h, ./lib/memxor.h, ./tests/test-gc-arcfour.c, ./tests/test-gc-arctwo.c, ./tests/test-gc-des.c, ./tests/test-gc-hmac-md5.c, ./tests/test-gc-hmac-sha1.c, ./tests/test-gc-md2.c, ./tests/test-gc-md4.c, ./tests/test-gc-md5.c, ./tests/test-gc-rijndael.c, ./tests/test-gc-sha1.c, ./tests/test-md2.c, ./tests/test-md4.c
 Copyright: 2005 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/hmac-md5.c, ./lib/hmac-sha1.c, ./lib/memxor.c, ./tests/test-gc.c
 Copyright: 2005, 2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/getline.c, ./lib/getlogin_r.c, ./lib/strnlen.c
 Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/des.h, ./tests/test-des.c
 Copyright: 2005, 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/size_max.h
 Copyright: 2005-2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/arpa_inet.in.h
 Copyright: 2005-2006, 2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/glob.in.h
 Copyright: 2005-2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/glthread/cond.h, ./lib/glthread/lock.c, ./lib/glthread/lock.h, ./lib/glthread/thread.c, ./lib/glthread/thread.h, ./lib/glthread/yield.h, ./lib/str-kmp.h, ./lib/strcasestr.c
 Copyright: 2005-2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/glthread/threadlib.c, ./lib/sys_socket.in.h, ./lib/sys_stat.in.h
 Copyright: 2005-2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/read-file.c, ./lib/read-file.h
 Copyright: 2006 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/wctype.in.h
 Copyright: 2006-2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/float+.h, ./lib/iconv_close.c, ./lib/lseek.c, ./lib/round.c, ./lib/roundf.c, ./lib/roundl.c
 Copyright: 2007 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/iconv_open.c
 Copyright: 2007, 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/iconv.in.h, ./lib/isfinite.c, ./lib/isinf.c, ./lib/netinet_in.in.h, ./lib/strings.in.h, ./lib/sys_file.in.h, ./lib/sys_time.in.h
 Copyright: 2007-2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/fseeko.c, ./lib/sys_select.in.h, ./lib/time.in.h, ./lib/wchar.in.h
 Copyright: 2007-2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/glthread/cond.c, ./lib/netdb.in.h, ./lib/obstack_printf.c, ./lib/stdarg.in.h, ./lib/str-two-way.h, ./lib/sys_times.in.h, ./lib/times.c, ./tests/test-flock.c, ./tests/test-fsync.c
 Copyright: 2008 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/git-merge-changelog.c
 Copyright: 2008-2009 Bruno Haible <bruno@clisp.org>
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/errno.in.h, ./lib/select.c, ./lib/sys_ioctl.in.h
 Copyright: 2008-2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/accept4.c, ./lib/dup3.c, ./lib/link.c, ./lib/nproc.c, ./lib/nproc.h, ./lib/pipe2.c, ./lib/pthread.in.h, ./lib/stddef.in.h, ./lib/sys_utsname.in.h, ./tests/test-link.c
 Copyright: 2009 Free Software Foundation, Inc.
-License: GPL-2+
+License: GPL-2+ [REF18]
 
 Files: ./lib/inet_ntop.c
 Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc. / 1996-1999 by Internet Software Consortium
-License: GPL-2+ and ISC
+License: GPL-2+ and ISC [REF19]
 
 Files: ./lib/rijndael-alg-fst.h, ./lib/rijndael-api-fst.h
 Copyright: 2005 Free Software Foundation, Inc.
-License: GPL-2+ and other [REF18]
+License: GPL-2+ and other [REF20]
 
 Files: ./lib/rijndael-alg-fst.c, ./lib/rijndael-api-fst.c
 Copyright: 2005, 2006 Free Software Foundation, Inc.
-License: GPL-2+ and other [REF18]
+License: GPL-2+ and other [REF20]
 
 Files: ./lib/getloadavg.c
 Copyright: 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/texinfo.tex
 Copyright: 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/idcache.c
 Copyright: 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/filemode.c
 Copyright: 1985, 1990, 1993, 1998-2000, 2004, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/linebuffer.c
 Copyright: 1986, 1991, 1998, 1999, 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/linebuffer.h
 Copyright: 1986, 1991, 1998, 1999, 2002, 2003, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getopt.c
 Copyright: 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002,2003,2004,2006,2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getopt1.c
 Copyright: 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/obstack.c
 Copyright: 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/rmdir.c
 Copyright: 1988, 1990, 1999, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fstrcmp.c
 Copyright: 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008, Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/diffseq.h
 Copyright: 1988-1989, 1992-1995, 2001-2004, 2006-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/obstack.h
 Copyright: 1988-1994,1996-1999,2003,2004,2005,2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/posixtm.c
 Copyright: 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/modechange.c
 Copyright: 1989, 1990, 1997, 1998, 1999, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/modechange.h
 Copyright: 1989, 1990, 1997, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/userspec.c
 Copyright: 1989-1992, 1997-1998, 2000, 2002-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getopt_int.h
 Copyright: 1989-1994,1996-1999,2001,2003,2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getopt.in.h
 Copyright: 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/diacrit.h
 Copyright: 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/backupfile.c
 Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xmalloc.c
 Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xalloc.h
 Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/diacrit.c
 Copyright: 1990, 1991, 1992, 1993, 2000, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/backupfile.h
 Copyright: 1990, 1991, 1992, 1997, 1998, 1999, 2003, 2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/euidaccess.c
 Copyright: 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getugroups.c
 Copyright: 1990, 1991, 1998-2000, 2003-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/readtokens.h
 Copyright: 1990, 1991, 1999, 2001-2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/savedir.c
 Copyright: 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mkdir-p.c
 Copyright: 1990, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fileblocks.c
 Copyright: 1990, 1997, 1998, 1999, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/basename.c
 Copyright: 1990, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argmatch.c
 Copyright: 1990, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argmatch.h
 Copyright: 1990, 1998, 1999, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/dirname.c
 Copyright: 1990, 1998, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/yesno.c
 Copyright: 1990, 1998, 2001, 2003-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/isdir.c
 Copyright: 1990, 1998, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./tests/test-argmatch.c
 Copyright: 1990, 1998-1999, 2001-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/stripslash.c
 Copyright: 1990, 2001, 2003-2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/readtokens.c
 Copyright: 1990-1991, 1999-2004, 2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/error.c
 Copyright: 1990-1998, 2000-2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/tempname.c
 Copyright: 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/strtol.c
 Copyright: 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/strtod.c
 Copyright: 1991, 1992, 1997, 1999, 2003, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fsusage.h
 Copyright: 1991, 1992, 1997, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mountlist.c
 Copyright: 1991, 1992, 1997-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mountlist.h
 Copyright: 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/memcmp.c
 Copyright: 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/memrchr.c
 Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/memchr.c, ./lib/memchr2.c
 Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/strcspn.c
 Copyright: 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/putenv.c
 Copyright: 1991, 1994, 1997-1998, 2000, 2003-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/strtoul.c
 Copyright: 1991, 1997 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getusershell.c
 Copyright: 1991, 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/cloexec.c
 Copyright: 1991, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/strtok_r.c
 Copyright: 1991,1996-1999,2001,2004,2007,2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fsusage.c
 Copyright: 1991-1992, 1996, 1998-1999, 2002-2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/strftime.c
 Copyright: 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getcwd.c
 Copyright: 1991-1999, 2004-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/exclude.c
 Copyright: 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/exclude.h
 Copyright: 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/stpcpy.c
 Copyright: 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xgetdomainname.h
 Copyright: 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xgethostname.c
 Copyright: 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xgetdomainname.c
 Copyright: 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/gethostname.c
 Copyright: 1992, 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/unsetenv.c
 Copyright: 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/setenv.c
 Copyright: 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/readutmp.c
 Copyright: 1992-2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/readutmp.h
 Copyright: 1992-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/full-write.c
 Copyright: 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/long-options.c
 Copyright: 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/long-options.h
 Copyright: 1993, 1994, 1998, 1999, 2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/safe-read.c
 Copyright: 1993, 1994, 1998, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/file-type.h
 Copyright: 1993, 1994, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/file-type.c
 Copyright: 1993, 1994, 2001, 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/stpncpy.c
 Copyright: 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getndelim2.c
 Copyright: 1993, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mkdir-p.h
 Copyright: 1994, 1995, 1996, 1997, 2000, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/group-member.c
 Copyright: 1994, 1997, 1998, 2003, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/group-member.h
 Copyright: 1994, 1997, 2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/strtoull.c
 Copyright: 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/strtoll.c
 Copyright: 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/error.h
 Copyright: 1995, 1996, 1997, 2003, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xstrtol.c
 Copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./tests/test-xstrtol.c
 Copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xstrtol.h
 Copyright: 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xstrtol-error.c
 Copyright: 1995, 1996, 1998, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/save-cwd.h
 Copyright: 1995, 1997, 1998, 2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/save-cwd.c
 Copyright: 1995, 1997, 1998, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getdate.h
 Copyright: 1995, 1997, 1998, 2003, 2004, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/memcpy.c
 Copyright: 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fstrcmp.h
 Copyright: 1995, 2000, 2002-2003, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xgetcwd.h
 Copyright: 1995, 2001, 2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/stdlib.in.h
 Copyright: 1995, 2001-2004, 2006-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/tsearch.c
 Copyright: 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argp.h
 Copyright: 1995-1999,2003-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argp-parse.c
 Copyright: 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argp-help.c
 Copyright: 1995-2005, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/human.c, ./lib/human.h
 Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argp-pvh.c
 Copyright: 1996, 1997, 1999, 2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getsubopt.c
 Copyright: 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argp-pv.c
 Copyright: 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argp-ba.c
 Copyright: 1996, 1997, 1999, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/memcasecmp.c
 Copyright: 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/filenamecat.h
 Copyright: 1996, 1997, 2003, 2005, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/rpmatch.c
 Copyright: 1996, 1998, 2000, 2002, 2003, 2006-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/memcasecmp.h
 Copyright: 1996, 1998, 2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xstrtod.h
 Copyright: 1996, 1998, 2003, 2004, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xstrtod.c
 Copyright: 1996, 1999, 2000, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getgroups.c
 Copyright: 1996, 1999, 2003, 2006, 2007, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/canonicalize-lgpl.c
 Copyright: 1996-2003, 2005-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/canonicalize.h, ./lib/filenamecat.c
 Copyright: 1996-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./tests/test-filenamecat.c
 Copyright: 1996-2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/config.libpath
 Copyright: 1996-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/canonicalize.c
 Copyright: 1996-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argp-eexst.c
 Copyright: 1997 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/same.c
 Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xalloc-die.c
 Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/same.h
 Copyright: 1997, 1998, 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/hard-locale.c
 Copyright: 1997, 1998, 1999, 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argp-xinl.c
 Copyright: 1997, 1998, 2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/savedir.h
 Copyright: 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argp-fs-xinl.c
 Copyright: 1997, 2003, 2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/realloc.c
 Copyright: 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argp-namefrob.h
 Copyright: 1997, 2003, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/chown.c
 Copyright: 1997, 2004-2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argp-fmtstream.h
 Copyright: 1997, 2006-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/lstat.c
 Copyright: 1997-1999, 2000-2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argp-fmtstream.c
 Copyright: 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/hash.c
 Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/quotearg.c
 Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/close-stream.c
 Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/closeout.c, ./lib/quotearg.h
 Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/quote.h
 Copyright: 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/quote.c
 Copyright: 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/hash.h
 Copyright: 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mkostemp.c, ./lib/mkstemp.c
 Copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/lchown.c
 Copyright: 1998, 1999, 2002, 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/filemode.h
 Copyright: 1998, 1999, 2003, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/closeout.h
 Copyright: 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/utime.c
 Copyright: 1998, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/dirname.h
 Copyright: 1998, 2001, 2003-2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/posixtm.h
 Copyright: 1998, 2003, 2005, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mbscasecmp.c, ./lib/mbsncasecmp.c, ./lib/mbspcasecmp.c
 Copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mbmemcasecmp.c
 Copyright: 1998-1999, 2005-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getdate.y
 Copyright: 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/nanosleep.c
 Copyright: 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/strtoimax.c
 Copyright: 1999, 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/tmpdir.c
 Copyright: 1999, 2001-2002, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mkdtemp.c
 Copyright: 1999, 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/memcoll.c
 Copyright: 1999, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mbscspn.c, ./lib/mbspbrk.c, ./lib/mbsspn.c, ./lib/mbstok_r.c
 Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xasprintf.c
 Copyright: 1999, 2002-2004, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xvasprintf.c
 Copyright: 1999, 2002-2004, 2006-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/memcoll.h
 Copyright: 1999, 2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/hard-locale.h
 Copyright: 1999, 2003, 2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/version-etc.h
 Copyright: 1999, 2003, 2005, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/dup2.c
 Copyright: 1999, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/sincosl.c
 Copyright: 1999, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/trigl.c
 Copyright: 1999, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mbrlen.c
 Copyright: 1999-2000, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mbrtowc.c
 Copyright: 1999-2002, 2005-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/version-etc-fsf.c
 Copyright: 1999-2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/version-etc.c
 Copyright: 1999-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/spawn.c, ./lib/spawn_faction_addclose.c, ./lib/spawn_faction_adddup2.c, ./lib/spawn_faction_addopen.c, ./lib/spawn_faction_destroy.c, ./lib/spawn_faction_init.c, ./lib/spawnattr_destroy.c, ./lib/spawnattr_getdefault.c, ./lib/spawnattr_getflags.c, ./lib/spawnattr_getpgroup.c, ./lib/spawnattr_getschedpolicy.c, ./lib/spawnattr_getsigmask.c, ./lib/spawnattr_init.c, ./lib/spawnattr_setdefault.c, ./lib/spawnattr_setpgroup.c, ./lib/spawnattr_setschedparam.c, ./lib/spawnattr_setschedpolicy.c, ./lib/spawnattr_setsigmask.c, ./lib/spawnp.c
 Copyright: 2000 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/physmem.c
 Copyright: 2000, 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/timespec.h
 Copyright: 2000, 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/physmem.h
 Copyright: 2000, 2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/spawn.in.h
 Copyright: 2000, 2003, 2004, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fpending.h
 Copyright: 2000, 2003, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/spawnattr_setflags.c
 Copyright: 2000, 2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fpending.c
 Copyright: 2000, 2004, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/spawn_int.h, ./lib/spawnattr_getschedparam.c
 Copyright: 2000, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/gen-uni-tables.c, ./lib/uniwbrk/wbrkprop.h
 Copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/unilbrk/lbrkprop1.h, ./lib/unilbrk/lbrkprop2.h
 Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./tests/uniname/test-uninames.c
 Copyright: 2000-2003, 2005, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/unicodeio.h
 Copyright: 2000-2003, 2005, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/unicodeio.c
 Copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mbswidth.h
 Copyright: 2000-2004, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/spawni.c
 Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mbswidth.c
 Copyright: 2000-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/atanl.c, ./lib/logl.c
 Copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/unlocked-io.h
 Copyright: 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/intprops.h
 Copyright: 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/inttostr.h
 Copyright: 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/rename.c
 Copyright: 2001, 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/hash-pjw.h
 Copyright: 2001, 2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xgetcwd.c
 Copyright: 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/areadlink.h, ./lib/xreadlink.h
 Copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/w32spawn.h
 Copyright: 2001, 2003, 2004-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/unistd-safer.h
 Copyright: 2001, 2003, 2005 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/binary-io.h
 Copyright: 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/x-to-1.in, ./lib/hash-pjw.c
 Copyright: 2001, 2003, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mkdir.c
 Copyright: 2001, 2003, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/stdio-safer.h
 Copyright: 2001, 2003, 2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/clean-temp.c
 Copyright: 2001, 2003, 2006-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./top/GNUmakefile
 Copyright: 2001, 2003, 2006-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/areadlink-with-size.c, ./lib/areadlink.c, ./lib/xreadlink.c
 Copyright: 2001, 2003-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/dup-safer.c, ./lib/fopen-safer.c
 Copyright: 2001, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mbfile.h
 Copyright: 2001, 2005 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mbiter.h, ./lib/mbuiter.h
 Copyright: 2001, 2005, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/mbchar.h
 Copyright: 2001, 2005-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/javaexec.sh.in, ./lib/mbchar.c
 Copyright: 2001, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/inttostr.c
 Copyright: 2001, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/dirfd.c
 Copyright: 2001, 2006, 2008-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/javaexec.h, ./lib/tmpdir.h
 Copyright: 2001-2002 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/sh-quote.h
 Copyright: 2001-2002, 2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xsetenv.c
 Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/javacomp.sh.in, ./lib/gcd.c, ./lib/gcd.h, ./lib/javacomp.h
 Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xsetenv.h
 Copyright: 2001-2002, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/copy-file.h, ./lib/findprog.h
 Copyright: 2001-2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/progname.c, ./lib/wait-process.c
 Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/c-strstr.h, ./lib/classpath.c
 Copyright: 2001-2003, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/pipe.h, ./lib/wait-process.h
 Copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/copy-file.c
 Copyright: 2001-2003, 2006-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/javacomp.c, ./lib/javaexec.c
 Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/execute.h
 Copyright: 2001-2003, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/pipe-filter-aux.h, ./lib/pipe-filter-gi.c, ./lib/pipe-filter-ii.c
 Copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/progname.h, ./lib/sh-quote.c, ./lib/xstriconv.c
 Copyright: 2001-2004, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xstriconv.h
 Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/concat-filename.c, ./lib/findprog-lgpl.c, ./lib/findprog.c, ./lib/xconcat-filename.c
 Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/execute.c, ./lib/pipe.c
 Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/concat-filename.h, ./lib/filename.h
 Copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/iconveh.h, ./lib/striconveh.h, ./lib/xstriconveh.h
 Copyright: 2001-2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/striconveh.c, ./top/maint.mk
 Copyright: 2001-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/exitfail.h, ./lib/full-read.h, ./lib/safe-write.c, ./lib/safe-write.h
 Copyright: 2002 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/full-read.c, ./lib/trigl.h
 Copyright: 2002, 2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./config/srclistvars.sh
 Copyright: 2002, 2003, 2004 2005, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/posixver.c
 Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xnanosleep.c
 Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xmemcoll.c
 Copyright: 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/raise.c
 Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/exitfail.c
 Copyright: 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./config/srclist-update
 Copyright: 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/expl.c, ./lib/sqrtl.c
 Copyright: 2002, 2003, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/ldexpl.c
 Copyright: 2002, 2003, 2007, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/gettime.c
 Copyright: 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/settime.c
 Copyright: 2002, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/sig2str.c
 Copyright: 2002, 2004, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./tests/test-c-stack.c
 Copyright: 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/c-stack.c
 Copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/c-stack.h, ./lib/strftime.h
 Copyright: 2002, 2004, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/sig2str.h
 Copyright: 2002, 2005 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/striconveha.c
 Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/striconveha.h
 Copyright: 2002, 2005, 2007-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/safe-read.h
 Copyright: 2002, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/acl.h
 Copyright: 2002, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/full-write.h
 Copyright: 2002-2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/copy-acl.c
 Copyright: 2002-2003, 2005-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/acl-internal.h, ./lib/acl_entries.c, ./lib/file-has-acl.c, ./lib/set-mode-acl.c
 Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/math.in.h
 Copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xvasprintf.h
 Copyright: 2002-2004, 2006-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/move-if-change, ./tests/test-stdbool.c
 Copyright: 2002-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./posix-modules
 Copyright: 2002-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./MODULES.html.sh, ./build-aux/announce-gen, ./gnulib-tool
 Copyright: 2002-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/reloc-ldflags, ./lib/classpath.h, ./lib/csharpcomp.h, ./lib/csharpexec.h, ./lib/xstrndup.h
 Copyright: 2003 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getnline.h
 Copyright: 2003, 2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/cycle-check.c, ./lib/fts-cycle.c
 Copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/gendocs.sh, ./lib/utimens.c
 Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/cycle-check.h, ./lib/getndelim2.h, ./lib/getnline.c
 Copyright: 2003, 2004, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/c-strtod.c
 Copyright: 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/csharpexec.sh.in
 Copyright: 2003, 2005 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xmalloca.h
 Copyright: 2003, 2005, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fwriteerror.h
 Copyright: 2003, 2005-2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/relocatable.sh.in, ./lib/relocwrapper.c
 Copyright: 2003, 2005-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/install-reloc
 Copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/free.c
 Copyright: 2003, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xstrndup.c
 Copyright: 2003, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/getdomainname.c
 Copyright: 2003, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/xmalloca.c
 Copyright: 2003, 2006-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/sysexits.in.h
 Copyright: 2003, 2006-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/strchrnul.c
 Copyright: 2003, 2007, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/eealloc.h, ./tests/test-stpncpy.c
 Copyright: 2003, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fatal-signal.h
 Copyright: 2003-2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fatal-signal.c
 Copyright: 2003-2004, 2006-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/c-strtod.h
 Copyright: 2003-2004, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/csharpcomp.sh.in
 Copyright: 2003-2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fwriteerror.c
 Copyright: 2003-2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/readlink.c
 Copyright: 2003-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/csharpcomp.c, ./lib/csharpexec.c
 Copyright: 2003-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/bootstrap, ./lib/progreloc.c
 Copyright: 2003-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/readtokens0.h, ./lib/utimecmp.h, ./lib/yesno.h
 Copyright: 2004 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/chdir-long.h, ./tests/test-iconvme.c
 Copyright: 2004, 2005 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/calloc.c, ./lib/utimecmp.c
 Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/readtokens0.c
 Copyright: 2004, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fprintf.c, ./lib/sprintf.c, ./lib/unistdio/ulc-fprintf.c, ./lib/unistdio/ulc-vfprintf.c, ./lib/vfprintf.c, ./lib/vsprintf.c
 Copyright: 2004, 2006-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/dummy.c
 Copyright: 2004, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./tests/test-strstr.c
 Copyright: 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./tests/test-fpending.c
 Copyright: 2004, 2007-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./tests/test-memmem.c
 Copyright: 2004, 2007-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./tests/test-base64.c
 Copyright: 2004, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/openat.h
 Copyright: 2004-2006, 2008-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/chdir-long.c, ./lib/fdopendir.c, ./lib/openat.c
 Copyright: 2004-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argp-pin.c, ./lib/c-strcasestr.h, ./lib/canon-host.h, ./lib/chdir-safer.h, ./lib/crc.h, ./lib/fprintftime.h, ./lib/gethrxtime.h, ./lib/readline.h, ./lib/stdlib-safer.h, ./lib/strnlen1.h, ./lib/unistd--.h, ./lib/unlinkdir.h, ./tests/test-arcfour.c, ./tests/test-arctwo.c, ./tests/test-getpass.c, ./tests/test-hmac-md5.c, ./tests/test-hmac-sha1.c, ./tests/test-md5.c, ./tests/test-rijndael.c, ./tests/test-verify.c
 Copyright: 2005 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/crc.c, ./lib/creat-safer.c, ./lib/pipe-safer.c, ./lib/verify.h, ./lib/xtime.h
 Copyright: 2005, 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/gethrxtime.c, ./lib/mkstemp-safer.c, ./lib/pagealign_alloc.c, ./lib/stdlib--.h, ./tests/test-crc.c, ./tests/test-dirname.c
 Copyright: 2005, 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/canon-host.c
 Copyright: 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./check-module, ./lib/readline.c
 Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/sha256.c, ./lib/sha512.c
 Copyright: 2005, 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/sha256.h, ./lib/sha512.h
 Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/open-safer.c, ./lib/openat-die.c, ./lib/openat-safer.c
 Copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fd-safer.c, ./lib/mkdirat.c, ./lib/openat-priv.h, ./lib/stdio--.h
 Copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/byteswap.in.h, ./lib/stat-time.h, ./tests/test-alloca-opt.c, ./tests/test-gettimeofday.c, ./tests/test-malloca.c
 Copyright: 2005, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/glthread/tls.h, ./tests/test-binary-io.c, ./tests/test-c-ctype.c
 Copyright: 2005, 2007-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/pagealign_alloc.h, ./tests/test-lock.c, ./tests/test-tls.c
 Copyright: 2005, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./tests/test-sha1.c
 Copyright: 2005, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fcntl--.h, ./lib/fcntl-safer.h
 Copyright: 2005, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/strnlen1.c
 Copyright: 2005-2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/chdir-safer.c
 Copyright: 2005-2006, 2008-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/unlinkdir.c
 Copyright: 2005-2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/c-strcasestr.c, ./lib/c-strstr.c, ./lib/glthread/tls.c, ./lib/mbscasestr.c, ./lib/mbsstr.c
 Copyright: 2005-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/ldd.sh.in, ./lib/clean-temp.h, ./lib/gl_anyavltree_list1.h, ./lib/gl_anyhash_list1.h, ./lib/gl_anyhash_list2.h, ./lib/gl_anylinked_list1.h, ./lib/gl_anyrbtree_list1.h, ./lib/gl_anytree_list1.h, ./lib/gl_array_list.h, ./lib/gl_array_oset.h, ./lib/gl_avltree_list.h, ./lib/gl_avltree_oset.h, ./lib/gl_avltreehash_list.h, ./lib/gl_carray_list.h, ./lib/gl_linked_list.h, ./lib/gl_linkedhash_list.h, ./lib/gl_rbtree_list.h, ./lib/gl_rbtree_oset.h, ./lib/gl_rbtreehash_list.h, ./lib/gl_sublist.h, ./lib/i-ring.c, ./lib/i-ring.h, ./lib/imaxabs.c, ./lib/imaxdiv.c, ./lib/javaversion.h, ./lib/javaversion.java, ./lib/mkancesdirs.c, ./lib/rename-dest-slash.c, ./lib/same-inode.h, ./lib/savewd.h, ./lib/trim.h, ./lib/u64.h
 Copyright: 2006 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/bootstrap.conf, ./lib/wcwidth.c
 Copyright: 2006, 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/dirchownmod.c
 Copyright: 2006, 2007, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/savewd.c
 Copyright: 2006, 2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/gl_avltree_list.c, ./lib/gl_avltreehash_list.c, ./lib/gl_linked_list.c, ./lib/gl_linkedhash_list.c, ./lib/gl_rbtree_list.c, ./lib/gl_rbtreehash_list.c, ./lib/isapipe.c, ./lib/propername.h
 Copyright: 2006, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/at-func.c, ./lib/fchmodat.c, ./lib/fstatat.c, ./lib/openat-proc.c, ./lib/tempname.h, ./lib/tmpfile-safer.c
 Copyright: 2006, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/gl_anyavltree_list2.h, ./lib/gl_anyrbtree_list2.h, ./lib/gl_anytree_oset.h, ./lib/gl_anytreehash_list1.h, ./lib/gl_anytreehash_list2.h, ./lib/gl_array_oset.c, ./lib/gl_avltree_oset.c, ./lib/gl_oset.c, ./lib/gl_oset.h, ./lib/gl_rbtree_oset.c, ./lib/verror.c, ./lib/verror.h, ./tests/test-argp.c, ./tests/test-inttypes.c, ./tests/test-read-file.c
 Copyright: 2006-2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fchownat.c
 Copyright: 2006-2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/gl_anylinked_list2.h, ./lib/gl_anytree_list2.h, ./lib/gl_array_list.c, ./lib/gl_carray_list.c, ./lib/gl_list.c, ./lib/gl_list.h, ./lib/gl_sublist.c, ./lib/javaversion.c, ./lib/sigprocmask.c, ./lib/trim.c, ./tests/test-argp-2.sh, ./tests/test-array_list.c, ./tests/test-array_oset.c, ./tests/test-avltreehash_list.c, ./tests/test-carray_list.c, ./tests/test-i-ring.c, ./tests/test-linked_list.c, ./tests/test-linkedhash_list.c, ./tests/test-rbtree_list.c, ./tests/test-rbtree_oset.c, ./tests/test-rbtreehash_list.c, ./tests/test-stdint.c
 Copyright: 2006-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/vc-list-files, ./lib/dirent.in.h, ./lib/fchdir.c, ./lib/fcntl.in.h, ./lib/inttypes.in.h, ./lib/propername.c, ./lib/signal.in.h, ./tests/test-avltree_list.c, ./tests/test-avltree_oset.c, ./tests/test-getaddrinfo.c
 Copyright: 2006-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/ceil.c, ./lib/ceilf.c, ./lib/ceill.c, ./lib/closein.c, ./lib/closein.h, ./lib/fbufmode.h, ./lib/file-set.c, ./lib/floor.c, ./lib/floorf.c, ./lib/floorl.c, ./lib/freadable.h, ./lib/frexpl.c, ./lib/fseek.c, ./lib/fseterr.h, ./lib/ftello.c, ./lib/fwritable.h, ./lib/fwriting.h, ./lib/getpagesize.c, ./lib/getugroups.h, ./lib/hash-triple.c, ./lib/isnanf.c, ./lib/isnanl.c, ./lib/mpsort.c, ./lib/printf-frexp.c, ./lib/printf-frexp.h, ./lib/printf-frexpl.c, ./lib/printf-frexpl.h, ./lib/printf.c, ./lib/sleep.c, ./lib/tmpfile.c, ./lib/trunc.c, ./lib/truncf.c, ./lib/truncl.c, ./lib/vprintf.c, ./lib/write-any-file.c, ./lib/xprintf.c, ./tests/test-arpa_inet.c, ./tests/test-atexit.c, ./tests/test-fflush.c, ./tests/test-fprintf-posix2.c, ./tests/test-fseterr.c, ./tests/test-isnanl-nolibm.c, ./tests/test-netinet_in.c, ./tests/test-printf-posix2.c, ./tests/test-search.c, ./tests/test-strings.c, ./tests/test-sys_time.c, ./tests/test-sysexits.c, ./tests/unicase/test-cased.c, ./tests/unicase/test-ignorable.c, ./tests/unicase/test-predicate-part2.h, ./tests/unictype/test-categ_C.c, ./tests/unictype/test-categ_Cc.c, ./tests/unictype/test-categ_Cf.c, ./tests/unictype/test-categ_Cn.c, ./tests/unictype/test-categ_Co.c, ./tests/unictype/test-categ_Cs.c, ./tests/unictype/test-categ_L.c, ./tests/unictype/test-categ_Ll.c, ./tests/unictype/test-categ_Lm.c, ./tests/unictype/test-categ_Lo.c, ./tests/unictype/test-categ_Lt.c, ./tests/unictype/test-categ_Lu.c, ./tests/unictype/test-categ_M.c, ./tests/unictype/test-categ_Mc.c, ./tests/unictype/test-categ_Me.c, ./tests/unictype/test-categ_Mn.c, ./tests/unictype/test-categ_N.c, ./tests/unictype/test-categ_Nd.c, ./tests/unictype/test-categ_Nl.c, ./tests/unictype/test-categ_No.c, ./tests/unictype/test-categ_P.c, ./tests/unictype/test-categ_Pc.c, ./tests/unictype/test-categ_Pd.c, ./tests/unictype/test-categ_Pe.c, ./tests/unictype/test-categ_Pf.c, ./tests/unictype/test-categ_Pi.c, ./tests/unictype/test-categ_Po.c, ./tests/unictype/test-categ_Ps.c, ./tests/unictype/test-categ_S.c, ./tests/unictype/test-categ_Sc.c, ./tests/unictype/test-categ_Sk.c, ./tests/unictype/test-categ_Sm.c, ./tests/unictype/test-categ_So.c, ./tests/unictype/test-categ_Z.c, ./tests/unictype/test-categ_Zl.c, ./tests/unictype/test-categ_Zp.c, ./tests/unictype/test-categ_Zs.c, ./tests/unictype/test-ctype_alnum.c, ./tests/unictype/test-ctype_alpha.c, ./tests/unictype/test-ctype_blank.c, ./tests/unictype/test-ctype_cntrl.c, ./tests/unictype/test-ctype_digit.c, ./tests/unictype/test-ctype_graph.c, ./tests/unictype/test-ctype_lower.c, ./tests/unictype/test-ctype_print.c, ./tests/unictype/test-ctype_punct.c, ./tests/unictype/test-ctype_space.c, ./tests/unictype/test-ctype_upper.c, ./tests/unictype/test-ctype_xdigit.c, ./tests/unictype/test-pr_alphabetic.c, ./tests/unictype/test-pr_ascii_hex_digit.c, ./tests/unictype/test-pr_bidi_arabic_digit.c, ./tests/unictype/test-pr_bidi_arabic_right_to_left.c, ./tests/unictype/test-pr_bidi_block_separator.c, ./tests/unictype/test-pr_bidi_boundary_neutral.c, ./tests/unictype/test-pr_bidi_common_separator.c, ./tests/unictype/test-pr_bidi_control.c, ./tests/unictype/test-pr_bidi_embedding_or_override.c, ./tests/unictype/test-pr_bidi_eur_num_separator.c, ./tests/unictype/test-pr_bidi_eur_num_terminator.c, ./tests/unictype/test-pr_bidi_european_digit.c, ./tests/unictype/test-pr_bidi_hebrew_right_to_left.c, ./tests/unictype/test-pr_bidi_left_to_right.c, ./tests/unictype/test-pr_bidi_non_spacing_mark.c, ./tests/unictype/test-pr_bidi_other_neutral.c, ./tests/unictype/test-pr_bidi_pdf.c, ./tests/unictype/test-pr_bidi_segment_separator.c, ./tests/unictype/test-pr_bidi_whitespace.c, ./tests/unictype/test-pr_combining.c, ./tests/unictype/test-pr_composite.c, ./tests/unictype/test-pr_currency_symbol.c, ./tests/unictype/test-pr_dash.c, ./tests/unictype/test-pr_decimal_digit.c, ./tests/unictype/test-pr_default_ignorable_code_point.c, ./tests/unictype/test-pr_deprecated.c, ./tests/unictype/test-pr_diacritic.c, ./tests/unictype/test-pr_extender.c, ./tests/unictype/test-pr_format_control.c, ./tests/unictype/test-pr_grapheme_base.c, ./tests/unictype/test-pr_grapheme_extend.c, ./tests/unictype/test-pr_grapheme_link.c, ./tests/unictype/test-pr_hex_digit.c, ./tests/unictype/test-pr_hyphen.c, ./tests/unictype/test-pr_id_continue.c, ./tests/unictype/test-pr_id_start.c, ./tests/unictype/test-pr_ideographic.c, ./tests/unictype/test-pr_ids_binary_operator.c, ./tests/unictype/test-pr_ids_trinary_operator.c, ./tests/unictype/test-pr_ignorable_control.c, ./tests/unictype/test-pr_iso_control.c, ./tests/unictype/test-pr_join_control.c, ./tests/unictype/test-pr_left_of_pair.c, ./tests/unictype/test-pr_line_separator.c, ./tests/unictype/test-pr_logical_order_exception.c, ./tests/unictype/test-pr_lowercase.c, ./tests/unictype/test-pr_math.c, ./tests/unictype/test-pr_non_break.c, ./tests/unictype/test-pr_not_a_character.c, ./tests/unictype/test-pr_numeric.c, ./tests/unictype/test-pr_other_alphabetic.c, ./tests/unictype/test-pr_other_default_ignorable_code_point.c, ./tests/unictype/test-pr_other_grapheme_extend.c, ./tests/unictype/test-pr_other_id_continue.c, ./tests/unictype/test-pr_other_id_start.c, ./tests/unictype/test-pr_other_lowercase.c, ./tests/unictype/test-pr_other_math.c, ./tests/unictype/test-pr_other_uppercase.c, ./tests/unictype/test-pr_paired_punctuation.c, ./tests/unictype/test-pr_paragraph_separator.c, ./tests/unictype/test-pr_pattern_syntax.c, ./tests/unictype/test-pr_pattern_white_space.c, ./tests/unictype/test-pr_private_use.c, ./tests/unictype/test-pr_punctuation.c, ./tests/unictype/test-pr_quotation_mark.c, ./tests/unictype/test-pr_radical.c, ./tests/unictype/test-pr_sentence_terminal.c, ./tests/unictype/test-pr_soft_dotted.c, ./tests/unictype/test-pr_space.c, ./tests/unictype/test-pr_terminal_punctuation.c, ./tests/unictype/test-pr_titlecase.c, ./tests/unictype/test-pr_unassigned_code_value.c, ./tests/unictype/test-pr_unified_ideograph.c, ./tests/unictype/test-pr_uppercase.c, ./tests/unictype/test-pr_variation_selector.c, ./tests/unictype/test-pr_white_space.c, ./tests/unictype/test-pr_xid_continue.c, ./tests/unictype/test-pr_xid_start.c, ./tests/unictype/test-pr_zero_width.c, ./tests/unictype/test-predicate-part2.h, ./tests/unictype/test-sy_c_whitespace.c, ./tests/unictype/test-sy_java_whitespace.c, ./tests/unistdio/test-u16-asnprintf1.h, ./tests/unistdio/test-u16-printf1.h, ./tests/unistdio/test-u32-asnprintf1.h, ./tests/unistdio/test-u32-printf1.h, ./tests/unistdio/test-u8-asnprintf1.h, ./tests/unistdio/test-u8-printf1.h, ./tests/unistdio/test-ulc-asnprintf1.h, ./tests/unistdio/test-ulc-printf1.h
 Copyright: 2007 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/pmccabe2html, ./lib/ftell.c, ./tests/test-c-strcasestr.c, ./tests/test-closein.c, ./tests/test-localename.c, ./tests/test-math.c, ./tests/test-roundf1.c, ./tests/test-strcasestr.c
 Copyright: 2007, 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./tests/test-fseek.c, ./tests/test-fseeko.c, ./tests/test-ftell.c, ./tests/test-ftello.c, ./tests/test-signbit.c
 Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/selinux-at.c, ./lib/selinux-at.h, ./lib/signbitf.c, ./lib/signbitl.c, ./tests/test-fcntl-h.c, ./tests/test-locale.c, ./tests/test-stdio.c, ./tests/test-stdlib.c, ./tests/test-string.c, ./tests/test-sys_socket.c, ./tests/test-time.c, ./tests/test-unistd.c
 Copyright: 2007, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/git-version-gen, ./build-aux/mktempd, ./lib/count-one-bits.h, ./lib/float.in.h, ./lib/fpucw.h, ./lib/freadahead.h, ./lib/freading.h, ./lib/freadptr.h, ./lib/freadseek.h, ./lib/freopen.c, ./lib/frexp.c, ./lib/isnan.c, ./lib/isnand-nolibm.h, ./lib/isnanf-nolibm.h, ./lib/isnanl-nolibm.h, ./lib/mbschr.c, ./lib/mbslen.c, ./lib/mbsnlen.c, ./lib/mbsrchr.c, ./lib/mbssep.c, ./lib/search.in.h, ./lib/stdio-impl.h, ./lib/xprintf.h, ./tests/test-byteswap.c, ./tests/test-c-strcasecmp.c, ./tests/test-c-strncasecmp.c, ./tests/test-c-strstr.c, ./tests/test-canonicalize-lgpl.c, ./tests/test-canonicalize.c, ./tests/test-ceilf1.c, ./tests/test-ceilf2.c, ./tests/test-count-one-bits.c, ./tests/test-fbufmode.c, ./tests/test-floorf1.c, ./tests/test-floorf2.c, ./tests/test-fprintf-posix.c, ./tests/test-fprintf-posix.h, ./tests/test-freadable.c, ./tests/test-freadahead.c, ./tests/test-freading.c, ./tests/test-freadptr.c, ./tests/test-freadptr2.c, ./tests/test-freopen.c, ./tests/test-frexp.c, ./tests/test-fwritable.c, ./tests/test-fwriting.c, ./tests/test-getdelim.c, ./tests/test-getline.c, ./tests/test-iconv-utf.c, ./tests/test-iconv.c, ./tests/test-isfinite.c, ./tests/test-isinf.c, ./tests/test-isnand-nolibm.c, ./tests/test-isnand.c, ./tests/test-isnand.h, ./tests/test-isnanf-nolibm.c, ./tests/test-isnanf.c, ./tests/test-isnanf.h, ./tests/test-isnanl.c, ./tests/test-lseek.c, ./tests/test-mbscasecmp.c, ./tests/test-mbscasestr1.c, ./tests/test-mbscasestr2.c, ./tests/test-mbscasestr3.c, ./tests/test-mbscasestr4.c, ./tests/test-mbschr.c, ./tests/test-mbscspn.c, ./tests/test-mbsncasecmp.c, ./tests/test-mbspbrk.c, ./tests/test-mbspcasecmp.c, ./tests/test-mbsrchr.c, ./tests/test-mbsspn.c, ./tests/test-mbsstr1.c, ./tests/test-mbsstr2.c, ./tests/test-mbsstr3.c, ./tests/test-netdb.c, ./tests/test-printf-frexp.c, ./tests/test-printf-frexpl.c, ./tests/test-printf-posix.c, ./tests/test-printf-posix.h, ./tests/test-round1.c, ./tests/test-round2.c, ./tests/test-sleep.c, ./tests/test-snprintf-posix.c, ./tests/test-snprintf.c, ./tests/test-sprintf-posix.c, ./tests/test-stat-time.c, ./tests/test-strerror.c, ./tests/test-striconv.c, ./tests/test-striconveha.c, ./tests/test-sys_stat.c, ./tests/test-trunc1.c, ./tests/test-trunc2.c, ./tests/test-truncf1.c, ./tests/test-truncf2.c, ./tests/test-vasnprintf-posix2.c, ./tests/test-vasnprintf.c, ./tests/test-vasprintf.c, ./tests/test-vfprintf-posix.c, ./tests/test-vprintf-posix.c, ./tests/test-vsnprintf-posix.c, ./tests/test-vsnprintf.c, ./tests/test-vsprintf-posix.c, ./tests/test-wcwidth.c, ./tests/test-xfprintf-posix.c, ./tests/test-xprintf-posix.c, ./tests/test-xvasprintf.c, ./tests/test-yesno.c, ./tests/uniconv/test-u16-strconv-to-enc.c, ./tests/uniconv/test-u32-strconv-to-enc.c, ./tests/uniconv/test-u8-strconv-to-enc.c, ./tests/unictype/test-bidi_byname.c, ./tests/unictype/test-bidi_name.c, ./tests/unictype/test-bidi_of.c, ./tests/unictype/test-bidi_test.c, ./tests/unictype/test-block_list.c, ./tests/unictype/test-block_of.c, ./tests/unictype/test-block_test.c, ./tests/unictype/test-categ_and.c, ./tests/unictype/test-categ_and_not.c, ./tests/unictype/test-categ_byname.c, ./tests/unictype/test-categ_name.c, ./tests/unictype/test-categ_none.c, ./tests/unictype/test-categ_of.c, ./tests/unictype/test-categ_or.c, ./tests/unictype/test-categ_test_withtable.c, ./tests/unictype/test-combining.c, ./tests/unictype/test-decdigit.c, ./tests/unictype/test-digit.c, ./tests/unictype/test-mirror.c, ./tests/unictype/test-numeric.c, ./tests/unictype/test-pr_test.c, ./tests/unictype/test-predicate-part1.h, ./tests/unictype/test-scripts.c, ./tests/unictype/test-sy_c_ident.c, ./tests/unictype/test-sy_java_ident.c, ./tests/unistdio/test-u16-asnprintf1.c, ./tests/unistdio/test-u16-vasnprintf1.c, ./tests/unistdio/test-u16-vasnprintf2.c, ./tests/unistdio/test-u16-vasnprintf3.c, ./tests/unistdio/test-u16-vasprintf1.c, ./tests/unistdio/test-u32-asnprintf1.c, ./tests/unistdio/test-u32-vasnprintf1.c, ./tests/unistdio/test-u32-vasnprintf2.c, ./tests/unistdio/test-u32-vasnprintf3.c, ./tests/unistdio/test-u32-vasprintf1.c, ./tests/unistdio/test-u8-asnprintf1.c, ./tests/unistdio/test-u8-vasnprintf1.c, ./tests/unistdio/test-u8-vasnprintf2.c, ./tests/unistdio/test-u8-vasnprintf3.c, ./tests/unistdio/test-u8-vasprintf1.c, ./tests/unistdio/test-ulc-asnprintf1.c, ./tests/unistdio/test-ulc-vasnprintf1.c, ./tests/unistdio/test-ulc-vasnprintf2.c, ./tests/unistdio/test-ulc-vasnprintf3.c, ./tests/unistdio/test-ulc-vasprintf1.c, ./tests/uniwidth/test-u16-strwidth.c, ./tests/uniwidth/test-u16-width.c, ./tests/uniwidth/test-u32-strwidth.c, ./tests/uniwidth/test-u32-width.c, ./tests/uniwidth/test-u8-strwidth.c, ./tests/uniwidth/test-u8-width.c, ./tests/uniwidth/test-uc_width.c, ./tests/uniwidth/test-uc_width2.c
 Copyright: 2007-2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fbufmode.c, ./lib/fflush.c, ./lib/fopen.c, ./lib/fpurge.c, ./lib/freadable.c, ./lib/freadahead.c, ./lib/freading.c, ./lib/freadptr.c, ./lib/freadseek.c, ./lib/fseterr.c, ./lib/fwritable.c, ./lib/fwriting.c, ./lib/locale.in.h, ./lib/open.c, ./lib/signbitd.c, ./lib/strerror.c, ./tests/nan.h, ./tests/test-bitrotate.c, ./tests/test-ceill.c, ./tests/test-dprintf-posix.c, ./tests/test-fcntl-safer.c, ./tests/test-floorl.c, ./tests/test-fopen-safer.c, ./tests/test-fopen.c, ./tests/test-fopen.h, ./tests/test-fpurge.c, ./tests/test-freadseek.c, ./tests/test-frexpl.c, ./tests/test-fstrcmp.c, ./tests/test-isnan.c, ./tests/test-isnanl.h, ./tests/test-ldexpl.c, ./tests/test-mbmemcasecmp.c, ./tests/test-mbmemcasecmp.h, ./tests/test-mbmemcasecoll.c, ./tests/test-open.c, ./tests/test-open.h, ./tests/test-roundl.c, ./tests/test-snprintf-posix.h, ./tests/test-sprintf-posix.h, ./tests/test-striconveh.c, ./tests/test-sys_select.c, ./tests/test-truncl.c, ./tests/test-vasnprintf-posix.c, ./tests/test-vasprintf-posix.c, ./tests/test-vdprintf-posix.c, ./tests/test-wchar.c, ./tests/test-wctype.c, ./tests/unicase/test-locale-language.c, ./tests/unicase/test-mapping-part1.h, ./tests/unicase/test-mapping-part2.h, ./tests/unicase/test-predicate-part1.h, ./tests/uniconv/test-u16-conv-from-enc.c, ./tests/uniconv/test-u16-conv-to-enc.c, ./tests/uniconv/test-u16-strconv-from-enc.c, ./tests/uniconv/test-u32-conv-from-enc.c, ./tests/uniconv/test-u32-conv-to-enc.c, ./tests/uniconv/test-u32-strconv-from-enc.c, ./tests/uniconv/test-u8-conv-from-enc.c, ./tests/uniconv/test-u8-conv-to-enc.c, ./tests/uniconv/test-u8-strconv-from-enc.c, ./tests/unictype/test-pr_byname.c, ./tests/unistdio/test-u16-vsnprintf1.c, ./tests/unistdio/test-u16-vsprintf1.c, ./tests/unistdio/test-u32-vsnprintf1.c, ./tests/unistdio/test-u32-vsprintf1.c, ./tests/unistdio/test-u8-vsnprintf1.c, ./tests/unistdio/test-u8-vsprintf1.c, ./tests/unistdio/test-ulc-vsnprintf1.c, ./tests/unistdio/test-ulc-vsprintf1.c
 Copyright: 2007-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/ncftpput-ftp, ./lib/accept.c, ./lib/bind.c, ./lib/btowc.c, ./lib/connect.c, ./lib/fclose.c, ./lib/getpeername.c, ./lib/getsockname.c, ./lib/isnand.c, ./lib/listen.c, ./lib/mbsinit.c, ./lib/mbsnrtowcs.c, ./lib/mbsrtowcs.c, ./lib/memchr2.h, ./lib/parse-duration.c, ./lib/parse-duration.h, ./lib/perror.c, ./lib/rawmemchr.c, ./lib/recv.c, ./lib/recvfrom.c, ./lib/sched.in.h, ./lib/send.c, ./lib/sendto.c, ./lib/shutdown.c, ./lib/sig-handler.h, ./lib/sigaction.c, ./lib/sigpipe-die.c, ./lib/sigpipe-die.h, ./lib/w32sock.h, ./lib/wcrtomb.c, ./lib/wcsnrtombs.c, ./lib/wcsrtombs.c, ./lib/wctob.c, ./lib/xmemdup0.c, ./lib/xmemdup0.h, ./tests/test-btowc.c, ./tests/test-cond.c, ./tests/test-copy-acl.c, ./tests/test-copy-file.c, ./tests/test-environ.c, ./tests/test-errno.c, ./tests/test-getdtablesize.c, ./tests/test-getndelim2.c, ./tests/test-lstat.c, ./tests/test-mbrtowc.c, ./tests/test-mbsinit.c, ./tests/test-mbsnrtowcs.c, ./tests/test-mbsrtowcs.c, ./tests/test-perror.c, ./tests/test-random_r.c, ./tests/test-rawmemchr.c, ./tests/test-sameacls.c, ./tests/test-select-fd.c, ./tests/test-select-stdin.c, ./tests/test-set-mode-acl.c, ./tests/test-sigaction.c, ./tests/test-sigpipe.c, ./tests/test-strchrnul.c, ./tests/test-strsignal.c, ./tests/test-strtod.c, ./tests/test-strverscmp.c, ./tests/test-sys_times.c, ./tests/test-times.c, ./tests/test-vc-list-files-cvs.sh, ./tests/test-wcrtomb.c, ./tests/test-wcsnrtombs.c, ./tests/test-wcsrtombs.c, ./tests/unilbrk/test-u16-possible-linebreaks.c, ./tests/unilbrk/test-u16-width-linebreaks.c, ./tests/unilbrk/test-u32-possible-linebreaks.c, ./tests/unilbrk/test-u32-width-linebreaks.c, ./tests/unilbrk/test-u8-possible-linebreaks.c, ./tests/unilbrk/test-u8-width-linebreaks.c, ./tests/unilbrk/test-ulc-possible-linebreaks.c, ./tests/unilbrk/test-ulc-width-linebreaks.c
 Copyright: 2008 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/gitlog-to-changelog, ./build-aux/useless-if-before-free, ./lib/bitrotate.h, ./lib/ioctl.c, ./lib/sockets.h, ./tests/test-getdate.c, ./tests/test-gethostname.c, ./tests/test-posix_spawn1.c, ./tests/test-posix_spawn2.c, ./tests/test-posix_spawn3.c, ./tests/test-sockets.c, ./tests/test-vc-list-files-git.sh
 Copyright: 2008, 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/argv-iter.c, ./lib/argv-iter.h, ./lib/close.c, ./lib/getdtablesize.c, ./lib/getsockopt.c, ./lib/ignore-value.h, ./lib/mbsrtowcs-state.c, ./lib/setsockopt.c, ./lib/socket.c, ./lib/sockets.c, ./lib/stdio-write.c, ./lib/wcsrtombs-state.c, ./lib/write.c, ./tests/test-argv-iter.c, ./tests/test-fflush2.c, ./tests/test-file-has-acl.c, ./tests/test-filevercmp.c, ./tests/test-func.c, ./tests/test-memchr.c, ./tests/test-memchr2.c, ./tests/test-memcmp.c, ./tests/test-memrchr.c, ./tests/test-obstack-printf.c, ./tests/test-parse-duration.c, ./tests/test-poll.c, ./tests/test-quotearg.c, ./tests/test-sched.c, ./tests/test-select.c, ./tests/test-xmemdup0.c
 Copyright: 2008-2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/filevercmp.c, ./lib/filevercmp.h
 Copyright: 2008-2009 Free Software Foundation, Inc. / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./build-aux/update-copyright, ./lib/argp-version-etc.c, ./lib/argp-version-etc.h, ./lib/dirent--.h, ./lib/dirent-safer.h, ./lib/dprintf.c, ./lib/faccessat.c, ./lib/idpriv-drop.c, ./lib/idpriv-droptemp.c, ./lib/idpriv.h, ./lib/opendir-safer.c, ./lib/pipe-filter.h, ./lib/popen-safer.c, ./lib/popen.c, ./lib/priv-set.c, ./lib/priv-set.h, ./lib/symlinkat.c, ./lib/uname.c, ./lib/uninorm/composition-table.gperf, ./lib/vdprintf.c, ./lib/xstriconveh.c, ./tests/test-alignof.c, ./tests/test-argp-version-etc-1.sh, ./tests/test-argp-version-etc.c, ./tests/test-dirent-safer.c, ./tests/test-dup2.c, ./tests/test-dup3.c, ./tests/test-exclude.c, ./tests/test-exclude1.sh, ./tests/test-exclude2.sh, ./tests/test-exclude3.sh, ./tests/test-exclude4.sh, ./tests/test-exclude5.sh, ./tests/test-exclude6.sh, ./tests/test-exclude7.sh, ./tests/test-fchdir.c, ./tests/test-fdopendir.c, ./tests/test-fnmatch.c, ./tests/test-getopt.c, ./tests/test-getopt.h, ./tests/test-getopt_long.h, ./tests/test-glob.c, ./tests/test-hash.c, ./tests/test-idpriv-drop.c, ./tests/test-idpriv-droptemp.c, ./tests/test-openat-safer.c, ./tests/test-pipe-filter-gi1.c, ./tests/test-pipe-filter-gi2-child.c, ./tests/test-pipe-filter-gi2-main.c, ./tests/test-pipe-filter-gi2.sh, ./tests/test-pipe-filter-ii1.c, ./tests/test-pipe-filter-ii2-child.c, ./tests/test-pipe-filter-ii2-main.c, ./tests/test-pipe-filter-ii2.sh, ./tests/test-pipe.c, ./tests/test-pipe2.c, ./tests/test-popen-safer.c, ./tests/test-popen-safer2.c, ./tests/test-popen.c, ./tests/test-popen.h, ./tests/test-priv-set.c, ./tests/test-signal.c, ./tests/test-stddef.c, ./tests/test-symlinkat.c, ./tests/test-sys_utsname.c, ./tests/test-u64.c, ./tests/test-uname.c, ./tests/test-update-copyright.sh, ./tests/test-version-etc.c, ./tests/test-version-etc.sh, ./tests/unicase/test-casecmp.h, ./tests/unicase/test-is-cased.h, ./tests/unicase/test-is-casefolded.h, ./tests/unicase/test-is-lowercase.h, ./tests/unicase/test-is-titlecase.h, ./tests/unicase/test-is-uppercase.h, ./tests/unicase/test-u16-casecmp.c, ./tests/unicase/test-u16-casecoll.c, ./tests/unicase/test-u16-casefold.c, ./tests/unicase/test-u16-is-cased.c, ./tests/unicase/test-u16-is-casefolded.c, ./tests/unicase/test-u16-is-lowercase.c, ./tests/unicase/test-u16-is-titlecase.c, ./tests/unicase/test-u16-is-uppercase.c, ./tests/unicase/test-u16-tolower.c, ./tests/unicase/test-u16-totitle.c, ./tests/unicase/test-u16-toupper.c, ./tests/unicase/test-u32-casecmp.c, ./tests/unicase/test-u32-casecoll.c, ./tests/unicase/test-u32-casefold.c, ./tests/unicase/test-u32-is-cased.c, ./tests/unicase/test-u32-is-casefolded.c, ./tests/unicase/test-u32-is-lowercase.c, ./tests/unicase/test-u32-is-titlecase.c, ./tests/unicase/test-u32-is-uppercase.c, ./tests/unicase/test-u32-tolower.c, ./tests/unicase/test-u32-totitle.c, ./tests/unicase/test-u32-toupper.c, ./tests/unicase/test-u8-casecmp.c, ./tests/unicase/test-u8-casecoll.c, ./tests/unicase/test-u8-casefold.c, ./tests/unicase/test-u8-is-cased.c, ./tests/unicase/test-u8-is-casefolded.c, ./tests/unicase/test-u8-is-lowercase.c, ./tests/unicase/test-u8-is-titlecase.c, ./tests/unicase/test-u8-is-uppercase.c, ./tests/unicase/test-u8-tolower.c, ./tests/unicase/test-u8-totitle.c, ./tests/unicase/test-u8-toupper.c, ./tests/unicase/test-uc_tolower.c, ./tests/unicase/test-uc_totitle.c, ./tests/unicase/test-uc_toupper.c, ./tests/unicase/test-ulc-casecmp.c, ./tests/unicase/test-ulc-casecoll.c, ./tests/uninorm/test-canonical-decomposition.c, ./tests/uninorm/test-compat-decomposition.c, ./tests/uninorm/test-composition.c, ./tests/uninorm/test-decomposing-form.c, ./tests/uninorm/test-decomposition.c, ./tests/uninorm/test-nfc.c, ./tests/uninorm/test-nfd.c, ./tests/uninorm/test-nfkc.c, ./tests/uninorm/test-nfkd.c, ./tests/uninorm/test-u16-nfc.c, ./tests/uninorm/test-u16-nfd.c, ./tests/uninorm/test-u16-nfkc.c, ./tests/uninorm/test-u16-nfkd.c, ./tests/uninorm/test-u16-normcmp.c, ./tests/uninorm/test-u16-normcmp.h, ./tests/uninorm/test-u16-normcoll.c, ./tests/uninorm/test-u32-nfc-big.c, ./tests/uninorm/test-u32-nfc.c, ./tests/uninorm/test-u32-nfd-big.c, ./tests/uninorm/test-u32-nfd.c, ./tests/uninorm/test-u32-nfkc-big.c, ./tests/uninorm/test-u32-nfkc.c, ./tests/uninorm/test-u32-nfkd-big.c, ./tests/uninorm/test-u32-nfkd.c, ./tests/uninorm/test-u32-normalize-big.c, ./tests/uninorm/test-u32-normalize-big.h, ./tests/uninorm/test-u32-normcmp.c, ./tests/uninorm/test-u32-normcmp.h, ./tests/uninorm/test-u32-normcoll.c, ./tests/uninorm/test-u8-nfc.c, ./tests/uninorm/test-u8-nfd.c, ./tests/uninorm/test-u8-nfkc.c, ./tests/uninorm/test-u8-nfkd.c, ./tests/uninorm/test-u8-normcmp.c, ./tests/uninorm/test-u8-normcmp.h, ./tests/uninorm/test-u8-normcoll.c, ./tests/uninorm/test-uninorm-filter-nfc.c, ./tests/uniwbrk/test-u16-wordbreaks.c, ./tests/uniwbrk/test-u32-wordbreaks.c, ./tests/uniwbrk/test-u8-wordbreaks.c, ./tests/uniwbrk/test-ulc-wordbreaks.c, ./tests/zerosize-ptr.h
 Copyright: 2009 Free Software Foundation, Inc.
-License: GPL-3+
+License: GPL-3+ [REF21]
 
 Files: ./lib/fts_.h
 Copyright: 1989, 1993 The Regents of the University of California / 2004-2009 Free Software Foundation, Inc.
-License: GPL-3+ and BSD (3-clause) [REF19]
+License: GPL-3+ and BSD (3-clause) [REF22]
 
 Files: ./lib/fts.c
 Copyright: 1990, 1993, 1994 The Regents of the University of California / 2004-2009 Free Software Foundation, Inc.
-License: GPL-3+ and BSD (3-clause) [REF19]
+License: GPL-3+ and BSD (3-clause) [REF22]
 
 Files: ./lib/inet_pton.c
 Copyright: 1996,1999 by Internet Software Consortium / 2006, 2008, 2009 Free Software Foundation, Inc.
-License: GPL-3+ and ISC
+License: GPL-3+ and ISC [REF23]
 
 Files: ./lib/localename.c
 Copyright: 1995-1999, 2000-2008 Free Software Foundation, Inc.
-License: LGPL-2+
+License: LGPL-2+ [REF24]
 
 Files: ./lib/relocatable.h
 Copyright: 2003, 2005, 2008 Free Software Foundation, Inc.
-License: LGPL-2+
+License: LGPL-2+ [REF24]
 
 Files: ./lib/relocatable.c
 Copyright: 2003-2006, 2008 Free Software Foundation, Inc.
-License: LGPL-2+
+License: LGPL-2+ [REF24]
 
 Files: ./lib/localename.h
 Copyright: 2007 Free Software Foundation, Inc.
-License: LGPL-2+
+License: LGPL-2+ [REF24]
 
 Files: ./lib/strsignal.c
 Copyright: 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc.
-License: LGPL-2.1+
+License: LGPL-2.1+ [REF25]
 
 Files: ./lib/atoll.c
 Copyright: 1991, 1997, 1998, 2008 Free Software Foundation, Inc.
-License: LGPL-2.1+
+License: LGPL-2.1+ [REF25]
 
 Files: ./lib/glob-libc.h
 Copyright: 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc.
-License: LGPL-2.1+
+License: LGPL-2.1+ [REF25]
 
 Files: ./lib/glob.c
 Copyright: 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-License: LGPL-2.1+
+License: LGPL-2.1+ [REF25]
 
 Files: ./lib/argz.in.h
 Copyright: 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc.
-License: LGPL-2.1+
+License: LGPL-2.1+ [REF25]
 
 Files: ./lib/siglist.h
 Copyright: 1996,97,98,99,2008 Free Software Foundation, Inc.
-License: LGPL-2.1+
+License: LGPL-2.1+ [REF25]
 
 Files: ./lib/flock.c, ./lib/fsync.c
 Copyright: 2008 Free Software Foundation, Inc.
-License: LGPL-2.1+
+License: LGPL-2.1+ [REF25]
 
 Files: ./lib/safe-alloc.c, ./lib/safe-alloc.h, ./tests/test-safe-alloc.c
 Copyright: 2009 Free Software Foundation, Inc.
-License: LGPL-2.1+
+License: LGPL-2.1+ [REF25]
 
 Files: ./tests/test-tsearch.c
 Copyright: 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unistdio/u-printf-parse.h
 Copyright: 1999, 2002, 2005, 2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unistdio/u-asnprintf.h, ./lib/unistdio/u-asprintf.h, ./lib/unistdio/u-printf-args.h, ./lib/unistdio/u-snprintf.h, ./lib/unistdio/u-sprintf.h, ./lib/unistdio/u16-asnprintf.c, ./lib/unistdio/u16-asprintf.c, ./lib/unistdio/u16-snprintf.c, ./lib/unistdio/u16-sprintf.c, ./lib/unistdio/u16-u16-asnprintf.c, ./lib/unistdio/u16-u16-asprintf.c, ./lib/unistdio/u16-u16-snprintf.c, ./lib/unistdio/u16-u16-sprintf.c, ./lib/unistdio/u32-asnprintf.c, ./lib/unistdio/u32-asprintf.c, ./lib/unistdio/u32-snprintf.c, ./lib/unistdio/u32-sprintf.c, ./lib/unistdio/u32-u32-asnprintf.c, ./lib/unistdio/u32-u32-asprintf.c, ./lib/unistdio/u32-u32-snprintf.c, ./lib/unistdio/u32-u32-sprintf.c, ./lib/unistdio/u8-asnprintf.c, ./lib/unistdio/u8-asprintf.c, ./lib/unistdio/u8-snprintf.c, ./lib/unistdio/u8-sprintf.c, ./lib/unistdio/u8-u8-asnprintf.c, ./lib/unistdio/u8-u8-asprintf.c, ./lib/unistdio/u8-u8-snprintf.c, ./lib/unistdio/u8-u8-sprintf.c, ./lib/unistdio/ulc-asnprintf.c, ./lib/unistdio/ulc-snprintf.c, ./lib/unistdio/ulc-sprintf.c
 Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unistr/u-cpy.h, ./lib/unistr/u-move.h, ./lib/unistr/u-set.h, ./lib/unistr/u-stpcpy.h, ./lib/unistr/u-stpncpy.h, ./lib/unistr/u-strcat.h, ./lib/unistr/u-strcpy.h, ./lib/unistr/u-strcspn.h, ./lib/unistr/u-strlen.h, ./lib/unistr/u-strncat.h, ./lib/unistr/u-strncpy.h, ./lib/unistr/u-strnlen.h, ./lib/unistr/u-strpbrk.h, ./lib/unistr/u-strspn.h, ./lib/unistr/u-strstr.h, ./lib/unistr/u-strtok.h, ./lib/unistr/u16-cmp.c, ./lib/unistr/u16-cpy-alloc.c, ./lib/unistr/u16-cpy.c, ./lib/unistr/u16-move.c, ./lib/unistr/u16-set.c, ./lib/unistr/u16-stpncpy.c, ./lib/unistr/u16-strcat.c, ./lib/unistr/u16-strcmp.c, ./lib/unistr/u16-strcpy.c, ./lib/unistr/u16-strcspn.c, ./lib/unistr/u16-strdup.c, ./lib/unistr/u16-strlen.c, ./lib/unistr/u16-strncat.c, ./lib/unistr/u16-strncmp.c, ./lib/unistr/u16-strncpy.c, ./lib/unistr/u16-strnlen.c, ./lib/unistr/u16-strpbrk.c, ./lib/unistr/u16-strspn.c, ./lib/unistr/u16-strstr.c, ./lib/unistr/u16-strtok.c, ./lib/unistr/u32-chr.c, ./lib/unistr/u32-cmp.c, ./lib/unistr/u32-cpy-alloc.c, ./lib/unistr/u32-cpy.c, ./lib/unistr/u32-move.c, ./lib/unistr/u32-set.c, ./lib/unistr/u32-stpcpy.c, ./lib/unistr/u32-stpncpy.c, ./lib/unistr/u32-strcat.c, ./lib/unistr/u32-strchr.c, ./lib/unistr/u32-strcmp.c, ./lib/unistr/u32-strcpy.c, ./lib/unistr/u32-strcspn.c, ./lib/unistr/u32-strdup.c, ./lib/unistr/u32-strlen.c, ./lib/unistr/u32-strncat.c, ./lib/unistr/u32-strncmp.c, ./lib/unistr/u32-strncpy.c, ./lib/unistr/u32-strnlen.c, ./lib/unistr/u32-strpbrk.c, ./lib/unistr/u32-strrchr.c, ./lib/unistr/u32-strspn.c, ./lib/unistr/u32-strstr.c, ./lib/unistr/u32-strtok.c, ./lib/unistr/u8-stpcpy.c, ./lib/unistr/u8-stpncpy.c, ./lib/unistr/u8-strcspn.c, ./lib/unistr/u8-strnlen.c, ./lib/unistr/u8-strpbrk.c, ./lib/unistr/u8-strspn.c, ./lib/unistr/u8-strstr.c, ./lib/unistr/u8-strtok.c
 Copyright: 1999, 2002, 2006 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unistdio/u-printf-args.c, ./lib/unistdio/u16-u16-vasnprintf.c, ./lib/unistdio/u16-u16-vasprintf.c, ./lib/unistdio/u16-u16-vsnprintf.c, ./lib/unistdio/u16-u16-vsprintf.c, ./lib/unistdio/u16-vasnprintf.c, ./lib/unistdio/u16-vasprintf.c, ./lib/unistdio/u16-vsnprintf.c, ./lib/unistdio/u16-vsprintf.c, ./lib/unistdio/u32-u32-vasnprintf.c, ./lib/unistdio/u32-u32-vasprintf.c, ./lib/unistdio/u32-u32-vsnprintf.c, ./lib/unistdio/u32-u32-vsprintf.c, ./lib/unistdio/u32-vasnprintf.c, ./lib/unistdio/u32-vasprintf.c, ./lib/unistdio/u32-vsnprintf.c, ./lib/unistdio/u32-vsprintf.c, ./lib/unistdio/u8-u8-vasnprintf.c, ./lib/unistdio/u8-u8-vasprintf.c, ./lib/unistdio/u8-u8-vsnprintf.c, ./lib/unistdio/u8-u8-vsprintf.c, ./lib/unistdio/u8-vasnprintf.c, ./lib/unistdio/u8-vasprintf.c, ./lib/unistdio/u8-vsnprintf.c, ./lib/unistdio/u8-vsprintf.c, ./lib/unistdio/ulc-asprintf.c, ./lib/unistdio/ulc-vasnprintf.c, ./lib/unistdio/ulc-vasprintf.c, ./lib/unistdio/ulc-vsnprintf.c, ./lib/unistdio/ulc-vsprintf.c, ./lib/unistr/u-strdup.h, ./lib/unistr/u16-chr.c, ./lib/unistr/u16-stpcpy.c, ./lib/unistr/u16-strchr.c, ./lib/unistr/u16-strrchr.c, ./lib/unistr/u8-chr.c, ./lib/unistr/u8-strchr.c, ./lib/unistr/u8-strrchr.c
 Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unistr/u-cpy-alloc.h
 Copyright: 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unistdio/u-vasprintf.h, ./lib/unistdio/u-vsnprintf.h, ./lib/unistdio/u-vsprintf.h
 Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unistdio/u16-printf-parse.c, ./lib/unistdio/u32-printf-parse.c, ./lib/unistdio/u8-printf-parse.c, ./lib/unistdio/ulc-printf-parse.c, ./lib/unistr/u16-mblen.c, ./lib/unistr/u16-strmblen.c, ./lib/unistr/u16-strmbtouc.c, ./lib/unistr/u8-mblen.c, ./lib/unistr/u8-strmblen.c, ./lib/unistr/u8-strmbtouc.c
 Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unistr/u16-mbtoucr.c, ./lib/unistr/u8-mbtoucr.c
 Copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unistr/u16-mbtouc-unsafe.c, ./lib/unistr/u16-mbtouc.c, ./lib/unistr/u8-mbtouc-unsafe.c, ./lib/unistr/u8-mbtouc.c
 Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uniname.h
 Copyright: 2000-2002, 2005, 2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unictype/bitmap.h, ./lib/unictype/identsyntaxmap.h
 Copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uniname/uniname.c
 Copyright: 2000-2002, 2005-2007, 2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/mbmemcasecoll.c, ./lib/mbmemcasecoll.h
 Copyright: 2001, 2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uniwidth.h
 Copyright: 2001-2002, 2005, 2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uniwidth/cjk.h
 Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unistr.h
 Copyright: 2001-2002, 2005-2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uniwidth/u16-strwidth.c, ./lib/uniwidth/u32-strwidth.c, ./lib/uniwidth/u32-width.c, ./lib/uniwidth/u8-strwidth.c
 Copyright: 2001-2002, 2006 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uniwidth/u16-width.c, ./lib/uniwidth/u8-width.c
 Copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unistr/u16-mbtouc-aux.c, ./lib/unistr/u16-mbtouc-unsafe-aux.c, ./lib/unistr/u8-mbtouc-aux.c, ./lib/unistr/u8-mbtouc-unsafe-aux.c
 Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uniwidth/width.c
 Copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/c-strcaseeq.h, ./lib/streq.h
 Copyright: 2001-2002, 2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uninorm.h
 Copyright: 2001-2002, 2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unilbrk.h
 Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uniwbrk.h
 Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unilbrk/lbrktables.h, ./lib/unilbrk/u16-width-linebreaks.c, ./lib/unilbrk/u32-width-linebreaks.c, ./lib/unilbrk/u8-width-linebreaks.c, ./lib/unilbrk/ulc-common.c, ./lib/unilbrk/ulc-common.h
 Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unilbrk/lbrktables.c, ./lib/unilbrk/u16-possible-linebreaks.c, ./lib/unilbrk/u32-possible-linebreaks.c, ./lib/unilbrk/u8-possible-linebreaks.c, ./lib/unilbrk/ulc-possible-linebreaks.c, ./lib/unilbrk/ulc-width-linebreaks.c, ./lib/uniwbrk/ulc-wordbreaks.c, ./lib/uniwbrk/wordbreak-property.c
 Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uninorm/decomposition-table.h
 Copyright: 2001-2003, 2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uniconv.h
 Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unitypes.h
 Copyright: 2002, 2005-2006 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unistr/u16-uctomb.c, ./lib/unistr/u32-uctomb.c, ./lib/unistr/u8-uctomb.c
 Copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unictype/pr_test.c, ./lib/unistdio.h
 Copyright: 2002, 2005-2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unictype.h
 Copyright: 2002, 2005-2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unictype/bidi_byname.c, ./lib/unictype/bidi_name.c, ./lib/unictype/bidi_of.c, ./lib/unictype/bidi_test.c, ./lib/unictype/combining.c, ./lib/unictype/decdigit.c, ./lib/unictype/digit.c, ./lib/unictype/mirror.c, ./lib/unistr/u-endswith.h, ./lib/unistr/u-startswith.h, ./lib/unistr/u16-endswith.c, ./lib/unistr/u16-next.c, ./lib/unistr/u16-startswith.c, ./lib/unistr/u32-check.c, ./lib/unistr/u32-endswith.c, ./lib/unistr/u32-startswith.c, ./lib/unistr/u8-cmp.c, ./lib/unistr/u8-cpy-alloc.c, ./lib/unistr/u8-cpy.c, ./lib/unistr/u8-endswith.c, ./lib/unistr/u8-move.c, ./lib/unistr/u8-next.c, ./lib/unistr/u8-set.c, ./lib/unistr/u8-startswith.c, ./lib/unistr/u8-strcat.c, ./lib/unistr/u8-strcmp.c, ./lib/unistr/u8-strcpy.c, ./lib/unistr/u8-strdup.c, ./lib/unistr/u8-strlen.c, ./lib/unistr/u8-strncat.c, ./lib/unistr/u8-strncmp.c, ./lib/unistr/u8-strncpy.c
 Copyright: 2002, 2006 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unicase/simple-mapping.h, ./lib/unicase/tocasefold.c, ./lib/unicase/tolower.c, ./lib/unicase/totitle.c, ./lib/unicase/toupper.c, ./lib/uninorm/composition.c
 Copyright: 2002, 2006, 2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uniconv/u-strconv-to-enc.h, ./lib/uniconv/u16-conv-from-enc.c, ./lib/uniconv/u16-strconv-from-enc.c, ./lib/uniconv/u16-strconv-from-locale.c, ./lib/uniconv/u16-strconv-to-enc.c, ./lib/uniconv/u16-strconv-to-locale.c, ./lib/uniconv/u32-conv-from-enc.c, ./lib/uniconv/u32-conv-to-enc.c, ./lib/uniconv/u32-strconv-from-enc.c, ./lib/uniconv/u32-strconv-from-locale.c, ./lib/uniconv/u32-strconv-to-enc.c, ./lib/uniconv/u32-strconv-to-locale.c, ./lib/uniconv/u8-strconv-from-enc.c, ./lib/uniconv/u8-strconv-from-locale.c, ./lib/uniconv/u8-strconv-to-enc.c, ./lib/uniconv/u8-strconv-to-locale.c, ./lib/unictype/categ_C.c, ./lib/unictype/categ_Cc.c, ./lib/unictype/categ_Cf.c, ./lib/unictype/categ_Cn.c, ./lib/unictype/categ_Co.c, ./lib/unictype/categ_Cs.c, ./lib/unictype/categ_L.c, ./lib/unictype/categ_Ll.c, ./lib/unictype/categ_Lm.c, ./lib/unictype/categ_Lo.c, ./lib/unictype/categ_Lt.c, ./lib/unictype/categ_Lu.c, ./lib/unictype/categ_M.c, ./lib/unictype/categ_Mc.c, ./lib/unictype/categ_Me.c, ./lib/unictype/categ_Mn.c, ./lib/unictype/categ_N.c, ./lib/unictype/categ_Nd.c, ./lib/unictype/categ_Nl.c, ./lib/unictype/categ_No.c, ./lib/unictype/categ_P.c, ./lib/unictype/categ_Pc.c, ./lib/unictype/categ_Pd.c, ./lib/unictype/categ_Pe.c, ./lib/unictype/categ_Pf.c, ./lib/unictype/categ_Pi.c, ./lib/unictype/categ_Po.c, ./lib/unictype/categ_Ps.c, ./lib/unictype/categ_S.c, ./lib/unictype/categ_Sc.c, ./lib/unictype/categ_Sk.c, ./lib/unictype/categ_Sm.c, ./lib/unictype/categ_So.c, ./lib/unictype/categ_Z.c, ./lib/unictype/categ_Zl.c, ./lib/unictype/categ_Zp.c, ./lib/unictype/categ_Zs.c, ./lib/unictype/categ_byname.c, ./lib/unictype/categ_name.c, ./lib/unictype/categ_of.c, ./lib/unictype/categ_test.c, ./lib/unictype/ctype_alnum.c, ./lib/unictype/ctype_alpha.c, ./lib/unictype/ctype_blank.c, ./lib/unictype/ctype_cntrl.c, ./lib/unictype/ctype_digit.c, ./lib/unictype/ctype_graph.c, ./lib/unictype/ctype_lower.c, ./lib/unictype/ctype_print.c, ./lib/unictype/ctype_punct.c, ./lib/unictype/ctype_space.c, ./lib/unictype/ctype_upper.c, ./lib/unictype/ctype_xdigit.c, ./lib/unictype/numeric.c, ./lib/unictype/pr_alphabetic.c, ./lib/unictype/pr_ascii_hex_digit.c, ./lib/unictype/pr_bidi_arabic_digit.c, ./lib/unictype/pr_bidi_arabic_right_to_left.c, ./lib/unictype/pr_bidi_block_separator.c, ./lib/unictype/pr_bidi_boundary_neutral.c, ./lib/unictype/pr_bidi_common_separator.c, ./lib/unictype/pr_bidi_control.c, ./lib/unictype/pr_bidi_embedding_or_override.c, ./lib/unictype/pr_bidi_eur_num_separator.c, ./lib/unictype/pr_bidi_eur_num_terminator.c, ./lib/unictype/pr_bidi_european_digit.c, ./lib/unictype/pr_bidi_hebrew_right_to_left.c, ./lib/unictype/pr_bidi_left_to_right.c, ./lib/unictype/pr_bidi_non_spacing_mark.c, ./lib/unictype/pr_bidi_other_neutral.c, ./lib/unictype/pr_bidi_pdf.c, ./lib/unictype/pr_bidi_segment_separator.c, ./lib/unictype/pr_bidi_whitespace.c, ./lib/unictype/pr_combining.c, ./lib/unictype/pr_composite.c, ./lib/unictype/pr_currency_symbol.c, ./lib/unictype/pr_dash.c, ./lib/unictype/pr_decimal_digit.c, ./lib/unictype/pr_default_ignorable_code_point.c, ./lib/unictype/pr_deprecated.c, ./lib/unictype/pr_diacritic.c, ./lib/unictype/pr_extender.c, ./lib/unictype/pr_format_control.c, ./lib/unictype/pr_grapheme_base.c, ./lib/unictype/pr_grapheme_extend.c, ./lib/unictype/pr_grapheme_link.c, ./lib/unictype/pr_hex_digit.c, ./lib/unictype/pr_hyphen.c, ./lib/unictype/pr_id_continue.c, ./lib/unictype/pr_id_start.c, ./lib/unictype/pr_ideographic.c, ./lib/unictype/pr_ids_binary_operator.c, ./lib/unictype/pr_ids_trinary_operator.c, ./lib/unictype/pr_ignorable_control.c, ./lib/unictype/pr_iso_control.c, ./lib/unictype/pr_join_control.c, ./lib/unictype/pr_left_of_pair.c, ./lib/unictype/pr_line_separator.c, ./lib/unictype/pr_logical_order_exception.c, ./lib/unictype/pr_lowercase.c, ./lib/unictype/pr_math.c, ./lib/unictype/pr_non_break.c, ./lib/unictype/pr_not_a_character.c, ./lib/unictype/pr_numeric.c, ./lib/unictype/pr_other_alphabetic.c, ./lib/unictype/pr_other_default_ignorable_code_point.c, ./lib/unictype/pr_other_grapheme_extend.c, ./lib/unictype/pr_other_id_continue.c, ./lib/unictype/pr_other_id_start.c, ./lib/unictype/pr_other_lowercase.c, ./lib/unictype/pr_other_math.c, ./lib/unictype/pr_other_uppercase.c, ./lib/unictype/pr_paired_punctuation.c, ./lib/unictype/pr_paragraph_separator.c, ./lib/unictype/pr_pattern_syntax.c, ./lib/unictype/pr_pattern_white_space.c, ./lib/unictype/pr_private_use.c, ./lib/unictype/pr_punctuation.c, ./lib/unictype/pr_quotation_mark.c, ./lib/unictype/pr_radical.c, ./lib/unictype/pr_sentence_terminal.c, ./lib/unictype/pr_soft_dotted.c, ./lib/unictype/pr_space.c, ./lib/unictype/pr_terminal_punctuation.c, ./lib/unictype/pr_titlecase.c, ./lib/unictype/pr_unassigned_code_value.c, ./lib/unictype/pr_unified_ideograph.c, ./lib/unictype/pr_uppercase.c, ./lib/unictype/pr_variation_selector.c, ./lib/unictype/pr_white_space.c, ./lib/unictype/pr_xid_continue.c, ./lib/unictype/pr_xid_start.c, ./lib/unictype/pr_zero_width.c, ./lib/unistr/u16-check.c, ./lib/unistr/u16-prev.c, ./lib/unistr/u16-to-u32.c, ./lib/unistr/u16-to-u8.c, ./lib/unistr/u16-uctomb-aux.c, ./lib/unistr/u32-mblen.c, ./lib/unistr/u32-mbtoucr.c, ./lib/unistr/u32-next.c, ./lib/unistr/u32-prev.c, ./lib/unistr/u32-strmblen.c, ./lib/unistr/u32-strmbtouc.c, ./lib/unistr/u32-to-u16.c, ./lib/unistr/u32-to-u8.c, ./lib/unistr/u8-check.c, ./lib/unistr/u8-prev.c, ./lib/unistr/u8-to-u16.c, ./lib/unistr/u8-to-u32.c, ./lib/unistr/u8-uctomb-aux.c
 Copyright: 2002, 2006-2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unicase/cased.c, ./lib/unicase/ignorable.c, ./lib/uniconv/u-conv-from-enc.h, ./lib/uniconv/u-strconv-from-enc.h, ./lib/uniconv/u8-conv-from-enc.c, ./lib/uniconv/u8-conv-to-enc.c, ./lib/unistr/u32-mbtouc-unsafe.c, ./lib/unistr/u32-mbtouc.c
 Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uniconv/u16-conv-to-enc.c
 Copyright: 2002, 2006-2008 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/uniconv/u-conv-to-enc.h
 Copyright: 2002, 2006-2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unicase.h
 Copyright: 2002, 2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/unictype/block_test.c, ./lib/unictype/blocks.c, ./lib/unictype/categ_and.c, ./lib/unictype/categ_and_not.c, ./lib/unictype/categ_none.c, ./lib/unictype/categ_or.c, ./lib/unictype/pr_byname.c, ./lib/unictype/scripts.c, ./lib/unictype/sy_c_ident.c, ./lib/unictype/sy_c_whitespace.c, ./lib/unictype/sy_java_ident.c, ./lib/unictype/sy_java_whitespace.c, ./lib/unistr/u16-mbsnlen.c, ./lib/unistr/u32-mbsnlen.c, ./lib/unistr/u8-mbsnlen.c
 Copyright: 2007 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 Files: ./lib/array-mergesort.h, ./lib/close-hook.c, ./lib/close-hook.h, ./lib/mbmemcasecmp.h, ./lib/memcmp2.c, ./lib/memcmp2.h, ./lib/memxfrm.c, ./lib/memxfrm.h, ./lib/unicase/casefold.h, ./lib/unicase/caseprop.h, ./lib/unicase/context.h, ./lib/unicase/empty-prefix-context.c, ./lib/unicase/empty-suffix-context.c, ./lib/unicase/invariant.h, ./lib/unicase/locale-language.c, ./lib/unicase/special-casing.c, ./lib/unicase/special-casing.h, ./lib/unicase/u-casecmp.h, ./lib/unicase/u-casecoll.h, ./lib/unicase/u-casefold.h, ./lib/unicase/u-casemap.h, ./lib/unicase/u-casexfrm.h, ./lib/unicase/u-ct-casefold.h, ./lib/unicase/u-ct-totitle.h, ./lib/unicase/u-is-cased.h, ./lib/unicase/u-is-invariant.h, ./lib/unicase/u-prefix-context.h, ./lib/unicase/u-suffix-context.h, ./lib/unicase/u-totitle.h, ./lib/unicase/u16-casecmp.c, ./lib/unicase/u16-casecoll.c, ./lib/unicase/u16-casefold.c, ./lib/unicase/u16-casemap.c, ./lib/unicase/u16-casexfrm.c, ./lib/unicase/u16-ct-casefold.c, ./lib/unicase/u16-ct-tolower.c, ./lib/unicase/u16-ct-totitle.c, ./lib/unicase/u16-ct-toupper.c, ./lib/unicase/u16-is-cased.c, ./lib/unicase/u16-is-casefolded.c, ./lib/unicase/u16-is-invariant.c, ./lib/unicase/u16-is-lowercase.c, ./lib/unicase/u16-is-titlecase.c, ./lib/unicase/u16-is-uppercase.c, ./lib/unicase/u16-prefix-context.c, ./lib/unicase/u16-suffix-context.c, ./lib/unicase/u16-tolower.c, ./lib/unicase/u16-totitle.c, ./lib/unicase/u16-toupper.c, ./lib/unicase/u32-casecmp.c, ./lib/unicase/u32-casecoll.c, ./lib/unicase/u32-casefold.c, ./lib/unicase/u32-casemap.c, ./lib/unicase/u32-casexfrm.c, ./lib/unicase/u32-ct-casefold.c, ./lib/unicase/u32-ct-tolower.c, ./lib/unicase/u32-ct-totitle.c, ./lib/unicase/u32-ct-toupper.c, ./lib/unicase/u32-is-cased.c, ./lib/unicase/u32-is-casefolded.c, ./lib/unicase/u32-is-invariant.c, ./lib/unicase/u32-is-lowercase.c, ./lib/unicase/u32-is-titlecase.c, ./lib/unicase/u32-is-uppercase.c, ./lib/unicase/u32-prefix-context.c, ./lib/unicase/u32-suffix-context.c, ./lib/unicase/u32-tolower.c, ./lib/unicase/u32-totitle.c, ./lib/unicase/u32-toupper.c, ./lib/unicase/u8-casecmp.c, ./lib/unicase/u8-casecoll.c, ./lib/unicase/u8-casefold.c, ./lib/unicase/u8-casemap.c, ./lib/unicase/u8-casexfrm.c, ./lib/unicase/u8-ct-casefold.c, ./lib/unicase/u8-ct-tolower.c, ./lib/unicase/u8-ct-totitle.c, ./lib/unicase/u8-ct-toupper.c, ./lib/unicase/u8-is-cased.c, ./lib/unicase/u8-is-casefolded.c, ./lib/unicase/u8-is-invariant.c, ./lib/unicase/u8-is-lowercase.c, ./lib/unicase/u8-is-titlecase.c, ./lib/unicase/u8-is-uppercase.c, ./lib/unicase/u8-prefix-context.c, ./lib/unicase/u8-suffix-context.c, ./lib/unicase/u8-tolower.c, ./lib/unicase/u8-totitle.c, ./lib/unicase/u8-toupper.c, ./lib/unicase/ulc-casecmp.c, ./lib/unicase/ulc-casecoll.c, ./lib/unicase/ulc-casexfrm.c, ./lib/unicase/unicasemap.h, ./lib/uninorm/canonical-decomposition.c, ./lib/uninorm/compat-decomposition.c, ./lib/uninorm/decompose-internal.c, ./lib/uninorm/decompose-internal.h, ./lib/uninorm/decomposing-form.c, ./lib/uninorm/decomposition-table.c, ./lib/uninorm/decomposition.c, ./lib/uninorm/nfc.c, ./lib/uninorm/nfd.c, ./lib/uninorm/nfkc.c, ./lib/uninorm/nfkd.c, ./lib/uninorm/normalize-internal.h, ./lib/uninorm/u-normalize-internal.h, ./lib/uninorm/u-normcmp.h, ./lib/uninorm/u-normcoll.h, ./lib/uninorm/u-normxfrm.h, ./lib/uninorm/u16-normalize.c, ./lib/uninorm/u16-normcmp.c, ./lib/uninorm/u16-normcoll.c, ./lib/uninorm/u16-normxfrm.c, ./lib/uninorm/u32-normalize.c, ./lib/uninorm/u32-normcmp.c, ./lib/uninorm/u32-normcoll.c, ./lib/uninorm/u32-normxfrm.c, ./lib/uninorm/u8-normalize.c, ./lib/uninorm/u8-normcmp.c, ./lib/uninorm/u8-normcoll.c, ./lib/uninorm/u8-normxfrm.c, ./lib/uninorm/uninorm-filter.c, ./lib/unistr/u-cmp2.h, ./lib/unistr/u-strcoll.h, ./lib/unistr/u16-cmp2.c, ./lib/unistr/u16-strcoll.c, ./lib/unistr/u32-cmp2.c, ./lib/unistr/u32-strcoll.c, ./lib/unistr/u8-cmp2.c, ./lib/unistr/u8-strcoll.c, ./lib/uniwbrk/u-wordbreaks.h, ./lib/uniwbrk/u16-wordbreaks.c, ./lib/uniwbrk/u32-wordbreaks.c, ./lib/uniwbrk/u8-wordbreaks.c, ./lib/uniwbrk/wbrktable.c, ./lib/uniwbrk/wbrktable.h, ./tests/test-array-mergesort.c
 Copyright: 2009 Free Software Foundation, Inc.
-License: LGPL-3+
+License: LGPL-3+ [REF26]
 
 License: BSD (3 clause) and LGPL-2.1+ [REF15]
     The GNU C Library is free software; you can redistribute it and/or
@@ -3059,7 +3055,50 @@ License: GFDL-1.3+-NIV [REF17]
     Texts.  A copy of the license is included in the ``GNU Free
     Documentation License'' file as part of this distribution.
 
-License: GPL-2+ and other [REF18]
+License: GPL-2+ [REF18]
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+    
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+    
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software Foundation,
+    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+
+License: GPL-2+ and ISC [REF19]
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2, or (at your option)
+    any later version.
+    
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+    
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software Foundation,
+    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+    
+    Permission to use, copy, modify, and distribute this software for any
+    purpose with or without fee is hereby granted, provided that the above
+    copyright notice and this permission notice appear in all copies.
+    
+    THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
+    ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
+    OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
+    CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
+    DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
+    PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
+    ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
+    SOFTWARE.
+
+License: GPL-2+ and other [REF20]
     This file is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published
     by the Free Software Foundation; either version 2, or (at your
@@ -3089,7 +3128,21 @@ License: GPL-2+ and other [REF18]
     OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
     EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-License: GPL-3+ and BSD (3-clause) [REF19]
+License: GPL-3+ [REF21]
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 3 of the License, or
+    (at your option) any later version.
+    
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+    
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+License: GPL-3+ and BSD (3-clause) [REF22]
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 3 of the License, or
@@ -3127,6 +3180,79 @@ License: GPL-3+ and BSD (3-clause) [REF19]
     OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     SUCH DAMAGE.
 
+License: GPL-3+ and ISC [REF23]
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 3 of the License, or
+    (at your option) any later version.
+    
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+    
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+    
+    Copyright (c) 1996,1999 by Internet Software Consortium.
+    
+    Permission to use, copy, modify, and distribute this software for any
+    purpose with or without fee is hereby granted, provided that the above
+    copyright notice and this permission notice appear in all copies.
+    
+    THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
+    ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
+    OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
+    CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
+    DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
+    PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
+    ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
+    SOFTWARE.
+
+License: LGPL-2+ [REF24]
+    This program is free software; you can redistribute it and/or modify it
+    under the terms of the GNU Library General Public License as published
+    by the Free Software Foundation; either version 2, or (at your option)
+    any later version.
+    
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Library General Public License for more details.
+    
+    You should have received a copy of the GNU Library General Public
+    License along with this program; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+    USA.
+
+License: LGPL-2.1+ [REF25]
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Lesser General Public
+    License as published by the Free Software Foundation; either
+    version 2.1 of the License, or (at your option) any later version.
+    
+    This library is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Lesser General Public License for more details.
+    
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+License: LGPL-3+ [REF26]
+    This program is free software: you can redistribute it and/or modify it
+    under the terms of the GNU Lesser General Public License as published
+    by the Free Software Foundation; either version 3 of the License, or
+    (at your option) any later version.
+    
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Lesser General Public License for more details.
+    
+    You should have received a copy of the GNU Lesser General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 License: other [REF01]
     (Mostly) portable public-domain implementation -- D A Gwyn