Perl
Perl is Copyright (C) 1993 - 2025 by Larry Wall and others.
All rights reserved.
# ABOUT PERL
Perl is a general-purpose programming language originally developed for
text manipulation and now used for a wide range of tasks including
system administration, web development, network programming, GUI
development, and more.
The language is intended to be practical (easy to use, efficient,
complete) rather than beautiful (tiny, elegant, minimal). Its major
features are that it's easy to use, supports both procedural and
object-oriented (OO) programming, has powerful built-in support for text
processing, and has one of the world's most impressive collections of
third-party modules.
For an introduction to the language's features, see pod/perlintro.pod.
For a discussion of the important changes in this release, see
pod/perldelta.pod.
There are also many Perl books available, covering a wide variety of topics,
from various publishers. See pod/perlbook.pod for more information.
# INSTALLATION
If you're using a relatively modern operating system and want to
install this version of Perl locally, run the following commands:
./Configure -des -Dprefix=$HOME/localperl
make test
make install
This will configure and compile perl for your platform, run the regression
tests, and install perl in a subdirectory "localperl" of your home directory.
If you run into any trouble whatsoever or you need to install a customized
version of Perl, you should read the detailed instructions in the "INSTALL"
file that came with this distribution. Additionally, there are a number of
"README" files with hints and tips about building and using Perl on a wide
variety of platforms, some more common than others.
Once you have Perl installed, a wealth of documentation is available to you
through the 'perldoc' tool. To get started, run this command:
perldoc perl
# IF YOU RUN INTO TROUBLE
Perl is a large and complex system that's used for everything from
knitting to rocket science. If you run into trouble, it's quite
likely that someone else has already solved the problem you're
facing. Once you've exhausted the documentation, please report bugs to us
at the GitHub issue tracker at https://github.com/Perl/perl5/issues
While it was current when we made it available, Perl is constantly evolving
and there may be a more recent version that fixes bugs you've run into or
adds new features that you might find useful.
You can always find the latest version of perl on a CPAN (Comprehensive Perl
Archive Network) site near you at https://www.cpan.org/src/
If you want to submit a simple patch to the perl source, see the "SUPER
QUICK PATCH GUIDE" in pod/perlhack.pod.
Just a personal note: I want you to know that I create nice things like this
because it pleases the Author of my story. If this bothers you, then your
notion of Authorship needs some revision. But you can use perl anyway. :-)
The author.
# LICENSING
This program is free software; you can redistribute it and/or modify
it under the terms of either:
a. the GNU General Public License as published by the Free
Software Foundation; either version 1, or (at your option) any
later version, or
b. the "Artistic License" which comes with this Kit.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either
the GNU General Public License or the Artistic License for more details.
You should have received a copy of the Artistic License with this
Kit, in the file named "Artistic". If not, I'll be glad to provide one.
You should also have received a copy of the GNU General Public License
along with this program in the file named "Copying". If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA or visit their web page on the internet at
https://www.gnu.org/copyleft/gpl.html.
For those of you that choose to use the GNU General Public License,
my interpretation of the GNU General Public License is that no Perl
script falls under the terms of the GPL unless you explicitly put
said script under the terms of the GPL yourself. Furthermore, any
object code linked with perl does not automatically fall under the
terms of the GPL, provided such object code only adds definitions
of subroutines and variables, and does not otherwise impair the
resulting interpreter from executing any standard Perl script. I
consider linking in C subroutines in this manner to be the moral
equivalent of defining subroutines in the Perl language itself. You
may sell such an object file as proprietary provided that you provide
or offer to provide the Perl source, as specified by the GNU General
Public License. (This is merely an alternate way of specifying input
to the program.) You may also sell a binary produced by the dumping of
a running Perl script that belongs to you, provided that you provide or
offer to provide the Perl source as specified by the GPL. (The
fact that a Perl interpreter and your code are in the same binary file
is, in this case, a form of mere aggregation.) This is my interpretation
of the GPL. If you still have concerns or difficulties understanding
my intent, feel free to contact me. Of course, the Artistic License
spells all this out for your protection, so you may prefer to use that.
The "Artistic License"
Preamble
The intent of this document is to state the conditions under which a
Package may be copied, such that the Copyright Holder maintains some
semblance of artistic control over the development of the package,
while giving the users of the package the right to use and distribute
the Package in a more-or-less customary fashion, plus the right to make
reasonable modifications.
Definitions:
"Package" refers to the collection of files distributed by the
Copyright Holder, and derivatives of that collection of files
created through textual modification.
"Standard Version" refers to such a Package if it has not been
modified, or has been modified in accordance with the wishes
of the Copyright Holder as specified below.
"Copyright Holder" is whoever is named in the copyright or
copyrights for the package.
"You" is you, if you're thinking about copying or distributing
this Package.
"Reasonable copying fee" is whatever you can justify on the
basis of media cost, duplication charges, time of people involved,
and so on. (You will not be required to justify it to the
Copyright Holder, but only to the computing community at large
as a market that must bear the fee.)
"Freely Available" means that no fee is charged for the item
itself, though there may be fees involved in handling the item.
It also means that recipients of the item may redistribute it
under the same conditions they received it.
1. You may make and give away verbatim copies of the source form of the
Standard Version of this Package without restriction, provided that you
duplicate all of the original copyright notices and associated disclaimers.
2. You may apply bug fixes, portability fixes and other modifications
derived from the Public Domain or from the Copyright Holder. A Package
modified in such a way shall still be considered the Standard Version.
3. You may otherwise modify your copy of this Package in any way, provided
that you insert a prominent notice in each changed file stating how and
when you changed that file, and provided that you do at least ONE of the
following:
a) place your modifications in the Public Domain or otherwise make them
Freely Available, such as by posting said modifications to Usenet or
an equivalent medium, or placing the modifications on a major archive
site such as uunet.uu.net, or by allowing the Copyright Holder to include
your modifications in the Standard Version of the Package.
b) use the modified Package only within your corporation or organization.
c) rename any non-standard executables so the names do not conflict
with standard executables, which must also be provided, and provide
a separate manual page for each non-standard executable that clearly
documents how it differs from the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
4. You may distribute the programs of this Package in object code or
executable form, provided that you do at least ONE of the following:
a) distribute a Standard Version of the executables and library files,
together with instructions (in the manual page or equivalent) on where
to get the Standard Version.
b) accompany the distribution with the machine-readable source of
the Package with your modifications.
c) give non-standard executables non-standard names, and clearly
document the differences in manual pages (or equivalent), together
with instructions on where to get the Standard Version.
d) make other distribution arrangements with the Copyright Holder.
5. You may charge a reasonable copying fee for any distribution of this
Package. You may charge any fee you choose for support of this
Package. You may not charge a fee for this Package itself. However,
you may distribute this Package in aggregate with other (possibly
commercial) programs as part of a larger (possibly commercial) software
distribution provided that you do not advertise this Package as a
product of your own. You may embed this Package's interpreter within
an executable of yours (by linking); this shall be construed as a mere
form of aggregation, provided that the complete Standard Version of the
interpreter is so embedded.
6. The scripts and library files supplied as input to or produced as
output from the programs of this Package do not automatically fall
under the copyright of this Package, but belong to whoever generated
them, and may be sold commercially, and may be aggregated with this
Package. If such scripts or library files are aggregated with this
Package via the so-called "undump" or "unexec" methods of producing a
binary executable image, then distribution of such an image shall
neither be construed as a distribution of this Package nor shall it
fall under the restrictions of Paragraphs 3 and 4, provided that you do
not represent such an executable image as a Standard Version of this
Package.
7. C subroutines (or comparably compiled subroutines in other
languages) supplied by you and linked into this Package in order to
emulate subroutines and variables of the language defined by this
Package shall not be considered part of this Package, but are the
equivalent of input as in Paragraph 6, provided these subroutines do
not change the language in any way that would cause it to fail the
regression tests for the language.
8. Aggregation of this Package with a commercial distribution is always
permitted provided that the use of this Package is embedded; that is,
when no overt attempt is made to make this Package's interfaces visible
to the end user of the commercial distribution. Such use shall not be
construed as a distribution of this Package.
9. The name of the Copyright Holder may not be used to endorse or promote
products derived from this software without specific prior written permission.
10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
The End
------------
GNU GENERAL PUBLIC LICENSE
Version 1, February 1989
Copyright (C) 1989 Free Software Foundation, Inc.
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The license agreements of most software companies try to keep users
at the mercy of those companies. By contrast, our General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. The
General Public License applies to the Free Software Foundation's
software and to any other program whose authors commit to using it.
You can use it for your programs, too.
When we speak of free software, we are referring to freedom, not
price. Specifically, the General Public License is designed to make
sure that you have the freedom to give away or sell copies of free
software, that you receive source code or can get it if you want it,
that you can change the software or use pieces of it in new free
programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of a such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must tell them their rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any program or other work which
contains a notice placed by the copyright holder saying it may be
distributed under the terms of this General Public License. The
"Program", below, refers to any such program or work, and a "work based
on the Program" means either the Program or any work containing the
Program or a portion of it, either verbatim or with modifications. Each
licensee is addressed as "you".
1. You may copy and distribute verbatim copies of the Program's source
code as you receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice and
disclaimer of warranty; keep intact all the notices that refer to this
General Public License and to the absence of any warranty; and give any
other recipients of the Program a copy of this General Public License
along with the Program. You may charge a fee for the physical act of
transferring a copy.
2. You may modify your copy or copies of the Program or any portion of
it, and copy and distribute such modifications under the terms of Paragraph
1 above, provided that you also do the following:
a) cause the modified files to carry prominent notices stating that
you changed the files and the date of any change; and
b) cause the whole of any work that you distribute or publish, that
in whole or in part contains the Program or any part thereof, either
with or without modifications, to be licensed at no charge to all
third parties under the terms of this General Public License (except
that you may choose to grant warranty protection to some or all
third parties, at your option).
c) If the modified program normally reads commands interactively when
run, you must cause it, when started running for such interactive use
in the simplest and most usual way, to print or display an
announcement including an appropriate copyright notice and a notice
that there is no warranty (or else, saying that you provide a
warranty) and that users may redistribute the program under these
conditions, and telling the user how to view a copy of this General
Public License.
d) You may charge a fee for the physical act of transferring a
copy, and you may at your option offer warranty protection in
exchange for a fee.
Mere aggregation of another independent work with the Program (or its
derivative) on a volume of a storage or distribution medium does not bring
the other work under the scope of these terms.
3. You may copy and distribute the Program (or a portion or derivative of
it, under Paragraph 2) in object code or executable form under the terms of
Paragraphs 1 and 2 above provided that you also do one of the following:
a) accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of
Paragraphs 1 and 2 above; or,
b) accompany it with a written offer, valid for at least three
years, to give any third party free (except for a nominal charge
for the cost of distribution) a complete machine-readable copy of the
corresponding source code, to be distributed under the terms of
Paragraphs 1 and 2 above; or,
c) accompany it with the information you received as to where the
corresponding source code may be obtained. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form alone.)
Source code for a work means the preferred form of the work for making
modifications to it. For an executable file, complete source code means
all the source code for all modules it contains; but, as a special
exception, it need not include source code for modules which are standard
libraries that accompany the operating system on which the executable
file runs, or for standard header files or definitions files that
accompany that operating system.
4. You may not copy, modify, sublicense, distribute or transfer the
Program except as expressly provided under this General Public License.
Any attempt otherwise to copy, modify, sublicense, distribute or transfer
the Program is void, and will automatically terminate your rights to use
the Program under this License. However, parties who have received
copies, or rights to use copies, from you under this General Public
License will not have their licenses terminated so long as such parties
remain in full compliance.
5. By copying, distributing or modifying the Program (or any work based
on the Program) you indicate your acceptance of this license to do so,
and all its terms and conditions.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the original
licensor to copy, distribute or modify the Program subject to these
terms and conditions. You may not impose any further restrictions on the
recipients' exercise of the rights granted herein.
7. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of the license which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
the license, you may choose any version ever published by the Free Software
Foundation.
8. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
Appendix: How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
To do so, attach the following notices to the program. It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 19yy <name of author>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU 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
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) 19xx name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the
appropriate parts of the General Public License. Of course, the
commands you use may be called something other than `show w' and `show
c'; they could even be mouse-clicks or menu items--whatever suits your
program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the
program `Gnomovision' (a program to direct compilers to make passes
at assemblers) written by James Hacker.
<signature of Ty Coon>, 1 April 1989
Ty Coon, President of Vice
That's all there is to it!
--------------------------------------------------
Perl//dist/ExtUtils-CBuilder/LICENSE
-----------------
This software is copyright (c) 2020 by Ken Williams.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
Terms of the Perl programming language system itself
a) the GNU General Public License as published by the Free
Software Foundation; either version 1, or (at your option) any
later version, or
b) the "Artistic License"
---------------------------------------------------
./cpan/Compress-Raw-Bzip2/bzip2-src/LICENSE
This program, "bzip2", the associated library "libbzip2", and all
documentation, are copyright (C) 1996-2019 Julian R Seward. All
rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
3. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.
4. The name of the author may not be used to endorse or promote
products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Julian Seward, jseward@acm.org
bzip2/libbzip2 version 1.0.8 of 13 July 2019
Exceptions
------------
The Perl distribution contains the Perl interpreter and many Perl modules.
Most Perl modules use the "perl license" as described in the section LICENSING above.
There are a few modules whose licensing or Copyright text is different.
If a Perl module has the same licensing terms as Perl itself, but has a different
Copyright text, the module name along with the Copyright text is presented.
If a Perl module has a different Copyright text and a different license, then both
the Copyright text and the license text is presented for the module.
These modules are noted below:
perl/expat/lib/cmake/expat-2.4.4/expat-config.cmake
-----------------
# Copyright (c) 2019 Expat development team
# Licensed under the MIT license:
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to permit
# persons to whom the Software is furnished to do so, subject to the
# following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
# NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
# USE OR OTHER DEALINGS IN THE SOFTWARE.
#
perl/expat/include/expat_external.h
-----------------
Copyright (c) 1997-2000 Thai Open Source Software Center Ltd
Copyright (c) 2000 Clark Cooper <coopercc@users.sourceforge.net>
Copyright (c) 2000-2004 Fred L. Drake, Jr. <fdrake@users.sourceforge.net>
Copyright (c) 2001-2002 Greg Stein <gstein@users.sourceforge.net>
Copyright (c) 2002-2006 Karl Waclawek <karl@waclawek.net>
Copyright (c) 2016 Cristian Rodríguez <crrodriguez@opensuse.org>
Copyright (c) 2016-2019 Sebastian Pipping <sebastian@pipping.org>
Copyright (c) 2017 Rhodri James <rhodri@wildebeest.org.uk>
Copyright (c) 2018 Yury Gribov <tetra2005@gmail.com>
Licensed under the MIT license:
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to permit
persons to whom the Software is furnished to do so, subject to the
following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.
perl/expat/include/expat.h
-----------------
Copyright (c) 1997-2000 Thai Open Source Software Center Ltd
Copyright (c) 2000 Clark Cooper <coopercc@users.sourceforge.net>
Copyright (c) 2000-2005 Fred L. Drake, Jr. <fdrake@users.sourceforge.net>
Copyright (c) 2001-2002 Greg Stein <gstein@users.sourceforge.net>
Copyright (c) 2002-2016 Karl Waclawek <karl@waclawek.net>
Copyright (c) 2016-2022 Sebastian Pipping <sebastian@pipping.org>
Copyright (c) 2016 Cristian Rodríguez <crrodriguez@opensuse.org>
Copyright (c) 2016 Thomas Beutlich <tc@tbeu.de>
Copyright (c) 2017 Rhodri James <rhodri@wildebeest.org.uk>
Licensed under the MIT license:
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to permit
persons to whom the Software is furnished to do so, subject to the
following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.
perl/lib/site_perl/5.40.2/Try/Tiny.pm
-----------------
This software is Copyright (c) 2009 by יובל קוג'מן (Yuval Kogman).
perl/lib/site_perl/5.40.2/WWW/RobotRules.pm
-----------------
Copyright 1995-2009, Gisle Aas
Copyright 1995, Martijn Koster
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/MIME/QuotedPrint.pm
-----------------
Copyright 1995-1997,2002-2004 Gisle Aas.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/MIME/Base64.pm
-----------------
Copyright 1995-1999, 2001-2004, 2010 Gisle Aas.
This library is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
Distantly based on LWP::Base64 written by Martijn Koster
<m.koster@nexor.co.uk> and Joerg Reichelt <j.reichelt@nexor.co.uk> and
code posted to comp.lang.perl <3pd2lp$6gf@wsinti07.win.tue.nl> by Hans
Mulder <hansm@wsinti07.win.tue.nl>
The XS implementation uses code from metamail. Copyright 1991 Bell
Communications Research, Inc. (Bellcore)
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/CryptX.pm
-----------------
Copyright (c) 2013-2021 DCIT, a.s. L<https://www.dcit.cz> / Karel Miko
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Time/HiRes.pm
-----------------
Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.
Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Jarkko Hietaniemi.
All rights reserved.
Copyright (C) 2011, 2012, 2013 Andrew Main (Zefram) <zefram@fysh.org>
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Sponge.pm
-----------------
# Copyright (c) 1994-2003 Tim Bunce Ireland
This module is Copyright (c) 2003 Tim Bunce
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Gofer/Transport/null.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Gofer/Transport/corostream.pm
-----------------
Copyright (c) 2010, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Gofer/Transport/pipeone.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Gofer/Transport/Base.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007-2008, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Gofer/Transport/stream.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Gofer/Policy/classic.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Gofer/Policy/pedantic.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Gofer/Policy/rush.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Gofer/Policy/Base.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/File.pm
-----------------
# Copyright (C) 2009-2013 by H.Merijn Brand & Jens Rehsack
# Copyright (C) 2004 by Jeff Zucker
# Copyright (C) 1998 by Jochen Wiedmann
Copyright (C) 2009-2013 by H.Merijn Brand & Jens Rehsack
Copyright (C) 2004-2009 by Jeff Zucker
Copyright (C) 1998-2004 by Jochen Wiedmann
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/File/Developers.pod
-----------------
Copyright (C) 2010-2013 by H.Merijn Brand & Jens Rehsack
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/File/HowTo.pod
-----------------
Copyright (C) 2010 by H.Merijn Brand & Jens Rehsack
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Oracle/Troubleshooting/Win32.pod
-----------------
This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Oracle/Troubleshooting/Win64.pod
-----------------
This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Oracle/Troubleshooting/Vms.pod
-----------------
This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Oracle/Troubleshooting/Hpux.pod
-----------------
This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Oracle/Troubleshooting/Sun.pod
-----------------
This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Oracle/Troubleshooting/Cygwin.pod
-----------------
This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Oracle/Troubleshooting/Aix.pod
-----------------
This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Oracle/Troubleshooting/Macos.pod
-----------------
This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Oracle/Troubleshooting/Linux.pod
-----------------
This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Oracle/Object.pm
-----------------
This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Oracle/Troubleshooting.pod
-----------------
This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Oracle/GetInfo.pm
-----------------
This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/DBM.pm
-----------------
# Copyright (c) 2004 by Jeff Zucker < jzucker AT cpan.org >
# Copyright (c) 2010-2013 by Jens Rehsack & H.Merijn Brand
Copyright (c) 2004 by Jeff Zucker, all rights reserved.
Copyright (c) 2010-2013 by Jens Rehsack & H.Merijn Brand, all rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/NullP.pm
-----------------
# Copyright (c) 1994-2007 Tim Bunce
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Proxy.pm
-----------------
# Copyright (c) 1997,1998 Jochen Wiedmann
This module is Copyright (c) 1997, 1998
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Oracle.pm
-----------------
# Copyright (c) 1994-2005 Tim Bunce, Ireland
# Copyright (c) 2006-2008 John Scoles (The Pythian Group), Canada
The DBD::Oracle module is Copyright (c) 1994-2006 Tim Bunce. Ireland.
The DBD::Oracle module is Copyright (c) 2006-2011 John Scoles (The Pythian Group). Canada.
The DBD::Oracle module is Copyright (c) 2011 John Scoles. Canada.
This software is copyright (c) 2019, 2014, 2013, 2012, 2011, 2010 by Tim Bunce.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/ExampleP.pm
-----------------
# Copyright (c) 1994,1997,1998 Tim Bunce
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Mem.pm
-----------------
# Copyright (C) 2016,2017 by Jens Rehsack
Copyright (c) 2016- by Jens Rehsack, all rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBD/Gofer.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Term/ReadKey.pm
-----------------
Prior to the 2.31 release the license statement was:
Copyright (C) 1994-1999 Kenneth Albanowski.
2001-2005 Jonathan Stowe and others
Unlimited distribution and/or modification is allowed as long as this
copyright notice remains intact.
And was only stated in the README file.
Because I believe the original author's intent was to be more open than the
other commonly used licenses I would like to leave that in place. However if
you or your lawyers require something with some more words you can optionally
choose to license this under the standard Perl license:
This module is free software; you can redistribute it and/or modify it
under the terms of the Artistic License. For details, see the full
text of the license in the file "Artistic" that should have been provided
with the version of perl you are using.
This program is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/auto/DBD/Oracle/dbdimp.h
-----------------
Copyright (c) 1994-2006 Tim Bunce
Copyright (c) 2006-2008 John Scoles (The Pythian Group), Canada
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/auto/DBD/Oracle/Oracle.h
-----------------
Copyright (c) 1994-2006 Tim Bunce
See the COPYRIGHT section in the Oracle.pm file for terms.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/auto/DBI/dbi_sql.h
-----------------
* Copyright (c) 1997,1998,1999 Tim Bunce England
* See COPYRIGHT section in DBI.pm for usage and distribution rights.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/auto/DBI/Driver_xst.h
-----------------
# Copyright (c) 2002 Tim Bunce Ireland
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/auto/DBI/dbd_xsh.h
-----------------
* Copyright 2000-2002 Tim Bunce
* Copyright 2002 Jonathan Leffler
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/auto/DBI/dbipport.h
-----------------
Version 3.x, Copyright (c) 2004-2013, Marcus Holland-Moritz.
Version 2.x, Copyright (C) 2001, Paul Marquess.
Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/auto/DBI/DBIXS.h
-----------------
* Copyright (c) 1994-2010 Tim Bunce Ireland
* See COPYRIGHT section in DBI.pm for usage and distribution rights.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/auto/DBI/Driver.xst
-----------------
# Copyright (c) 1997-2002 Tim Bunce Ireland
# Copyright (c) 2002 Jonathan Leffler
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/HTML/HeadParser.pm
-----------------
Copyright 1996-2001 Gisle Aas. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/HTML/Filter.pm
-----------------
Copyright 1997-1999 Gisle Aas.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/HTML/Entities.pm
-----------------
Copyright 1995-2006 Gisle Aas. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/HTML/TokeParser.pm
-----------------
Copyright 1998-2005 Gisle Aas.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/HTML/PullParser.pm
-----------------
Copyright 1998-2001 Gisle Aas.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/HTML/Parser.pm
-----------------
Copyright 1996-2016 Gisle Aas. All rights reserved.
Copyright 1999-2000 Michael A. Chase. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/HTML/LinkExtor.pm
-----------------
Copyright 1996-2001 Gisle Aas.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Crypt/Curve25519.pm
-----------------
This software is copyright (c) 2014 by Alex J. G. Burzyński <ajgb@cpan.org>.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/XML/Parser/LWPExternEnt.pl
-----------------
# Copyright (c) 2000 Clark Cooper
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/XML/Parser.pm
-----------------
# Copyright (c) 1998-2000 Larry Wall and Clark Cooper
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Filesys/Df.pm
-----------------
Copyright (c) 2006 Ian Guthrie. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl.pm
-----------------
Copyright (c) 2015-2017 Rythmos, Inc.
Copyright (c) 2001-2003 Benjamin Trott, Copyright (c) 2003-2008 David
Rolsky. Copyright (c) David Robins. All rights reserved. This
program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included
with this module.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Key/Ed25519.pm
-----------------
Copyright (c) 2015-2016 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Key/ECDSA.pm
-----------------
Copyright (c) 2016 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Proxy.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc. All Rights Reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Mac.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Kex/DHGEXSHA1.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Kex/DHGEXSHA256.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Kex/DH18SHA512.pm
-----------------
Copyright (c) 2016 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Kex/C25519.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Kex/DH16SHA512.pm
-----------------
Copyright (c) 2016 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Kex/DHGEX.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Cipher/CTR.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Cipher/AES_CBC.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Cipher/CBC.pm
-----------------
# Parts copyright (C) 1995, 1996 Systemics Ltd (http://www.systemics.com/)
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Cipher/AES192_CTR.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Cipher/ChachaPoly.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Cipher/AES256_CTR.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Cipher/AES_CTR.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Cipher/AES128_CTR.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Cipher/CFB.pm
-----------------
# Parts Copyright (C) 1995, 1996 Systemics Ltd (http://www.systemics.com/)
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Cipher/AES256_CBC.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Cipher/AES128_CBC.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Net/SSH/Perl/Cipher/AES192_CBC.pm
-----------------
Copyright (c) 2015 Loyalty Methods, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Digest/MD2.pm
-----------------
Copyright 1998-2003 Gisle Aas.
Copyright 1990-1992 RSA Data Security, Inc.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Digest/SHA1.pm
-----------------
Copyright 1999-2004 Gisle Aas.
Copyright 1997 Uwe Hollerbach.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI.pm
-----------------
# Copyright (c) 1994-2012 Tim Bunce Ireland
The DBI module is Copyright (c) 1994-2012 Tim Bunce. Ireland.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Compress/Raw/Bzip2.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/Compress/Raw/Zlib.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Gofer/Execute.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Gofer/Transport/pipeone.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Gofer/Transport/Base.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Gofer/Transport/stream.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Gofer/Serializer/DataDumper.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Gofer/Serializer/Storable.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Gofer/Serializer/Base.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Gofer/Request.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Gofer/Response.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
Copyright (c) 2007, Tim Bunce, Ireland. All rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/ProxyServer.pm
-----------------
# Copyright (c) 1997 Jochen Wiedmann
"DBI::ProxyServer $version, Copyright (C) 1998, Jochen Wiedmann";
Copyright (c) 1997 Jochen Wiedmann
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/ProfileDumper/Apache.pm
-----------------
Copyright (C) 2002 Sam Tregar
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/DBD/SqlEngine/Developers.pod
-----------------
Copyright (C) 2010 by H.Merijn Brand & Jens Rehsack
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/DBD/SqlEngine/HowTo.pod
-----------------
Copyright (C) 2010 by H.Merijn Brand & Jens Rehsack
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/DBD/SqlEngine.pm
-----------------
# Copyright (C) 2009-2013 by H.Merijn Brand & Jens Rehsack
# Copyright (C) 2004 by Jeff Zucker
# Copyright (C) 1998 by Jochen Wiedmann
Copyright (C) 2009-2013 by H.Merijn Brand & Jens Rehsack
Copyright (C) 2004-2009 by Jeff Zucker
Copyright (C) 1998-2004 by Jochen Wiedmann
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/DBD/Metadata.pm
-----------------
# Copyright (c) 1997-2003 Jonathan Leffler, Jochen Wiedmann,
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/ProfileDumper.pm
-----------------
Copyright (C) 2002 Sam Tregar
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/SQL/Nano.pm
-----------------
# Copyright (c) 2010 by Jens Rehsack < rehsack AT cpan.org >
# Copyright (c) 2004 by Jeff Zucker < jzucker AT cpan.org >
Copyright (C) 2010 by Jens Rehsack, all rights reserved.
Copyright (C) 2004 by Jeff Zucker, all rights reserved.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Const/GetInfoReturn.pm
-----------------
# Copyright (c) 2002 Tim Bunce Ireland
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Const/GetInfoType.pm
-----------------
# Copyright (c) 2002 Tim Bunce Ireland
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Const/GetInfo/ANSI.pm
-----------------
# Copyright (c) 2002 Tim Bunce Ireland
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Const/GetInfo/ODBC.pm
-----------------
# Copyright (c) 2002 Tim Bunce Ireland
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/ProfileData.pm
-----------------
Copyright (C) 2002 Sam Tregar
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/DBD.pm
-----------------
# Copyright (c) 1997-2006 Jonathan Leffler, Jochen Wiedmann, Steffen
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/PurePerl.pm
-----------------
# Copyright (c) 2002,2003 Tim Bunce Ireland.
Copyright (c) 2002 Tim Bunce Ireland.
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/Util/CacheMemory.pm
-----------------
# Copyright (c) 2007, Tim Bunce, Ireland
perl/lib/site_perl/5.40.2/x86_64-linux-thread-multi/DBI/W32ODBC.pm
-----------------
# Copyright (c) 1997,1999 Tim Bunce
perl/lib/site_perl/5.40.2/Date/Language/Bulgarian.pm
-----------------
Copyright (c) 2010 Krasimir Berov. This program is free
perl/lib/site_perl/5.40.2/Date/Format.pm
-----------------
# Copyright (c) 1995-2009 Graham Barr. This program is free
perl/lib/site_perl/5.40.2/Date/Parse.pm
-----------------
# Copyright (c) 1995-2009 Graham Barr. This program is free
perl/lib/site_perl/5.40.2/Encode/Locale.pm
-----------------
Copyright 2010 Gisle Aas <gisle@aas.no>.
perl/lib/site_perl/5.40.2/Sys/Info/Driver.pm
-----------------
This software is copyright (c) 2006 by Burak Gursoy.
perl/lib/site_perl/5.40.2/Sys/Info/Device.pm
-----------------
This software is copyright (c) 2006 by Burak Gursoy.
perl/lib/site_perl/5.40.2/Sys/Info/OS.pm
-----------------
This software is copyright (c) 2006 by Burak Gursoy.
perl/lib/site_perl/5.40.2/Sys/Info/Constants.pm
-----------------
This software is copyright (c) 2006 by Burak Gursoy.
perl/lib/site_perl/5.40.2/Sys/Info/Helper.pm
-----------------
This software is copyright (c) 2006 by Burak Gursoy.
perl/lib/site_perl/5.40.2/Sys/Info/Base.pm
-----------------
This software is copyright (c) 2006 by Burak Gursoy.
perl/lib/site_perl/5.40.2/Sys/Info/Device/CPU.pm
-----------------
This software is copyright (c) 2006 by Burak Gursoy.
perl/lib/site_perl/5.40.2/Sys/Info.pm
-----------------
This software is copyright (c) 2006 by Burak Gursoy.
perl/lib/site_perl/5.40.2/File/Listing.pm
-----------------
This software is copyright (c) 1996-2020 by Gisle Aas.
perl/lib/site_perl/5.40.2/File/HomeDir/MacOS9.pm
-----------------
Copyright 2005 - 2011 Adam Kennedy.
Copyright 2017 - 2020 Jens Rehsack
Some parts copyright 2000 Sean M. Burke.
perl/lib/site_perl/5.40.2/File/HomeDir/Driver.pm
-----------------
Copyright 2009 - 2011 Adam Kennedy.
Copyright 2017 - 2020 Jens Rehsack
perl/lib/site_perl/5.40.2/File/HomeDir/Darwin.pm
-----------------
Copyright 2009 - 2011 Adam Kennedy.
Copyright 2017 - 2020 Jens Rehsack
perl/lib/site_perl/5.40.2/File/HomeDir/Darwin/Carbon.pm
-----------------
Copyright 2009 - 2011 Adam Kennedy.
Copyright 2017 - 2020 Jens Rehsack
perl/lib/site_perl/5.40.2/File/HomeDir/Darwin/Cocoa.pm
-----------------
Copyright 2009 - 2011 Adam Kennedy.
Copyright 2017 - 2020 Jens Rehsack
perl/lib/site_perl/5.40.2/File/HomeDir/Windows.pm
-----------------
Copyright 2005 - 2011 Adam Kennedy.
Copyright 2017 - 2020 Jens Rehsack
Some parts copyright 2000 Sean M. Burke.
perl/lib/site_perl/5.40.2/File/HomeDir/Unix.pm
-----------------
Copyright 2005 - 2011 Adam Kennedy.
Copyright 2017 - 2020 Jens Rehsack
Some parts copyright 2000 Sean M. Burke.
perl/lib/site_perl/5.40.2/File/HomeDir/Test.pm
-----------------
Copyright 2005 - 2011 Adam Kennedy.
Copyright 2017 - 2020 Jens Rehsack
perl/lib/site_perl/5.40.2/File/HomeDir/FreeDesktop.pm
-----------------
Copyright 2009 - 2011 Jerome Quelin.
Some parts copyright 2010 Adam Kennedy.
Some parts copyright 2017 - 2020 Jens Rehsack
perl/lib/site_perl/5.40.2/File/GlobMapper.pm
-----------------
Copyright (c) 2005 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/File/Which.pm
-----------------
This software is copyright (c) 2002 by Per Einar Ellefsen <pereinar@cpan.org>.
perl/lib/site_perl/5.40.2/File/HomeDir.pm
-----------------
Copyright 2005 - 2012 Adam Kennedy.
Copyright 2017 - 2020 Jens Rehsack
Some parts copyright 2000 Sean M. Burke.
Some parts copyright 2006 Chris Nandor.
Some parts copyright 2006 Stephen Steneker.
Some parts copyright 2009-2011 Jérôme Quelin.
perl/lib/site_perl/5.40.2/Switch.pm
-----------------
Copyright (c) 1997-2008, Damian Conway. All Rights Reserved.
perl/lib/site_perl/5.40.2/Mail/Send.pod
-----------------
Copyrights 1995-2000 Graham Barr E<lt>gbarr@pobox.comE<gt> and
perl/lib/site_perl/5.40.2/Mail/Cap.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Filter.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Filter.pod
-----------------
Copyrights 1995-2000 Graham Barr E<lt>gbarr@pobox.comE<gt> and
perl/lib/site_perl/5.40.2/Mail/Cap.pod
-----------------
Copyrights 1995-2000 Graham Barr E<lt>gbarr@pobox.comE<gt> and
perl/lib/site_perl/5.40.2/Mail/Util.pod
-----------------
Copyrights 1995-2000 Graham Barr E<lt>gbarr@pobox.comE<gt> and
perl/lib/site_perl/5.40.2/Mail/Send.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Address.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Mailer.pod
-----------------
Copyrights 1995-2000 Graham Barr E<lt>gbarr@pobox.comE<gt> and
perl/lib/site_perl/5.40.2/Mail/Field.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Address.pod
-----------------
Copyrights 1995-2000 Graham Barr E<lt>gbarr@pobox.comE<gt> and
perl/lib/site_perl/5.40.2/Mail/Mailer.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Util.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Internet.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Field/Date.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Field/Generic.pod
-----------------
Copyrights 1995-2000 Graham Barr E<lt>gbarr@pobox.comE<gt> and
perl/lib/site_perl/5.40.2/Mail/Field/AddrList.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Field/Date.pod
-----------------
Copyrights 1995-2000 Graham Barr E<lt>gbarr@pobox.comE<gt> and
perl/lib/site_perl/5.40.2/Mail/Field/AddrList.pod
-----------------
Copyrights 1995-2000 Graham Barr E<lt>gbarr@pobox.comE<gt> and
perl/lib/site_perl/5.40.2/Mail/Field/Generic.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Internet.pod
-----------------
Copyrights 1995-2000 Graham Barr E<lt>gbarr@pobox.comE<gt> and
perl/lib/site_perl/5.40.2/Mail/Field.pod
-----------------
Copyrights 1995-2000 Graham Barr E<lt>gbarr@pobox.comE<gt> and
perl/lib/site_perl/5.40.2/Mail/Header.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Sender.pm
-----------------
Copyright (c) 1997-2014 Jan Krynický <F<Jenda@Krynicky.cz>>. All rights reserved.
perl/lib/site_perl/5.40.2/Mail/Mailer/smtp.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Mailer/rfc822.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Mailer/smtps.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Mailer/testfile.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Mailer/sendmail.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Mailer/qmail.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/Mail/Header.pod
-----------------
Copyrights 1995-2000 Graham Barr E<lt>gbarr@pobox.comE<gt> and
perl/lib/site_perl/5.40.2/HTML/FormatPS.pm
-----------------
This software is copyright (c) 2016 by Nigel Metheringham, 2002-2005 Sean M Burke, 1999-2002 Gisle Aas.
perl/lib/site_perl/5.40.2/HTML/FormatMarkdown.pm
-----------------
This software is copyright (c) 2016 by Nigel Metheringham, 2002-2005 Sean M Burke, 1999-2002 Gisle Aas.
perl/lib/site_perl/5.40.2/HTML/Formatter.pm
-----------------
This software is copyright (c) 2016 by Nigel Metheringham, 2002-2005 Sean M Burke, 1999-2002 Gisle Aas.
perl/lib/site_perl/5.40.2/HTML/Form.pm
-----------------
This software is copyright (c) 1998 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTML/FormatText.pm
-----------------
This software is copyright (c) 2016 by Nigel Metheringham, 2002-2005 Sean M Burke, 1999-2002 Gisle Aas.
perl/lib/site_perl/5.40.2/HTML/Tagset.pm
-----------------
Copyright 1995-2000 Gisle Aas.
Copyright 2000-2005 Sean M. Burke.
Copyright 2005-2008 Andy Lester.
perl/lib/site_perl/5.40.2/HTML/FormatRTF.pm
-----------------
This software is copyright (c) 2016 by Nigel Metheringham, 2002-2005 Sean M Burke, 1999-2002 Gisle Aas.
perl/lib/site_perl/5.40.2/MailTools.pod
-----------------
Copyrights 1995-2000 Graham Barr E<lt>gbarr@pobox.comE<gt> and
perl/lib/site_perl/5.40.2/URI/Heuristic.pm
-----------------
Copyright 1997-1998, Gisle Aas
perl/lib/site_perl/5.40.2/URI/file.pm
-----------------
Copyright 1995-1998,2004 Gisle Aas.
perl/lib/site_perl/5.40.2/URI/ldap.pm
-----------------
# Copyright (c) 1998 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1998 Graham Barr. All rights reserved.
perl/lib/site_perl/5.40.2/URI/URL.pm
-----------------
Copyright 1998-2000 Gisle Aas.
perl/lib/site_perl/5.40.2/URI/Split.pm
-----------------
Copyright 2003, Gisle Aas
perl/lib/site_perl/5.40.2/URI/data.pm
-----------------
Copyright 1995-1998 Gisle Aas.
perl/lib/site_perl/5.40.2/URI/Escape.pm
-----------------
Copyright 1995-2004 Gisle Aas.
perl/lib/site_perl/5.40.2/URI/QueryParam.pm
-----------------
Copyright 2002 Gisle Aas.
perl/lib/site_perl/5.40.2/URI/WithBase.pm
-----------------
Copyright 1998-2002 Gisle Aas.
perl/lib/site_perl/5.40.2/URI/_ldap.pm
-----------------
# Copyright (c) 1998 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/MailTools.pm
-----------------
# Copyrights 1995-2019 by [Mark Overmeer <markov@cpan.org>].
perl/lib/site_perl/5.40.2/LWP.pm
-----------------
Copyright 1995-2009, Gisle Aas
Copyright 1995, Martijn Koster
perl/lib/site_perl/5.40.2/RPC/PlClient/Comm.pm
-----------------
# Copyright (c) 1997,1998 Jochen Wiedmann
perl/lib/site_perl/5.40.2/RPC/PlServer/Comm.pm
-----------------
# Copyright (c) 1997,1998 Jochen Wiedmann
perl/lib/site_perl/5.40.2/RPC/PlClient.pm
-----------------
# Copyright (c) 1997, 1998 Jochen Wiedmann
Copyright (C) 1998, Jochen Wiedmann
perl/lib/site_perl/5.40.2/RPC/PlServer.pm
-----------------
# Copyright (c) 1997,1998 Jochen Wiedmann
"RPC::PlServer application, Copyright (C) 1997, 1998, Jochen Wiedmann";
Copyright (C) 1998, Jochen Wiedmann
perl/lib/site_perl/5.40.2/JSON/backportPP/Compat5006.pm
-----------------
Copyright 2007-2012 by Makamaka Hannyaharamitu
perl/lib/site_perl/5.40.2/JSON/backportPP/Compat5005.pm
-----------------
Copyright 2007-2012 by Makamaka Hannyaharamitu
perl/lib/site_perl/5.40.2/JSON/backportPP.pm
-----------------
Copyright 2007-2016 by Makamaka Hannyaharamitu
perl/lib/site_perl/5.40.2/Net/LDAPS.pm
-----------------
# Copyright (c) 2000-2004 Chris Ridd <chris.ridd@isode.com> and
Copyright (c) 2000-2004, Chris Ridd and Graham Barr. All rights reserved. This
perl/lib/site_perl/5.40.2/Net/Daemon/Log.pm
-----------------
# Copyright (C) 1998, Jochen Wiedmann
Net::Daemon is Copyright (C) 1998, Jochen Wiedmann
perl/lib/site_perl/5.40.2/Net/Daemon/Test.pm
-----------------
# Copyright (C) 1998, Jochen Wiedmann
Net::Daemon is Copyright (C) 1998, Jochen Wiedmann
perl/lib/site_perl/5.40.2/Net/HTTPS.pm
-----------------
This software is copyright (c) 2001-2017 by Gisle Aas.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/MatchedValues.pm
-----------------
# Copyright (c) 2011 Peter Marschall <peter@adpm.de>. All rights reserved.
Copyright (c) 2011 Peter Marschall. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/SortResult.pm
-----------------
# Copyright (c) 1999-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1999-2004 Graham Barr. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/PersistentSearch.pm
-----------------
# Copyright (c) 2004 Peter Marschall <peter@adpm.de>. All rights reserved.
Copyright (c) 2004 Peter Marschall. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/Assertion.pm
-----------------
# Copyright (c) 2011 Peter Marschall <peter@adpm.de>. All rights reserved.
Copyright (c) 2011 Peter Marschall. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/Subentries.pm
-----------------
# Copyright (c) 2020 Peter Marschall <peter@adpm.de>. All rights reserved.
Copyright (c) 2020 Peter Marschall. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/SyncDone.pm
-----------------
# Copyright (c) 2008 Mathieu Parent <math.parent@gmail.com>. All rights reserved.
Copyright (c) 2008 Mathieu Parent. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/VLV.pm
-----------------
# Copyright (c) 2000-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 2000-2004 Graham Barr. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/ProxyAuth.pm
-----------------
# Copyright (c) 2001-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 2001-2004 Graham Barr. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/ManageDsaIT.pm
-----------------
# Copyright (c) 2004 Peter Marschall <peter@adpm.de>. All rights reserved.
Copyright (c) 2004 Peter Marschall. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/PasswordPolicy.pm
-----------------
# Copyright (c) 2008 Chris Ridd <chris.ridd@isode.com>. All rights reserved.
Copyright (c) 2008 Chris Ridd. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/DontUseCopy.pm
-----------------
# Copyright (c) 2014 Peter Marschall <peter@adpm.de>. All rights reserved.
Copyright (c) 2014 Peter Marschall. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/Paged.pm
-----------------
# Copyright (c) 2000-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 2000-2004 Graham Barr. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/EntryChange.pm
-----------------
# Copyright (c) 2004 Peter Marschall <peter@adpm.de>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/NoOp.pm
-----------------
# Copyright (c) 2021 Peter Marschall <peter@adpm.de>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/Relax.pm
-----------------
# Copyright (c) 2013 Peter Marschall <peter@adpm.de>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/Sort.pm
-----------------
# Copyright (c) 1999-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/PostRead.pm
-----------------
# Copyright (c) 2008 Peter Marschall <peter@adpm.de>. All rights reserved.
Copyright (c) 2008,2011 Peter Marschall. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/PreRead.pm
-----------------
# Copyright (c) 2008 Peter Marschall <peter@adpm.de>. All rights reserved.
Copyright (c) 2008,2011 Peter Marschall. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/VLVResponse.pm
-----------------
# Copyright (c) 2000-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/SyncState.pm
-----------------
# Copyright (c) 2008 Mathieu Parent <math.parent@gmail.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/TreeDelete.pm
-----------------
# Copyright (c) 2020 Peter Marschall <peter@adpm.de>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control/SyncRequest.pm
-----------------
# Copyright (c) 2008 Mathieu Parent <math.parent@gmail.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Bind.pm
-----------------
# Copyright (c) 1998-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Extra/AD.pm
-----------------
Copyright (c) 2012 Peter Marschall. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/Extra/eDirectory.pm
-----------------
Copyright (c) 2013 Peter Marschall. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/LDIF.pm
-----------------
# Copyright (c) 1997-2008 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Filter.pm
-----------------
# Copyright (c) 1997-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Extra.pm
-----------------
# Copyright (c) 2000-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/FAQ.pod
-----------------
Copyright (c) 1999-2004 Graham Barr, (c) 2012 Peter Marschall. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/FilterMatch.pm
-----------------
# Copyright (c) 2005-2006 Hans Klunder <hans.klunder@bigfoot.com>
# Copyright (c) 2005-2012 Peter Marschall <peter@adpm.de>
perl/lib/site_perl/5.40.2/Net/LDAP/Schema.pm
-----------------
# Copyright (c) 1998-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/RootDSE.pm
-----------------
# Copyright (c) 2003-2004 Chris Ridd <chris.ridd@isode.com> and
Copyright (c) 2003-2004, Chris Ridd and Graham Barr. All rights reserved. This
perl/lib/site_perl/5.40.2/Net/LDAP/DSML.pm
-----------------
# Copyright (c) 2002-2006 Graham Barr. All rights reserved. This program is
Copyright (c) 2002-2006 Graham Barr. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/Filter.pod
-----------------
Copyright (c) 1997-2004 Graham Barr. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/Schema.pod
-----------------
Copyright (c) 1998-2004 Graham Barr. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/Extension/WhoAmI.pm
-----------------
Copyright (c) 2002-2004 Graham Barr. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/Extension/Cancel.pm
-----------------
Copyright (c) 2011 Peter Marschall. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/Extension/SetPassword.pm
-----------------
Copyright (c) 2002-2004 Graham Barr. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/Extension/Refresh.pm
-----------------
Copyright (c) 2010 Etienne Bagnoud. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/Constant.pm
-----------------
# Copyright (c) 1998-2009 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1998-2009 Graham Barr. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/Intermediate.pm
-----------------
# Copyright (c) 2008 Mathieu Parent <math.parent@gmail.com>. All rights reserved.
Copyright (c) 2008 Mathieu Parent. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/Entry.pod
-----------------
Copyright (c) 1997-2004 Graham Barr. All rights reserved. This program
perl/lib/site_perl/5.40.2/Net/LDAP/Entry.pm
-----------------
# Copyright (c) 1997-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Control.pm
-----------------
# Copyright (c) 1999-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1999-2004 Graham Barr. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/Search.pm
-----------------
# Copyright (c) 1997-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Message.pod
-----------------
Copyright (c) 1997-2004 Graham Barr. All rights reserved. This program
perl/lib/site_perl/5.40.2/Net/LDAP/Util.pm
-----------------
# Copyright (c) 1999-2004 Graham Barr <gbarr@pobox.com> and
Copyright (c) 1999-2004 Graham Barr. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/Security.pod
-----------------
Copyright (c) 2001-2004 Chris Ridd. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/LDIF.pod
-----------------
Copyright (c) 1997-2004 Graham Barr. All rights reserved. This program
perl/lib/site_perl/5.40.2/Net/LDAP/Search.pod
-----------------
Copyright (c) 1997-2004 Graham Barr. All rights reserved. This program
perl/lib/site_perl/5.40.2/Net/LDAP/Extension.pm
-----------------
# Copyright (c) 1998-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Message.pm
-----------------
# Copyright (c) 1997-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAP/Reference.pod
-----------------
Copyright (c) 1997-2004 Graham Barr. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/LDAP/Intermediate/SyncInfo.pm
-----------------
# Copyright (c) 2008 Mathieu Parent <math.parent@gmail.com>. All rights reserved.
Copyright (c) 2008 Mathieu Parent. All rights reserved. This program is
perl/lib/site_perl/5.40.2/Net/HTTP/NB.pm
-----------------
This software is copyright (c) 2001-2017 by Gisle Aas.
perl/lib/site_perl/5.40.2/Net/HTTP/Methods.pm
-----------------
This software is copyright (c) 2001-2017 by Gisle Aas.
perl/lib/site_perl/5.40.2/Net/LDAP.pm
-----------------
# Copyright (c) 1997-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Net/LDAPI.pm
-----------------
# Copyright (c) 2003-2004 Derrik Pates <dpates@dsdk12.net> and Graham Barr
Copyright (c) 2003-2004, Derrik Pates and Graham Barr. All
perl/lib/site_perl/5.40.2/Net/Daemon.pm
-----------------
# Copyright (C) 1998, Jochen Wiedmann
"Net::Daemon server, Copyright (C) 1998, Jochen Wiedmann";
Net::Daemon is Copyright (C) 1998, Jochen Wiedmann
perl/lib/site_perl/5.40.2/Net/HTTP.pm
-----------------
This software is copyright (c) 2001-2017 by Gisle Aas.
perl/lib/site_perl/5.40.2/Net/LDAP.pod
-----------------
Copyright (c) 1997-2004 Graham Barr. All rights reserved. This program is
perl/lib/site_perl/5.40.2/LWP/UserAgent.pm
-----------------
Copyright 1995-2009 Gisle Aas.
perl/lib/site_perl/5.40.2/LWP/Protocol/ldaps.pm
-----------------
Copyright (c) 2012 Peter Marschall. All rights reserved. This program is
perl/lib/site_perl/5.40.2/LWP/Protocol/ldap.pm
-----------------
# Copyright (c) 1998-2004 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1998-2004 Graham Barr, 2012 Peter Marschall.
perl/lib/site_perl/5.40.2/LWP/Protocol/ldapi.pm
-----------------
Copyright (c) 2012 Peter Marschall. All rights reserved. This program is
perl/lib/site_perl/5.40.2/LWP/RobotUA.pm
-----------------
Copyright 1996-2004 Gisle Aas.
perl/lib/site_perl/5.40.2/LWP/ConnCache.pm
-----------------
Copyright 2001 Gisle Aas.
perl/lib/site_perl/5.40.2/LWP/Authen/Ntlm.pm
-----------------
Copyright (c) 2002 James Tillman. All rights reserved. This
perl/lib/site_perl/5.40.2/LWP/MediaTypes.pm
-----------------
Copyright 1995-1999 Gisle Aas.
perl/lib/site_perl/5.40.2/LWP/Protocol.pm
-----------------
Copyright 1995-2001 Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Negotiate.pm
-----------------
Copyright 1996,2001 Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Date.pm
-----------------
This software is copyright (c) 1995-2019 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Status.pm
-----------------
This software is copyright (c) 1994 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Headers/Auth.pm
-----------------
This software is copyright (c) 1994 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Headers/Util.pm
-----------------
This software is copyright (c) 1994 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Headers/ETag.pm
-----------------
This software is copyright (c) 1994 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Request.pm
-----------------
This software is copyright (c) 1994 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Config.pm
-----------------
This software is copyright (c) 1994 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Daemon.pm
-----------------
This software is copyright (c) 1995 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Cookies/Netscape.pm
-----------------
This software is copyright (c) 2002 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Cookies/Microsoft.pm
-----------------
Copyright 2002 Johnny Lee
This software is copyright (c) 2002 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Response.pm
-----------------
This software is copyright (c) 1994 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Message.pm
-----------------
This software is copyright (c) 1994 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Request/Common.pm
-----------------
This software is copyright (c) 1994 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Headers.pm
-----------------
This software is copyright (c) 1994 by Gisle Aas.
perl/lib/site_perl/5.40.2/HTTP/Cookies.pm
-----------------
This software is copyright (c) 2002 by Gisle Aas.
perl/lib/site_perl/5.40.2/JSON.pm
-----------------
Copyright 2005-2013 by Makamaka Hannyaharamitu
perl/lib/site_perl/5.40.2/PerlIO/via/Timeout.pm
-----------------
# This software is copyright (c) 2013 by Damien "dams" Krotkine.
This software is copyright (c) 2013 by Damien "dams" Krotkine.
perl/lib/site_perl/5.40.2/URI.pm
-----------------
Copyright 1995-2009 Gisle Aas.
Copyright 1995 Martijn Koster.
perl/lib/site_perl/5.40.2/Compress/Zlib.pm
-----------------
Copyright (c) 1995-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Uncompress/AnyUncompress.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Uncompress/Inflate.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Uncompress/AnyInflate.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Uncompress/RawInflate.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Uncompress/Unzip.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Uncompress/Base.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Uncompress/Gunzip.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Uncompress/Bunzip2.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Compress/Bzip2.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Compress/RawDeflate.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Compress/FAQ.pod
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Compress/Zip.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Compress/Base.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Compress/Gzip.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Compress/Deflate.pm
-----------------
Copyright (c) 2005-2021 Paul Marquess. All rights reserved.
perl/lib/site_perl/5.40.2/IO/Socket/Timeout.pm
-----------------
# This software is copyright (c) 2013 by Damien "dams" Krotkine.
This software is copyright (c) 2013 by Damien "dams" Krotkine.
perl/lib/site_perl/5.40.2/Convert/ASN1.pod
-----------------
Copyright (c) 2000-2012 Graham Barr <gbarr@cpan.org>. All rights reserved.
perl/lib/site_perl/5.40.2/Convert/ASN1/parser.pm
-----------------
;# Copyright (c) 2000-2005 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Convert/ASN1/IO.pm
-----------------
# Copyright (c) 2000-2005 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Convert/ASN1/Debug.pm
-----------------
# Copyright (c) 2000-2005 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Convert/ASN1/_decode.pm
-----------------
# Copyright (c) 2000-2005 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Convert/ASN1/_encode.pm
-----------------
# Copyright (c) 2000-2005 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/Convert/ASN1.pm
-----------------
# Copyright (c) 2000-2002 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/site_perl/5.40.2/libwww/lwpcook.pod
-----------------
Copyright 1996-2001, Gisle Aas
perl/lib/site_perl/5.40.2/libwww/lwptut.pod
-----------------
Copyright 2002, Sean M. Burke. You can redistribute this document and/or
perl/lib/5.40.2/x86_64-linux-thread-multi/IPC/Semaphore.pm
-----------------
# Version 2.x, Copyright (C) 2007-2013, Marcus Holland-Moritz <mhx@cpan.org>.
# Version 1.x, Copyright (C) 1997, Graham Barr <gbarr@pobox.com>.
Version 2.x, Copyright (C) 2007-2013, Marcus Holland-Moritz.
Version 1.x, Copyright (c) 1997, Graham Barr.
perl/lib/5.40.2/x86_64-linux-thread-multi/IPC/SharedMem.pm
-----------------
# Version 2.x, Copyright (C) 2007-2013, Marcus Holland-Moritz <mhx@cpan.org>.
# Version 1.x, Copyright (C) 1997, Graham Barr <gbarr@pobox.com>.
Version 2.x, Copyright (C) 2007-2013, Marcus Holland-Moritz.
Version 1.x, Copyright (c) 1997, Graham Barr.
perl/lib/5.40.2/x86_64-linux-thread-multi/IPC/SysV.pm
-----------------
# Version 2.x, Copyright (C) 2007-2013, Marcus Holland-Moritz <mhx@cpan.org>.
# Version 1.x, Copyright (C) 1997, Graham Barr <gbarr@pobox.com>.
Version 2.x, Copyright (C) 2007-2013, Marcus Holland-Moritz.
Version 1.x, Copyright (c) 1997, Graham Barr.
perl/lib/5.40.2/x86_64-linux-thread-multi/IPC/Msg.pm
-----------------
# Version 2.x, Copyright (C) 2007-2013, Marcus Holland-Moritz <mhx@cpan.org>.
# Version 1.x, Copyright (C) 1997, Graham Barr <gbarr@pobox.com>.
Version 2.x, Copyright (C) 2007-2013, Marcus Holland-Moritz.
Version 1.x, Copyright (c) 1997, Graham Barr.
perl/lib/5.40.2/x86_64-linux-thread-multi/MIME/QuotedPrint.pm
-----------------
Copyright 1995-1997,2002-2004 Gisle Aas.
perl/lib/5.40.2/x86_64-linux-thread-multi/MIME/Base64.pm
-----------------
Copyright 1995-1999, 2001-2004, 2010 Gisle Aas.
This library is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
Distantly based on LWP::Base64 written by Martijn Koster
<m.koster@nexor.co.uk> and Joerg Reichelt <j.reichelt@nexor.co.uk> and
code posted to comp.lang.perl <3pd2lp$6gf@wsinti07.win.tue.nl> by Hans
Mulder <hansm@wsinti07.win.tue.nl>
The XS implementation uses code from metamail. Copyright 1991 Bell
Communications Research, Inc. (Bellcore)
perl/lib/5.40.2/x86_64-linux-thread-multi/Encode.pm
-----------------
Copyright 2002-2014 Dan Kogai I<< <dankogai@cpan.org> >>.
perl/lib/5.40.2/x86_64-linux-thread-multi/Time/HiRes.pm
-----------------
Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.
Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Jarkko Hietaniemi.
Copyright (C) 2011, 2012, 2013 Andrew Main (Zefram) <zefram@fysh.org>
perl/lib/5.40.2/x86_64-linux-thread-multi/Time/Piece.pm
-----------------
Copyright 2001, Larry Wall.
perl/lib/5.40.2/x86_64-linux-thread-multi/Time/Seconds.pm
-----------------
Copyright 2001, Larry Wall.
perl/lib/5.40.2/x86_64-linux-thread-multi/Sys/Syslog.pm
-----------------
Copyright (C) 1990-2012 by Larry Wall and others.
perl/lib/5.40.2/x86_64-linux-thread-multi/Cwd.pm
-----------------
Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.
Portions of the C code in this library are copyright (c) 1994 by the
Regents of the University of California. All rights reserved. The
license on this code is compatible with the licensing of the rest of
the distribution - please see the source code in F<Cwd.xs> for the
details.
perl/lib/5.40.2/x86_64-linux-thread-multi/Scalar/Util.pm
-----------------
# Copyright (c) 1997-2007 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1997-2007 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1999 Tuomas J. Lukka <lukka@iki.fi>. All rights reserved.
Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.
Copyright (C) 2014 cPanel Inc. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/Filter/Util/Call.pm
-----------------
# Copyright (c) 1995-2011 Paul Marquess. All rights reserved.
# Copyright (c) 2011-2014 Reini Urban. All rights reserved.
# Copyright (c) 2014-2017 cPanel Inc. All rights reserved.
Copyright (c) 1995-2011 Paul Marquess. All rights reserved.
Copyright (c) 2011-2014 Reini Urban. All rights reserved.
Copyright (c) 2014-2017 cPanel Inc. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/Errno.pm
-----------------
Copyright (c) 1997-8 Graham Barr. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/File/Glob.pm
-----------------
Copyright (c) 1989, 1993 The Regents of the University of California.
perl/lib/5.40.2/x86_64-linux-thread-multi/File/Spec.pm
-----------------
Copyright (c) 2004-2013 by the Perl 5 Porters. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/File/Spec/Epoc.pm
-----------------
Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/File/Spec/VMS.pm
-----------------
Copyright (c) 2004-14 by the Perl 5 Porters. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/File/Spec/Functions.pm
-----------------
Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/File/Spec/Unix.pm
-----------------
Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/File/Spec/OS2.pm
-----------------
Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/File/Spec/Win32.pm
-----------------
Copyright (c) 2004,2007 by the Perl 5 Porters. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/File/Spec/Cygwin.pm
-----------------
Copyright (c) 2004,2007 by the Perl 5 Porters. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/File/Spec/Mac.pm
-----------------
Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/mro.pm
-----------------
# Copyright (c) 2007 Brandon L Black
# Copyright (c) 2008,2009 Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/I18N/Langinfo.pm
-----------------
Copyright 2001 by Jarkko Hietaniemi
perl/lib/5.40.2/x86_64-linux-thread-multi/Data/Dumper.pm
-----------------
Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/DB_File.pm
-----------------
# Copyright (c) 1995-2022 Paul Marquess. All rights reserved.
Copyright (c) 1995-2022 Paul Marquess. All rights reserved. This program
perl/lib/5.40.2/x86_64-linux-thread-multi/Sub/Util.pm
-----------------
# Copyright (c) 2014 Paul Evans <leonerd@leonerd.org.uk>. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/util.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1999, 2001, 2002, 2003, 2004, 2005,
* 2007, by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/gv.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
* 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/regexp.h
-----------------
* Copyright (C) 1993, 1994, 1996, 1997, 1999, 2000, 2001, 2003,
* 2005, 2006, 2007, 2008 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/thread.h
-----------------
* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
* by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/perlsdio.h
-----------------
* Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001,
* 2002, 2003, 2006, 2007, 2008 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/EXTERN.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999,
* 2000, 2001, by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/perl.h
-----------------
* Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
* 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others
/* The tables below are adapted from
* https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this copyright
* notice:
Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/dosish.h
-----------------
* Copyright (C) 1993, 1994, 1996, 1997, 1998, 1999,
* 2000, 2001, 2002, 2007, by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/form.h
-----------------
* Copyright (C) 1991, 1992, 1993, 2000, 2004, 2011 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/reentr.h
-----------------
* Copyright (C) 2002, 2003, 2005, 2006, 2007 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/regcomp.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
* 2000, 2001, 2002, 2003, 2005, 2006, 2007, by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/embed.h
-----------------
* Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
* 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/sv_inline.h
-----------------
* Copyright (C) 2022 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/pad.h
-----------------
* Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008,
* 2009, 2010, 2011 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/nostdio.h
-----------------
* Copyright (C) 1996, 2000, 2001, 2005, by Larry Wall and others
* 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/XSUB.h
-----------------
* Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
* 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/fakesdio.h
-----------------
* Copyright (C) 2000, by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/mg.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1999,
* 2000, 2002, 2005, 2006, 2007, 2008 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/av.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000,
* 2001, 2002, 2005, 2006, 2007, 2008, by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/utfebcdic.h
-----------------
* Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007, 2009,
* 2010, 2011 by Larry Wall, Nick Ing-Simmons, and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/INTERN.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1995, 1996, 1998, 2000, 2001,
* by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/invlist_inline.h
-----------------
* Copyright (C) 2012 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/op.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
* 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/pp.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
* 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/perly.h
-----------------
/* A Bison parser, made by GNU Bison 3.6.4. */
/* Bison interface for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 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.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual,
especially those whose name start with YY_ or yy_. They are
private implementation details that can be changed or removed. */
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/ebcdic_tables.h
-----------------
/* This file contains definitions for various tables used in EBCDIC handling.
* More info is in utfebcdic.h
*
* Some of the tables are adapted from
* https://bjoern.hoehrmann.de/utf-8/decoder/dfa/
* which requires this copyright notice:
Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/parser.h
-----------------
* Copyright (c) 2006, 2007, 2009, 2010, 2011 Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/intrpvar.h
-----------------
* Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
* 2006, 2007, 2008 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/patchlevel.h
-----------------
* Copyright (C) 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
* 2003, 2004, 2005, 2006, 2007, 2008, 2009, by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/hv.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999,
* 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2008, by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/utf8.h
-----------------
* Copyright (C) 2000, 2001, 2002, 2005, 2006, 2007, 2009,
* 2010, 2011 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/cv.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001,
* 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/regcharclass.h
-----------------
* Copyright (C) 2007, 2011 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/proto.h
-----------------
* Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
* 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/handy.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000,
* 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2012 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/embedvar.h
-----------------
* Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
* 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/perlapi.h
-----------------
* Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
* 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/op_reg_common.h
-----------------
* Copyright (C) 2010, 2011 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/perlvars.h
-----------------
* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
* by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/keywords.h
-----------------
* Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2005,
* 2006, 2007 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/cop.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
* 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/scope.h
-----------------
* Copyright (C) 1993, 1994, 1996, 1997, 1998, 1999, 2000, 2001,
* 2002, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/sv.h
-----------------
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
* 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/overload.h
-----------------
* Copyright (C) 1997, 1998, 2000, 2001, 2005, 2006, 2007, 2011
* by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/mydtrace.h
-----------------
* Copyright (C) 2008, 2010, 2011 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/opcode.h
-----------------
* Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
* 2002, 2003, 2004, 2005, 2006, 2007 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/perlio.h
-----------------
* Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003,
* 2004, 2005, 2006, 2007, by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/inline.h
-----------------
* Copyright (C) 2012 by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
* This file contains tables and code adapted from
* https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this
* copyright notice:
Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/unixish.h
-----------------
* Copyright (C) 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002,
* 2003, 2006, 2007, by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/CORE/opnames.h
-----------------
* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
* 2008 by Larry Wall and others
perl/lib/5.40.2/x86_64-linux-thread-multi/Unicode/Collate/Locale.pm
-----------------
This module is Copyright(C) 2004-2020, SADAHIRO Tomoyuki. Japan.
perl/lib/5.40.2/x86_64-linux-thread-multi/Unicode/Normalize.pm
-----------------
Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/Unicode/Collate.pm
-----------------
The Unicode::Collate module for perl was written by SADAHIRO Tomoyuki,
<SADAHIRO@cpan.org>. This module is Copyright(C) 2001-2021,
SADAHIRO Tomoyuki. Japan. All rights reserved.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
The file Unicode/Collate/allkeys.txt was copied verbatim
from L<http://www.unicode.org/Public/UCA/13.0.0/allkeys.txt>.
For this file, Copyright (c) 2020 Unicode, Inc.; distributed
under the Terms of Use in L<http://www.unicode.org/terms_of_use.html>
perl/lib/5.40.2/x86_64-linux-thread-multi/List/Util.pm
-----------------
# Copyright (c) 1997-2009 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1997-2007 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/List/Util/XS.pm
-----------------
Copyright (c) 2008 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/B/Concise.pm
-----------------
# Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/Digest/MD5.pm
-----------------
Copyright 1998-2003 Gisle Aas.
Copyright 1995-1996 Neil Winton.
Copyright 1991-1992 RSA Data Security, Inc.
Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/Digest/SHA.pm
-----------------
Copyright (C) 2003-2023 Mark Shelor, All Rights Reserved
perl/lib/5.40.2/x86_64-linux-thread-multi/Storable.pm
-----------------
# Copyright (c) 1995-2001, Raphael Manfredi
# Copyright (c) 2002-2014 by the Perl 5 Porters
# Copyright (c) 2015-2016 cPanel Inc
# Copyright (c) 2017 Reini Urban
perl/lib/5.40.2/x86_64-linux-thread-multi/Compress/Raw/Bzip2.pm
-----------------
Copyright (c) 2005-2022 Paul Marquess. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/Compress/Raw/Zlib.pm
-----------------
Copyright (c) 2005-2022 Paul Marquess. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/Devel/PPPort.pm
-----------------
# Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.
# Copyright (C) 2018, The perl5 porters
# Version 2.x, Copyright (C) 2001, Paul Marquess.
# Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.
Copyright (C) 2018-2020, The perl5 porters
Version 2.x, Copyright (C) 2001, Paul Marquess.
Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
perl/lib/5.40.2/x86_64-linux-thread-multi/Devel/Peek.pm
-----------------
Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/IO/Poll.pm
-----------------
# Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/IO/Select.pm
-----------------
# Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/IO/Pipe.pm
-----------------
# Copyright (c) 1996-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1996-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/IO/Socket.pm
-----------------
# Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
The atmark() implementation: Copyright 2001, Lincoln Stein <lstein@cshl.org>.
perl/lib/5.40.2/x86_64-linux-thread-multi/IO/Socket/UNIX.pm
-----------------
# Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1996-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/IO/Socket/INET.pm
-----------------
# Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1996-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/IO/Dir.pm
-----------------
# Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
Copyright (c) 1997-2003 Graham Barr <gbarr@pobox.com>. All rights reserved.
perl/lib/5.40.2/x86_64-linux-thread-multi/B.pm
-----------------
# Copyright (c) 1996, 1997, 1998 Malcolm Beattie
perl/lib/5.40.2/x86_64-linux-thread-multi/Hash/Util.pm
-----------------
hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.
perl/lib/5.40.2/x86_64-linux-thread-multi/Hash/Util/FieldHash.pm
-----------------
Copyright (C) 2006-2007 by (Anno Siegel)
perl/lib/5.40.2/Digest.pm
-----------------
Copyright 1998-2006 Gisle Aas.
Copyright 1995,1996 Neil Winton.
perl/lib/5.40.2/App/Cpan.pm
-----------------
Copyright (c) 2001-2021, brian d foy, All Rights Reserved.
perl/lib/5.40.2/encoding/warnings.pm
-----------------
Copyright 2004, 2005, 2006, 2007 by Audrey Tang E<lt>cpan@audreyt.orgE<gt>.
perl/lib/5.40.2/SelfLoader.pm
-----------------
Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2000, 2001, 2002, 2003, 2004, 2005, 2006 by Larry Wall and others
perl/lib/5.40.2/Text/Wrap.pm
-----------------
Copyright (C) 1996-2009 David Muir Sharnoff.
Copyright (C) 2012-2013 Google, Inc.
perl/lib/5.40.2/Text/Balanced.pm
-----------------
# Copyright (C) 1997-2001 Damian Conway. All rights reserved.
# Copyright (C) 2009 Adam Kennedy.
# Copyright (C) 2015 Steve Hay. All rights reserved.
Copyright (C) 1997-2001 Damian Conway. All rights reserved.
Copyright (C) 2009 Adam Kennedy.
Copyright (C) 2015, 2020 Steve Hay. All rights reserved.
perl/lib/5.40.2/Text/Tabs.pm
-----------------
Copyright (C) 1996-2002,2005,2006 David Muir Sharnoff.
Copyright (C) 2005 Aristotle Pagaltzis
Copyright (C) 2012-2013 Google, Inc.
perl/lib/5.40.2/Time/Local.pm
-----------------
This software is copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.
perl/lib/5.40.2/constant.pm
-----------------
Copyright (C) 1997, 1999 Tom Phoenix
perl/lib/5.40.2/Encode/README.e2x
-----------------
Copyright (C) 2002 Your Name <your@address.domain>
perl/lib/5.40.2/overload/numbers.pm
-----------------
# Copyright (C) 2008 by Larry Wall and others
perl/lib/5.40.2/Filter/Simple.pm
-----------------
Copyright (c) 2000-2014, Damian Conway. All Rights Reserved.
perl/lib/5.40.2/Term/Cap.pm
-----------------
Copyright 1995-2015 (c) perl5 porters.
perl/lib/5.40.2/Term/ANSIColor.pm
-----------------
Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery
Copyright 1996 Zenin
Copyright 2012 Kurt Starsinic <kstarsinic@gmail.com>
perl/lib/5.40.2/File/Copy.pm
-----------------
# Additions copyright 1996 by Charles Bailey. Permission is granted
perl/lib/5.40.2/File/Path.pm
-----------------
This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,
perl/lib/5.40.2/File/Temp.pm
-----------------
This software is copyright (c) 2020 by Tim Jenness and the UK Particle Physics and Astronomy Research Council.
perl/lib/5.40.2/File/GlobMapper.pm
-----------------
Copyright (c) 2005 Paul Marquess. All rights reserved.
perl/lib/5.40.2/Test2.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Parse/CPAN/Meta.pm
-----------------
This software is copyright (c) 2010 by David Golden, Ricardo Signes, Adam Kennedy and Contributors.
perl/lib/5.40.2/XSLoader.pm
-----------------
Copyright (C) 1990-2011 by Larry Wall and others.
perl/lib/5.40.2/I18N/LangTags/Detect.pm
-----------------
Copyright (c) 1998-2004 Sean M. Burke. All rights reserved.
perl/lib/5.40.2/I18N/LangTags/List.pm
-----------------
Copyright (c) 2001+ Sean M. Burke. All rights reserved.
perl/lib/5.40.2/I18N/LangTags.pm
-----------------
Copyright (c) 1998+ Sean M. Burke. All rights reserved.
perl/lib/5.40.2/Module/Metadata.pm
-----------------
Original code Copyright (c) 2001-2011 Ken Williams.
Additional code Copyright (c) 2010-2011 Matt Trout and David Golden.
perl/lib/5.40.2/Module/CoreList.pod
-----------------
Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.
perl/lib/5.40.2/Module/CoreList/Utils.pm
-----------------
Copyright (C) 2013 Chris Williams. All Rights Reserved.
perl/lib/5.40.2/Tie/File.pm
-----------------
C<Tie::File> version 0.96 is copyright (C) 2003 Mark Jason Dominus.
perl/lib/5.40.2/Tie/RefHash.pm
-----------------
This software is copyright (c) 2006 by יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>.
perl/lib/5.40.2/JSON/PP.pm
-----------------
Copyright 2007-2016 by Makamaka Hannyaharamitu
perl/lib/5.40.2/deprecate.pm
-----------------
Copyright (C) 2009, 2011
perl/lib/5.40.2/Carp.pm
-----------------
Copyright (C) 1994-2013 Larry Wall
Copyright (C) 2011, 2012, 2013 Andrew Main (Zefram) <zefram@fysh.org>
perl/lib/5.40.2/Unicode/Collate/allkeys.txt
-----------------
# Copyright 2020 Unicode, Inc.
perl/lib/5.40.2/NEXT.pm
-----------------
Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.
perl/lib/5.40.2/Net/POP3.pm
-----------------
# Copyright (C) 1995-2004 Graham Barr. All rights reserved.
# Copyright (C) 2013-2016, 2020 Steve Hay. All rights reserved.
Copyright (C) 1995-2004 Graham Barr. All rights reserved.
Copyright (C) 2013-2016, 2020 Steve Hay. All rights reserved.
perl/lib/5.40.2/Net/Domain.pm
-----------------
# Copyright (C) 1995-1998 Graham Barr. All rights reserved.
# Copyright (C) 2013-2014, 2020 Steve Hay. All rights reserved.
Copyright (C) 1995-1998 Graham Barr. All rights reserved.
Copyright (C) 2013-2014, 2020 Steve Hay. All rights reserved.
perl/lib/5.40.2/Net/Time.pm
-----------------
# Copyright (C) 1995-2004 Graham Barr. All rights reserved.
# Copyright (C) 2014, 2020 Steve Hay. All rights reserved.
Copyright (C) 1995-2004 Graham Barr. All rights reserved.
Copyright (C) 2014, 2020 Steve Hay. All rights reserved.
perl/lib/5.40.2/Net/FTP.pm
-----------------
# Copyright (C) 1995-2004 Graham Barr. All rights reserved.
# Copyright (C) 2013-2017, 2020 Steve Hay. All rights reserved.
Copyright (C) 1995-2004 Graham Barr. All rights reserved.
Copyright (C) 2013-2017, 2020 Steve Hay. All rights reserved.
perl/lib/5.40.2/Net/Config.pm
-----------------
# Copyright (C) 2000 Graham Barr. All rights reserved.
# Copyright (C) 2013-2014, 2016, 2020 Steve Hay. All rights reserved.
Copyright (C) 2000 Graham Barr. All rights reserved.
Copyright (C) 2013-2014, 2016, 2020 Steve Hay. All rights reserved.
perl/lib/5.40.2/Net/Cmd.pm
-----------------
# Copyright (C) 1995-2006 Graham Barr. All rights reserved.
# Copyright (C) 2013-2016, 2020 Steve Hay. All rights reserved.
Copyright (C) 1995-2006 Graham Barr. All rights reserved.
Copyright (C) 2013-2016, 2020 Steve Hay. All rights reserved.
perl/lib/5.40.2/Net/Ping.pm
-----------------
Copyright (c) 2017-2020, Reini Urban. All rights reserved.
Copyright (c) 2016, cPanel Inc. All rights reserved.
Copyright (c) 2012, Steve Peters. All rights reserved.
Copyright (c) 2002-2003, Rob Brown. All rights reserved.
Copyright (c) 2001, Colin McMillen. All rights reserved.
perl/lib/5.40.2/Net/Netrc.pm
-----------------
# Copyright (C) 1995-1998 Graham Barr. All rights reserved.
# Copyright (C) 2013-2014, 2020 Steve Hay. All rights reserved.
Copyright (C) 1995-1998 Graham Barr. All rights reserved.
Copyright (C) 2013-2014, 2020 Steve Hay. All rights reserved.
perl/lib/5.40.2/Net/FTP/dataconn.pm
-----------------
Copyright (C) 1997-2010 Graham Barr. All rights reserved.
Copyright (C) 2013-2014, 2020 Steve Hay. All rights reserved.
perl/lib/5.40.2/Net/NNTP.pm
-----------------
# Copyright (C) 1995-1997 Graham Barr. All rights reserved.
# Copyright (C) 2013-2016, 2020 Steve Hay. All rights reserved.
Copyright (C) 1995-1997 Graham Barr. All rights reserved.
Copyright (C) 2013-2016, 2020 Steve Hay. All rights reserved.
perl/lib/5.40.2/Net/SMTP.pm
-----------------
# Copyright (C) 1995-2004 Graham Barr. All rights reserved.
# Copyright (C) 2013-2016, 2020 Steve Hay. All rights reserved.
Copyright (C) 1995-2004 Graham Barr. All rights reserved.
Copyright (C) 2013-2016, 2020 Steve Hay. All rights reserved.
perl/lib/5.40.2/Net/libnetFAQ.pod
-----------------
Copyright (C) 1997-1998 Graham Barr. All rights reserved.
perl/lib/5.40.2/AutoSplit.pm
-----------------
This package has the same copyright and license as the perl core:
Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
by Larry Wall and others
perl/lib/5.40.2/if.pm
-----------------
This software is copyright (c) 2002 by Ilya Zakharevich.
perl/lib/5.40.2/FindBin.pm
-----------------
# Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.
Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.
perl/lib/5.40.2/ExtUtils/MakeMaker/Locale.pm
-----------------
Copyright 2010 Gisle Aas <gisle@aas.no>.
perl/lib/5.40.2/ExtUtils/Typemaps/Type.pm
-----------------
Copyright 2009, 2010, 2011, 2012 Steffen Mueller
perl/lib/5.40.2/ExtUtils/Typemaps/Cmd.pm
-----------------
Copyright 2012 Steffen Mueller
perl/lib/5.40.2/ExtUtils/Typemaps/OutputMap.pm
-----------------
Copyright 2009, 2010, 2011, 2012 Steffen Mueller
perl/lib/5.40.2/ExtUtils/Typemaps/InputMap.pm
-----------------
Copyright 2009, 2010, 2011, 2012 Steffen Mueller
perl/lib/5.40.2/ExtUtils/Manifest.pm
-----------------
This software is copyright (c) 1996- by Andreas Koenig.
perl/lib/5.40.2/ExtUtils/CBuilder.pm
-----------------
Copyright (c) 2003-2005 Ken Williams. All rights reserved.
perl/lib/5.40.2/ExtUtils/PL2Bat.pm
-----------------
This software is copyright (c) 2015 by Leon Timmermans.
perl/lib/5.40.2/ExtUtils/ParseXS.pod
-----------------
Copyright 2002-2014 by Ken Williams, David Golden and other contributors. All
rights reserved.
perl/lib/5.40.2/ExtUtils/Miniperl.pm
-----------------
* Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003,
* 2004, 2005, 2006, 2007, 2016 by Larry Wall and others
perl/lib/5.40.2/ExtUtils/Typemaps.pm
-----------------
Copyright 2009, 2010, 2011, 2012, 2013 Steffen Mueller
perl/lib/5.40.2/Memoize.pm
-----------------
# Copyright 1998, 1999, 2000, 2001, 2012 M. J. Dominus.
Copyright 1998, 1999, 2000, 2001, 2012 by Mark Jason Dominus
perl/lib/5.40.2/pod/perlthrtut.pod
-----------------
The original version of this article originally appeared in The Perl
Journal #10, and is copyright 1998 The Perl Journal. It appears courtesy
of Jon Orwant and The Perl Journal. This document may be distributed
under the same terms as Perl itself.
perl/lib/5.40.2/pod/perlreapi.pod
-----------------
Copyright 2006 Yves Orton and 2007 E<AElig>var ArnfjE<ouml>rE<eth> Bjarmason.
perl/lib/5.40.2/pod/perlfilter.pod
-----------------
Journal #11, and is copyright 1998 The Perl Journal. It appears
perl/lib/5.40.2/pod/perlfaq5.pod
-----------------
Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and
other authors as noted. All rights reserved.
perl/lib/5.40.2/pod/perlperf.pod
-----------------
Richard Foley <richard.foley@rfi.net> Copyright (c) 2008
perl/lib/5.40.2/pod/perlfaq8.pod
-----------------
Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and
other authors as noted. All rights reserved.
perl/lib/5.40.2/pod/perlfaq6.pod
-----------------
Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and
other authors as noted. All rights reserved.
perl/lib/5.40.2/pod/perlrequick.pod
-----------------
Copyright (c) 2000 Mark Kvale
perl/lib/5.40.2/pod/perldebtut.pod
-----------------
Richard Foley <richard.foley@rfi.net> Copyright (c) 2000
perl/lib/5.40.2/pod/perlfaq4.pod
-----------------
Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and
perl/lib/5.40.2/pod/perlretut.pod
-----------------
Copyright (c) 2000 Mark Kvale.
perl/lib/5.40.2/pod/perlfaq2.pod
-----------------
Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and
perl/lib/5.40.2/pod/perlfaq7.pod
-----------------
Copyright (c) 1997-2013 Tom Christiansen, Nathan Torkington, and
perl/lib/5.40.2/pod/perlreftut.pod
-----------------
Copyright 1998 The Perl Journal.
perl/lib/5.40.2/pod/perlfaq9.pod
-----------------
Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and
perl/lib/5.40.2/pod/perlmodinstall.pod
-----------------
Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.
perl/lib/5.40.2/pod/perlembed.pod
-----------------
Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All
perl/lib/5.40.2/pod/perlpodstyle.pod
-----------------
Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ
Allbery <rra@cpan.org>
perl/lib/5.40.2/pod/perlfaq3.pod
-----------------
Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and
perl/lib/5.40.2/pod/perlfaq1.pod
-----------------
Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and
perl/lib/5.40.2/pod/perlunicook.pod
-----------------
Copyright © 2012 Tom Christiansen.
perl/lib/5.40.2/pod/perlopentut.pod
-----------------
Copyright 2013 Tom Christiansen; now maintained by Perl5 Porters
perl/lib/5.40.2/pod/perlglossary.pod
-----------------
Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.
perl/lib/5.40.2/pod/perlexperiment.pod
-----------------
Copyright 2010, brian d foy C<< <brian.d.foy@gmail.com> >>
perl/lib/5.40.2/pod/perluniintro.pod
-----------------
Copyright 2001-2011 Jarkko Hietaniemi E<lt>jhi@iki.fiE<gt>.
perl/lib/5.40.2/pod/perlgpl.pod
-----------------
Copyright (C) 1989 Free Software Foundation, Inc.
perl/lib/5.40.2/B/Op_private.pm
-----------------
# Copyright (C) 2014 by Larry Wall and others
perl/lib/5.40.2/B/Deparse.pm
-----------------
# Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.
perl/lib/5.40.2/Getopt/Long.pm
-----------------
This program is Copyright 1990,2015 by Johan Vromans.
perl/lib/5.40.2/HTTP/Tiny.pm
-----------------
This software is copyright (c) 2021 by Christian Hansen.
his software is copyright (c) 2023 by Christian Hansen.
perl/lib/5.40.2/Perl/OSType.pm
-----------------
This software is copyright (c) 2016 by David Golden.
perl/lib/5.40.2/AutoLoader.pm
-----------------
Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
2011, 2012, 2013
by Larry Wall and others
perl/lib/5.40.2/experimental.pm
-----------------
This software is copyright (c) 2013 by Leon Timmermans.
perl/lib/5.40.2/Locale/Maketext.pod
-----------------
Copyright (c) 1999-2004 Sean M. Burke. All rights reserved.
perl/lib/5.40.2/Locale/Maketext/Simple.pm
-----------------
Copyright 2003, 2004, 2005, 2006 by Audrey Tang E<lt>cpan@audreyt.orgE<gt>.
This software is released under the MIT license cited below. Additionally,
when this software is distributed with B<Perl Kit, Version 5>, you may also
redistribute it and/or modify it under the same terms as Perl itself.
perl/lib/5.40.2/Test.pm
-----------------
Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.
Copyright (c) 2001-2002 Michael G. Schwern.
Copyright (c) 2002-2004 Sean M. Burke.
perl/lib/5.40.2/TAP/Parser/YAMLish/Writer.pm
-----------------
Copyright 2007-2011 Andy Armstrong.
perl/lib/5.40.2/TAP/Parser/YAMLish/Reader.pm
-----------------
Copyright 2007-2011 Andy Armstrong.
Portions copyright 2006-2008 Adam Kennedy.
perl/lib/5.40.2/TAP/Parser.pm
-----------------
Copyright 2006-2008 Curtis "Ovid" Poe, all rights reserved.
perl/lib/5.40.2/PerlIO/via/QuotedPrint.pm
-----------------
# Copyright (C) 2002-2004, 2012 Elizabeth Mattijsen. All rights reserved.
# Copyright (C) 2015 Steve Hay. All rights reserved.
Copyright (C) 2002-2004, 2012 Elizabeth Mattijsen. All rights reserved.
Copyright (C) 2015, 2020 Steve Hay. All rights reserved.
perl/lib/5.40.2/autodie/exception.pm
-----------------
Copyright (C)2008 Paul Fenwick
perl/lib/5.40.2/autodie/hints.pm
-----------------
Copyright 2009, Paul Fenwick E<lt>pjf@perltraining.com.auE<gt>
perl/lib/5.40.2/autodie/skip.pm
-----------------
Copyright 2013, Paul Fenwick <pjf@cpan.org>
perl/lib/5.40.2/autodie/Util.pm
-----------------
Copyright 2013-2014, Niels Thykier E<lt>niels@thykier.netE<gt>
perl/lib/5.40.2/autodie/Scope/Guard.pm
-----------------
Copyright 2008-2009, Paul Fenwick E<lt>pjf@perltraining.com.auE<gt>
perl/lib/5.40.2/autodie/Scope/GuardStack.pm
-----------------
Copyright 2013, Niels Thykier E<lt>niels@thykier.netE<gt>
perl/lib/5.40.2/autodie/exception/system.pm
-----------------
Copyright (C)2008 Paul Fenwick
perl/lib/5.40.2/autodie.pm
-----------------
Copyright 2008-2009, Paul Fenwick E<lt>pjf@perltraining.com.auE<gt>
perl/lib/5.40.2/Compress/Zlib.pm
-----------------
Copyright (c) 1995-2022 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Zlib.pm
-----------------
# Copyright (c) 1998-2004 Tom Hughes <tom@compton.nu>.
Copyright (c) 1998-2004 Tom Hughes E<lt>F<tom@compton.nu>E<gt>.
perl/lib/5.40.2/IO/Uncompress/AnyUncompress.pm
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Uncompress/Inflate.pm
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Uncompress/AnyInflate.pm
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Uncompress/RawInflate.pm
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Uncompress/Unzip.pm
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Uncompress/Base.pm
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Uncompress/Gunzip.pm
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Uncompress/Bunzip2.pm
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Compress/Bzip2.pm
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Compress/RawDeflate.pm
-----------------
Copyright (c) 2005-20223
perl/lib/5.40.2/IO/Compress/FAQ.pod
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Compress/Zip.pm
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Compress/Base.pm
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Compress/Gzip.pm
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/IO/Compress/Deflate.pm
-----------------
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
perl/lib/5.40.2/Attribute/Handlers.pm
-----------------
Copyright (c) 2001-2014, Damian Conway. All Rights Reserved.
perl/lib/5.40.2/Test/Simple.pm
-----------------
Copyright 2001-2008 by Michael G Schwern E<lt>schwern@pobox.comE<gt>.
perl/lib/5.40.2/Test/Builder/TodoDiag.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test/Builder/Formatter.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test/Builder/Tester/Color.pm
-----------------
Copyright Mark Fowler E<lt>mark@twoshortplanks.comE<gt> 2002.
perl/lib/5.40.2/Test/Builder/IO/Scalar.pm
-----------------
Copyright (c) 1996 by Eryq. All rights reserved.
Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.
perl/lib/5.40.2/Test/Builder/Tester.pm
-----------------
Copyright Mark Fowler E<lt>mark@twoshortplanks.comE<gt> 2002, 2004.
Some code taken from L<Test::More> and L<Test::Catch>, written by
Michael G Schwern E<lt>schwern@pobox.comE<gt>. Hence, those parts
Copyright Micheal G Schwern 2001. Used and distributed with
permission.
perl/lib/5.40.2/Test/Tutorial.pod
-----------------
Copyright 2001 by Michael G Schwern E<lt>schwern@pobox.comE<gt>.
perl/lib/5.40.2/Test/Harness.pm
-----------------
Copyright (c) 2007-2011, Andy Armstrong C<< <andy@hexten.net> >>. All rights reserved.
perl/lib/5.40.2/Test/More.pm
-----------------
Copyright 2001-2008 by Michael G Schwern E<lt>schwern@pobox.comE<gt>.
perl/lib/5.40.2/Test/Tester/CaptureRunner.pm
-----------------
Copyright 2003 by Fergal Daly <fergal@esatclear.ie>.
perl/lib/5.40.2/Test/Builder.pm
-----------------
Copyright 2002-2008 by chromatic E<lt>chromatic@wgz.orgE<gt> and
perl/lib/5.40.2/Test/use/ok.pm
-----------------
To the extent possible under law, 唐鳳 has waived all copyright and related
perl/lib/5.40.2/Test/Tester.pm
-----------------
This module is copyright 2005 Fergal Daly <fergal@esatclear.ie>, some parts
perl/lib/5.40.2/parent.pm
-----------------
Copyright (c) 2007-2017 Max Maischein C<< <corion@cpan.org> >>
perl/lib/5.40.2/Archive/Tar.pm
-----------------
This module is copyright (c) 2002 - 2009 Jos Boumans
perl/lib/5.40.2/Config/Perl/V.pm
-----------------
Copyright (C) 2009-2023 H.Merijn Brand
perl/lib/5.40.2/Pod/ParseLink.pm
-----------------
Copyright 2001, 2008, 2009, 2014, 2018-2019 Russ Allbery <rra@cpan.org>
perl/lib/5.40.2/Pod/Simple/SimpleTree.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/Methody.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/PullParserTextToken.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/XHTML.pm
-----------------
Copyright (c) 2003-2005 Allison Randal.
perl/lib/5.40.2/Pod/Simple/Debug.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/XMLOutStream.pm
-----------------
Copyright (c) 2002-2004 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/DumpAsText.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/LinkSection.pm
-----------------
Copyright (c) 2004 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/DumpAsXML.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/Text.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/TextContent.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/PullParserToken.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/JustPod.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/Checker.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/Subclassing.pod
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/Search.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/PullParser.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/HTML.pm
-----------------
Copyright (c) 2002-2004 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/RTF.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/PullParserEndToken.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/PullParserStartToken.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Simple/HTMLBatch.pm
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Text/Overstrike.pm
-----------------
Copyright 2000 by Joe Smith <Joe.Smith@inwap.com>
Copyright 2001, 2004, 2008, 2014, 2018-2019 by Russ Allbery <rra@cpan.org>
perl/lib/5.40.2/Pod/Text/Termcap.pm
-----------------
Copyright 1999, 2001-2002, 2004, 2006, 2008-2009, 2014-2015, 2018-2019 Russ
Allbery <rra@cpan.org>
perl/lib/5.40.2/Pod/Text/Color.pm
-----------------
Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery
perl/lib/5.40.2/Pod/Text.pm
-----------------
Copyright 1999-2002, 2004, 2006, 2008-2009, 2012-2016, 2018-2019 Russ Allbery
perl/lib/5.40.2/Pod/Perldoc.pm
-----------------
Copyright (c) 2002-2007 Sean M. Burke.
perl/lib/5.40.2/Pod/Perldoc/BaseTo.pm
-----------------
Copyright (c) 2002-2007 Sean M. Burke.
perl/lib/5.40.2/Pod/Perldoc/ToANSI.pm
-----------------
Copyright (c) 2011 Mark Allen. All rights reserved.
perl/lib/5.40.2/Pod/Perldoc/ToMan.pm
-----------------
Copyright (c) 2011 brian d foy. All rights reserved.
Copyright (c) 2002,3,4 Sean M. Burke. All rights reserved.
perl/lib/5.40.2/Pod/Perldoc/ToXml.pm
-----------------
Copyright (c) 2002 Sean M. Burke. All rights reserved.
perl/lib/5.40.2/Pod/Perldoc/ToChecker.pm
-----------------
Copyright (c) 2002 Sean M. Burke. All rights reserved.
perl/lib/5.40.2/Pod/Perldoc/ToTerm.pm
-----------------
Copyright (c) 2017 Mark Allen.
perl/lib/5.40.2/Pod/Perldoc/GetOptsOO.pm
-----------------
Copyright (c) 2002-2007 Sean M. Burke.
perl/lib/5.40.2/Pod/Perldoc/ToText.pm
-----------------
Copyright (c) 2002 Sean M. Burke. All rights reserved.
perl/lib/5.40.2/Pod/Perldoc/ToNroff.pm
-----------------
Copyright (c) 2002 Sean M. Burke. All rights reserved.
perl/lib/5.40.2/Pod/Perldoc/ToPod.pm
-----------------
Copyright (c) 2002 Sean M. Burke. All rights reserved.
perl/lib/5.40.2/Pod/Perldoc/ToRtf.pm
-----------------
Copyright (c) 2002 Sean M. Burke. All rights reserved.
perl/lib/5.40.2/Pod/Checker.pm
-----------------
# Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.
perl/lib/5.40.2/Pod/Simple.pod
-----------------
Copyright (c) 2002 Sean M. Burke.
perl/lib/5.40.2/Pod/Man.pm
-----------------
Copyright 1999-2010, 2012-2019 Russ Allbery <rra@cpan.org>
perl/lib/5.40.2/Pod/Usage.pm
-----------------
# Copyright (c) 1996-2000 by Bradford Appleton. All rights reserved.
# Copyright (c) 2001-2016 by Marek Rouchal.
perl/lib/5.40.2/Pod/Escapes.pm
-----------------
Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.
perl/lib/5.40.2/CPAN/Meta/Validator.pm
-----------------
# _uri_split taken from URI::Split by Gisle Aas, Copyright 2003
This software is copyright (c) 2010 by David Golden, Ricardo Signes, Adam Kennedy and Contributors.
perl/lib/5.40.2/CPAN/Meta/Feature.pm
-----------------
This software is copyright (c) 2010 by David Golden, Ricardo Signes, Adam Kennedy and Contributors.
perl/lib/5.40.2/CPAN/Meta/YAML.pm
-----------------
This software is copyright (c) 2010 by Adam Kennedy.
perl/lib/5.40.2/CPAN/Meta/Spec.pm
-----------------
This software is copyright (c) 2010 by David Golden, Ricardo Signes, Adam Kennedy and Contributors.
perl/lib/5.40.2/CPAN/Meta/Prereqs.pm
-----------------
This software is copyright (c) 2010 by David Golden, Ricardo Signes, Adam Kennedy and Contributors.
perl/lib/5.40.2/CPAN/Meta/History.pm
-----------------
This software is copyright (c) 2010 by David Golden, Ricardo Signes, Adam Kennedy and Contributors.
perl/lib/5.40.2/CPAN/Meta/History/Meta_1_1.pod
-----------------
files, copyright by Ken Williams and licensed under the same terms as Perl
author and/or copyright holder.
perl/lib/5.40.2/CPAN/Meta/History/Meta_1_4.pod
-----------------
files, copyright by Ken Williams and licensed under the same terms as Perl
author and/or copyright holder.
perl/lib/5.40.2/CPAN/Meta/History/Meta_1_3.pod
-----------------
files, copyright by Ken Williams and licensed under the same terms as Perl
author and/or copyright holder.
perl/lib/5.40.2/CPAN/Meta/History/Meta_1_2.pod
-----------------
files, copyright by Ken Williams and licensed under the same terms as Perl
author and/or copyright holder.
perl/lib/5.40.2/CPAN/Meta/History/Meta_1_0.pod
-----------------
files, copyright by Ken Williams and licensed under the same terms as Perl
author and/or copyright holder.
perl/lib/5.40.2/CPAN/Meta/Requirements.pm
-----------------
This software is copyright (c) 2010 by David Golden and Ricardo Signes.
perl/lib/5.40.2/CPAN/Meta/Merge.pm
-----------------
This software is copyright (c) 2010 by David Golden, Ricardo Signes, Adam Kennedy and Contributors.
perl/lib/5.40.2/CPAN/Meta/Converter.pm
-----------------
This software is copyright (c) 2010 by David Golden, Ricardo Signes, Adam Kennedy and Contributors.
perl/lib/5.40.2/CPAN/Meta.pm
-----------------
This software is copyright (c) 2010 by David Golden, Ricardo Signes, Adam Kennedy and Contributors.
perl/lib/5.40.2/Test2/IPC/Driver/Files.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/IPC/Driver.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet/About.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet/Assert.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet/Parent.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet/Error.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet/Plan.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet/Trace.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet/Amnesty.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet/Info/Table.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet/Control.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet/Render.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet/Info.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet/Meta.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet/Hub.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Formatter.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Formatter/TAP.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Hub/Interceptor.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Hub/Interceptor/Terminator.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Hub/Subtest.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/IPC.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/Encoding.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/Exception.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/Diag.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/Skip.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/Plan.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/Waiting.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/Pass.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/Fail.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/Bail.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/Subtest.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/TAP/Version.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/Ok.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/Generic.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/V2.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event/Note.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/API.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Tools/Tiny.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Event.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/EventFacet.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Util.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/API/InterceptResult/Squasher.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/API/InterceptResult/Event.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/API/InterceptResult/Hub.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/API/Breakage.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/API/InterceptResult.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/API/Instance.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/API/Stack.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/API/Context.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Util/ExternalMeta.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Util/Trace.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Util/Facets2Legacy.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Util/HashBase.pm
-----------------
Copyright 2017 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Hub.pm
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
perl/lib/5.40.2/Test2/Transition.pod
-----------------
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
================= files specific to windows
perl/site/lib/Tie/Registry.pm
-----------------
Copyright 1999 Tye McQueen.
perl/site/lib/ExtUtils/InstallPaths.pm
-----------------
This software is copyright (c) 2011 by Ken Williams, Leon Timmermans.
perl/site/lib/ExtUtils/Config.pm
-----------------
This software is copyright (c) 2006 by Ken Williams, Leon Timmermans.
perl/site/lib/Win32/OLE/NEWS.pod
-----------------
The article is Copyright 1998 by I<The Perl
perl/site/lib/Win32/OLE/TPJ.pod
-----------------
Copyright 1998 I<The Perl Journal>. http://www.tpj.com
perl/site/lib/Win32/TieRegistry.pm
-----------------
Copyright 1999 - 2006 Tye McQueen.
Some parts copyright 2007 - 2009 Adam Kennedy.
perl/site/lib/Win32/Job.pm
-----------------
Copyright (c) 2002, ActiveState Corporation. All Rights Reserved.
perl/site/lib/Win32/OLE.pm
-----------------
Other modifications Copyright (c) 1997-2006 by Gurusamy Sarathy
perl/site/lib/Win32/Pipe.pm
-----------------
# | Copyright (c) 1996 Dave Roth. All rights reserved. |
Copyright (c) 1996 Dave Roth. All rights reserved.
perl/site/lib/IO/HTML.pm
-----------------
# Copyright 2020 Christopher J. Madsen
This software is copyright (c) 2020 by Christopher J. Madsen.
perl/site/lib/Test/Needs.pm
-----------------
Copyright (c) 2016 the Test::Needs L</AUTHORS> and L</CONTRIBUTORS>
perl/site/lib/Test/Fatal.pm
-----------------
This software is copyright (c) 2010 by Ricardo Signes.
perl/site/lib/Test/RequiresInternet.pm
-----------------
This software is copyright (c) 2014 by Mark Allen.
Perl//dist/ExtUtils-CBuilder/LICENSE
-----------------
This software is copyright (c) 2020 by Ken Williams.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
Terms of the Perl programming language system itself
a) the GNU General Public License as published by the Free
Software Foundation; either version 1, or (at your option) any
later version, or
b) the "Artistic License"
Perl/cpan/experimental/lib/stable.pm
-----------------
This software is copyright (c) 2013 by Leon Timmermans.