PSARC/2012/379 Add Perl 5.16 64-bit and make it the system default s11-update
authorCraig Mohrman <craig.mohrman@oracle.com>
Fri, 22 Mar 2013 12:37:36 -0700
branchs11-update
changeset 2528 788328aeec2a
parent 2527 0935492f14d7
child 2529 2d830e3fcca4
PSARC/2012/379 Add Perl 5.16 64-bit and make it the system default 15818668 SUNBT7201230 update perl to 5.16 16096782 Userland Perl should use mediated links 15941379 perl512 "gmake test" failures 15820486 problem in UTILITY/PERL 15880426 problem in UTILITY/PERL 16417744 problem in UTILITY/PERL 16383261 problem in UTILITY/PERL 16427786 problem in UTILITY/PERL 16486887 perl 5.16 needs to build x86 64-bit properly
components/perl/perl516/Makefile
components/perl/perl516/patches/16417744.patch
components/perl/perl516/patches/hints_solaris_2.sh.patch
components/perl/perl516/patches/rehash-5.16.2.patch
components/perl/perl516/perl-516.p5m
components/perl/perl516/perl.license
components/perl512/Makefile
components/perl512/patches/15880426.patch
components/perl512/patches/16417744.patch
components/perl512/patches/CVE-2011-2728.patch
components/perl512/patches/CVE-2011-2939.patch
components/perl512/patches/patchlevel_h.patch
components/perl512/patches/rehash-5.12.5.patch
components/perl512/perl-512.p5m
tools/python/pkglint/userland.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl/perl516/Makefile	Fri Mar 22 12:37:36 2013 -0700
@@ -0,0 +1,143 @@
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+# or http://www.opensolaris.org/os/licensing.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+#
+include ../../../make-rules/shared-macros.mk
+
+#
+# Note this perl is 64-bit only.
+#
+
+# I want to override PERL_VERSION and PERL_ARCH because when building
+# a new version of perl it probably isn't installed so shared-macros.mk
+# can't call it.
+
+COMPONENT_NAME=		perl
+COMPONENT_VERSION=	5.16.2
+PERL_VERSION=		5.16
+COMPONENT_PROJECT_URL=	http://www.perl.org/
+COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
+COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.bz2
+COMPONENT_ARCHIVE_HASH=	\
+    sha256:5ba91d9aa40220c615b644bb48fa5df7fbca4afb1c9e911bdc0ce2a93f072d7d
+COMPONENT_ARCHIVE_URL=	http://www.cpan.org/src/5.0/$(COMPONENT_ARCHIVE)
+COMPONENT_BUGDB=	utility/perl
+
+include $(WS_TOP)/make-rules/prep.mk
+include $(WS_TOP)/make-rules/configure.mk
+include $(WS_TOP)/make-rules/ips.mk
+
+#
+# Override these compiler settings because they are causing problems
+# in the ON build of the contrib components.
+# ON doesn't use or need these settings or the compiler has some of them
+# on by default.
+# This also produces a perl more inline with past perl's.  For better
+# or worse.
+#
+studio_XBITS=
+studio_XREGS=
+studio_IROPTS=
+studio_C99MODE=
+studio_ALIGN=
+studio_MT=
+
+CONFIGURE_SCRIPT = $(SOURCE_DIR)/Configure
+CONFIGURE_ENV += MAKE=$(GMAKE)
+CONFIGURE_ENV += PATH=$(dir $(CC)):$(PATH)
+
+# -Dperl_static_inline="static" turns OFF "static inline".
+# This was added because Configure probes
+# for static inline (C99 feature) and finds it in our default Studio
+# compiler.  But in the ON build of the perl add-ons, sun-solaris, the
+# shadow build with gcc 3.4.3 doesn't understand static inline so errors.
+#
+CONFIGURE_OPTIONS = \
+			-de \
+			-Dmksymlinks \
+			-Ulocincpth= \
+			-Uloclibpth= \
+                        -Dbin=/usr/perl5/$(PERL_VERSION)/bin \
+			-Dcc="cc" \
+			-Dcf_email="[email protected]" \
+			-Dcf_by="perl-bugs" \
+			-Dlibperl=libperl.so \
+			-Dmyhostname="localhost" \
+			-Dperl_static_inline="static" \
+			-Dprefix=/usr/perl5/$(PERL_VERSION) \
+                        -Dprivlib=/usr/perl5/$(PERL_VERSION)/lib \
+			-Dsitelib=/usr/perl5/site_perl/$(PERL_VERSION) \
+			-Dsiteprefix=/usr/perl5/$(PERL_VERSION) \
+			-Dvendorlib=/usr/perl5/vendor_perl/$(PERL_VERSION) \
+			-Dvendorprefix=/usr/perl5/$(PERL_VERSION) \
+			-Duseshrplib \
+			-Dusedtrace \
+			-Duse64bitall \
+			-Uuselargefiles \
+			-Doptimize="$(CFLAGS.studio)"
+
+# The extra Configure parameters (cf_email, cf_by, myhostname) and
+# the gawk and sed that follow are attempting to sanatize the
+# resulting config.sh of values from our build environment that
+# are discoverable in perl's config via "perl -V".
+# I'm assuming our compilers live on a path that contains "SUNWspro".
+# If that changes the sed filter needs to change.
+#
+COMPONENT_POST_CONFIGURE_ACTION = \
+	(cd $(@D); \
+	    cp config.sh config.sh_orig ; \
+	    gawk \
+	    '/^myuname=/{print $$1" localhost "$$3" "$$5" "$$6" "$$7"\047"} ; \
+	    		!/^myuname=/ {print}' config.sh_orig \
+		| \
+		sed -e "s/[^ ']*SUNWspro[^ ']*//g" > config.sh )
+
+
+#
+# Put studio compilers in PATH so we can tell Configure and gmake just
+# use cc.  Trying to avoid the full path so it doesn't end up in
+# perl's config.
+#
+COMPONENT_BUILD_ENV	+=	PATH=$(dir $(CC)):$(PATH)
+COMPONENT_INSTALL_ENV	+=	PATH=$(dir $(CC)):$(PATH)
+COMPONENT_INSTALL_ENV	+=	DESTDIR="$(PROTO_DIR)"
+COMPONENT_TEST_ENV	+=	PATH=$(dir $(CC)):$(PATH)
+
+#
+# perl's install path for sparc is based off the value of the
+# "arch" command.  So we must package that way also.
+#
+PKG_MACROS		+=	P_ARCH=$(shell arch)
+
+build:		$(BUILD_64)
+
+install:	$(INSTALL_64)
+
+test:		$(TEST_64)
+	#
+	#
+	# All tests should pass.
+	#
+	#
+
+BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
+
+include $(WS_TOP)/make-rules/depend.mk
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl/perl516/patches/16417744.patch	Fri Mar 22 12:37:36 2013 -0700
@@ -0,0 +1,85 @@
+
+http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-6329
+CONFIRM:http://perl5.git.perl.org/perl.git/commit/1735f6f53ca19f99c6e9e39496c486af323ba6a8
+
+From 1735f6f53ca19f99c6e9e39496c486af323ba6a8 Mon Sep 17 00:00:00 2001
+From: Brian Carlson <[email protected]>
+Date: Wed, 28 Nov 2012 08:54:33 -0500
+Subject: [PATCH] Fix misparsing of maketext strings.
+
+Case 61251: This commit fixes a misparse of maketext strings that could
+lead to arbitrary code execution.  Basically, maketext was compiling
+bracket notation into functions, but neglected to escape backslashes
+inside the content or die on fully-qualified method names when
+generating the code.  This change escapes all such backslashes and dies
+when a method name with a colon or apostrophe is specified.
+---
+ AUTHORS                                     |    1 +
+ dist/Locale-Maketext/lib/Locale/Maketext.pm |   24 ++++++++----------------
+ 2 files changed, 9 insertions(+), 16 deletions(-)
+
+diff --git a/AUTHORS b/AUTHORS
+index 70734b0..009dea0 100644
+--- a/AUTHORS
++++ b/AUTHORS
+@@ -154,6 +154,7 @@ Breno G. de Oliveira		<[email protected]>
+ Brent Dax			<[email protected]>
+ Brooks D Boyd
+ Brian Callaghan			<[email protected]>
++Brian Carlson			<[email protected]>
+ Brian Clarke			<[email protected]>
+ brian d foy			<[email protected]>
+ Brian Fraser			<[email protected]>
+diff --git a/dist/Locale-Maketext/lib/Locale/Maketext.pm b/dist/Locale-Maketext/lib/Locale/Maketext.pm
+index 4822027..63e5fba 100644
+--- a/dist/Locale-Maketext/lib/Locale/Maketext.pm
++++ b/dist/Locale-Maketext/lib/Locale/Maketext.pm
+@@ -625,21 +625,9 @@ sub _compile {
+                         # 0-length method name means to just interpolate:
+                         push @code, ' (';
+                     }
+-                    elsif($m =~ /^\w+(?:\:\:\w+)*$/s
+-                            and $m !~ m/(?:^|\:)\d/s
+-                        # exclude starting a (sub)package or symbol with a digit
++                    elsif($m =~ /^\w+$/s
++                        # exclude anything fancy, especially fully-qualified module names
+                     ) {
+-                        # Yes, it even supports the demented (and undocumented?)
+-                        #  $obj->Foo::bar(...) syntax.
+-                        $target->_die_pointing(
+-                            $string_to_compile, q{Can't use "SUPER::" in a bracket-group method},
+-                            2 + length($c[-1])
+-                        )
+-                        if $m =~ m/^SUPER::/s;
+-                        # Because for SUPER:: to work, we'd have to compile this into
+-                        #  the right package, and that seems just not worth the bother,
+-                        #  unless someone convinces me otherwise.
+-
+                         push @code, ' $_[0]->' . $m . '(';
+                     }
+                     else {
+@@ -693,7 +681,9 @@ sub _compile {
+             elsif(substr($1,0,1) ne '~') {
+                 # it's stuff not containing "~" or "[" or "]"
+                 # i.e., a literal blob
+-                $c[-1] .= $1;
++                my $text = $1;
++                $text =~ s/\\/\\\\/g;
++                $c[-1] .= $text;
+ 
+             }
+             elsif($1 eq '~~') { # "~~"
+@@ -731,7 +721,9 @@ sub _compile {
+             else {
+                 # It's a "~X" where X is not a special character.
+                 # Consider it a literal ~ and X.
+-                $c[-1] .= $1;
++                my $text = $1;
++                $text =~ s/\\/\\\\/g;
++                $c[-1] .= $text;
+             }
+         }
+     }
+-- 
+1.7.4.1
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl/perl516/patches/hints_solaris_2.sh.patch	Fri Mar 22 12:37:36 2013 -0700
@@ -0,0 +1,42 @@
+--- perl-5.16.2/hints/solaris_2.sh_orig	2012-10-25 19:44:15.000000000 -0700
++++ perl-5.16.2/hints/solaris_2.sh	2013-03-15 10:29:25.175779461 -0700
+@@ -84,8 +84,8 @@
+ 	getworkshoplibs=`cat <<'END'
+ eval $tryworkshopcc -### 2>&1 | \
+ sed -n '/ -Y /s!.* -Y "P,\([^"]*\)".*!\1!p' | tr ':' ' ' | \
+-sed -e 's!/usr/lib/sparcv9!!' -e 's!/usr/ccs/lib/sparcv9!!' \
+-    -e 's!/usr/lib!!g' -e 's!/usr/ccs/lib!!g'
++sed -e 's!/lib/64!!' -e 's!/usr/lib/64!!' \
++    -e 's!/lib!!g' -e 's!/usr/lib!!g'
+ END
+ `
+ 
+@@ -552,8 +552,7 @@
+ 		;;
+ 	    esac
+ 	    processor=`uname -p`;
+-	    if test "$processor" = sparc; then
+-		libc='/usr/lib/sparcv9/libc.so'
++		libc='/lib/64/libc.so'
+ 		if test ! -f $libc; then
+ 		    cat >&4 <<EOM
+ 
+@@ -563,7 +562,6 @@
+ EOM
+ 		    exit 1
+ 		fi
+-	    fi
+ 	    case "${cc:-cc} -v 2>/dev/null" in
+ 	    *gcc*)
+ 		echo 'int main() { return 0; }' > try.c
+@@ -614,9 +612,7 @@
+ 
+ 		echo "int main() { return(0); } " > try.c
+ 		tryworkshopcc="${cc:-cc} try.c -o try $ccflags"
+-		if test "$processor" = sparc; then
+-		    loclibpth="/usr/lib/sparcv9 /usr/ccs/lib/sparcv9 $loclibpth"
+-		fi
++		loclibpth="/lib/64 /usr/lib/64 $loclibpth"
+ 		loclibpth="`$getworkshoplibs` $loclibpth"
+ 		;;
+ 	    esac
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl/perl516/patches/rehash-5.16.2.patch	Fri Mar 22 12:37:36 2013 -0700
@@ -0,0 +1,171 @@
+From f1220d61455253b170e81427c9d0357831ca0fac Mon Sep 17 00:00:00 2001
+From: Yves Orton <[email protected]>
+Date: Tue, 12 Feb 2013 10:53:05 +0100
+Subject: [PATCH] Prevent premature hsplit() calls, and only trigger REHASH
+ after hsplit()
+
+Triggering a hsplit due to long chain length allows an attacker
+to create a carefully chosen set of keys which can cause the hash
+to use 2 * (2**32) * sizeof(void *) bytes ram. AKA a DOS via memory
+exhaustion. Doing so also takes non trivial time.
+
+Eliminating this check, and only inspecting chain length after a
+normal hsplit() (triggered when keys>buckets) prevents the attack
+entirely, and makes such attacks relatively benign.
+---
+ ext/Hash-Util-FieldHash/t/10_hash.t | 18 ++++++++++++++++--
+ hv.c                                | 35 ++++++++---------------------------
+ t/op/hash.t                         | 20 +++++++++++++++++---
+ 3 files changed, 41 insertions(+), 32 deletions(-)
+
+diff --git a/ext/Hash-Util-FieldHash/t/10_hash.t b/ext/Hash-Util-FieldHash/t/10_hash.t
+index 2cfb4e8..d58f053 100644
+--- a/ext/Hash-Util-FieldHash/t/10_hash.t
++++ b/ext/Hash-Util-FieldHash/t/10_hash.t
+@@ -38,15 +38,29 @@ use constant START     => "a";
+ 
+ # some initial hash data
+ fieldhash my %h2;
+-%h2 = map {$_ => 1} 'a'..'cc';
++my $counter= "a";
++$h2{$counter++}++ while $counter ne 'cd';
+ 
+ ok (!Internals::HvREHASH(%h2), 
+     "starting with pre-populated non-pathological hash (rehash flag if off)");
+ 
+ my @keys = get_keys(\%h2);
++my $buckets= buckets(\%h2);
+ $h2{$_}++ for @keys;
++$h2{$counter++}++ while buckets(\%h2) == $buckets; # force a split
+ ok (Internals::HvREHASH(%h2), 
+-    scalar(@keys) . " colliding into the same bucket keys are triggering rehash");
++    scalar(@keys) . " colliding into the same bucket keys are triggering rehash after split");
++
++# returns the number of buckets in a hash
++sub buckets {
++    my $hr = shift;
++    my $keys_buckets= scalar(%$hr);
++    if ($keys_buckets=~m!/([0-9]+)\z!) {
++        return 0+$1;
++    } else {
++        return 8;
++    }
++}
+ 
+ sub get_keys {
+     my $hr = shift;
+diff --git a/hv.c b/hv.c
+index 6b66251..a031703 100644
+--- a/hv.c
++++ b/hv.c
+@@ -35,7 +35,8 @@ holds the key and hash value.
+ #define PERL_HASH_INTERNAL_ACCESS
+ #include "perl.h"
+ 
+-#define HV_MAX_LENGTH_BEFORE_SPLIT 14
++#define HV_MAX_LENGTH_BEFORE_REHASH 14
++#define SHOULD_DO_HSPLIT(xhv) ((xhv)->xhv_keys > (xhv)->xhv_max) /* HvTOTALKEYS(hv) > HvMAX(hv) */
+ 
+ static const char S_strtab_error[]
+     = "Cannot modify shared string table in hv_%s";
+@@ -798,29 +799,9 @@ Perl_hv_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen,
+     if (masked_flags & HVhek_ENABLEHVKFLAGS)
+ 	HvHASKFLAGS_on(hv);
+ 
+-    {
+-	const HE *counter = HeNEXT(entry);
+-
+-	xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */
+-	if (!counter) {				/* initial entry? */
+-	} else if (xhv->xhv_keys > xhv->xhv_max) {
+-		/* Use only the old HvUSEDKEYS(hv) > HvMAX(hv) condition to limit
+-		   bucket splits on a rehashed hash, as we're not going to
+-		   split it again, and if someone is lucky (evil) enough to
+-		   get all the keys in one list they could exhaust our memory
+-		   as we repeatedly double the number of buckets on every
+-		   entry. Linear search feels a less worse thing to do.  */
+-	    hsplit(hv);
+-	} else if(!HvREHASH(hv)) {
+-	    U32 n_links = 1;
+-
+-	    while ((counter = HeNEXT(counter)))
+-		n_links++;
+-
+-	    if (n_links > HV_MAX_LENGTH_BEFORE_SPLIT) {
+-		hsplit(hv);
+-	    }
+-	}
++    xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */
++    if ( SHOULD_DO_HSPLIT(xhv) ) {
++        hsplit(hv);
+     }
+ 
+     if (return_svp) {
+@@ -1197,7 +1178,7 @@ S_hsplit(pTHX_ HV *hv)
+ 
+ 
+     /* Pick your policy for "hashing isn't working" here:  */
+-    if (longest_chain <= HV_MAX_LENGTH_BEFORE_SPLIT /* split worked?  */
++    if (longest_chain <= HV_MAX_LENGTH_BEFORE_REHASH /* split worked?  */
+ 	|| HvREHASH(hv)) {
+ 	return;
+     }
+@@ -2782,8 +2763,8 @@ S_share_hek_flags(pTHX_ const char *str, I32 len, register U32 hash, int flags)
+ 
+ 	xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */
+ 	if (!next) {			/* initial entry? */
+-	} else if (xhv->xhv_keys > xhv->xhv_max /* HvUSEDKEYS(hv) > HvMAX(hv) */) {
+-		hsplit(PL_strtab);
++	} else if ( SHOULD_DO_HSPLIT(xhv) ) {
++            hsplit(PL_strtab);
+ 	}
+     }
+ 
+diff --git a/t/op/hash.t b/t/op/hash.t
+index ef757a3..97eb81b 100644
+--- a/t/op/hash.t
++++ b/t/op/hash.t
+@@ -39,22 +39,36 @@ use constant THRESHOLD => 14;
+ use constant START     => "a";
+ 
+ # some initial hash data
+-my %h2 = map {$_ => 1} 'a'..'cc';
++my %h2;
++my $counter= "a";
++$h2{$counter++}++ while $counter ne 'cd';
+ 
+ ok (!Internals::HvREHASH(%h2), 
+     "starting with pre-populated non-pathological hash (rehash flag if off)");
+ 
+ my @keys = get_keys(\%h2);
++my $buckets= buckets(\%h2);
+ $h2{$_}++ for @keys;
++$h2{$counter++}++ while buckets(\%h2) == $buckets; # force a split
+ ok (Internals::HvREHASH(%h2), 
+-    scalar(@keys) . " colliding into the same bucket keys are triggering rehash");
++    scalar(@keys) . " colliding into the same bucket keys are triggering rehash after split");
++
++# returns the number of buckets in a hash
++sub buckets {
++    my $hr = shift;
++    my $keys_buckets= scalar(%$hr);
++    if ($keys_buckets=~m!/([0-9]+)\z!) {
++        return 0+$1;
++    } else {
++        return 8;
++    }
++}
+ 
+ sub get_keys {
+     my $hr = shift;
+ 
+     # the minimum of bits required to mount the attack on a hash
+     my $min_bits = log(THRESHOLD)/log(2);
+-
+     # if the hash has already been populated with a significant amount
+     # of entries the number of mask bits can be higher
+     my $keys = scalar keys %$hr;
+-- 
+1.8.1.3
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl/perl516/perl-516.p5m	Fri Mar 22 12:37:36 2013 -0700
@@ -0,0 +1,3294 @@
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+# or http://www.opensolaris.org/os/licensing.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+#
+
+<transform file path=usr.*/man/.+ -> default mangler.man.stability uncommitted>
+
+set name=pkg.fmri \
+    value=pkg:/runtime/perl-516@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
+set name=pkg.description \
+    value="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."
+set name=pkg.summary value=Perl
+set name=info.classification \
+    value=org.opensolaris.category.2008:Development/Perl
+set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
+set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
+set name=org.opensolaris.arc-caseid value=PSARC/2012/379
+set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
+
+license perl.license license='Artistic'
+
+dir  path=usr
+dir  path=usr/perl5
+dir  path=usr/perl5/5.16
+dir  path=usr/perl5/5.16/bin
+file path=usr/perl5/5.16/bin/a2p
+file path=usr/perl5/5.16/bin/c2ph
+file path=usr/perl5/5.16/bin/config_data
+file path=usr/perl5/5.16/bin/corelist
+file path=usr/perl5/5.16/bin/cpan
+file path=usr/perl5/5.16/bin/cpan2dist
+file path=usr/perl5/5.16/bin/cpanp
+file path=usr/perl5/5.16/bin/cpanp-run-perl
+file path=usr/perl5/5.16/bin/enc2xs
+file path=usr/perl5/5.16/bin/find2perl
+file path=usr/perl5/5.16/bin/h2ph
+file path=usr/perl5/5.16/bin/h2xs
+file path=usr/perl5/5.16/bin/instmodsh
+file path=usr/perl5/5.16/bin/json_pp
+file path=usr/perl5/5.16/bin/libnetcfg
+file path=usr/perl5/5.16/bin/perl
+hardlink path=usr/perl5/5.16/bin/perl$(COMPONENT_VERSION) target=perl
+file path=usr/perl5/5.16/bin/perlbug
+file path=usr/perl5/5.16/bin/perldoc
+file path=usr/perl5/5.16/bin/perlivp
+hardlink path=usr/perl5/5.16/bin/perlthanks target=perlbug
+file path=usr/perl5/5.16/bin/piconv
+file path=usr/perl5/5.16/bin/pl2pm
+file path=usr/perl5/5.16/bin/pod2html
+file path=usr/perl5/5.16/bin/pod2latex
+file path=usr/perl5/5.16/bin/pod2man
+file path=usr/perl5/5.16/bin/pod2text
+file path=usr/perl5/5.16/bin/pod2usage
+file path=usr/perl5/5.16/bin/podchecker
+file path=usr/perl5/5.16/bin/podselect
+file path=usr/perl5/5.16/bin/prove
+file path=usr/perl5/5.16/bin/psed
+hardlink path=usr/perl5/5.16/bin/pstruct target=c2ph
+file path=usr/perl5/5.16/bin/ptar
+file path=usr/perl5/5.16/bin/ptardiff
+file path=usr/perl5/5.16/bin/ptargrep
+hardlink path=usr/perl5/5.16/bin/s2p target=psed
+file path=usr/perl5/5.16/bin/shasum
+file path=usr/perl5/5.16/bin/splain
+file path=usr/perl5/5.16/bin/xsubpp
+file path=usr/perl5/5.16/bin/zipdetails
+dir  path=usr/perl5/5.16/lib
+file path=usr/perl5/5.16/lib/AnyDBM_File.pm
+dir  path=usr/perl5/5.16/lib/App
+file path=usr/perl5/5.16/lib/App/Cpan.pm
+dir  path=usr/perl5/5.16/lib/App/Prove
+file path=usr/perl5/5.16/lib/App/Prove.pm
+dir  path=usr/perl5/5.16/lib/App/Prove/State
+file path=usr/perl5/5.16/lib/App/Prove/State.pm
+dir  path=usr/perl5/5.16/lib/App/Prove/State/Result
+file path=usr/perl5/5.16/lib/App/Prove/State/Result.pm
+file path=usr/perl5/5.16/lib/App/Prove/State/Result/Test.pm
+dir  path=usr/perl5/5.16/lib/Archive
+file path=usr/perl5/5.16/lib/Archive/Extract.pm
+dir  path=usr/perl5/5.16/lib/Archive/Tar
+file path=usr/perl5/5.16/lib/Archive/Tar.pm
+file path=usr/perl5/5.16/lib/Archive/Tar/Constant.pm
+file path=usr/perl5/5.16/lib/Archive/Tar/File.pm
+dir  path=usr/perl5/5.16/lib/Attribute
+file path=usr/perl5/5.16/lib/Attribute/Handlers.pm
+file path=usr/perl5/5.16/lib/AutoLoader.pm
+file path=usr/perl5/5.16/lib/AutoSplit.pm
+dir  path=usr/perl5/5.16/lib/B
+file path=usr/perl5/5.16/lib/B/Debug.pm
+file path=usr/perl5/5.16/lib/B/Deparse.pm
+dir  path=usr/perl5/5.16/lib/B/Lint
+file path=usr/perl5/5.16/lib/B/Lint.pm
+file path=usr/perl5/5.16/lib/B/Lint/Debug.pm
+file path=usr/perl5/5.16/lib/Benchmark.pm
+dir  path=usr/perl5/5.16/lib/CGI
+file path=usr/perl5/5.16/lib/CGI.pm
+file path=usr/perl5/5.16/lib/CGI/Apache.pm
+file path=usr/perl5/5.16/lib/CGI/Carp.pm
+file path=usr/perl5/5.16/lib/CGI/Cookie.pm
+file path=usr/perl5/5.16/lib/CGI/Fast.pm
+file path=usr/perl5/5.16/lib/CGI/Pretty.pm
+file path=usr/perl5/5.16/lib/CGI/Push.pm
+file path=usr/perl5/5.16/lib/CGI/Switch.pm
+file path=usr/perl5/5.16/lib/CGI/Util.pm
+file path=usr/perl5/5.16/lib/CORE.pod
+dir  path=usr/perl5/5.16/lib/CPAN
+file path=usr/perl5/5.16/lib/CPAN.pm
+dir  path=usr/perl5/5.16/lib/CPAN/API
+file path=usr/perl5/5.16/lib/CPAN/API/HOWTO.pod
+file path=usr/perl5/5.16/lib/CPAN/Author.pm
+file path=usr/perl5/5.16/lib/CPAN/Bundle.pm
+file path=usr/perl5/5.16/lib/CPAN/CacheMgr.pm
+file path=usr/perl5/5.16/lib/CPAN/Complete.pm
+file path=usr/perl5/5.16/lib/CPAN/Debug.pm
+file path=usr/perl5/5.16/lib/CPAN/DeferredCode.pm
+file path=usr/perl5/5.16/lib/CPAN/Distribution.pm
+file path=usr/perl5/5.16/lib/CPAN/Distroprefs.pm
+file path=usr/perl5/5.16/lib/CPAN/Distrostatus.pm
+dir  path=usr/perl5/5.16/lib/CPAN/Exception
+file path=usr/perl5/5.16/lib/CPAN/Exception/RecursiveDependency.pm
+file path=usr/perl5/5.16/lib/CPAN/Exception/blocked_urllist.pm
+file path=usr/perl5/5.16/lib/CPAN/Exception/yaml_not_installed.pm
+file path=usr/perl5/5.16/lib/CPAN/Exception/yaml_process_error.pm
+dir  path=usr/perl5/5.16/lib/CPAN/FTP
+file path=usr/perl5/5.16/lib/CPAN/FTP.pm
+file path=usr/perl5/5.16/lib/CPAN/FTP/netrc.pm
+file path=usr/perl5/5.16/lib/CPAN/FirstTime.pm
+dir  path=usr/perl5/5.16/lib/CPAN/HTTP
+file path=usr/perl5/5.16/lib/CPAN/HTTP/Client.pm
+file path=usr/perl5/5.16/lib/CPAN/HTTP/Credentials.pm
+file path=usr/perl5/5.16/lib/CPAN/HandleConfig.pm
+file path=usr/perl5/5.16/lib/CPAN/Index.pm
+file path=usr/perl5/5.16/lib/CPAN/InfoObj.pm
+dir  path=usr/perl5/5.16/lib/CPAN/Kwalify
+file path=usr/perl5/5.16/lib/CPAN/Kwalify.pm
+file path=usr/perl5/5.16/lib/CPAN/Kwalify/distroprefs.dd
+file path=usr/perl5/5.16/lib/CPAN/Kwalify/distroprefs.yml
+dir  path=usr/perl5/5.16/lib/CPAN/LWP
+file path=usr/perl5/5.16/lib/CPAN/LWP/UserAgent.pm
+dir  path=usr/perl5/5.16/lib/CPAN/Meta
+file path=usr/perl5/5.16/lib/CPAN/Meta.pm
+file path=usr/perl5/5.16/lib/CPAN/Meta/Converter.pm
+file path=usr/perl5/5.16/lib/CPAN/Meta/Feature.pm
+file path=usr/perl5/5.16/lib/CPAN/Meta/History.pm
+file path=usr/perl5/5.16/lib/CPAN/Meta/Prereqs.pm
+file path=usr/perl5/5.16/lib/CPAN/Meta/Requirements.pm
+file path=usr/perl5/5.16/lib/CPAN/Meta/Spec.pm
+file path=usr/perl5/5.16/lib/CPAN/Meta/Validator.pm
+file path=usr/perl5/5.16/lib/CPAN/Meta/YAML.pm
+file path=usr/perl5/5.16/lib/CPAN/Mirrors.pm
+file path=usr/perl5/5.16/lib/CPAN/Module.pm
+file path=usr/perl5/5.16/lib/CPAN/Nox.pm
+file path=usr/perl5/5.16/lib/CPAN/Prompt.pm
+file path=usr/perl5/5.16/lib/CPAN/Queue.pm
+file path=usr/perl5/5.16/lib/CPAN/Shell.pm
+file path=usr/perl5/5.16/lib/CPAN/Tarzip.pm
+file path=usr/perl5/5.16/lib/CPAN/URL.pm
+file path=usr/perl5/5.16/lib/CPAN/Version.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS
+file path=usr/perl5/5.16/lib/CPANPLUS.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Backend
+file path=usr/perl5/5.16/lib/CPANPLUS/Backend.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Backend/RV.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Config.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Configure
+file path=usr/perl5/5.16/lib/CPANPLUS/Configure.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Configure/Setup.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Dist
+file path=usr/perl5/5.16/lib/CPANPLUS/Dist.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Dist/Autobundle.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Dist/Base.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Dist/Build
+file path=usr/perl5/5.16/lib/CPANPLUS/Dist/Build.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Dist/Build/Constants.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Dist/MM.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Dist/Sample.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Error.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/FAQ.pod
+file path=usr/perl5/5.16/lib/CPANPLUS/Hacking.pod
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Internals
+file path=usr/perl5/5.16/lib/CPANPLUS/Internals.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Internals/Constants
+file path=usr/perl5/5.16/lib/CPANPLUS/Internals/Constants.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Internals/Constants/Report.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Internals/Extract.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Internals/Fetch.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Internals/Report.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Internals/Search.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Internals/Source
+file path=usr/perl5/5.16/lib/CPANPLUS/Internals/Source.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Internals/Source/Memory.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Internals/Source/SQLite
+file path=usr/perl5/5.16/lib/CPANPLUS/Internals/Source/SQLite.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Internals/Source/SQLite/Tie.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Internals/Utils
+file path=usr/perl5/5.16/lib/CPANPLUS/Internals/Utils.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Internals/Utils/Autoflush.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Module
+file path=usr/perl5/5.16/lib/CPANPLUS/Module.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Module/Author
+file path=usr/perl5/5.16/lib/CPANPLUS/Module/Author.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Module/Author/Fake.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Module/Checksums.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Module/Fake.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Module/Signature.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Selfupdate.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Shell
+file path=usr/perl5/5.16/lib/CPANPLUS/Shell.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Shell/Classic.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Shell/Default
+file path=usr/perl5/5.16/lib/CPANPLUS/Shell/Default.pm
+dir  path=usr/perl5/5.16/lib/CPANPLUS/Shell/Default/Plugins
+file path=usr/perl5/5.16/lib/CPANPLUS/Shell/Default/Plugins/CustomSource.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Shell/Default/Plugins/HOWTO.pod
+file path=usr/perl5/5.16/lib/CPANPLUS/Shell/Default/Plugins/Remote.pm
+file path=usr/perl5/5.16/lib/CPANPLUS/Shell/Default/Plugins/Source.pm
+dir  path=usr/perl5/5.16/lib/Carp
+file path=usr/perl5/5.16/lib/Carp.pm
+file path=usr/perl5/5.16/lib/Carp/Heavy.pm
+dir  path=usr/perl5/5.16/lib/Class
+file path=usr/perl5/5.16/lib/Class/Struct.pm
+dir  path=usr/perl5/5.16/lib/Compress
+file path=usr/perl5/5.16/lib/Compress/Zlib.pm
+dir  path=usr/perl5/5.16/lib/Config
+file path=usr/perl5/5.16/lib/Config/Extensions.pm
+file path=usr/perl5/5.16/lib/DB.pm
+dir  path=usr/perl5/5.16/lib/DBM_Filter
+file path=usr/perl5/5.16/lib/DBM_Filter.pm
+file path=usr/perl5/5.16/lib/DBM_Filter/compress.pm
+file path=usr/perl5/5.16/lib/DBM_Filter/encode.pm
+file path=usr/perl5/5.16/lib/DBM_Filter/int32.pm
+file path=usr/perl5/5.16/lib/DBM_Filter/null.pm
+file path=usr/perl5/5.16/lib/DBM_Filter/utf8.pm
+dir  path=usr/perl5/5.16/lib/Devel
+file path=usr/perl5/5.16/lib/Devel/InnerPackage.pm
+file path=usr/perl5/5.16/lib/Devel/SelfStubber.pm
+dir  path=usr/perl5/5.16/lib/Digest
+file path=usr/perl5/5.16/lib/Digest.pm
+file path=usr/perl5/5.16/lib/Digest/base.pm
+file path=usr/perl5/5.16/lib/Digest/file.pm
+file path=usr/perl5/5.16/lib/DirHandle.pm
+file path=usr/perl5/5.16/lib/Dumpvalue.pm
+dir  path=usr/perl5/5.16/lib/Encode
+file path=usr/perl5/5.16/lib/Encode/Changes.e2x
+file path=usr/perl5/5.16/lib/Encode/ConfigLocal_PM.e2x
+file path=usr/perl5/5.16/lib/Encode/Makefile_PL.e2x
+file path=usr/perl5/5.16/lib/Encode/PerlIO.pod
+file path=usr/perl5/5.16/lib/Encode/README.e2x
+file path=usr/perl5/5.16/lib/Encode/Supported.pod
+file path=usr/perl5/5.16/lib/Encode/_PM.e2x
+file path=usr/perl5/5.16/lib/Encode/_T.e2x
+file path=usr/perl5/5.16/lib/Encode/encode.h
+file path=usr/perl5/5.16/lib/English.pm
+file path=usr/perl5/5.16/lib/Env.pm
+dir  path=usr/perl5/5.16/lib/Exporter
+file path=usr/perl5/5.16/lib/Exporter.pm
+file path=usr/perl5/5.16/lib/Exporter/Heavy.pm
+dir  path=usr/perl5/5.16/lib/ExtUtils
+dir  path=usr/perl5/5.16/lib/ExtUtils/CBuilder
+file path=usr/perl5/5.16/lib/ExtUtils/CBuilder.pm
+file path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Base.pm
+dir  path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Platform
+file path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Platform/Unix.pm
+file path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Platform/VMS.pm
+dir  path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Platform/Windows
+file path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Platform/Windows.pm
+file path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
+file path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
+file path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm
+file path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Platform/aix.pm
+file path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Platform/cygwin.pm
+file path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Platform/darwin.pm
+file path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Platform/dec_osf.pm
+file path=usr/perl5/5.16/lib/ExtUtils/CBuilder/Platform/os2.pm
+dir  path=usr/perl5/5.16/lib/ExtUtils/Command
+file path=usr/perl5/5.16/lib/ExtUtils/Command.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Command/MM.pm
+dir  path=usr/perl5/5.16/lib/ExtUtils/Constant
+file path=usr/perl5/5.16/lib/ExtUtils/Constant.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Constant/Base.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Constant/ProxySubs.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Constant/Utils.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Constant/XS.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Embed.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Install.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Installed.pm
+dir  path=usr/perl5/5.16/lib/ExtUtils/Liblist
+file path=usr/perl5/5.16/lib/ExtUtils/Liblist.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Liblist/Kid.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MANIFEST.SKIP
+file path=usr/perl5/5.16/lib/ExtUtils/MM.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_AIX.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_Any.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_BeOS.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_Cygwin.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_DOS.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_Darwin.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_MacOS.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_NW5.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_OS2.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_QNX.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_UWIN.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_Unix.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_VMS.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_VOS.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_Win32.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MM_Win95.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MY.pm
+dir  path=usr/perl5/5.16/lib/ExtUtils/MakeMaker
+file path=usr/perl5/5.16/lib/ExtUtils/MakeMaker.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MakeMaker/Config.pm
+file path=usr/perl5/5.16/lib/ExtUtils/MakeMaker/FAQ.pod
+file path=usr/perl5/5.16/lib/ExtUtils/MakeMaker/Tutorial.pod
+file path=usr/perl5/5.16/lib/ExtUtils/Manifest.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Miniperl.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Mkbootstrap.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Mksymlists.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Packlist.pm
+dir  path=usr/perl5/5.16/lib/ExtUtils/ParseXS
+file path=usr/perl5/5.16/lib/ExtUtils/ParseXS.pm
+file path=usr/perl5/5.16/lib/ExtUtils/ParseXS.pod
+file path=usr/perl5/5.16/lib/ExtUtils/ParseXS/Constants.pm
+file path=usr/perl5/5.16/lib/ExtUtils/ParseXS/CountLines.pm
+file path=usr/perl5/5.16/lib/ExtUtils/ParseXS/Utilities.pm
+dir  path=usr/perl5/5.16/lib/ExtUtils/Typemaps
+file path=usr/perl5/5.16/lib/ExtUtils/Typemaps.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Typemaps/Cmd.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Typemaps/InputMap.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Typemaps/OutputMap.pm
+file path=usr/perl5/5.16/lib/ExtUtils/Typemaps/Type.pm
+file path=usr/perl5/5.16/lib/ExtUtils/testlib.pm
+file path=usr/perl5/5.16/lib/ExtUtils/typemap
+file path=usr/perl5/5.16/lib/ExtUtils/xsubpp
+file path=usr/perl5/5.16/lib/Fatal.pm
+dir  path=usr/perl5/5.16/lib/File
+file path=usr/perl5/5.16/lib/File/Basename.pm
+file path=usr/perl5/5.16/lib/File/CheckTree.pm
+file path=usr/perl5/5.16/lib/File/Compare.pm
+file path=usr/perl5/5.16/lib/File/Copy.pm
+file path=usr/perl5/5.16/lib/File/DosGlob.pm
+file path=usr/perl5/5.16/lib/File/Fetch.pm
+file path=usr/perl5/5.16/lib/File/Find.pm
+file path=usr/perl5/5.16/lib/File/GlobMapper.pm
+file path=usr/perl5/5.16/lib/File/Path.pm
+file path=usr/perl5/5.16/lib/File/Temp.pm
+file path=usr/perl5/5.16/lib/File/stat.pm
+file path=usr/perl5/5.16/lib/FileCache.pm
+file path=usr/perl5/5.16/lib/FileHandle.pm
+dir  path=usr/perl5/5.16/lib/Filter
+file path=usr/perl5/5.16/lib/Filter/Simple.pm
+file path=usr/perl5/5.16/lib/FindBin.pm
+dir  path=usr/perl5/5.16/lib/Getopt
+file path=usr/perl5/5.16/lib/Getopt/Long.pm
+file path=usr/perl5/5.16/lib/Getopt/Std.pm
+dir  path=usr/perl5/5.16/lib/HTTP
+file path=usr/perl5/5.16/lib/HTTP/Tiny.pm
+dir  path=usr/perl5/5.16/lib/I18N
+file path=usr/perl5/5.16/lib/I18N/Collate.pm
+dir  path=usr/perl5/5.16/lib/I18N/LangTags
+file path=usr/perl5/5.16/lib/I18N/LangTags.pm
+file path=usr/perl5/5.16/lib/I18N/LangTags/Detect.pm
+file path=usr/perl5/5.16/lib/I18N/LangTags/List.pm
+dir  path=usr/perl5/5.16/lib/IO
+dir  path=usr/perl5/5.16/lib/IO/Compress
+dir  path=usr/perl5/5.16/lib/IO/Compress/Adapter
+file path=usr/perl5/5.16/lib/IO/Compress/Adapter/Bzip2.pm
+file path=usr/perl5/5.16/lib/IO/Compress/Adapter/Deflate.pm
+file path=usr/perl5/5.16/lib/IO/Compress/Adapter/Identity.pm
+dir  path=usr/perl5/5.16/lib/IO/Compress/Base
+file path=usr/perl5/5.16/lib/IO/Compress/Base.pm
+file path=usr/perl5/5.16/lib/IO/Compress/Base/Common.pm
+file path=usr/perl5/5.16/lib/IO/Compress/Bzip2.pm
+file path=usr/perl5/5.16/lib/IO/Compress/Deflate.pm
+file path=usr/perl5/5.16/lib/IO/Compress/FAQ.pod
+dir  path=usr/perl5/5.16/lib/IO/Compress/Gzip
+file path=usr/perl5/5.16/lib/IO/Compress/Gzip.pm
+file path=usr/perl5/5.16/lib/IO/Compress/Gzip/Constants.pm
+file path=usr/perl5/5.16/lib/IO/Compress/RawDeflate.pm
+dir  path=usr/perl5/5.16/lib/IO/Compress/Zip
+file path=usr/perl5/5.16/lib/IO/Compress/Zip.pm
+file path=usr/perl5/5.16/lib/IO/Compress/Zip/Constants.pm
+dir  path=usr/perl5/5.16/lib/IO/Compress/Zlib
+file path=usr/perl5/5.16/lib/IO/Compress/Zlib/Constants.pm
+file path=usr/perl5/5.16/lib/IO/Compress/Zlib/Extra.pm
+dir  path=usr/perl5/5.16/lib/IO/Uncompress
+dir  path=usr/perl5/5.16/lib/IO/Uncompress/Adapter
+file path=usr/perl5/5.16/lib/IO/Uncompress/Adapter/Bunzip2.pm
+file path=usr/perl5/5.16/lib/IO/Uncompress/Adapter/Identity.pm
+file path=usr/perl5/5.16/lib/IO/Uncompress/Adapter/Inflate.pm
+file path=usr/perl5/5.16/lib/IO/Uncompress/AnyInflate.pm
+file path=usr/perl5/5.16/lib/IO/Uncompress/AnyUncompress.pm
+file path=usr/perl5/5.16/lib/IO/Uncompress/Base.pm
+file path=usr/perl5/5.16/lib/IO/Uncompress/Bunzip2.pm
+file path=usr/perl5/5.16/lib/IO/Uncompress/Gunzip.pm
+file path=usr/perl5/5.16/lib/IO/Uncompress/Inflate.pm
+file path=usr/perl5/5.16/lib/IO/Uncompress/RawInflate.pm
+file path=usr/perl5/5.16/lib/IO/Uncompress/Unzip.pm
+file path=usr/perl5/5.16/lib/IO/Zlib.pm
+dir  path=usr/perl5/5.16/lib/IPC
+file path=usr/perl5/5.16/lib/IPC/Cmd.pm
+file path=usr/perl5/5.16/lib/IPC/Open2.pm
+file path=usr/perl5/5.16/lib/IPC/Open3.pm
+dir  path=usr/perl5/5.16/lib/JSON
+dir  path=usr/perl5/5.16/lib/JSON/PP
+file path=usr/perl5/5.16/lib/JSON/PP.pm
+file path=usr/perl5/5.16/lib/JSON/PP/Boolean.pm
+dir  path=usr/perl5/5.16/lib/Locale
+dir  path=usr/perl5/5.16/lib/Locale/Codes
+file path=usr/perl5/5.16/lib/Locale/Codes.pm
+file path=usr/perl5/5.16/lib/Locale/Codes.pod
+file path=usr/perl5/5.16/lib/Locale/Codes/API.pod
+file path=usr/perl5/5.16/lib/Locale/Codes/Changes.pod
+file path=usr/perl5/5.16/lib/Locale/Codes/Constants.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/Constants.pod
+file path=usr/perl5/5.16/lib/Locale/Codes/Country.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/Country.pod
+file path=usr/perl5/5.16/lib/Locale/Codes/Country_Codes.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/Country_Retired.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/Currency.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/Currency.pod
+file path=usr/perl5/5.16/lib/Locale/Codes/Currency_Codes.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/Currency_Retired.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/LangExt.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/LangExt.pod
+file path=usr/perl5/5.16/lib/Locale/Codes/LangExt_Codes.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/LangExt_Retired.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/LangFam.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/LangFam.pod
+file path=usr/perl5/5.16/lib/Locale/Codes/LangFam_Codes.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/LangFam_Retired.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/LangVar.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/LangVar.pod
+file path=usr/perl5/5.16/lib/Locale/Codes/LangVar_Codes.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/LangVar_Retired.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/Language.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/Language.pod
+file path=usr/perl5/5.16/lib/Locale/Codes/Language_Codes.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/Language_Retired.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/Script.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/Script.pod
+file path=usr/perl5/5.16/lib/Locale/Codes/Script_Codes.pm
+file path=usr/perl5/5.16/lib/Locale/Codes/Script_Retired.pm
+file path=usr/perl5/5.16/lib/Locale/Country.pm
+file path=usr/perl5/5.16/lib/Locale/Country.pod
+file path=usr/perl5/5.16/lib/Locale/Currency.pm
+file path=usr/perl5/5.16/lib/Locale/Currency.pod
+file path=usr/perl5/5.16/lib/Locale/Language.pm
+file path=usr/perl5/5.16/lib/Locale/Language.pod
+dir  path=usr/perl5/5.16/lib/Locale/Maketext
+file path=usr/perl5/5.16/lib/Locale/Maketext.pm
+file path=usr/perl5/5.16/lib/Locale/Maketext.pod
+file path=usr/perl5/5.16/lib/Locale/Maketext/Cookbook.pod
+file path=usr/perl5/5.16/lib/Locale/Maketext/Guts.pm
+file path=usr/perl5/5.16/lib/Locale/Maketext/GutsLoader.pm
+file path=usr/perl5/5.16/lib/Locale/Maketext/Simple.pm
+file path=usr/perl5/5.16/lib/Locale/Maketext/TPJ13.pod
+file path=usr/perl5/5.16/lib/Locale/Script.pm
+file path=usr/perl5/5.16/lib/Locale/Script.pod
+dir  path=usr/perl5/5.16/lib/Log
+dir  path=usr/perl5/5.16/lib/Log/Message
+file path=usr/perl5/5.16/lib/Log/Message.pm
+file path=usr/perl5/5.16/lib/Log/Message/Config.pm
+file path=usr/perl5/5.16/lib/Log/Message/Handlers.pm
+file path=usr/perl5/5.16/lib/Log/Message/Item.pm
+file path=usr/perl5/5.16/lib/Log/Message/Simple.pm
+dir  path=usr/perl5/5.16/lib/Math
+dir  path=usr/perl5/5.16/lib/Math/BigFloat
+file path=usr/perl5/5.16/lib/Math/BigFloat.pm
+file path=usr/perl5/5.16/lib/Math/BigFloat/Trace.pm
+dir  path=usr/perl5/5.16/lib/Math/BigInt
+file path=usr/perl5/5.16/lib/Math/BigInt.pm
+file path=usr/perl5/5.16/lib/Math/BigInt/Calc.pm
+file path=usr/perl5/5.16/lib/Math/BigInt/CalcEmu.pm
+file path=usr/perl5/5.16/lib/Math/BigInt/Trace.pm
+file path=usr/perl5/5.16/lib/Math/BigRat.pm
+file path=usr/perl5/5.16/lib/Math/Complex.pm
+file path=usr/perl5/5.16/lib/Math/Trig.pm
+dir  path=usr/perl5/5.16/lib/Memoize
+file path=usr/perl5/5.16/lib/Memoize.pm
+file path=usr/perl5/5.16/lib/Memoize/AnyDBM_File.pm
+file path=usr/perl5/5.16/lib/Memoize/Expire.pm
+file path=usr/perl5/5.16/lib/Memoize/ExpireFile.pm
+file path=usr/perl5/5.16/lib/Memoize/ExpireTest.pm
+file path=usr/perl5/5.16/lib/Memoize/NDBM_File.pm
+file path=usr/perl5/5.16/lib/Memoize/SDBM_File.pm
+file path=usr/perl5/5.16/lib/Memoize/Storable.pm
+dir  path=usr/perl5/5.16/lib/Module
+dir  path=usr/perl5/5.16/lib/Module/Build
+file path=usr/perl5/5.16/lib/Module/Build.pm
+file path=usr/perl5/5.16/lib/Module/Build/API.pod
+file path=usr/perl5/5.16/lib/Module/Build/Authoring.pod
+file path=usr/perl5/5.16/lib/Module/Build/Base.pm
+file path=usr/perl5/5.16/lib/Module/Build/Bundling.pod
+file path=usr/perl5/5.16/lib/Module/Build/Compat.pm
+file path=usr/perl5/5.16/lib/Module/Build/Config.pm
+file path=usr/perl5/5.16/lib/Module/Build/ConfigData.pm
+file path=usr/perl5/5.16/lib/Module/Build/Cookbook.pm
+file path=usr/perl5/5.16/lib/Module/Build/Dumper.pm
+file path=usr/perl5/5.16/lib/Module/Build/ModuleInfo.pm
+file path=usr/perl5/5.16/lib/Module/Build/Notes.pm
+file path=usr/perl5/5.16/lib/Module/Build/PPMMaker.pm
+dir  path=usr/perl5/5.16/lib/Module/Build/Platform
+file path=usr/perl5/5.16/lib/Module/Build/Platform/Amiga.pm
+file path=usr/perl5/5.16/lib/Module/Build/Platform/Default.pm
+file path=usr/perl5/5.16/lib/Module/Build/Platform/EBCDIC.pm
+file path=usr/perl5/5.16/lib/Module/Build/Platform/MPEiX.pm
+file path=usr/perl5/5.16/lib/Module/Build/Platform/MacOS.pm
+file path=usr/perl5/5.16/lib/Module/Build/Platform/RiscOS.pm
+file path=usr/perl5/5.16/lib/Module/Build/Platform/Unix.pm
+file path=usr/perl5/5.16/lib/Module/Build/Platform/VMS.pm
+file path=usr/perl5/5.16/lib/Module/Build/Platform/VOS.pm
+file path=usr/perl5/5.16/lib/Module/Build/Platform/Windows.pm
+file path=usr/perl5/5.16/lib/Module/Build/Platform/aix.pm
+file path=usr/perl5/5.16/lib/Module/Build/Platform/cygwin.pm
+file path=usr/perl5/5.16/lib/Module/Build/Platform/darwin.pm
+file path=usr/perl5/5.16/lib/Module/Build/Platform/os2.pm
+file path=usr/perl5/5.16/lib/Module/Build/PodParser.pm
+file path=usr/perl5/5.16/lib/Module/Build/Version.pm
+file path=usr/perl5/5.16/lib/Module/Build/YAML.pm
+dir  path=usr/perl5/5.16/lib/Module/CoreList
+file path=usr/perl5/5.16/lib/Module/CoreList.pm
+file path=usr/perl5/5.16/lib/Module/CoreList.pod
+file path=usr/perl5/5.16/lib/Module/CoreList/TieHashDelta.pm
+dir  path=usr/perl5/5.16/lib/Module/Load
+file path=usr/perl5/5.16/lib/Module/Load.pm
+file path=usr/perl5/5.16/lib/Module/Load/Conditional.pm
+file path=usr/perl5/5.16/lib/Module/Loaded.pm
+file path=usr/perl5/5.16/lib/Module/Metadata.pm
+dir  path=usr/perl5/5.16/lib/Module/Pluggable
+file path=usr/perl5/5.16/lib/Module/Pluggable.pm
+file path=usr/perl5/5.16/lib/Module/Pluggable/Object.pm
+file path=usr/perl5/5.16/lib/NEXT.pm
+dir  path=usr/perl5/5.16/lib/Net
+file path=usr/perl5/5.16/lib/Net/Cmd.pm
+file path=usr/perl5/5.16/lib/Net/Config.pm
+file path=usr/perl5/5.16/lib/Net/Domain.pm
+dir  path=usr/perl5/5.16/lib/Net/FTP
+file path=usr/perl5/5.16/lib/Net/FTP.pm
+file path=usr/perl5/5.16/lib/Net/FTP/A.pm
+file path=usr/perl5/5.16/lib/Net/FTP/E.pm
+file path=usr/perl5/5.16/lib/Net/FTP/I.pm
+file path=usr/perl5/5.16/lib/Net/FTP/L.pm
+file path=usr/perl5/5.16/lib/Net/FTP/dataconn.pm
+file path=usr/perl5/5.16/lib/Net/NNTP.pm
+file path=usr/perl5/5.16/lib/Net/Netrc.pm
+file path=usr/perl5/5.16/lib/Net/POP3.pm
+file path=usr/perl5/5.16/lib/Net/Ping.pm
+file path=usr/perl5/5.16/lib/Net/SMTP.pm
+file path=usr/perl5/5.16/lib/Net/Time.pm
+file path=usr/perl5/5.16/lib/Net/hostent.pm
+file path=usr/perl5/5.16/lib/Net/libnetFAQ.pod
+file path=usr/perl5/5.16/lib/Net/netent.pm
+file path=usr/perl5/5.16/lib/Net/protoent.pm
+file path=usr/perl5/5.16/lib/Net/servent.pm
+dir  path=usr/perl5/5.16/lib/Object
+file path=usr/perl5/5.16/lib/Object/Accessor.pm
+dir  path=usr/perl5/5.16/lib/Package
+file path=usr/perl5/5.16/lib/Package/Constants.pm
+dir  path=usr/perl5/5.16/lib/Params
+file path=usr/perl5/5.16/lib/Params/Check.pm
+dir  path=usr/perl5/5.16/lib/Parse
+dir  path=usr/perl5/5.16/lib/Parse/CPAN
+file path=usr/perl5/5.16/lib/Parse/CPAN/Meta.pm
+dir  path=usr/perl5/5.16/lib/Perl
+file path=usr/perl5/5.16/lib/Perl/OSType.pm
+dir  path=usr/perl5/5.16/lib/PerlIO
+file path=usr/perl5/5.16/lib/PerlIO.pm
+dir  path=usr/perl5/5.16/lib/PerlIO/via
+file path=usr/perl5/5.16/lib/PerlIO/via/QuotedPrint.pm
+dir  path=usr/perl5/5.16/lib/Pod
+file path=usr/perl5/5.16/lib/Pod/Checker.pm
+file path=usr/perl5/5.16/lib/Pod/Escapes.pm
+file path=usr/perl5/5.16/lib/Pod/Find.pm
+file path=usr/perl5/5.16/lib/Pod/Functions.pm
+file path=usr/perl5/5.16/lib/Pod/Html.pm
+file path=usr/perl5/5.16/lib/Pod/InputObjects.pm
+file path=usr/perl5/5.16/lib/Pod/LaTeX.pm
+file path=usr/perl5/5.16/lib/Pod/Man.pm
+file path=usr/perl5/5.16/lib/Pod/ParseLink.pm
+file path=usr/perl5/5.16/lib/Pod/ParseUtils.pm
+file path=usr/perl5/5.16/lib/Pod/Parser.pm
+dir  path=usr/perl5/5.16/lib/Pod/Perldoc
+file path=usr/perl5/5.16/lib/Pod/Perldoc.pm
+file path=usr/perl5/5.16/lib/Pod/Perldoc/BaseTo.pm
+file path=usr/perl5/5.16/lib/Pod/Perldoc/GetOptsOO.pm
+file path=usr/perl5/5.16/lib/Pod/Perldoc/ToANSI.pm
+file path=usr/perl5/5.16/lib/Pod/Perldoc/ToChecker.pm
+file path=usr/perl5/5.16/lib/Pod/Perldoc/ToMan.pm
+file path=usr/perl5/5.16/lib/Pod/Perldoc/ToNroff.pm
+file path=usr/perl5/5.16/lib/Pod/Perldoc/ToPod.pm
+file path=usr/perl5/5.16/lib/Pod/Perldoc/ToRtf.pm
+file path=usr/perl5/5.16/lib/Pod/Perldoc/ToTerm.pm
+file path=usr/perl5/5.16/lib/Pod/Perldoc/ToText.pm
+file path=usr/perl5/5.16/lib/Pod/Perldoc/ToTk.pm
+file path=usr/perl5/5.16/lib/Pod/Perldoc/ToXml.pm
+file path=usr/perl5/5.16/lib/Pod/PlainText.pm
+file path=usr/perl5/5.16/lib/Pod/Select.pm
+dir  path=usr/perl5/5.16/lib/Pod/Simple
+file path=usr/perl5/5.16/lib/Pod/Simple.pm
+file path=usr/perl5/5.16/lib/Pod/Simple.pod
+file path=usr/perl5/5.16/lib/Pod/Simple/BlackBox.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/Checker.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/Debug.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/DumpAsText.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/DumpAsXML.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/HTML.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/HTMLBatch.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/HTMLLegacy.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/LinkSection.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/Methody.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/Progress.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/PullParser.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/PullParserEndToken.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/PullParserStartToken.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/PullParserTextToken.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/PullParserToken.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/RTF.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/Search.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/SimpleTree.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/Subclassing.pod
+file path=usr/perl5/5.16/lib/Pod/Simple/Text.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/TextContent.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/TiedOutFH.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/Transcode.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/TranscodeDumb.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/TranscodeSmart.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/XHTML.pm
+file path=usr/perl5/5.16/lib/Pod/Simple/XMLOutStream.pm
+dir  path=usr/perl5/5.16/lib/Pod/Text
+file path=usr/perl5/5.16/lib/Pod/Text.pm
+file path=usr/perl5/5.16/lib/Pod/Text/Color.pm
+file path=usr/perl5/5.16/lib/Pod/Text/Overstrike.pm
+file path=usr/perl5/5.16/lib/Pod/Text/Termcap.pm
+file path=usr/perl5/5.16/lib/Pod/Usage.pm
+file path=usr/perl5/5.16/lib/Safe.pm
+dir  path=usr/perl5/5.16/lib/Search
+file path=usr/perl5/5.16/lib/Search/Dict.pm
+file path=usr/perl5/5.16/lib/SelectSaver.pm
+file path=usr/perl5/5.16/lib/SelfLoader.pm
+file path=usr/perl5/5.16/lib/Symbol.pm
+dir  path=usr/perl5/5.16/lib/TAP
+file path=usr/perl5/5.16/lib/TAP/Base.pm
+dir  path=usr/perl5/5.16/lib/TAP/Formatter
+file path=usr/perl5/5.16/lib/TAP/Formatter/Base.pm
+file path=usr/perl5/5.16/lib/TAP/Formatter/Color.pm
+dir  path=usr/perl5/5.16/lib/TAP/Formatter/Console
+file path=usr/perl5/5.16/lib/TAP/Formatter/Console.pm
+file path=usr/perl5/5.16/lib/TAP/Formatter/Console/ParallelSession.pm
+file path=usr/perl5/5.16/lib/TAP/Formatter/Console/Session.pm
+dir  path=usr/perl5/5.16/lib/TAP/Formatter/File
+file path=usr/perl5/5.16/lib/TAP/Formatter/File.pm
+file path=usr/perl5/5.16/lib/TAP/Formatter/File/Session.pm
+file path=usr/perl5/5.16/lib/TAP/Formatter/Session.pm
+dir  path=usr/perl5/5.16/lib/TAP/Harness
+file path=usr/perl5/5.16/lib/TAP/Harness.pm
+file path=usr/perl5/5.16/lib/TAP/Harness/Beyond.pod
+file path=usr/perl5/5.16/lib/TAP/Object.pm
+dir  path=usr/perl5/5.16/lib/TAP/Parser
+file path=usr/perl5/5.16/lib/TAP/Parser.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Aggregator.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Grammar.pm
+dir  path=usr/perl5/5.16/lib/TAP/Parser/Iterator
+file path=usr/perl5/5.16/lib/TAP/Parser/Iterator.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Iterator/Array.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Iterator/Process.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Iterator/Stream.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/IteratorFactory.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Multiplexer.pm
+dir  path=usr/perl5/5.16/lib/TAP/Parser/Result
+file path=usr/perl5/5.16/lib/TAP/Parser/Result.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Result/Bailout.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Result/Comment.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Result/Plan.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Result/Pragma.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Result/Test.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Result/Unknown.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Result/Version.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Result/YAML.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/ResultFactory.pm
+dir  path=usr/perl5/5.16/lib/TAP/Parser/Scheduler
+file path=usr/perl5/5.16/lib/TAP/Parser/Scheduler.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Scheduler/Job.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Scheduler/Spinner.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Source.pm
+dir  path=usr/perl5/5.16/lib/TAP/Parser/SourceHandler
+file path=usr/perl5/5.16/lib/TAP/Parser/SourceHandler.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/SourceHandler/Executable.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/SourceHandler/File.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/SourceHandler/Handle.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/SourceHandler/Perl.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/SourceHandler/RawTAP.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/Utils.pm
+dir  path=usr/perl5/5.16/lib/TAP/Parser/YAMLish
+file path=usr/perl5/5.16/lib/TAP/Parser/YAMLish/Reader.pm
+file path=usr/perl5/5.16/lib/TAP/Parser/YAMLish/Writer.pm
+dir  path=usr/perl5/5.16/lib/Term
+file path=usr/perl5/5.16/lib/Term/ANSIColor.pm
+file path=usr/perl5/5.16/lib/Term/Cap.pm
+file path=usr/perl5/5.16/lib/Term/Complete.pm
+file path=usr/perl5/5.16/lib/Term/ReadLine.pm
+dir  path=usr/perl5/5.16/lib/Term/UI
+file path=usr/perl5/5.16/lib/Term/UI.pm
+file path=usr/perl5/5.16/lib/Term/UI/History.pm
+dir  path=usr/perl5/5.16/lib/Test
+file path=usr/perl5/5.16/lib/Test.pm
+dir  path=usr/perl5/5.16/lib/Test/Builder
+file path=usr/perl5/5.16/lib/Test/Builder.pm
+file path=usr/perl5/5.16/lib/Test/Builder/Module.pm
+dir  path=usr/perl5/5.16/lib/Test/Builder/Tester
+file path=usr/perl5/5.16/lib/Test/Builder/Tester.pm
+file path=usr/perl5/5.16/lib/Test/Builder/Tester/Color.pm
+file path=usr/perl5/5.16/lib/Test/Harness.pm
+file path=usr/perl5/5.16/lib/Test/More.pm
+file path=usr/perl5/5.16/lib/Test/Simple.pm
+file path=usr/perl5/5.16/lib/Test/Tutorial.pod
+dir  path=usr/perl5/5.16/lib/Text
+file path=usr/perl5/5.16/lib/Text/Abbrev.pm
+file path=usr/perl5/5.16/lib/Text/Balanced.pm
+file path=usr/perl5/5.16/lib/Text/ParseWords.pm
+file path=usr/perl5/5.16/lib/Text/Tabs.pm
+file path=usr/perl5/5.16/lib/Text/Wrap.pm
+dir  path=usr/perl5/5.16/lib/Thread
+file path=usr/perl5/5.16/lib/Thread.pm
+file path=usr/perl5/5.16/lib/Thread/Queue.pm
+file path=usr/perl5/5.16/lib/Thread/Semaphore.pm
+dir  path=usr/perl5/5.16/lib/Tie
+file path=usr/perl5/5.16/lib/Tie/Array.pm
+file path=usr/perl5/5.16/lib/Tie/File.pm
+file path=usr/perl5/5.16/lib/Tie/Handle.pm
+file path=usr/perl5/5.16/lib/Tie/Hash.pm
+file path=usr/perl5/5.16/lib/Tie/Memoize.pm
+file path=usr/perl5/5.16/lib/Tie/RefHash.pm
+file path=usr/perl5/5.16/lib/Tie/Scalar.pm
+file path=usr/perl5/5.16/lib/Tie/StdHandle.pm
+file path=usr/perl5/5.16/lib/Tie/SubstrHash.pm
+dir  path=usr/perl5/5.16/lib/Time
+file path=usr/perl5/5.16/lib/Time/Local.pm
+file path=usr/perl5/5.16/lib/Time/gmtime.pm
+file path=usr/perl5/5.16/lib/Time/localtime.pm
+file path=usr/perl5/5.16/lib/Time/tm.pm
+file path=usr/perl5/5.16/lib/UNIVERSAL.pm
+dir  path=usr/perl5/5.16/lib/Unicode
+dir  path=usr/perl5/5.16/lib/Unicode/Collate
+dir  path=usr/perl5/5.16/lib/Unicode/Collate/CJK
+file path=usr/perl5/5.16/lib/Unicode/Collate/CJK/Big5.pm
+file path=usr/perl5/5.16/lib/Unicode/Collate/CJK/GB2312.pm
+file path=usr/perl5/5.16/lib/Unicode/Collate/CJK/JISX0208.pm
+file path=usr/perl5/5.16/lib/Unicode/Collate/CJK/Korean.pm
+file path=usr/perl5/5.16/lib/Unicode/Collate/CJK/Pinyin.pm
+file path=usr/perl5/5.16/lib/Unicode/Collate/CJK/Stroke.pm
+dir  path=usr/perl5/5.16/lib/Unicode/Collate/Locale
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/af.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/ar.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/as.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/az.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/be.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/bg.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/bn.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/ca.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/cs.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/cy.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/da.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/de_phone.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/eo.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/es.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/es_trad.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/et.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/fa.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/fi.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/fi_phone.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/fil.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/fo.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/fr.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/gu.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/ha.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/haw.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/hi.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/hr.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/hu.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/hy.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/ig.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/is.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/ja.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/kk.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/kl.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/kn.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/ko.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/kok.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/ln.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/lt.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/lv.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/mk.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/ml.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/mr.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/mt.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/nb.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/nn.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/nso.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/om.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/or.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/pa.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/pl.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/ro.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/ru.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/sa.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/se.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/si.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/si_dict.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/sk.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/sl.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/sq.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/sr.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/sv.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/sv_refo.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/ta.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/te.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/th.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/tn.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/to.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/tr.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/uk.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/ur.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/vi.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/wae.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/wo.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/yo.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/zh.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/zh_big5.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/zh_gb.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/zh_pin.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/Locale/zh_strk.pl
+file path=usr/perl5/5.16/lib/Unicode/Collate/allkeys.txt
+file path=usr/perl5/5.16/lib/Unicode/Collate/keys.txt
+file path=usr/perl5/5.16/lib/Unicode/UCD.pm
+dir  path=usr/perl5/5.16/lib/User
+file path=usr/perl5/5.16/lib/User/grent.pm
+file path=usr/perl5/5.16/lib/User/pwent.pm
+dir  path=usr/perl5/5.16/lib/Version
+file path=usr/perl5/5.16/lib/Version/Requirements.pm
+file path=usr/perl5/5.16/lib/XSLoader.pm
+file path=usr/perl5/5.16/lib/_charnames.pm
+dir  path=usr/perl5/5.16/lib/autodie
+file path=usr/perl5/5.16/lib/autodie.pm
+dir  path=usr/perl5/5.16/lib/autodie/exception
+file path=usr/perl5/5.16/lib/autodie/exception.pm
+file path=usr/perl5/5.16/lib/autodie/exception/system.pm
+file path=usr/perl5/5.16/lib/autodie/hints.pm
+file path=usr/perl5/5.16/lib/autouse.pm
+file path=usr/perl5/5.16/lib/base.pm
+file path=usr/perl5/5.16/lib/bigint.pm
+file path=usr/perl5/5.16/lib/bignum.pm
+file path=usr/perl5/5.16/lib/bigrat.pm
+file path=usr/perl5/5.16/lib/blib.pm
+file path=usr/perl5/5.16/lib/bytes.pm
+file path=usr/perl5/5.16/lib/bytes_heavy.pl
+file path=usr/perl5/5.16/lib/charnames.pm
+file path=usr/perl5/5.16/lib/constant.pm
+file path=usr/perl5/5.16/lib/deprecate.pm
+file path=usr/perl5/5.16/lib/diagnostics.pm
+file path=usr/perl5/5.16/lib/dumpvar.pl
+dir  path=usr/perl5/5.16/lib/encoding
+file path=usr/perl5/5.16/lib/encoding/warnings.pm
+file path=usr/perl5/5.16/lib/feature.pm
+file path=usr/perl5/5.16/lib/fields.pm
+file path=usr/perl5/5.16/lib/filetest.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/.packlist
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/B
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/B.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/B/Concise.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/B/Showlex.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/B/Terse.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/B/Xref.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/EXTERN.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/INTERN.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/XSUB.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/av.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/bitcount.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/charclass_invlists.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/config.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/cop.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/cv.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/dosish.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/embed.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/embedvar.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/fakesdio.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/fakethr.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/feature.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/form.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/git_version.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/gv.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/handy.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/hv.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/intrpvar.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/iperlsys.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/keywords.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/l1_char_class_tab.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/libperl.so
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/malloc_ctl.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/metaconfig.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/mg.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/mg_data.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/mg_raw.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/mg_vtable.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/mydtrace.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/nostdio.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/op.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/op_reg_common.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/opcode.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/opnames.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/overload.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/pad.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/parser.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/patchlevel.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/perl.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/perlapi.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/perldtrace.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/perlio.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/perliol.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/perlsdio.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/perlsfio.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/perlvars.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/perly.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/pp.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/pp_proto.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/proto.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/reentr.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/regcharclass.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/regcomp.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/regexp.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/regnodes.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/scope.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/sv.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/thread.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/time64.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/time64_config.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/uconfig.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/unixish.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/utf8.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/utfebcdic.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/util.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/uudmap.h
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/CORE/warnings.h
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Compress
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Compress/Raw
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Compress/Raw/Bzip2.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Compress/Raw/Zlib.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Config.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Config.pod
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Config_git.pl
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Config_heavy.pl
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Cwd.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/DB_File.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Data
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Data/Dumper.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Devel
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Devel/PPPort.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Devel/Peek.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Digest
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Digest/MD5.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Digest/SHA.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/DynaLoader.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/Alias.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/Byte.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/CJKConstants.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/CN
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/CN.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/CN/HZ.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/Config.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/EBCDIC.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/Encoder.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/Encoding.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/GSM0338.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/Guess.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/JP
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/JP.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/JP/H2Z.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/JP/JIS7.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/KR
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/KR.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/KR/2022_KR.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/MIME
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/MIME/Header
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/MIME/Header.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/MIME/Header/ISO_2022_JP.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/MIME/Name.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/Symbol.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/TW.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/Unicode
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/Unicode.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Encode/Unicode/UTF7.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Errno.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Fcntl.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/File
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/File/Glob.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/File/Spec
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/File/Spec.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/File/Spec/Cygwin.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/File/Spec/Epoc.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/File/Spec/Functions.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/File/Spec/Mac.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/File/Spec/OS2.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/File/Spec/Unix.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/File/Spec/VMS.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/File/Spec/Win32.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Filter
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Filter/Util
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Filter/Util/Call.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/GDBM_File.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Hash
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Hash/Util
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Hash/Util.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Hash/Util/FieldHash.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/I18N
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/I18N/Langinfo.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IO
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IO.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IO/Dir.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IO/File.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IO/Handle.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IO/Pipe.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IO/Poll.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IO/Seekable.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IO/Select.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IO/Socket
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IO/Socket.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IO/Socket/INET.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IO/Socket/UNIX.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IPC
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IPC/Msg.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IPC/Semaphore.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IPC/SharedMem.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/IPC/SysV.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/List
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/List/Util
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/List/Util.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/List/Util/XS.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/MIME
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/MIME/Base64.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/MIME/QuotedPrint.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Math
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Math/BigInt
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Math/BigInt/FastCalc.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/NDBM_File.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/O.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/ODBM_File.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Opcode.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/POSIX.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/POSIX.pod
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/PerlIO
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/PerlIO/encoding.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/PerlIO/mmap.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/PerlIO/scalar.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/PerlIO/via.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/SDBM_File.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Scalar
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Scalar/Util.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Socket.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Storable.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Sys
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Sys/Hostname.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Sys/Syslog.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Text
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Text/Soundex.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Tie
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Tie/Hash
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Tie/Hash/NamedCapture.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Time
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Time/HiRes.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Time/Piece.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Time/Seconds.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Unicode
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Unicode/Collate
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Unicode/Collate.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Unicode/Collate/Locale.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/Unicode/Normalize.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/arybase.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/attributes.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/B
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/B/B.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/B/B.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Compress
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Compress/Raw
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Compress/Raw/Bzip2
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Compress/Raw/Bzip2/Bzip2.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Compress/Raw/Bzip2/Bzip2.so
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Compress/Raw/Bzip2/autosplit.ix
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Compress/Raw/Zlib
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Compress/Raw/Zlib/Zlib.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Compress/Raw/Zlib/Zlib.so
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Compress/Raw/Zlib/autosplit.ix
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Cwd
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Cwd/Cwd.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Cwd/Cwd.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/DB_File
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/DB_File/DB_File.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/DB_File/DB_File.so
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/DB_File/autosplit.ix
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Data
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Data/Dumper
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Data/Dumper/Dumper.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Data/Dumper/Dumper.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Devel
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Devel/PPPort
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Devel/PPPort/PPPort.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Devel/PPPort/PPPort.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Devel/Peek
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Devel/Peek/Peek.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Devel/Peek/Peek.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Digest
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Digest/MD5
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Digest/MD5/MD5.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Digest/MD5/MD5.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Digest/SHA
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Digest/SHA/SHA.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Digest/SHA/SHA.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/Byte
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/Byte/Byte.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/Byte/Byte.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/CN
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/CN/CN.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/CN/CN.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/EBCDIC
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/EBCDIC/EBCDIC.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/EBCDIC/EBCDIC.so
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/Encode.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/Encode.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/JP
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/JP/JP.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/JP/JP.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/KR
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/KR/KR.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/KR/KR.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/Symbol
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/Symbol/Symbol.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/Symbol/Symbol.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/TW
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/TW/TW.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/TW/TW.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/Unicode
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/Unicode/Unicode.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Encode/Unicode/Unicode.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Fcntl
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Fcntl/Fcntl.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Fcntl/Fcntl.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/File
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/File/Glob
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/File/Glob/Glob.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/File/Glob/Glob.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Filter
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Filter/Util
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Filter/Util/Call
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Filter/Util/Call/Call.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Filter/Util/Call/Call.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/GDBM_File
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/GDBM_File/GDBM_File.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/GDBM_File/GDBM_File.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Hash
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Hash/Util
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Hash/Util/FieldHash
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Hash/Util/FieldHash/FieldHash.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Hash/Util/FieldHash/FieldHash.so
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Hash/Util/Util.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Hash/Util/Util.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/I18N
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/I18N/Langinfo
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/I18N/Langinfo/Langinfo.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/I18N/Langinfo/Langinfo.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/IO
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/IO/IO.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/IO/IO.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/IPC
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/IPC/SysV
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/IPC/SysV/SysV.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/IPC/SysV/SysV.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/List
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/List/Util
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/List/Util/Util.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/List/Util/Util.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/MIME
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/MIME/Base64
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/MIME/Base64/Base64.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/MIME/Base64/Base64.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Math
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Math/BigInt
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Math/BigInt/FastCalc
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Math/BigInt/FastCalc/FastCalc.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Math/BigInt/FastCalc/FastCalc.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/NDBM_File
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/NDBM_File/NDBM_File.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/NDBM_File/NDBM_File.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/ODBM_File
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/ODBM_File/ODBM_File.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/ODBM_File/ODBM_File.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Opcode
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Opcode/Opcode.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Opcode/Opcode.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/POSIX
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/POSIX/POSIX.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/POSIX/POSIX.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/PerlIO
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/PerlIO/encoding
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/PerlIO/encoding/encoding.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/PerlIO/encoding/encoding.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/PerlIO/mmap
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/PerlIO/mmap/mmap.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/PerlIO/mmap/mmap.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/PerlIO/scalar
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/PerlIO/scalar/scalar.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/PerlIO/scalar/scalar.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/PerlIO/via
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/PerlIO/via/via.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/PerlIO/via/via.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/SDBM_File
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/SDBM_File/SDBM_File.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/SDBM_File/SDBM_File.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Socket
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Socket/Socket.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Socket/Socket.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Storable
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Storable/Storable.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Storable/Storable.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Sys
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Sys/Hostname
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Sys/Hostname/Hostname.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Sys/Hostname/Hostname.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Sys/Syslog
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Sys/Syslog/Syslog.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Sys/Syslog/Syslog.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Text
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Text/Soundex
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Text/Soundex/Soundex.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Text/Soundex/Soundex.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Tie
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Tie/Hash
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Tie/Hash/NamedCapture
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Tie/Hash/NamedCapture/NamedCapture.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Tie/Hash/NamedCapture/NamedCapture.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Time
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Time/HiRes
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Time/HiRes/HiRes.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Time/HiRes/HiRes.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Time/Piece
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Time/Piece/Piece.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Time/Piece/Piece.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Unicode
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Unicode/Collate
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Unicode/Collate/Collate.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Unicode/Collate/Collate.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Unicode/Normalize
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Unicode/Normalize/Normalize.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/Unicode/Normalize/Normalize.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/arybase
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/arybase/arybase.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/arybase/arybase.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/attributes
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/attributes/attributes.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/attributes/attributes.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/mro
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/mro/mro.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/mro/mro.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/re
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/re/re.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/re/re.so
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/sdbm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/sdbm/extralibs.ld
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/threads
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/threads/shared
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/threads/shared/shared.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/threads/shared/shared.so
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/threads/threads.bs
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/auto/threads/threads.so
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/encoding.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/lib.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/mro.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/ops.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/re.pm
+dir  path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/threads
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/threads.pm
+file path=usr/perl5/5.16/lib/$(P_ARCH)-solaris-64/threads/shared.pm
+file path=usr/perl5/5.16/lib/if.pm
+dir  path=usr/perl5/5.16/lib/inc
+dir  path=usr/perl5/5.16/lib/inc/latest
+file path=usr/perl5/5.16/lib/inc/latest.pm
+file path=usr/perl5/5.16/lib/inc/latest/private.pm
+file path=usr/perl5/5.16/lib/integer.pm
+file path=usr/perl5/5.16/lib/less.pm
+file path=usr/perl5/5.16/lib/locale.pm
+file path=usr/perl5/5.16/lib/open.pm
+dir  path=usr/perl5/5.16/lib/overload
+file path=usr/perl5/5.16/lib/overload.pm
+file path=usr/perl5/5.16/lib/overload/numbers.pm
+file path=usr/perl5/5.16/lib/overloading.pm
+file path=usr/perl5/5.16/lib/parent.pm
+file path=usr/perl5/5.16/lib/perl5db.pl
+file path=usr/perl5/5.16/lib/perlfaq.pm
+dir  path=usr/perl5/5.16/lib/pod
+file path=usr/perl5/5.16/lib/pod/a2p.pod
+file path=usr/perl5/5.16/lib/pod/perl.pod
+file path=usr/perl5/5.16/lib/pod/perl5004delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5005delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5100delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5101delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5120delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5121delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5122delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5123delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5124delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5140delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5141delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5142delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5143delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5160delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5161delta.pod
+file path=usr/perl5/5.16/lib/pod/perl5162delta.pod
+file path=usr/perl5/5.16/lib/pod/perl561delta.pod
+file path=usr/perl5/5.16/lib/pod/perl56delta.pod
+file path=usr/perl5/5.16/lib/pod/perl581delta.pod
+file path=usr/perl5/5.16/lib/pod/perl582delta.pod
+file path=usr/perl5/5.16/lib/pod/perl583delta.pod
+file path=usr/perl5/5.16/lib/pod/perl584delta.pod
+file path=usr/perl5/5.16/lib/pod/perl585delta.pod
+file path=usr/perl5/5.16/lib/pod/perl586delta.pod
+file path=usr/perl5/5.16/lib/pod/perl587delta.pod
+file path=usr/perl5/5.16/lib/pod/perl588delta.pod
+file path=usr/perl5/5.16/lib/pod/perl589delta.pod
+file path=usr/perl5/5.16/lib/pod/perl58delta.pod
+file path=usr/perl5/5.16/lib/pod/perlaix.pod
+file path=usr/perl5/5.16/lib/pod/perlamiga.pod
+file path=usr/perl5/5.16/lib/pod/perlapi.pod
+file path=usr/perl5/5.16/lib/pod/perlapio.pod
+file path=usr/perl5/5.16/lib/pod/perlartistic.pod
+file path=usr/perl5/5.16/lib/pod/perlbeos.pod
+file path=usr/perl5/5.16/lib/pod/perlbook.pod
+file path=usr/perl5/5.16/lib/pod/perlboot.pod
+file path=usr/perl5/5.16/lib/pod/perlbot.pod
+file path=usr/perl5/5.16/lib/pod/perlbs2000.pod
+file path=usr/perl5/5.16/lib/pod/perlcall.pod
+file path=usr/perl5/5.16/lib/pod/perlce.pod
+file path=usr/perl5/5.16/lib/pod/perlcheat.pod
+file path=usr/perl5/5.16/lib/pod/perlclib.pod
+file path=usr/perl5/5.16/lib/pod/perlcn.pod
+file path=usr/perl5/5.16/lib/pod/perlcommunity.pod
+file path=usr/perl5/5.16/lib/pod/perlcygwin.pod
+file path=usr/perl5/5.16/lib/pod/perldata.pod
+file path=usr/perl5/5.16/lib/pod/perldbmfilter.pod
+file path=usr/perl5/5.16/lib/pod/perldebguts.pod
+file path=usr/perl5/5.16/lib/pod/perldebtut.pod
+file path=usr/perl5/5.16/lib/pod/perldebug.pod
+file path=usr/perl5/5.16/lib/pod/perldelta.pod
+file path=usr/perl5/5.16/lib/pod/perldgux.pod
+file path=usr/perl5/5.16/lib/pod/perldiag.pod
+file path=usr/perl5/5.16/lib/pod/perldoc.pod
+file path=usr/perl5/5.16/lib/pod/perldos.pod
+file path=usr/perl5/5.16/lib/pod/perldsc.pod
+file path=usr/perl5/5.16/lib/pod/perldtrace.pod
+file path=usr/perl5/5.16/lib/pod/perlebcdic.pod
+file path=usr/perl5/5.16/lib/pod/perlembed.pod
+file path=usr/perl5/5.16/lib/pod/perlepoc.pod
+file path=usr/perl5/5.16/lib/pod/perlexperiment.pod
+file path=usr/perl5/5.16/lib/pod/perlfaq.pod
+file path=usr/perl5/5.16/lib/pod/perlfaq1.pod
+file path=usr/perl5/5.16/lib/pod/perlfaq2.pod
+file path=usr/perl5/5.16/lib/pod/perlfaq3.pod
+file path=usr/perl5/5.16/lib/pod/perlfaq4.pod
+file path=usr/perl5/5.16/lib/pod/perlfaq5.pod
+file path=usr/perl5/5.16/lib/pod/perlfaq6.pod
+file path=usr/perl5/5.16/lib/pod/perlfaq7.pod
+file path=usr/perl5/5.16/lib/pod/perlfaq8.pod
+file path=usr/perl5/5.16/lib/pod/perlfaq9.pod
+file path=usr/perl5/5.16/lib/pod/perlfilter.pod
+file path=usr/perl5/5.16/lib/pod/perlfork.pod
+file path=usr/perl5/5.16/lib/pod/perlform.pod
+file path=usr/perl5/5.16/lib/pod/perlfreebsd.pod
+file path=usr/perl5/5.16/lib/pod/perlfunc.pod
+file path=usr/perl5/5.16/lib/pod/perlgit.pod
+file path=usr/perl5/5.16/lib/pod/perlglossary.pod
+file path=usr/perl5/5.16/lib/pod/perlgpl.pod
+file path=usr/perl5/5.16/lib/pod/perlguts.pod
+file path=usr/perl5/5.16/lib/pod/perlhack.pod
+file path=usr/perl5/5.16/lib/pod/perlhacktips.pod
+file path=usr/perl5/5.16/lib/pod/perlhacktut.pod
+file path=usr/perl5/5.16/lib/pod/perlhaiku.pod
+file path=usr/perl5/5.16/lib/pod/perlhist.pod
+file path=usr/perl5/5.16/lib/pod/perlhpux.pod
+file path=usr/perl5/5.16/lib/pod/perlhurd.pod
+file path=usr/perl5/5.16/lib/pod/perlintern.pod
+file path=usr/perl5/5.16/lib/pod/perlinterp.pod
+file path=usr/perl5/5.16/lib/pod/perlintro.pod
+file path=usr/perl5/5.16/lib/pod/perliol.pod
+file path=usr/perl5/5.16/lib/pod/perlipc.pod
+file path=usr/perl5/5.16/lib/pod/perlirix.pod
+file path=usr/perl5/5.16/lib/pod/perljp.pod
+file path=usr/perl5/5.16/lib/pod/perlko.pod
+file path=usr/perl5/5.16/lib/pod/perllexwarn.pod
+file path=usr/perl5/5.16/lib/pod/perllinux.pod
+file path=usr/perl5/5.16/lib/pod/perllocale.pod
+file path=usr/perl5/5.16/lib/pod/perllol.pod
+file path=usr/perl5/5.16/lib/pod/perlmacos.pod
+file path=usr/perl5/5.16/lib/pod/perlmacosx.pod
+file path=usr/perl5/5.16/lib/pod/perlmod.pod
+file path=usr/perl5/5.16/lib/pod/perlmodinstall.pod
+file path=usr/perl5/5.16/lib/pod/perlmodlib.pod
+file path=usr/perl5/5.16/lib/pod/perlmodstyle.pod
+file path=usr/perl5/5.16/lib/pod/perlmpeix.pod
+file path=usr/perl5/5.16/lib/pod/perlmroapi.pod
+file path=usr/perl5/5.16/lib/pod/perlnetware.pod
+file path=usr/perl5/5.16/lib/pod/perlnewmod.pod
+file path=usr/perl5/5.16/lib/pod/perlnumber.pod
+file path=usr/perl5/5.16/lib/pod/perlobj.pod
+file path=usr/perl5/5.16/lib/pod/perlootut.pod
+file path=usr/perl5/5.16/lib/pod/perlop.pod
+file path=usr/perl5/5.16/lib/pod/perlopenbsd.pod
+file path=usr/perl5/5.16/lib/pod/perlopentut.pod
+file path=usr/perl5/5.16/lib/pod/perlos2.pod
+file path=usr/perl5/5.16/lib/pod/perlos390.pod
+file path=usr/perl5/5.16/lib/pod/perlos400.pod
+file path=usr/perl5/5.16/lib/pod/perlpacktut.pod
+file path=usr/perl5/5.16/lib/pod/perlperf.pod
+file path=usr/perl5/5.16/lib/pod/perlplan9.pod
+file path=usr/perl5/5.16/lib/pod/perlpod.pod
+file path=usr/perl5/5.16/lib/pod/perlpodspec.pod
+file path=usr/perl5/5.16/lib/pod/perlpodstyle.pod
+file path=usr/perl5/5.16/lib/pod/perlpolicy.pod
+file path=usr/perl5/5.16/lib/pod/perlport.pod
+file path=usr/perl5/5.16/lib/pod/perlpragma.pod
+file path=usr/perl5/5.16/lib/pod/perlqnx.pod
+file path=usr/perl5/5.16/lib/pod/perlre.pod
+file path=usr/perl5/5.16/lib/pod/perlreapi.pod
+file path=usr/perl5/5.16/lib/pod/perlrebackslash.pod
+file path=usr/perl5/5.16/lib/pod/perlrecharclass.pod
+file path=usr/perl5/5.16/lib/pod/perlref.pod
+file path=usr/perl5/5.16/lib/pod/perlreftut.pod
+file path=usr/perl5/5.16/lib/pod/perlreguts.pod
+file path=usr/perl5/5.16/lib/pod/perlrequick.pod
+file path=usr/perl5/5.16/lib/pod/perlreref.pod
+file path=usr/perl5/5.16/lib/pod/perlretut.pod
+file path=usr/perl5/5.16/lib/pod/perlriscos.pod
+file path=usr/perl5/5.16/lib/pod/perlrun.pod
+file path=usr/perl5/5.16/lib/pod/perlsec.pod
+file path=usr/perl5/5.16/lib/pod/perlsolaris.pod
+file path=usr/perl5/5.16/lib/pod/perlsource.pod
+file path=usr/perl5/5.16/lib/pod/perlstyle.pod
+file path=usr/perl5/5.16/lib/pod/perlsub.pod
+file path=usr/perl5/5.16/lib/pod/perlsymbian.pod
+file path=usr/perl5/5.16/lib/pod/perlsyn.pod
+file path=usr/perl5/5.16/lib/pod/perlthrtut.pod
+file path=usr/perl5/5.16/lib/pod/perltie.pod
+file path=usr/perl5/5.16/lib/pod/perltoc.pod
+file path=usr/perl5/5.16/lib/pod/perltodo.pod
+file path=usr/perl5/5.16/lib/pod/perltooc.pod
+file path=usr/perl5/5.16/lib/pod/perltoot.pod
+file path=usr/perl5/5.16/lib/pod/perltrap.pod
+file path=usr/perl5/5.16/lib/pod/perltru64.pod
+file path=usr/perl5/5.16/lib/pod/perltw.pod
+file path=usr/perl5/5.16/lib/pod/perlunicode.pod
+file path=usr/perl5/5.16/lib/pod/perlunifaq.pod
+file path=usr/perl5/5.16/lib/pod/perluniintro.pod
+file path=usr/perl5/5.16/lib/pod/perluniprops.pod
+file path=usr/perl5/5.16/lib/pod/perlunitut.pod
+file path=usr/perl5/5.16/lib/pod/perlutil.pod
+file path=usr/perl5/5.16/lib/pod/perluts.pod
+file path=usr/perl5/5.16/lib/pod/perlvar.pod
+file path=usr/perl5/5.16/lib/pod/perlvmesa.pod
+file path=usr/perl5/5.16/lib/pod/perlvms.pod
+file path=usr/perl5/5.16/lib/pod/perlvos.pod
+file path=usr/perl5/5.16/lib/pod/perlwin32.pod
+file path=usr/perl5/5.16/lib/pod/perlxs.pod
+file path=usr/perl5/5.16/lib/pod/perlxstut.pod
+file path=usr/perl5/5.16/lib/pod/perlxstypemap.pod
+file path=usr/perl5/5.16/lib/sigtrap.pm
+file path=usr/perl5/5.16/lib/sort.pm
+file path=usr/perl5/5.16/lib/strict.pm
+file path=usr/perl5/5.16/lib/subs.pm
+dir  path=usr/perl5/5.16/lib/unicore
+file path=usr/perl5/5.16/lib/unicore/Blocks.txt
+file path=usr/perl5/5.16/lib/unicore/CaseFolding.txt
+file path=usr/perl5/5.16/lib/unicore/CombiningClass.pl
+file path=usr/perl5/5.16/lib/unicore/Decomposition.pl
+file path=usr/perl5/5.16/lib/unicore/Heavy.pl
+file path=usr/perl5/5.16/lib/unicore/Name.pl
+file path=usr/perl5/5.16/lib/unicore/Name.pm
+file path=usr/perl5/5.16/lib/unicore/NamedSequences.txt
+file path=usr/perl5/5.16/lib/unicore/SpecialCasing.txt
+dir  path=usr/perl5/5.16/lib/unicore/To
+file path=usr/perl5/5.16/lib/unicore/To/Age.pl
+file path=usr/perl5/5.16/lib/unicore/To/Bc.pl
+file path=usr/perl5/5.16/lib/unicore/To/Bmg.pl
+file path=usr/perl5/5.16/lib/unicore/To/Cf.pl
+file path=usr/perl5/5.16/lib/unicore/To/Digit.pl
+file path=usr/perl5/5.16/lib/unicore/To/Ea.pl
+file path=usr/perl5/5.16/lib/unicore/To/Fold.pl
+file path=usr/perl5/5.16/lib/unicore/To/GCB.pl
+file path=usr/perl5/5.16/lib/unicore/To/Gc.pl
+file path=usr/perl5/5.16/lib/unicore/To/Hst.pl
+file path=usr/perl5/5.16/lib/unicore/To/Isc.pl
+file path=usr/perl5/5.16/lib/unicore/To/Jg.pl
+file path=usr/perl5/5.16/lib/unicore/To/Jt.pl
+file path=usr/perl5/5.16/lib/unicore/To/Lb.pl
+file path=usr/perl5/5.16/lib/unicore/To/Lc.pl
+file path=usr/perl5/5.16/lib/unicore/To/Lower.pl
+file path=usr/perl5/5.16/lib/unicore/To/NFCQC.pl
+file path=usr/perl5/5.16/lib/unicore/To/NFDQC.pl
+file path=usr/perl5/5.16/lib/unicore/To/NFKCCF.pl
+file path=usr/perl5/5.16/lib/unicore/To/NFKCQC.pl
+file path=usr/perl5/5.16/lib/unicore/To/NFKDQC.pl
+file path=usr/perl5/5.16/lib/unicore/To/Na1.pl
+file path=usr/perl5/5.16/lib/unicore/To/NameAlia.pl
+file path=usr/perl5/5.16/lib/unicore/To/Nt.pl
+file path=usr/perl5/5.16/lib/unicore/To/Nv.pl
+file path=usr/perl5/5.16/lib/unicore/To/PerlDeci.pl
+file path=usr/perl5/5.16/lib/unicore/To/SB.pl
+file path=usr/perl5/5.16/lib/unicore/To/Sc.pl
+file path=usr/perl5/5.16/lib/unicore/To/Scx.pl
+file path=usr/perl5/5.16/lib/unicore/To/Tc.pl
+file path=usr/perl5/5.16/lib/unicore/To/Title.pl
+file path=usr/perl5/5.16/lib/unicore/To/Uc.pl
+file path=usr/perl5/5.16/lib/unicore/To/Upper.pl
+file path=usr/perl5/5.16/lib/unicore/To/WB.pl
+file path=usr/perl5/5.16/lib/unicore/UCD.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib
+dir  path=usr/perl5/5.16/lib/unicore/lib/AHex
+file path=usr/perl5/5.16/lib/unicore/lib/AHex/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Age
+file path=usr/perl5/5.16/lib/unicore/lib/Age/NA.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Age/V11.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Age/V20.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Age/V21.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Age/V30.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Age/V31.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Age/V32.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Age/V40.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Age/V41.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Age/V50.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Age/V51.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Age/V52.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Age/V60.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Age/V61.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Alpha
+file path=usr/perl5/5.16/lib/unicore/lib/Alpha/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Bc
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/AL.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/AN.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/B.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/BN.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/CS.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/EN.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/ES.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/ET.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/L.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/LRE.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/LRO.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/NSM.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/ON.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/PDF.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/R.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/RLE.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/RLO.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/S.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Bc/WS.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/BidiC
+file path=usr/perl5/5.16/lib/unicore/lib/BidiC/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/BidiM
+file path=usr/perl5/5.16/lib/unicore/lib/BidiM/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Blk
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/ASCII.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/AegeanNu.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Alchemic.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Alphabet.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Ancient2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/AncientG.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/AncientS.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Arabic.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/ArabicEx.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/ArabicMa.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/ArabicP2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/ArabicPF.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/ArabicSu.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Armenian.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Arrows.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Avestan.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Balinese.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Bamum.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/BamumSup.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Batak.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Bengali.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/BlockEle.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Bopomof2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Bopomofo.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/BoxDrawi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Brahmi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Buginese.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Buhid.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Byzantin.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CJK.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CJKComp2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CJKComp3.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CJKComp4.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CJKCompa.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CJKExtA.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CJKExtB.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CJKExtC.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CJKExtD.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CJKRadic.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CJKStrok.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CJKSymbo.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Carian.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Chakma.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Cham.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Cherokee.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CompatJa.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/ControlP.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Coptic.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Counting.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Cuneifo2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Cuneifor.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Currency.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/CypriotS.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Cyrilli2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Cyrilli3.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Cyrilli4.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Cyrillic.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Devanag2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Devanaga.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Diacrit2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Diacrit3.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Diacriti.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Dingbats.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Domino.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Egyptian.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Emoticon.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Enclose2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Enclose3.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Enclose4.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Enclosed.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Ethiopi2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Ethiopi3.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Ethiopi4.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Ethiopic.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Geometri.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Georgia2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Georgian.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Glagolit.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Gothic.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Greek.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/GreekExt.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Gujarati.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Gurmukhi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/HalfAndF.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/HalfMark.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Hangul.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Hanunoo.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Hebrew.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/HighPUSu.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/HighSurr.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Hiragana.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/IDC.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/IPAExt.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Imperial.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/IndicNum.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Inscrip2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Inscript.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Jamo.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/JamoExtA.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/JamoExtB.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Javanese.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Kaithi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/KanaSup.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Kanbun.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Kangxi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Kannada.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Katakan2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Katakana.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Kharosht.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Khmer.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/KhmerSym.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Lao.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Latin1.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/LatinEx2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/LatinEx3.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/LatinEx4.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/LatinEx5.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/LatinExt.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Lepcha.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Letterli.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Limbu.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/LinearBI.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/LinearBS.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/LowSurro.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Lycian.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Lydian.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Mahjong.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Malayala.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Mandaic.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/MathAlph.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/MathOper.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/MeeteiM2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/MeeteiMa.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Meroitic.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Miao.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/MiscArro.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/MiscMat2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/MiscMath.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/MiscPict.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/MiscSymb.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/MiscTech.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Modifie2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Modifier.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Mongolia.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Music.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Myanmar.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/MyanmarE.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/NB.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/NKo.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/NewTaiLu.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/NumberFo.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/OCR.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Ogham.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/OldItali.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/OldPersi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/OldTurki.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Oriya.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Osmanya.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/PUA.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/PhagsPa.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Phaistos.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Phoenici.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Phoneti2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Phonetic.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/PlayingC.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Punctuat.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Rejang.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Rumi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Runic.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Samarita.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Saurasht.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Sharada.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Sinhala.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/SmallFor.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/SoraSomp.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Specials.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Sundane2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Sundanes.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/SupArro2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/SupArrow.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/SupMathO.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/SupPUAA.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/SupPUAB.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/SupPunct.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/SuperAnd.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/SylotiNa.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Syriac.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Tagalog.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Tagbanwa.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Tags.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/TaiLe.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/TaiTham.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/TaiViet.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/TaiXuanJ.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Takri.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Tamil.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Telugu.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Thaana.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Thai.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Tibetan.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Tifinagh.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Transpor.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/UCAS.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/UCASExt.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Ugaritic.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/VS.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/VSSup.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Vai.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/VedicExt.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Vertical.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/YiRadica.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/YiSyllab.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Blk/Yijing.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/CE
+file path=usr/perl5/5.16/lib/unicore/lib/CE/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/CI
+file path=usr/perl5/5.16/lib/unicore/lib/CI/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/CWCF
+file path=usr/perl5/5.16/lib/unicore/lib/CWCF/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/CWCM
+file path=usr/perl5/5.16/lib/unicore/lib/CWCM/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/CWKCF
+file path=usr/perl5/5.16/lib/unicore/lib/CWKCF/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/CWL
+file path=usr/perl5/5.16/lib/unicore/lib/CWL/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/CWT
+file path=usr/perl5/5.16/lib/unicore/lib/CWT/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/CWU
+file path=usr/perl5/5.16/lib/unicore/lib/CWU/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Cased
+file path=usr/perl5/5.16/lib/unicore/lib/Cased/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Ccc
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/A.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/AL.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/AR.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/ATA.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/ATAR.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/ATB.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/B.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/BL.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/BR.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC10.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC103.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC107.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC11.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC118.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC12.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC122.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC129.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC13.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC130.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC132.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC14.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC15.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC16.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC17.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC18.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC19.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC20.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC21.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC22.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC23.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC24.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC25.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC26.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC27.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC28.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC29.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC30.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC31.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC32.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC33.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC34.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC35.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC36.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC84.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/CCC91.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/DA.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/DB.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/IS.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/KV.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/L.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/NK.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/NR.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/OV.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/R.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ccc/VR.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/CompEx
+file path=usr/perl5/5.16/lib/unicore/lib/CompEx/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/DI
+file path=usr/perl5/5.16/lib/unicore/lib/DI/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Dash
+file path=usr/perl5/5.16/lib/unicore/lib/Dash/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Dep
+file path=usr/perl5/5.16/lib/unicore/lib/Dep/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Dia
+file path=usr/perl5/5.16/lib/unicore/lib/Dia/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Dt
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Com.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Enc.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Fin.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Font.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Fra.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Init.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Iso.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Med.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Nar.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Nb.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/NonCanon.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/None.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Sml.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Sqr.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Sub.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Sup.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Dt/Vert.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Ea
+file path=usr/perl5/5.16/lib/unicore/lib/Ea/A.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ea/F.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ea/H.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ea/N.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ea/Na.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Ea/W.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Ext
+file path=usr/perl5/5.16/lib/unicore/lib/Ext/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/GCB
+file path=usr/perl5/5.16/lib/unicore/lib/GCB/CN.pl
+file path=usr/perl5/5.16/lib/unicore/lib/GCB/EX.pl
+file path=usr/perl5/5.16/lib/unicore/lib/GCB/SM.pl
+file path=usr/perl5/5.16/lib/unicore/lib/GCB/XX.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Gc
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/C.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Cc.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Cf.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Cn.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Co.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Cs.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/L.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/LC.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Ll.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Lm.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Lo.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Lu.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/M.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Mc.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Me.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Mn.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/N.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Nd.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Nl.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/No.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/P.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Pc.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Pd.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Pe.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Pf.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Pi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Po.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Ps.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/S.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Sc.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Sk.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Sm.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/So.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Z.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Zl.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Zp.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Gc/Zs.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/GrBase
+file path=usr/perl5/5.16/lib/unicore/lib/GrBase/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Hex
+file path=usr/perl5/5.16/lib/unicore/lib/Hex/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Hst
+file path=usr/perl5/5.16/lib/unicore/lib/Hst/NA.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Hyphen
+file path=usr/perl5/5.16/lib/unicore/lib/Hyphen/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/IDC
+file path=usr/perl5/5.16/lib/unicore/lib/IDC/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/IDS
+file path=usr/perl5/5.16/lib/unicore/lib/IDS/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/IDSB
+file path=usr/perl5/5.16/lib/unicore/lib/IDSB/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/IDST
+file path=usr/perl5/5.16/lib/unicore/lib/IDST/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Ideo
+file path=usr/perl5/5.16/lib/unicore/lib/Ideo/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/In
+file path=usr/perl5/5.16/lib/unicore/lib/In/2_0.pl
+file path=usr/perl5/5.16/lib/unicore/lib/In/2_1.pl
+file path=usr/perl5/5.16/lib/unicore/lib/In/3_0.pl
+file path=usr/perl5/5.16/lib/unicore/lib/In/3_1.pl
+file path=usr/perl5/5.16/lib/unicore/lib/In/3_2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/In/4_0.pl
+file path=usr/perl5/5.16/lib/unicore/lib/In/4_1.pl
+file path=usr/perl5/5.16/lib/unicore/lib/In/5_0.pl
+file path=usr/perl5/5.16/lib/unicore/lib/In/5_1.pl
+file path=usr/perl5/5.16/lib/unicore/lib/In/5_2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/In/6_0.pl
+file path=usr/perl5/5.16/lib/unicore/lib/In/6_1.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Jg
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Ain.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Alaph.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Alef.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Beh.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Beth.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Burushas.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Dal.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/DalathRi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/E.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/FarsiYeh.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Fe.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Feh.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/FinalSem.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Gaf.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Gamal.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Hah.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/HamzaOnH.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/He.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Heh.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/HehGoal.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Heth.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Kaf.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Kaph.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Khaph.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/KnottedH.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Lam.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Lamadh.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Meem.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Mim.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/NoJoinin.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Noon.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Nun.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Nya.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Pe.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Qaf.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Qaph.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Reh.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Reversed.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Rohingya.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Sad.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Sadhe.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Seen.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Semkath.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Shin.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/SwashKaf.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/SyriacWa.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Tah.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Taw.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/TehMarbu.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Teth.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Waw.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Yeh.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/YehBarre.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/YehWithT.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Yudh.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/YudhHe.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Zain.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jg/Zhain.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/JoinC
+file path=usr/perl5/5.16/lib/unicore/lib/JoinC/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Jt
+file path=usr/perl5/5.16/lib/unicore/lib/Jt/C.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jt/D.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jt/R.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jt/T.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Jt/U.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/LOE
+file path=usr/perl5/5.16/lib/unicore/lib/LOE/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Lb
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/AI.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/AL.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/B2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/BA.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/BB.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/BK.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/CB.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/CJ.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/CL.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/CM.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/CP.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/CR.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/EX.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/GL.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/H2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/H3.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/HL.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/HY.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/ID.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/IN.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/IS.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/JL.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/JT.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/JV.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/LF.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/NL.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/NS.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/NU.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/OP.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/PO.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/PR.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/QU.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/SA.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/SG.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/SP.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/SY.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/WJ.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/XX.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Lb/ZW.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Lower
+file path=usr/perl5/5.16/lib/unicore/lib/Lower/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Math
+file path=usr/perl5/5.16/lib/unicore/lib/Math/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/NChar
+file path=usr/perl5/5.16/lib/unicore/lib/NChar/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/NFCQC
+file path=usr/perl5/5.16/lib/unicore/lib/NFCQC/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/NFDQC
+file path=usr/perl5/5.16/lib/unicore/lib/NFDQC/N.pl
+file path=usr/perl5/5.16/lib/unicore/lib/NFDQC/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/NFKCQC
+file path=usr/perl5/5.16/lib/unicore/lib/NFKCQC/M.pl
+file path=usr/perl5/5.16/lib/unicore/lib/NFKCQC/N.pl
+file path=usr/perl5/5.16/lib/unicore/lib/NFKCQC/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/NFKDQC
+file path=usr/perl5/5.16/lib/unicore/lib/NFKDQC/N.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Nt
+file path=usr/perl5/5.16/lib/unicore/lib/Nt/Di.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nt/Nu.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Nv
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/0.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/1.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/10.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/100.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/1000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/10000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/100000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/10000000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/10000002.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/11.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/11_2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/12.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/13.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/13_2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/14.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/15.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/15_2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/16.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/17.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/17_2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/18.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/19.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/1_10.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/1_16.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/1_2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/1_3.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/1_4.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/1_5.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/1_6.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/1_7.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/1_8.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/1_9.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/20.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/200.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/2000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/20000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/21.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/22.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/23.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/24.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/25.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/26.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/27.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/28.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/29.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/2_3.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/2_5.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/3.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/30.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/300.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/3000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/30000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/31.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/32.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/33.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/34.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/35.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/36.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/37.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/38.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/39.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/3_16.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/3_2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/3_4.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/3_5.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/3_8.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/4.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/40.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/400.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/4000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/40000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/41.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/42.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/43.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/44.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/45.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/46.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/47.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/48.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/49.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/4_5.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/5.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/50.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/500.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/5000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/50000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/5_2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/5_6.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/5_8.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/6.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/60.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/600.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/6000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/60000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/7.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/70.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/700.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/7000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/70000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/7_2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/7_8.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/8.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/80.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/800.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/8000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/80000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/9.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/90.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/900.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/9000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/90000.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/9_2.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/NaN.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Nv/_1_2.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/PatSyn
+file path=usr/perl5/5.16/lib/unicore/lib/PatSyn/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/PatWS
+file path=usr/perl5/5.16/lib/unicore/lib/PatWS/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Perl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/Alnum.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/Any.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/Assigned.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/Blank.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/Graph.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/PerlSpac.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/PerlWord.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/PosixAln.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/PosixAlp.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/PosixBla.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/PosixCnt.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/PosixDig.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/PosixGra.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/PosixLow.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/PosixPri.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/PosixPun.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/PosixSpa.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/PosixUpp.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/Print.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/SpacePer.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/Title.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/VertSpac.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/Word.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/XPosixPu.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/_PerlIDS.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/_PerlNon.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/_PerlQuo.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/_XBegin.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/_XExtend.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Perl/_XLVLVTV.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/QMark
+file path=usr/perl5/5.16/lib/unicore/lib/QMark/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Radical
+file path=usr/perl5/5.16/lib/unicore/lib/Radical/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/SB
+file path=usr/perl5/5.16/lib/unicore/lib/SB/AT.pl
+file path=usr/perl5/5.16/lib/unicore/lib/SB/CL.pl
+file path=usr/perl5/5.16/lib/unicore/lib/SB/EX.pl
+file path=usr/perl5/5.16/lib/unicore/lib/SB/FO.pl
+file path=usr/perl5/5.16/lib/unicore/lib/SB/LE.pl
+file path=usr/perl5/5.16/lib/unicore/lib/SB/LO.pl
+file path=usr/perl5/5.16/lib/unicore/lib/SB/SC.pl
+file path=usr/perl5/5.16/lib/unicore/lib/SB/SE.pl
+file path=usr/perl5/5.16/lib/unicore/lib/SB/ST.pl
+file path=usr/perl5/5.16/lib/unicore/lib/SB/Sp.pl
+file path=usr/perl5/5.16/lib/unicore/lib/SB/UP.pl
+file path=usr/perl5/5.16/lib/unicore/lib/SB/XX.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/SD
+file path=usr/perl5/5.16/lib/unicore/lib/SD/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/STerm
+file path=usr/perl5/5.16/lib/unicore/lib/STerm/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Sc
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Arab.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Armn.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Beng.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Bopo.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Buhd.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Cprt.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Deva.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Geor.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Gujr.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Guru.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Han.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Hang.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Hano.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Hira.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Kana.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Kthi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Linb.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Mand.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Mong.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Orya.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Phag.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Syrc.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Tagb.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Takr.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Tglg.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Thaa.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Yi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Zinh.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Sc/Zyyy.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Scx
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Arab.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Armi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Armn.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Avst.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Bali.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Bamu.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Batk.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Beng.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Bopo.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Brah.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Brai.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Bugi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Buhd.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Cakm.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Cans.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Cari.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Cham.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Cher.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Copt.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Cprt.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Cyrl.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Deva.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Dsrt.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Egyp.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Ethi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Geor.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Glag.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Goth.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Grek.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Gujr.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Guru.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Han.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Hang.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Hano.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Hebr.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Hira.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Ital.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Java.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Kali.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Kana.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Khar.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Khmr.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Knda.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Kthi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Lana.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Lao.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Latn.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Lepc.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Limb.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Linb.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Lisu.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Lyci.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Lydi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Mand.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Merc.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Mero.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Miao.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Mlym.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Mong.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Mtei.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Mymr.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Nko.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Ogam.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Olck.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Orkh.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Orya.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Osma.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Phag.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Phli.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Phnx.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Prti.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Rjng.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Runr.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Samr.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Sarb.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Saur.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Shaw.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Shrd.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Sinh.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Sora.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Sund.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Sylo.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Syrc.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Tagb.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Takr.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Tale.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Talu.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Taml.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Tavt.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Telu.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Tfng.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Tglg.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Thaa.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Thai.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Tibt.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Ugar.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Vai.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Xpeo.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Xsux.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Yi.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Zinh.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Zyyy.pl
+file path=usr/perl5/5.16/lib/unicore/lib/Scx/Zzzz.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Space
+file path=usr/perl5/5.16/lib/unicore/lib/Space/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Term
+file path=usr/perl5/5.16/lib/unicore/lib/Term/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/UIdeo
+file path=usr/perl5/5.16/lib/unicore/lib/UIdeo/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/Upper
+file path=usr/perl5/5.16/lib/unicore/lib/Upper/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/VS
+file path=usr/perl5/5.16/lib/unicore/lib/VS/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/WB
+file path=usr/perl5/5.16/lib/unicore/lib/WB/FO.pl
+file path=usr/perl5/5.16/lib/unicore/lib/WB/KA.pl
+file path=usr/perl5/5.16/lib/unicore/lib/WB/LE.pl
+file path=usr/perl5/5.16/lib/unicore/lib/WB/MB.pl
+file path=usr/perl5/5.16/lib/unicore/lib/WB/ML.pl
+file path=usr/perl5/5.16/lib/unicore/lib/WB/MN.pl
+file path=usr/perl5/5.16/lib/unicore/lib/WB/NL.pl
+file path=usr/perl5/5.16/lib/unicore/lib/WB/NU.pl
+file path=usr/perl5/5.16/lib/unicore/lib/WB/XX.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/XIDC
+file path=usr/perl5/5.16/lib/unicore/lib/XIDC/Y.pl
+dir  path=usr/perl5/5.16/lib/unicore/lib/XIDS
+file path=usr/perl5/5.16/lib/unicore/lib/XIDS/Y.pl
+file path=usr/perl5/5.16/lib/unicore/version
+file path=usr/perl5/5.16/lib/utf8.pm
+file path=usr/perl5/5.16/lib/utf8_heavy.pl
+file path=usr/perl5/5.16/lib/vars.pm
+dir  path=usr/perl5/5.16/lib/version
+file path=usr/perl5/5.16/lib/version.pm
+file path=usr/perl5/5.16/lib/version.pod
+file path=usr/perl5/5.16/lib/version/Internals.pod
+file path=usr/perl5/5.16/lib/vmsish.pm
+dir  path=usr/perl5/5.16/lib/warnings
+file path=usr/perl5/5.16/lib/warnings.pm
+file path=usr/perl5/5.16/lib/warnings/register.pm
+dir  path=usr/perl5/5.16/man
+dir  path=usr/perl5/5.16/man/man1
+file path=usr/perl5/5.16/man/man1/a2p.1
+hardlink path=usr/perl5/5.16/man/man1/c2ph.1 target=pstruct.1
+file path=usr/perl5/5.16/man/man1/config_data.1
+file path=usr/perl5/5.16/man/man1/corelist.1
+file path=usr/perl5/5.16/man/man1/cpan.1
+file path=usr/perl5/5.16/man/man1/cpan2dist.1
+file path=usr/perl5/5.16/man/man1/cpanp.1
+file path=usr/perl5/5.16/man/man1/enc2xs.1
+file path=usr/perl5/5.16/man/man1/find2perl.1
+file path=usr/perl5/5.16/man/man1/h2ph.1
+file path=usr/perl5/5.16/man/man1/h2xs.1
+file path=usr/perl5/5.16/man/man1/instmodsh.1
+file path=usr/perl5/5.16/man/man1/json_pp.1
+file path=usr/perl5/5.16/man/man1/libnetcfg.1
+file path=usr/perl5/5.16/man/man1/perl.1
+file path=usr/perl5/5.16/man/man1/perl5004delta.1
+file path=usr/perl5/5.16/man/man1/perl5005delta.1
+file path=usr/perl5/5.16/man/man1/perl5100delta.1
+file path=usr/perl5/5.16/man/man1/perl5101delta.1
+file path=usr/perl5/5.16/man/man1/perl5120delta.1
+file path=usr/perl5/5.16/man/man1/perl5121delta.1
+file path=usr/perl5/5.16/man/man1/perl5122delta.1
+file path=usr/perl5/5.16/man/man1/perl5123delta.1
+file path=usr/perl5/5.16/man/man1/perl5124delta.1
+file path=usr/perl5/5.16/man/man1/perl5140delta.1
+file path=usr/perl5/5.16/man/man1/perl5141delta.1
+file path=usr/perl5/5.16/man/man1/perl5142delta.1
+file path=usr/perl5/5.16/man/man1/perl5143delta.1
+file path=usr/perl5/5.16/man/man1/perl5160delta.1
+file path=usr/perl5/5.16/man/man1/perl5161delta.1
+file path=usr/perl5/5.16/man/man1/perl5162delta.1
+file path=usr/perl5/5.16/man/man1/perl561delta.1
+file path=usr/perl5/5.16/man/man1/perl56delta.1
+file path=usr/perl5/5.16/man/man1/perl581delta.1
+file path=usr/perl5/5.16/man/man1/perl582delta.1
+file path=usr/perl5/5.16/man/man1/perl583delta.1
+file path=usr/perl5/5.16/man/man1/perl584delta.1
+file path=usr/perl5/5.16/man/man1/perl585delta.1
+file path=usr/perl5/5.16/man/man1/perl586delta.1
+file path=usr/perl5/5.16/man/man1/perl587delta.1
+file path=usr/perl5/5.16/man/man1/perl588delta.1
+file path=usr/perl5/5.16/man/man1/perl589delta.1
+file path=usr/perl5/5.16/man/man1/perl58delta.1
+file path=usr/perl5/5.16/man/man1/perlaix.1
+file path=usr/perl5/5.16/man/man1/perlamiga.1
+file path=usr/perl5/5.16/man/man1/perlapi.1
+file path=usr/perl5/5.16/man/man1/perlapio.1
+file path=usr/perl5/5.16/man/man1/perlartistic.1
+file path=usr/perl5/5.16/man/man1/perlbeos.1
+file path=usr/perl5/5.16/man/man1/perlbook.1
+file path=usr/perl5/5.16/man/man1/perlboot.1
+file path=usr/perl5/5.16/man/man1/perlbot.1
+file path=usr/perl5/5.16/man/man1/perlbs2000.1
+hardlink path=usr/perl5/5.16/man/man1/perlbug.1 target=perlthanks.1
+file path=usr/perl5/5.16/man/man1/perlcall.1
+file path=usr/perl5/5.16/man/man1/perlce.1
+file path=usr/perl5/5.16/man/man1/perlcheat.1
+file path=usr/perl5/5.16/man/man1/perlclib.1
+file path=usr/perl5/5.16/man/man1/perlcn.1
+file path=usr/perl5/5.16/man/man1/perlcommunity.1
+file path=usr/perl5/5.16/man/man1/perlcygwin.1
+file path=usr/perl5/5.16/man/man1/perldata.1
+file path=usr/perl5/5.16/man/man1/perldbmfilter.1
+file path=usr/perl5/5.16/man/man1/perldebguts.1
+file path=usr/perl5/5.16/man/man1/perldebtut.1
+file path=usr/perl5/5.16/man/man1/perldebug.1
+file path=usr/perl5/5.16/man/man1/perldelta.1
+file path=usr/perl5/5.16/man/man1/perldgux.1
+file path=usr/perl5/5.16/man/man1/perldiag.1
+file path=usr/perl5/5.16/man/man1/perldoc.1
+file path=usr/perl5/5.16/man/man1/perldos.1
+file path=usr/perl5/5.16/man/man1/perldsc.1
+file path=usr/perl5/5.16/man/man1/perldtrace.1
+file path=usr/perl5/5.16/man/man1/perlebcdic.1
+file path=usr/perl5/5.16/man/man1/perlembed.1
+file path=usr/perl5/5.16/man/man1/perlepoc.1
+file path=usr/perl5/5.16/man/man1/perlexperiment.1
+file path=usr/perl5/5.16/man/man1/perlfaq.1
+file path=usr/perl5/5.16/man/man1/perlfaq1.1
+file path=usr/perl5/5.16/man/man1/perlfaq2.1
+file path=usr/perl5/5.16/man/man1/perlfaq3.1
+file path=usr/perl5/5.16/man/man1/perlfaq4.1
+file path=usr/perl5/5.16/man/man1/perlfaq5.1
+file path=usr/perl5/5.16/man/man1/perlfaq6.1
+file path=usr/perl5/5.16/man/man1/perlfaq7.1
+file path=usr/perl5/5.16/man/man1/perlfaq8.1
+file path=usr/perl5/5.16/man/man1/perlfaq9.1
+file path=usr/perl5/5.16/man/man1/perlfilter.1
+file path=usr/perl5/5.16/man/man1/perlfork.1
+file path=usr/perl5/5.16/man/man1/perlform.1
+file path=usr/perl5/5.16/man/man1/perlfreebsd.1
+file path=usr/perl5/5.16/man/man1/perlfunc.1
+file path=usr/perl5/5.16/man/man1/perlgit.1
+file path=usr/perl5/5.16/man/man1/perlglossary.1
+file path=usr/perl5/5.16/man/man1/perlgpl.1
+file path=usr/perl5/5.16/man/man1/perlguts.1
+file path=usr/perl5/5.16/man/man1/perlhack.1
+file path=usr/perl5/5.16/man/man1/perlhacktips.1
+file path=usr/perl5/5.16/man/man1/perlhacktut.1
+file path=usr/perl5/5.16/man/man1/perlhaiku.1
+file path=usr/perl5/5.16/man/man1/perlhist.1
+file path=usr/perl5/5.16/man/man1/perlhpux.1
+file path=usr/perl5/5.16/man/man1/perlhurd.1
+file path=usr/perl5/5.16/man/man1/perlintern.1
+file path=usr/perl5/5.16/man/man1/perlinterp.1
+file path=usr/perl5/5.16/man/man1/perlintro.1
+file path=usr/perl5/5.16/man/man1/perliol.1
+file path=usr/perl5/5.16/man/man1/perlipc.1
+file path=usr/perl5/5.16/man/man1/perlirix.1
+file path=usr/perl5/5.16/man/man1/perlivp.1
+file path=usr/perl5/5.16/man/man1/perljp.1
+file path=usr/perl5/5.16/man/man1/perlko.1
+file path=usr/perl5/5.16/man/man1/perllexwarn.1
+file path=usr/perl5/5.16/man/man1/perllinux.1
+file path=usr/perl5/5.16/man/man1/perllocale.1
+file path=usr/perl5/5.16/man/man1/perllol.1
+file path=usr/perl5/5.16/man/man1/perlmacos.1
+file path=usr/perl5/5.16/man/man1/perlmacosx.1
+file path=usr/perl5/5.16/man/man1/perlmod.1
+file path=usr/perl5/5.16/man/man1/perlmodinstall.1
+file path=usr/perl5/5.16/man/man1/perlmodlib.1
+file path=usr/perl5/5.16/man/man1/perlmodstyle.1
+file path=usr/perl5/5.16/man/man1/perlmpeix.1
+file path=usr/perl5/5.16/man/man1/perlmroapi.1
+file path=usr/perl5/5.16/man/man1/perlnetware.1
+file path=usr/perl5/5.16/man/man1/perlnewmod.1
+file path=usr/perl5/5.16/man/man1/perlnumber.1
+file path=usr/perl5/5.16/man/man1/perlobj.1
+file path=usr/perl5/5.16/man/man1/perlootut.1
+file path=usr/perl5/5.16/man/man1/perlop.1
+file path=usr/perl5/5.16/man/man1/perlopenbsd.1
+file path=usr/perl5/5.16/man/man1/perlopentut.1
+file path=usr/perl5/5.16/man/man1/perlos2.1
+file path=usr/perl5/5.16/man/man1/perlos390.1
+file path=usr/perl5/5.16/man/man1/perlos400.1
+file path=usr/perl5/5.16/man/man1/perlpacktut.1
+file path=usr/perl5/5.16/man/man1/perlperf.1
+file path=usr/perl5/5.16/man/man1/perlplan9.1
+file path=usr/perl5/5.16/man/man1/perlpod.1
+file path=usr/perl5/5.16/man/man1/perlpodspec.1
+file path=usr/perl5/5.16/man/man1/perlpodstyle.1
+file path=usr/perl5/5.16/man/man1/perlpolicy.1
+file path=usr/perl5/5.16/man/man1/perlport.1
+file path=usr/perl5/5.16/man/man1/perlpragma.1
+file path=usr/perl5/5.16/man/man1/perlqnx.1
+file path=usr/perl5/5.16/man/man1/perlre.1
+file path=usr/perl5/5.16/man/man1/perlreapi.1
+file path=usr/perl5/5.16/man/man1/perlrebackslash.1
+file path=usr/perl5/5.16/man/man1/perlrecharclass.1
+file path=usr/perl5/5.16/man/man1/perlref.1
+file path=usr/perl5/5.16/man/man1/perlreftut.1
+file path=usr/perl5/5.16/man/man1/perlreguts.1
+file path=usr/perl5/5.16/man/man1/perlrequick.1
+file path=usr/perl5/5.16/man/man1/perlreref.1
+file path=usr/perl5/5.16/man/man1/perlretut.1
+file path=usr/perl5/5.16/man/man1/perlriscos.1
+file path=usr/perl5/5.16/man/man1/perlrun.1
+file path=usr/perl5/5.16/man/man1/perlsec.1
+file path=usr/perl5/5.16/man/man1/perlsolaris.1
+file path=usr/perl5/5.16/man/man1/perlsource.1
+file path=usr/perl5/5.16/man/man1/perlstyle.1
+file path=usr/perl5/5.16/man/man1/perlsub.1
+file path=usr/perl5/5.16/man/man1/perlsymbian.1
+file path=usr/perl5/5.16/man/man1/perlsyn.1
+file path=usr/perl5/5.16/man/man1/perlthanks.1
+file path=usr/perl5/5.16/man/man1/perlthrtut.1
+file path=usr/perl5/5.16/man/man1/perltie.1
+file path=usr/perl5/5.16/man/man1/perltoc.1
+file path=usr/perl5/5.16/man/man1/perltodo.1
+file path=usr/perl5/5.16/man/man1/perltooc.1
+file path=usr/perl5/5.16/man/man1/perltoot.1
+file path=usr/perl5/5.16/man/man1/perltrap.1
+file path=usr/perl5/5.16/man/man1/perltru64.1
+file path=usr/perl5/5.16/man/man1/perltw.1
+file path=usr/perl5/5.16/man/man1/perlunicode.1
+file path=usr/perl5/5.16/man/man1/perlunifaq.1
+file path=usr/perl5/5.16/man/man1/perluniintro.1
+file path=usr/perl5/5.16/man/man1/perluniprops.1
+file path=usr/perl5/5.16/man/man1/perlunitut.1
+file path=usr/perl5/5.16/man/man1/perlutil.1
+file path=usr/perl5/5.16/man/man1/perluts.1
+file path=usr/perl5/5.16/man/man1/perlvar.1
+file path=usr/perl5/5.16/man/man1/perlvmesa.1
+file path=usr/perl5/5.16/man/man1/perlvms.1
+file path=usr/perl5/5.16/man/man1/perlvos.1
+file path=usr/perl5/5.16/man/man1/perlwin32.1
+file path=usr/perl5/5.16/man/man1/perlxs.1
+file path=usr/perl5/5.16/man/man1/perlxstut.1
+file path=usr/perl5/5.16/man/man1/perlxstypemap.1
+file path=usr/perl5/5.16/man/man1/piconv.1
+file path=usr/perl5/5.16/man/man1/pl2pm.1
+file path=usr/perl5/5.16/man/man1/pod2html.1
+file path=usr/perl5/5.16/man/man1/pod2latex.1
+file path=usr/perl5/5.16/man/man1/pod2man.1
+file path=usr/perl5/5.16/man/man1/pod2text.1
+file path=usr/perl5/5.16/man/man1/pod2usage.1
+file path=usr/perl5/5.16/man/man1/podchecker.1
+file path=usr/perl5/5.16/man/man1/podselect.1
+file path=usr/perl5/5.16/man/man1/prove.1
+hardlink path=usr/perl5/5.16/man/man1/psed.1 target=s2p.1
+file path=usr/perl5/5.16/man/man1/pstruct.1
+file path=usr/perl5/5.16/man/man1/ptar.1
+file path=usr/perl5/5.16/man/man1/ptardiff.1
+file path=usr/perl5/5.16/man/man1/ptargrep.1
+file path=usr/perl5/5.16/man/man1/s2p.1
+file path=usr/perl5/5.16/man/man1/shasum.1
+file path=usr/perl5/5.16/man/man1/splain.1
+file path=usr/perl5/5.16/man/man1/xsubpp.1
+file path=usr/perl5/5.16/man/man1/zipdetails.1
+dir  path=usr/perl5/5.16/man/man3
+file path=usr/perl5/5.16/man/man3/AnyDBM_File.3
+file path=usr/perl5/5.16/man/man3/App::Cpan.3
+file path=usr/perl5/5.16/man/man3/App::Prove.3
+file path=usr/perl5/5.16/man/man3/App::Prove::State.3
+file path=usr/perl5/5.16/man/man3/App::Prove::State::Result.3
+file path=usr/perl5/5.16/man/man3/App::Prove::State::Result::Test.3
+file path=usr/perl5/5.16/man/man3/Archive::Extract.3
+file path=usr/perl5/5.16/man/man3/Archive::Tar.3
+file path=usr/perl5/5.16/man/man3/Archive::Tar::File.3
+file path=usr/perl5/5.16/man/man3/Attribute::Handlers.3
+file path=usr/perl5/5.16/man/man3/AutoLoader.3
+file path=usr/perl5/5.16/man/man3/AutoSplit.3
+file path=usr/perl5/5.16/man/man3/B.3
+file path=usr/perl5/5.16/man/man3/B::Concise.3
+file path=usr/perl5/5.16/man/man3/B::Debug.3
+file path=usr/perl5/5.16/man/man3/B::Deparse.3
+file path=usr/perl5/5.16/man/man3/B::Lint.3
+file path=usr/perl5/5.16/man/man3/B::Lint::Debug.3
+file path=usr/perl5/5.16/man/man3/B::Showlex.3
+file path=usr/perl5/5.16/man/man3/B::Terse.3
+file path=usr/perl5/5.16/man/man3/B::Xref.3
+file path=usr/perl5/5.16/man/man3/Benchmark.3
+file path=usr/perl5/5.16/man/man3/CGI.3
+file path=usr/perl5/5.16/man/man3/CGI::Apache.3
+file path=usr/perl5/5.16/man/man3/CGI::Carp.3
+file path=usr/perl5/5.16/man/man3/CGI::Cookie.3
+file path=usr/perl5/5.16/man/man3/CGI::Fast.3
+file path=usr/perl5/5.16/man/man3/CGI::Pretty.3
+file path=usr/perl5/5.16/man/man3/CGI::Push.3
+file path=usr/perl5/5.16/man/man3/CGI::Switch.3
+file path=usr/perl5/5.16/man/man3/CGI::Util.3
+file path=usr/perl5/5.16/man/man3/CORE.3
+file path=usr/perl5/5.16/man/man3/CPAN.3
+file path=usr/perl5/5.16/man/man3/CPAN::API::HOWTO.3
+file path=usr/perl5/5.16/man/man3/CPAN::Debug.3
+file path=usr/perl5/5.16/man/man3/CPAN::Distroprefs.3
+file path=usr/perl5/5.16/man/man3/CPAN::FirstTime.3
+file path=usr/perl5/5.16/man/man3/CPAN::HandleConfig.3
+file path=usr/perl5/5.16/man/man3/CPAN::Kwalify.3
+file path=usr/perl5/5.16/man/man3/CPAN::Meta.3
+file path=usr/perl5/5.16/man/man3/CPAN::Meta::Converter.3
+file path=usr/perl5/5.16/man/man3/CPAN::Meta::Feature.3
+file path=usr/perl5/5.16/man/man3/CPAN::Meta::History.3
+file path=usr/perl5/5.16/man/man3/CPAN::Meta::Prereqs.3
+file path=usr/perl5/5.16/man/man3/CPAN::Meta::Requirements.3
+file path=usr/perl5/5.16/man/man3/CPAN::Meta::Spec.3
+file path=usr/perl5/5.16/man/man3/CPAN::Meta::Validator.3
+file path=usr/perl5/5.16/man/man3/CPAN::Meta::YAML.3
+file path=usr/perl5/5.16/man/man3/CPAN::Mirrors.3
+file path=usr/perl5/5.16/man/man3/CPAN::Nox.3
+file path=usr/perl5/5.16/man/man3/CPAN::Queue.3
+file path=usr/perl5/5.16/man/man3/CPAN::Tarzip.3
+file path=usr/perl5/5.16/man/man3/CPAN::Version.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Backend.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Backend::RV.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Config.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Configure.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Dist.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Dist::Autobundle.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Dist::Base.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Dist::Build.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Dist::Build::Constants.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Dist::MM.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Dist::Sample.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Error.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::FAQ.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Hacking.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Internals.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Internals::Extract.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Internals::Fetch.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Internals::Report.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Internals::Search.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Internals::Source.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Internals::Source::Memory.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Internals::Source::SQLite.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Internals::Utils.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Module.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Module::Author.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Module::Author::Fake.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Module::Checksums.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Module::Fake.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Selfupdate.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Shell.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Shell::Classic.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Shell::Default.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Shell::Default::Plugins::CustomSource.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Shell::Default::Plugins::HOWTO.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Shell::Default::Plugins::Remote.3
+file path=usr/perl5/5.16/man/man3/CPANPLUS::Shell::Default::Plugins::Source.3
+file path=usr/perl5/5.16/man/man3/Carp.3
+file path=usr/perl5/5.16/man/man3/Class::Struct.3
+file path=usr/perl5/5.16/man/man3/Compress::Raw::Bzip2.3
+file path=usr/perl5/5.16/man/man3/Compress::Raw::Zlib.3
+file path=usr/perl5/5.16/man/man3/Compress::Zlib.3
+file path=usr/perl5/5.16/man/man3/Config.3
+file path=usr/perl5/5.16/man/man3/Config::Extensions.3
+file path=usr/perl5/5.16/man/man3/Cwd.3
+file path=usr/perl5/5.16/man/man3/DB.3
+file path=usr/perl5/5.16/man/man3/DBM_Filter.3
+file path=usr/perl5/5.16/man/man3/DBM_Filter::compress.3
+file path=usr/perl5/5.16/man/man3/DBM_Filter::encode.3
+file path=usr/perl5/5.16/man/man3/DBM_Filter::int32.3
+file path=usr/perl5/5.16/man/man3/DBM_Filter::null.3
+file path=usr/perl5/5.16/man/man3/DBM_Filter::utf8.3
+file path=usr/perl5/5.16/man/man3/DB_File.3
+file path=usr/perl5/5.16/man/man3/Data::Dumper.3
+file path=usr/perl5/5.16/man/man3/Devel::InnerPackage.3
+file path=usr/perl5/5.16/man/man3/Devel::PPPort.3
+file path=usr/perl5/5.16/man/man3/Devel::Peek.3
+file path=usr/perl5/5.16/man/man3/Devel::SelfStubber.3
+file path=usr/perl5/5.16/man/man3/Digest.3
+file path=usr/perl5/5.16/man/man3/Digest::MD5.3
+file path=usr/perl5/5.16/man/man3/Digest::SHA.3
+file path=usr/perl5/5.16/man/man3/Digest::base.3
+file path=usr/perl5/5.16/man/man3/Digest::file.3
+file path=usr/perl5/5.16/man/man3/DirHandle.3
+file path=usr/perl5/5.16/man/man3/Dumpvalue.3
+file path=usr/perl5/5.16/man/man3/DynaLoader.3
+file path=usr/perl5/5.16/man/man3/Encode.3
+file path=usr/perl5/5.16/man/man3/Encode::Alias.3
+file path=usr/perl5/5.16/man/man3/Encode::Byte.3
+file path=usr/perl5/5.16/man/man3/Encode::CJKConstants.3
+file path=usr/perl5/5.16/man/man3/Encode::CN.3
+file path=usr/perl5/5.16/man/man3/Encode::CN::HZ.3
+file path=usr/perl5/5.16/man/man3/Encode::Config.3
+file path=usr/perl5/5.16/man/man3/Encode::EBCDIC.3
+file path=usr/perl5/5.16/man/man3/Encode::Encoder.3
+file path=usr/perl5/5.16/man/man3/Encode::Encoding.3
+file path=usr/perl5/5.16/man/man3/Encode::GSM0338.3
+file path=usr/perl5/5.16/man/man3/Encode::Guess.3
+file path=usr/perl5/5.16/man/man3/Encode::JP.3
+file path=usr/perl5/5.16/man/man3/Encode::JP::H2Z.3
+file path=usr/perl5/5.16/man/man3/Encode::JP::JIS7.3
+file path=usr/perl5/5.16/man/man3/Encode::KR.3
+file path=usr/perl5/5.16/man/man3/Encode::KR::2022_KR.3
+file path=usr/perl5/5.16/man/man3/Encode::MIME::Header.3
+file path=usr/perl5/5.16/man/man3/Encode::MIME::Name.3
+file path=usr/perl5/5.16/man/man3/Encode::PerlIO.3
+file path=usr/perl5/5.16/man/man3/Encode::Supported.3
+file path=usr/perl5/5.16/man/man3/Encode::Symbol.3
+file path=usr/perl5/5.16/man/man3/Encode::TW.3
+file path=usr/perl5/5.16/man/man3/Encode::Unicode.3
+file path=usr/perl5/5.16/man/man3/Encode::Unicode::UTF7.3
+file path=usr/perl5/5.16/man/man3/English.3
+file path=usr/perl5/5.16/man/man3/Env.3
+file path=usr/perl5/5.16/man/man3/Errno.3
+file path=usr/perl5/5.16/man/man3/Exporter.3
+file path=usr/perl5/5.16/man/man3/Exporter::Heavy.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::CBuilder.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::CBuilder::Platform::Windows.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Command.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Command::MM.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Constant.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Constant::Base.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Constant::Utils.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Constant::XS.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Embed.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Install.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Installed.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Liblist.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_AIX.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_Any.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_BeOS.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_Cygwin.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_DOS.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_Darwin.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_MacOS.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_NW5.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_OS2.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_QNX.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_UWIN.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_Unix.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_VMS.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_VOS.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_Win32.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MM_Win95.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MY.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MakeMaker.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MakeMaker::Config.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MakeMaker::FAQ.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::MakeMaker::Tutorial.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Manifest.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Miniperl.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Mkbootstrap.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Mksymlists.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Packlist.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::ParseXS.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::ParseXS::Constants.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::ParseXS::Utilities.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Typemaps.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Typemaps::Cmd.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Typemaps::InputMap.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Typemaps::OutputMap.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::Typemaps::Type.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::XSSymSet.3
+file path=usr/perl5/5.16/man/man3/ExtUtils::testlib.3
+file path=usr/perl5/5.16/man/man3/Fatal.3
+file path=usr/perl5/5.16/man/man3/Fcntl.3
+file path=usr/perl5/5.16/man/man3/File::Basename.3
+file path=usr/perl5/5.16/man/man3/File::CheckTree.3
+file path=usr/perl5/5.16/man/man3/File::Compare.3
+file path=usr/perl5/5.16/man/man3/File::Copy.3
+file path=usr/perl5/5.16/man/man3/File::DosGlob.3
+file path=usr/perl5/5.16/man/man3/File::Fetch.3
+file path=usr/perl5/5.16/man/man3/File::Find.3
+file path=usr/perl5/5.16/man/man3/File::Glob.3
+file path=usr/perl5/5.16/man/man3/File::GlobMapper.3
+file path=usr/perl5/5.16/man/man3/File::Path.3
+file path=usr/perl5/5.16/man/man3/File::Spec.3
+file path=usr/perl5/5.16/man/man3/File::Spec::Cygwin.3
+file path=usr/perl5/5.16/man/man3/File::Spec::Epoc.3
+file path=usr/perl5/5.16/man/man3/File::Spec::Functions.3
+file path=usr/perl5/5.16/man/man3/File::Spec::Mac.3
+file path=usr/perl5/5.16/man/man3/File::Spec::OS2.3
+file path=usr/perl5/5.16/man/man3/File::Spec::Unix.3
+file path=usr/perl5/5.16/man/man3/File::Spec::VMS.3
+file path=usr/perl5/5.16/man/man3/File::Spec::Win32.3
+file path=usr/perl5/5.16/man/man3/File::Temp.3
+file path=usr/perl5/5.16/man/man3/File::stat.3
+file path=usr/perl5/5.16/man/man3/FileCache.3
+file path=usr/perl5/5.16/man/man3/FileHandle.3
+file path=usr/perl5/5.16/man/man3/Filter::Simple.3
+file path=usr/perl5/5.16/man/man3/Filter::Util::Call.3
+file path=usr/perl5/5.16/man/man3/FindBin.3
+file path=usr/perl5/5.16/man/man3/GDBM_File.3
+file path=usr/perl5/5.16/man/man3/Getopt::Long.3
+file path=usr/perl5/5.16/man/man3/Getopt::Std.3
+file path=usr/perl5/5.16/man/man3/HTTP::Tiny.3
+file path=usr/perl5/5.16/man/man3/Hash::Util.3
+file path=usr/perl5/5.16/man/man3/Hash::Util::FieldHash.3
+file path=usr/perl5/5.16/man/man3/I18N::Collate.3
+file path=usr/perl5/5.16/man/man3/I18N::LangTags.3
+file path=usr/perl5/5.16/man/man3/I18N::LangTags::Detect.3
+file path=usr/perl5/5.16/man/man3/I18N::LangTags::List.3
+file path=usr/perl5/5.16/man/man3/I18N::Langinfo.3
+file path=usr/perl5/5.16/man/man3/IO.3
+file path=usr/perl5/5.16/man/man3/IO::Compress::Base.3
+file path=usr/perl5/5.16/man/man3/IO::Compress::Bzip2.3
+file path=usr/perl5/5.16/man/man3/IO::Compress::Deflate.3
+file path=usr/perl5/5.16/man/man3/IO::Compress::FAQ.3
+file path=usr/perl5/5.16/man/man3/IO::Compress::Gzip.3
+file path=usr/perl5/5.16/man/man3/IO::Compress::RawDeflate.3
+file path=usr/perl5/5.16/man/man3/IO::Compress::Zip.3
+file path=usr/perl5/5.16/man/man3/IO::Dir.3
+file path=usr/perl5/5.16/man/man3/IO::File.3
+file path=usr/perl5/5.16/man/man3/IO::Handle.3
+file path=usr/perl5/5.16/man/man3/IO::Pipe.3
+file path=usr/perl5/5.16/man/man3/IO::Poll.3
+file path=usr/perl5/5.16/man/man3/IO::Seekable.3
+file path=usr/perl5/5.16/man/man3/IO::Select.3
+file path=usr/perl5/5.16/man/man3/IO::Socket.3
+file path=usr/perl5/5.16/man/man3/IO::Socket::INET.3
+file path=usr/perl5/5.16/man/man3/IO::Socket::UNIX.3
+file path=usr/perl5/5.16/man/man3/IO::Uncompress::AnyInflate.3
+file path=usr/perl5/5.16/man/man3/IO::Uncompress::AnyUncompress.3
+file path=usr/perl5/5.16/man/man3/IO::Uncompress::Base.3
+file path=usr/perl5/5.16/man/man3/IO::Uncompress::Bunzip2.3
+file path=usr/perl5/5.16/man/man3/IO::Uncompress::Gunzip.3
+file path=usr/perl5/5.16/man/man3/IO::Uncompress::Inflate.3
+file path=usr/perl5/5.16/man/man3/IO::Uncompress::RawInflate.3
+file path=usr/perl5/5.16/man/man3/IO::Uncompress::Unzip.3
+file path=usr/perl5/5.16/man/man3/IO::Zlib.3
+file path=usr/perl5/5.16/man/man3/IPC::Cmd.3
+file path=usr/perl5/5.16/man/man3/IPC::Msg.3
+file path=usr/perl5/5.16/man/man3/IPC::Open2.3
+file path=usr/perl5/5.16/man/man3/IPC::Open3.3
+file path=usr/perl5/5.16/man/man3/IPC::Semaphore.3
+file path=usr/perl5/5.16/man/man3/IPC::SharedMem.3
+file path=usr/perl5/5.16/man/man3/IPC::SysV.3
+file path=usr/perl5/5.16/man/man3/JSON::PP.3
+file path=usr/perl5/5.16/man/man3/JSON::PP::Boolean.3
+file path=usr/perl5/5.16/man/man3/List::Util.3
+file path=usr/perl5/5.16/man/man3/List::Util::XS.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::API.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Changes.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Constants.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Country.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Country_Codes.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Country_Retired.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Currency.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Currency_Codes.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Currency_Retired.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::LangExt.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::LangExt_Codes.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::LangExt_Retired.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::LangFam.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::LangFam_Codes.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::LangFam_Retired.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::LangVar.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::LangVar_Codes.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::LangVar_Retired.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Language.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Language_Codes.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Language_Retired.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Script.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Script_Codes.3
+file path=usr/perl5/5.16/man/man3/Locale::Codes::Script_Retired.3
+file path=usr/perl5/5.16/man/man3/Locale::Country.3
+file path=usr/perl5/5.16/man/man3/Locale::Currency.3
+file path=usr/perl5/5.16/man/man3/Locale::Language.3
+file path=usr/perl5/5.16/man/man3/Locale::Maketext.3
+file path=usr/perl5/5.16/man/man3/Locale::Maketext::Cookbook.3
+file path=usr/perl5/5.16/man/man3/Locale::Maketext::Guts.3
+file path=usr/perl5/5.16/man/man3/Locale::Maketext::GutsLoader.3
+file path=usr/perl5/5.16/man/man3/Locale::Maketext::Simple.3
+file path=usr/perl5/5.16/man/man3/Locale::Maketext::TPJ13.3
+file path=usr/perl5/5.16/man/man3/Locale::Script.3
+file path=usr/perl5/5.16/man/man3/Log::Message.3
+file path=usr/perl5/5.16/man/man3/Log::Message::Config.3
+file path=usr/perl5/5.16/man/man3/Log::Message::Handlers.3
+file path=usr/perl5/5.16/man/man3/Log::Message::Item.3
+file path=usr/perl5/5.16/man/man3/Log::Message::Simple.3
+file path=usr/perl5/5.16/man/man3/MIME::Base64.3
+file path=usr/perl5/5.16/man/man3/MIME::QuotedPrint.3
+file path=usr/perl5/5.16/man/man3/Math::BigFloat.3
+file path=usr/perl5/5.16/man/man3/Math::BigInt.3
+file path=usr/perl5/5.16/man/man3/Math::BigInt::Calc.3
+file path=usr/perl5/5.16/man/man3/Math::BigInt::CalcEmu.3
+file path=usr/perl5/5.16/man/man3/Math::BigInt::FastCalc.3
+file path=usr/perl5/5.16/man/man3/Math::BigRat.3
+file path=usr/perl5/5.16/man/man3/Math::Complex.3
+file path=usr/perl5/5.16/man/man3/Math::Trig.3
+file path=usr/perl5/5.16/man/man3/Memoize.3
+file path=usr/perl5/5.16/man/man3/Memoize::AnyDBM_File.3
+file path=usr/perl5/5.16/man/man3/Memoize::Expire.3
+file path=usr/perl5/5.16/man/man3/Memoize::ExpireFile.3
+file path=usr/perl5/5.16/man/man3/Memoize::ExpireTest.3
+file path=usr/perl5/5.16/man/man3/Memoize::NDBM_File.3
+file path=usr/perl5/5.16/man/man3/Memoize::SDBM_File.3
+file path=usr/perl5/5.16/man/man3/Memoize::Storable.3
+file path=usr/perl5/5.16/man/man3/Module::Build.3
+file path=usr/perl5/5.16/man/man3/Module::Build::API.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Authoring.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Base.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Bundling.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Compat.3
+file path=usr/perl5/5.16/man/man3/Module::Build::ConfigData.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Cookbook.3
+file path=usr/perl5/5.16/man/man3/Module::Build::ModuleInfo.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Notes.3
+file path=usr/perl5/5.16/man/man3/Module::Build::PPMMaker.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::Amiga.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::Default.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::EBCDIC.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::MPEiX.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::MacOS.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::RiscOS.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::Unix.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::VMS.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::VOS.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::Windows.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::aix.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::cygwin.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::darwin.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Platform::os2.3
+file path=usr/perl5/5.16/man/man3/Module::Build::Version.3
+file path=usr/perl5/5.16/man/man3/Module::Build::YAML.3
+file path=usr/perl5/5.16/man/man3/Module::CoreList.3
+file path=usr/perl5/5.16/man/man3/Module::Load.3
+file path=usr/perl5/5.16/man/man3/Module::Load::Conditional.3
+file path=usr/perl5/5.16/man/man3/Module::Loaded.3
+file path=usr/perl5/5.16/man/man3/Module::Metadata.3
+file path=usr/perl5/5.16/man/man3/Module::Pluggable.3
+file path=usr/perl5/5.16/man/man3/Module::Pluggable::Object.3
+file path=usr/perl5/5.16/man/man3/NDBM_File.3
+file path=usr/perl5/5.16/man/man3/NEXT.3
+file path=usr/perl5/5.16/man/man3/Net::Cmd.3
+file path=usr/perl5/5.16/man/man3/Net::Config.3
+file path=usr/perl5/5.16/man/man3/Net::Domain.3
+file path=usr/perl5/5.16/man/man3/Net::FTP.3
+file path=usr/perl5/5.16/man/man3/Net::NNTP.3
+file path=usr/perl5/5.16/man/man3/Net::Netrc.3
+file path=usr/perl5/5.16/man/man3/Net::POP3.3
+file path=usr/perl5/5.16/man/man3/Net::Ping.3
+file path=usr/perl5/5.16/man/man3/Net::SMTP.3
+file path=usr/perl5/5.16/man/man3/Net::Time.3
+file path=usr/perl5/5.16/man/man3/Net::hostent.3
+file path=usr/perl5/5.16/man/man3/Net::libnetFAQ.3
+file path=usr/perl5/5.16/man/man3/Net::netent.3
+file path=usr/perl5/5.16/man/man3/Net::protoent.3
+file path=usr/perl5/5.16/man/man3/Net::servent.3
+file path=usr/perl5/5.16/man/man3/O.3
+file path=usr/perl5/5.16/man/man3/ODBM_File.3
+file path=usr/perl5/5.16/man/man3/Object::Accessor.3
+file path=usr/perl5/5.16/man/man3/Opcode.3
+file path=usr/perl5/5.16/man/man3/POSIX.3
+file path=usr/perl5/5.16/man/man3/Package::Constants.3
+file path=usr/perl5/5.16/man/man3/Params::Check.3
+file path=usr/perl5/5.16/man/man3/Parse::CPAN::Meta.3
+file path=usr/perl5/5.16/man/man3/Perl::OSType.3
+file path=usr/perl5/5.16/man/man3/PerlIO.3
+file path=usr/perl5/5.16/man/man3/PerlIO::encoding.3
+file path=usr/perl5/5.16/man/man3/PerlIO::mmap.3
+file path=usr/perl5/5.16/man/man3/PerlIO::scalar.3
+file path=usr/perl5/5.16/man/man3/PerlIO::via.3
+file path=usr/perl5/5.16/man/man3/PerlIO::via::QuotedPrint.3
+file path=usr/perl5/5.16/man/man3/Pod::Checker.3
+file path=usr/perl5/5.16/man/man3/Pod::Escapes.3
+file path=usr/perl5/5.16/man/man3/Pod::Find.3
+file path=usr/perl5/5.16/man/man3/Pod::Html.3
+file path=usr/perl5/5.16/man/man3/Pod::InputObjects.3
+file path=usr/perl5/5.16/man/man3/Pod::LaTeX.3
+file path=usr/perl5/5.16/man/man3/Pod::Man.3
+file path=usr/perl5/5.16/man/man3/Pod::ParseLink.3
+file path=usr/perl5/5.16/man/man3/Pod::ParseUtils.3
+file path=usr/perl5/5.16/man/man3/Pod::Parser.3
+file path=usr/perl5/5.16/man/man3/Pod::Perldoc.3
+file path=usr/perl5/5.16/man/man3/Pod::Perldoc::BaseTo.3
+file path=usr/perl5/5.16/man/man3/Pod::Perldoc::GetOptsOO.3
+file path=usr/perl5/5.16/man/man3/Pod::Perldoc::ToANSI.3
+file path=usr/perl5/5.16/man/man3/Pod::Perldoc::ToChecker.3
+file path=usr/perl5/5.16/man/man3/Pod::Perldoc::ToMan.3
+file path=usr/perl5/5.16/man/man3/Pod::Perldoc::ToNroff.3
+file path=usr/perl5/5.16/man/man3/Pod::Perldoc::ToPod.3
+file path=usr/perl5/5.16/man/man3/Pod::Perldoc::ToRtf.3
+file path=usr/perl5/5.16/man/man3/Pod::Perldoc::ToTerm.3
+file path=usr/perl5/5.16/man/man3/Pod::Perldoc::ToText.3
+file path=usr/perl5/5.16/man/man3/Pod::Perldoc::ToTk.3
+file path=usr/perl5/5.16/man/man3/Pod::Perldoc::ToXml.3
+file path=usr/perl5/5.16/man/man3/Pod::PlainText.3
+file path=usr/perl5/5.16/man/man3/Pod::Select.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::Checker.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::Debug.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::DumpAsText.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::DumpAsXML.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::HTML.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::HTMLBatch.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::LinkSection.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::Methody.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::PullParser.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::PullParserEndToken.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::PullParserStartToken.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::PullParserTextToken.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::PullParserToken.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::RTF.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::Search.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::SimpleTree.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::Subclassing.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::Text.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::TextContent.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::XHTML.3
+file path=usr/perl5/5.16/man/man3/Pod::Simple::XMLOutStream.3
+file path=usr/perl5/5.16/man/man3/Pod::Text.3
+file path=usr/perl5/5.16/man/man3/Pod::Text::Color.3
+file path=usr/perl5/5.16/man/man3/Pod::Text::Overstrike.3
+file path=usr/perl5/5.16/man/man3/Pod::Text::Termcap.3
+file path=usr/perl5/5.16/man/man3/Pod::Usage.3
+file path=usr/perl5/5.16/man/man3/SDBM_File.3
+file path=usr/perl5/5.16/man/man3/Safe.3
+file path=usr/perl5/5.16/man/man3/Scalar::Util.3
+file path=usr/perl5/5.16/man/man3/Search::Dict.3
+file path=usr/perl5/5.16/man/man3/SelectSaver.3
+file path=usr/perl5/5.16/man/man3/SelfLoader.3
+file path=usr/perl5/5.16/man/man3/Socket.3
+file path=usr/perl5/5.16/man/man3/Storable.3
+file path=usr/perl5/5.16/man/man3/Symbol.3
+file path=usr/perl5/5.16/man/man3/Sys::Hostname.3
+file path=usr/perl5/5.16/man/man3/Sys::Syslog.3
+file path=usr/perl5/5.16/man/man3/TAP::Base.3
+file path=usr/perl5/5.16/man/man3/TAP::Formatter::Base.3
+file path=usr/perl5/5.16/man/man3/TAP::Formatter::Color.3
+file path=usr/perl5/5.16/man/man3/TAP::Formatter::Console.3
+file path=usr/perl5/5.16/man/man3/TAP::Formatter::Console::ParallelSession.3
+file path=usr/perl5/5.16/man/man3/TAP::Formatter::Console::Session.3
+file path=usr/perl5/5.16/man/man3/TAP::Formatter::File.3
+file path=usr/perl5/5.16/man/man3/TAP::Formatter::File::Session.3
+file path=usr/perl5/5.16/man/man3/TAP::Formatter::Session.3
+file path=usr/perl5/5.16/man/man3/TAP::Harness.3
+file path=usr/perl5/5.16/man/man3/TAP::Harness::Beyond.3
+file path=usr/perl5/5.16/man/man3/TAP::Object.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Aggregator.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Grammar.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Iterator.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Iterator::Array.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Iterator::Process.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Iterator::Stream.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::IteratorFactory.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Multiplexer.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Result.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Result::Bailout.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Result::Comment.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Result::Plan.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Result::Pragma.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Result::Test.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Result::Unknown.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Result::Version.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Result::YAML.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::ResultFactory.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Scheduler.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Scheduler::Job.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Scheduler::Spinner.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Source.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::SourceHandler.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::SourceHandler::Executable.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::SourceHandler::File.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::SourceHandler::Handle.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::SourceHandler::Perl.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::SourceHandler::RawTAP.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::Utils.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::YAMLish::Reader.3
+file path=usr/perl5/5.16/man/man3/TAP::Parser::YAMLish::Writer.3
+file path=usr/perl5/5.16/man/man3/Term::ANSIColor.3
+file path=usr/perl5/5.16/man/man3/Term::Cap.3
+file path=usr/perl5/5.16/man/man3/Term::Complete.3
+file path=usr/perl5/5.16/man/man3/Term::ReadLine.3
+file path=usr/perl5/5.16/man/man3/Term::UI.3
+file path=usr/perl5/5.16/man/man3/Term::UI::History.3
+file path=usr/perl5/5.16/man/man3/Test.3
+file path=usr/perl5/5.16/man/man3/Test::Builder.3
+file path=usr/perl5/5.16/man/man3/Test::Builder::Module.3
+file path=usr/perl5/5.16/man/man3/Test::Builder::Tester.3
+file path=usr/perl5/5.16/man/man3/Test::Builder::Tester::Color.3
+file path=usr/perl5/5.16/man/man3/Test::Harness.3
+file path=usr/perl5/5.16/man/man3/Test::More.3
+file path=usr/perl5/5.16/man/man3/Test::Simple.3
+file path=usr/perl5/5.16/man/man3/Test::Tutorial.3
+file path=usr/perl5/5.16/man/man3/Text::Abbrev.3
+file path=usr/perl5/5.16/man/man3/Text::Balanced.3
+file path=usr/perl5/5.16/man/man3/Text::ParseWords.3
+file path=usr/perl5/5.16/man/man3/Text::Soundex.3
+file path=usr/perl5/5.16/man/man3/Text::Tabs.3
+file path=usr/perl5/5.16/man/man3/Text::Wrap.3
+file path=usr/perl5/5.16/man/man3/Thread.3
+file path=usr/perl5/5.16/man/man3/Thread::Queue.3
+file path=usr/perl5/5.16/man/man3/Thread::Semaphore.3
+file path=usr/perl5/5.16/man/man3/Tie::Array.3
+file path=usr/perl5/5.16/man/man3/Tie::File.3
+file path=usr/perl5/5.16/man/man3/Tie::Handle.3
+file path=usr/perl5/5.16/man/man3/Tie::Hash.3
+file path=usr/perl5/5.16/man/man3/Tie::Hash::NamedCapture.3
+file path=usr/perl5/5.16/man/man3/Tie::Memoize.3
+file path=usr/perl5/5.16/man/man3/Tie::RefHash.3
+file path=usr/perl5/5.16/man/man3/Tie::Scalar.3
+file path=usr/perl5/5.16/man/man3/Tie::StdHandle.3
+file path=usr/perl5/5.16/man/man3/Tie::SubstrHash.3
+file path=usr/perl5/5.16/man/man3/Time::HiRes.3
+file path=usr/perl5/5.16/man/man3/Time::Local.3
+file path=usr/perl5/5.16/man/man3/Time::Piece.3
+file path=usr/perl5/5.16/man/man3/Time::Seconds.3
+file path=usr/perl5/5.16/man/man3/Time::gmtime.3
+file path=usr/perl5/5.16/man/man3/Time::localtime.3
+file path=usr/perl5/5.16/man/man3/Time::tm.3
+file path=usr/perl5/5.16/man/man3/UNIVERSAL.3
+file path=usr/perl5/5.16/man/man3/Unicode::Collate.3
+file path=usr/perl5/5.16/man/man3/Unicode::Collate::CJK::Big5.3
+file path=usr/perl5/5.16/man/man3/Unicode::Collate::CJK::GB2312.3
+file path=usr/perl5/5.16/man/man3/Unicode::Collate::CJK::JISX0208.3
+file path=usr/perl5/5.16/man/man3/Unicode::Collate::CJK::Korean.3
+file path=usr/perl5/5.16/man/man3/Unicode::Collate::CJK::Pinyin.3
+file path=usr/perl5/5.16/man/man3/Unicode::Collate::CJK::Stroke.3
+file path=usr/perl5/5.16/man/man3/Unicode::Collate::Locale.3
+file path=usr/perl5/5.16/man/man3/Unicode::Normalize.3
+file path=usr/perl5/5.16/man/man3/Unicode::UCD.3
+file path=usr/perl5/5.16/man/man3/User::grent.3
+file path=usr/perl5/5.16/man/man3/User::pwent.3
+file path=usr/perl5/5.16/man/man3/Version::Requirements.3
+file path=usr/perl5/5.16/man/man3/XSLoader.3
+file path=usr/perl5/5.16/man/man3/arybase.3
+file path=usr/perl5/5.16/man/man3/attributes.3
+file path=usr/perl5/5.16/man/man3/autodie.3
+file path=usr/perl5/5.16/man/man3/autodie::exception.3
+file path=usr/perl5/5.16/man/man3/autodie::exception::system.3
+file path=usr/perl5/5.16/man/man3/autodie::hints.3
+file path=usr/perl5/5.16/man/man3/autouse.3
+file path=usr/perl5/5.16/man/man3/base.3
+file path=usr/perl5/5.16/man/man3/bigint.3
+file path=usr/perl5/5.16/man/man3/bignum.3
+file path=usr/perl5/5.16/man/man3/bigrat.3
+file path=usr/perl5/5.16/man/man3/blib.3
+file path=usr/perl5/5.16/man/man3/bytes.3
+file path=usr/perl5/5.16/man/man3/charnames.3
+file path=usr/perl5/5.16/man/man3/constant.3
+file path=usr/perl5/5.16/man/man3/deprecate.3
+file path=usr/perl5/5.16/man/man3/diagnostics.3
+file path=usr/perl5/5.16/man/man3/encoding.3
+file path=usr/perl5/5.16/man/man3/encoding::warnings.3
+file path=usr/perl5/5.16/man/man3/feature.3
+file path=usr/perl5/5.16/man/man3/fields.3
+file path=usr/perl5/5.16/man/man3/filetest.3
+file path=usr/perl5/5.16/man/man3/if.3
+file path=usr/perl5/5.16/man/man3/inc::latest.3
+file path=usr/perl5/5.16/man/man3/integer.3
+file path=usr/perl5/5.16/man/man3/less.3
+file path=usr/perl5/5.16/man/man3/lib.3
+file path=usr/perl5/5.16/man/man3/locale.3
+file path=usr/perl5/5.16/man/man3/mro.3
+file path=usr/perl5/5.16/man/man3/open.3
+file path=usr/perl5/5.16/man/man3/ops.3
+file path=usr/perl5/5.16/man/man3/overload.3
+file path=usr/perl5/5.16/man/man3/overloading.3
+file path=usr/perl5/5.16/man/man3/parent.3
+file path=usr/perl5/5.16/man/man3/re.3
+file path=usr/perl5/5.16/man/man3/sigtrap.3
+file path=usr/perl5/5.16/man/man3/sort.3
+file path=usr/perl5/5.16/man/man3/strict.3
+file path=usr/perl5/5.16/man/man3/subs.3
+file path=usr/perl5/5.16/man/man3/threads.3
+file path=usr/perl5/5.16/man/man3/threads::shared.3
+file path=usr/perl5/5.16/man/man3/utf8.3
+file path=usr/perl5/5.16/man/man3/vars.3
+file path=usr/perl5/5.16/man/man3/version.3
+file path=usr/perl5/5.16/man/man3/version::Internals.3
+file path=usr/perl5/5.16/man/man3/vmsish.3
+file path=usr/perl5/5.16/man/man3/warnings.3
+file path=usr/perl5/5.16/man/man3/warnings::register.3
+dir  path=usr/perl5/site_perl
+dir  path=usr/perl5/site_perl/5.16
+dir  path=usr/perl5/site_perl/5.16/$(P_ARCH)-solaris-64
+dir  path=usr/perl5/vendor_perl
+dir  path=usr/perl5/vendor_perl/5.16
+dir  path=usr/perl5/vendor_perl/5.16/$(P_ARCH)-solaris-64
+
+# This link is always mediated.
+# Customers may customize this link by creating their own IPS
+# packages with mediated links.
+# DELETE the dupaction once the mediated link is published
+# in the main repo.
+link path=usr/bin/perl target=../perl5/5.16/bin/perl \
+    mediator=perl mediator-version=5.16 \
+    pkg.linted.pkglint.dupaction010.2=true
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl/perl516/perl.license	Fri Mar 22 12:37:36 2013 -0700
@@ -0,0 +1,158 @@
+Oracle elects to have this file available under and governed by
+the Artistic License (see below for full license text).
+However, the following notice accompanied the original version of this file:
+
+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
+http://www.gnu.org/copyleft/gpl.html.
+
+=======================================================================
+
+Copyright (c) 1986 - 2010, Larry Wall and others
+
+			 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 MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+				The End
--- a/components/perl512/Makefile	Fri Mar 22 10:28:14 2013 -0500
+++ b/components/perl512/Makefile	Fri Mar 22 12:37:36 2013 -0700
@@ -18,7 +18,7 @@
 #
 # CDDL HEADER END
 #
-# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
 #
 include ../../make-rules/shared-macros.mk
 
@@ -29,18 +29,18 @@
 # can't call it.
 
 COMPONENT_NAME=		perl
-COMPONENT_VERSION=	5.12.4
+COMPONENT_VERSION=	5.12.5
 PERL_VERSION=		5.12
 COMPONENT_PROJECT_URL=	http://www.perl.org/
 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.bz2
 COMPONENT_ARCHIVE_HASH=	\
-    sha256:c920fa01a34b7752e8cbbc99c6921b908df60611d84a29c4377e4a798604767e
+    sha256:10749417fd3010aae320a34181ad4cd6a4855c1fc63403b87fa4d630b18e966c
 COMPONENT_ARCHIVE_URL=	http://www.cpan.org/src/5.0/$(COMPONENT_ARCHIVE)
 COMPONENT_BUGDB=	utility/perl
 
 include ../../make-rules/prep.mk
-include ../../make-rules/justmake.mk
+include ../../make-rules/configure.mk
 include ../../make-rules/ips.mk
 
 #
@@ -69,11 +69,10 @@
 
 # That last bit re-runs bison to regenerate perly.h.
 
-COMPONENT_PRE_BUILD_ACTION= \
-	(cd $(@D); $(ENV) -i \
-		MAKE=$(GMAKE) \
-		PATH=$(dir $(CC.studio.32)):$(PATH) \
-		$(CONFIG_SHELL) ./Configure \
+CONFIGURE_SCRIPT = $(SOURCE_DIR)/Configure
+CONFIGURE_ENV += MAKE=$(GMAKE)
+CONFIGURE_ENV += PATH=$(dir $(CC)):$(PATH)
+CONFIGURE_OPTIONS = \
 			    -Dprefix=/usr/perl5/$(PERL_VERSION) \
 			    -Dprivlib=/usr/perl5/$(PERL_VERSION)/lib \
 			    -Dsitelib=/usr/perl5/site_perl/$(PERL_VERSION) \
@@ -88,8 +87,11 @@
 			    -Dcf_email="[email protected]" \
 			    -Dcf_by="perl-bugs" \
 			    -Dmyhostname="localhost" \
+			    -Dmksymlinks \
 			    -O \
-			    -de ) ; \
+			    -de
+
+COMPONENT_POST_CONFIGURE_ACTION = \
 	(cd $(@D); \
 	    cp config.sh config.sh_orig ; \
 	    gawk \
@@ -120,14 +122,12 @@
 
 test:		$(TEST_32)
 	#
-	# 2 expected failures because of the use of cloney in this build.
-	# Without cloney all tests pass.
+	#
+	# All tests should pass.
 	#
-	# Failed 2 tests out of 1697, 99.88% okay.
-	# 	../cpan/Archive-Tar/t/02_methods.t
-	# 	../lib/File/stat.t
 	#
 
+
 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
 
 include ../../make-rules/depend.mk
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl512/patches/15880426.patch	Fri Mar 22 12:37:36 2013 -0700
@@ -0,0 +1,66 @@
+Escape new-lines in Cookie and P3P headers
+
+This is relevant difference between CGI 3.62 and 3.63.
+See <https://bugzilla.redhat.com/show_bug.cgi?id=876974>.
+
+diff --git a/cpan/CGI/lib/CGI.pm b/cpan/CGI/lib/CGI.pm
+index d8d91f4..5bc9b17 100644
+--- a/cpan/CGI/lib/CGI.pm
++++ b/cpan/CGI/lib/CGI.pm
+@@ -1497,8 +1497,17 @@ sub header {
+                             'EXPIRES','NPH','CHARSET',
+                             'ATTACHMENT','P3P'],@p);
+ 
++    # Since $cookie and $p3p may be array references,
++    # we must stringify them before CR escaping is done.
++    my @cookie;
++    for (ref($cookie) eq 'ARRAY' ? @{$cookie} : $cookie) {
++        my $cs = UNIVERSAL::isa($_,'CGI::Cookie') ? $_->as_string : $_;
++        push(@cookie,$cs) if defined $cs and $cs ne '';
++    }
++    $p3p = join ' ',@$p3p if ref($p3p) eq 'ARRAY';
++
+     # CR escaping for values, per RFC 822
+-    for my $header ($type,$status,$cookie,$target,$expires,$nph,$charset,$attachment,$p3p,@other) {
++    for my $header ($type,$status,@cookie,$target,$expires,$nph,$charset,$attachment,$p3p,@other) {
+         if (defined $header) {
+             # From RFC 822:
+             # Unfolding  is  accomplished  by regarding   CRLF   immediately
+@@ -1542,18 +1551,9 @@ sub header {
+ 
+     push(@header,"Status: $status") if $status;
+     push(@header,"Window-Target: $target") if $target;
+-    if ($p3p) {
+-       $p3p = join ' ',@$p3p if ref($p3p) eq 'ARRAY';
+-       push(@header,qq(P3P: policyref="/w3c/p3p.xml", CP="$p3p"));
+-    }
++    push(@header,"P3P: policyref=\"/w3c/p3p.xml\", CP=\"$p3p\"") if $p3p;
+     # push all the cookies -- there may be several
+-    if ($cookie) {
+-	my(@cookie) = ref($cookie) && ref($cookie) eq 'ARRAY' ? @{$cookie} : $cookie;
+-	for (@cookie) {
+-            my $cs = UNIVERSAL::isa($_,'CGI::Cookie') ? $_->as_string : $_;
+-	    push(@header,"Set-Cookie: $cs") if $cs ne '';
+-	}
+-    }
++    push(@header,map {"Set-Cookie: $_"} @cookie);
+     # if the user indicates an expiration time, then we need
+     # both an Expires and a Date header (so that the browser is
+     # uses OUR clock)
+diff --git a/t/headers.t b/t/headers.t
+index 661b74b..4b4922c 100644
+--- a/cpan/CGI/t/headers.t
++++ b/cpan/CGI/t/headers.t
+@@ -22,6 +22,12 @@ like($@,qr/contains a newline/,'invalid header blows up');
+ like $cgi->header( -type => "text/html".$CGI::CRLF." evil: stuff " ),
+     qr#Content-Type: text/html evil: stuff#, 'known header, with leading and trailing whitespace on the continuation line';
+ 
++eval { $cgi->header( -p3p => ["foo".$CGI::CRLF."bar"] ) };
++like($@,qr/contains a newline/,'P3P header with CRLF embedded blows up');
++
++eval { $cgi->header( -cookie => ["foo".$CGI::CRLF."bar"] ) };
++like($@,qr/contains a newline/,'Set-Cookie header with CRLF embedded blows up');
++
+ eval { $cgi->header( -foobar => "text/html".$CGI::CRLF."evil: stuff" ) };
+ like($@,qr/contains a newline/,'unknown header with CRLF embedded blows up');
+ 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl512/patches/16417744.patch	Fri Mar 22 12:37:36 2013 -0700
@@ -0,0 +1,74 @@
+
+http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-6329
+CONFIRM:http://perl5.git.perl.org/perl.git/commit/1735f6f53ca19f99c6e9e39496c486af323ba6a8
+
+From 1735f6f53ca19f99c6e9e39496c486af323ba6a8 Mon Sep 17 00:00:00 2001
+From: Brian Carlson <[email protected]>
+Date: Wed, 28 Nov 2012 08:54:33 -0500
+Subject: [PATCH] Fix misparsing of maketext strings.
+
+Case 61251: This commit fixes a misparse of maketext strings that could
+lead to arbitrary code execution.  Basically, maketext was compiling
+bracket notation into functions, but neglected to escape backslashes
+inside the content or die on fully-qualified method names when
+generating the code.  This change escapes all such backslashes and dies
+when a method name with a colon or apostrophe is specified.
+
+--- perl-5.12.5/AUTHORS-orig	2013-03-05 22:57:22.320359148 -0600
++++ perl-5.12.5/AUTHORS	2013-03-05 22:58:13.374206098 -0600
+@@ -139,6 +139,7 @@ Brent B. Powers			<[email protected]>
+ Brent Dax			<[email protected]>
+ Brooks D Boyd
+ Brian Callaghan			<[email protected]>
++Brian Carlson			<[email protected]>
+ Brian Clarke			<[email protected]>
+ brian d foy			<[email protected]>
+ Brian Grossman
+--- perl-5.12.5/dist/Locale-Maketext/lib/Locale/Maketext/Guts.pm-orig	2013-03-05 23:00:24.953530801 -0600
++++ perl-5.12.5/dist/Locale-Maketext/lib/Locale/Maketext/Guts.pm	2013-03-05 23:01:05.801008668 -0600
+@@ -140,21 +140,9 @@ sub _compile {
+                         # 0-length method name means to just interpolate:
+                         push @code, ' (';
+                     }
+-                    elsif($m =~ /^\w+(?:\:\:\w+)*$/s
+-                            and $m !~ m/(?:^|\:)\d/s
+-                        # exclude starting a (sub)package or symbol with a digit
++                    elsif($m =~ /^\w+$/s
++                        # exclude anything fancy, especially fully-qualified module names
+                     ) {
+-                        # Yes, it even supports the demented (and undocumented?)
+-                        #  $obj->Foo::bar(...) syntax.
+-                        $target->_die_pointing(
+-                            $_[1], q{Can't use "SUPER::" in a bracket-group method},
+-                            2 + length($c[-1])
+-                        )
+-                        if $m =~ m/^SUPER::/s;
+-                        # Because for SUPER:: to work, we'd have to compile this into
+-                        #  the right package, and that seems just not worth the bother,
+-                        #  unless someone convinces me otherwise.
+-
+                         push @code, ' $_[0]->' . $m . '(';
+                     }
+                     else {
+@@ -208,7 +196,9 @@ sub _compile {
+             elsif(substr($1,0,1) ne '~') {
+                 # it's stuff not containing "~" or "[" or "]"
+                 # i.e., a literal blob
+-                $c[-1] .= $1;
++                my $text = $1;
++                $text =~ s/\\/\\\\/g;
++                $c[-1] .= $text;
+ 
+             }
+             elsif($1 eq '~~') { # "~~"
+@@ -246,7 +236,9 @@ sub _compile {
+             else {
+                 # It's a "~X" where X is not a special character.
+                 # Consider it a literal ~ and X.
+-                $c[-1] .= $1;
++                my $text = $1;
++                $text =~ s/\\/\\\\/g;
++                $c[-1] .= $text;
+             }
+         }
+     }
--- a/components/perl512/patches/CVE-2011-2728.patch	Fri Mar 22 10:28:14 2013 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,48 +0,0 @@
-#
-# CVE-2011-2728
-# http://perl5.git.perl.org/perl.git/commit/1af4051e077438976a4c12a0622feaf6715bec77
-# https://bugzilla.redhat.com/show_bug.cgi?id=742236
-#
-diff -urN perl-5.12.3/ext/File-Glob/Glob.xs p/ext/File-Glob/Glob.xs
---- perl-5.12.3/ext/File-Glob/Glob.xs   2011-01-09 12:20:55.000000000 -0800
-+++ perl-5.12.3/ext/File-Glob/Glob.xs     2011-11-28 00:46:10.593556922 -0800
-@@ -1,6 +1,7 @@
- #include "EXTERN.h"
- #include "perl.h"
- #include "XSUB.h"
-+#include "strings.h"
- 
- #include "bsd_glob.h"
- 
-@@ -49,9 +50,12 @@
- 	/* allow for optional flags argument */
- 	if (items > 1) {
- 	    flags = (int) SvIV(ST(1));
-+	    /* remove unsupported flags */
-+	    flags &= ~(GLOB_APPEND | GLOB_DOOFFS | GLOB_ALTDIRFUNC | GLOB_MAGCHAR);
- 	}
- 
- 	/* call glob */
-+	bzero(&pglob, sizeof(glob_t));
- 	retval = bsd_glob(pattern, flags, errfunc, &pglob);
- 	GLOB_ERROR = retval;
- 
---- perl-5.12.3/ext/File-Glob/t/basic.t.orig  út lis 15 13:22:27 2011
-+++ perl-5.12.3/ext/File-Glob/t/basic.t       út lis 15 13:22:54 2011
-@@ -15,7 +15,7 @@
-     }
- }
- use strict;
--use Test::More tests => 14;
-+use Test::More tests => 15;
- BEGIN {use_ok('File::Glob', ':glob')};
- use Cwd ();
-
-@@ -195,3 +195,7 @@
-     local $TODO = "home-made glob doesn't do regexes" if $^O eq 'VMS';
-     is_deeply(\@glob_files, ['a_dej']);
- }
-+
-+# This used to segfault.
-+my $i = bsd_glob('*', GLOB_ALTDIRFUNC);
-+is(&File::Glob::GLOB_ERROR, 0, "Successfuly ignored unsupported flag");
--- a/components/perl512/patches/CVE-2011-2939.patch	Fri Mar 22 10:28:14 2013 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-#
-# CVE-2011-2939
-# http://perl5.git.perl.org/perl.git/commitdiff/e46d973584785af1f445c4dedbee4243419cb860#patch5
-# https://bugzilla.redhat.com/show_bug.cgi?id=731246
-#
---- perl-5.12.3/cpan/Encode/Unicode/Unicode.xs.old	2011-11-15 22:37:18.836023493 -0800
-+++ perl-5.12.3/cpan/Encode/Unicode/Unicode.xs	2011-11-15 22:40:56.191609987 -0800
-@@ -246,7 +246,10 @@
- 	       This prevents allocating too much in the rogue case of a large
- 	       input consisting initially of long sequence uft8-byte unicode
- 	       chars followed by single utf8-byte chars. */
--	    STRLEN remaining = (e - s)/usize;
-+	    /* +1 
-+	       fixes  Unicode.xs!decode_xs n-byte heap-overflow
-+	      */
-+	    STRLEN remaining = (e - s)/usize + 1; /* +1 to avoid the leak */
- 	    STRLEN max_alloc = remaining + (8*1024*1024);
- 	    STRLEN est_alloc = remaining * UTF8_MAXLEN;
- 	    STRLEN newlen = SvLEN(result) + /* min(max_alloc, est_alloc) */
--- a/components/perl512/patches/patchlevel_h.patch	Fri Mar 22 10:28:14 2013 -0500
+++ b/components/perl512/patches/patchlevel_h.patch	Fri Mar 22 12:37:36 2013 -0700
@@ -1,12 +1,16 @@
 --- perl-5.12.4/patchlevel.h	2011-06-15 10:14:22.000000000 -0700
 +++ CGI.pm-3.59/patchlevel.h	2012-06-13 18:10:17.136255349 -0700
-@@ -131,6 +131,9 @@
+@@ -131,6 +131,13 @@
  	,"uncommitted-changes"
  #endif
  	PERL_GIT_UNPUSHED_COMMITS    	/* do not remove this line */
 +	,"7111771 Problem with utility/perl"
 +	,"7125218 Problem with utility/perl"
 +	,"7030196 Problem with utility/perl"
++	,"15820486 Problem with utility/perl"
++	,"15880426 Problem with utility/perl"
++	,"16417744 Problem with utility/perl"
++	,"16427786 Problem with utility/perl"
  	,NULL
  };
  
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl512/patches/rehash-5.12.5.patch	Fri Mar 22 12:37:36 2013 -0700
@@ -0,0 +1,165 @@
+From f2a571dae7d70f7e3b59022834d8003ecd2df884 Mon Sep 17 00:00:00 2001
+From: Yves Orton <[email protected]>
+Date: Tue, 12 Feb 2013 10:53:05 +0100
+Subject: [PATCH] Prevent premature hsplit() calls, and only trigger REHASH
+ after hsplit()
+
+Triggering a hsplit due to long chain length allows an attacker
+to create a carefully chosen set of keys which can cause the hash
+to use 2 * (2**32) * sizeof(void *) bytes ram. AKA a DOS via memory
+exhaustion. Doing so also takes non trivial time.
+
+Eliminating this check, and only inspecting chain length after a
+normal hsplit() (triggered when keys>buckets) prevents the attack
+entirely, and makes such attacks relatively benign.
+
+(cherry picked from commit f1220d61455253b170e81427c9d0357831ca0fac)
+---
+ ext/Hash-Util-FieldHash/t/10_hash.t | 18 ++++++++++++++++--
+ hv.c                                | 26 ++++++--------------------
+ t/op/hash.t                         | 20 +++++++++++++++++---
+ 3 files changed, 39 insertions(+), 25 deletions(-)
+
+diff --git a/ext/Hash-Util-FieldHash/t/10_hash.t b/ext/Hash-Util-FieldHash/t/10_hash.t
+index 2cfb4e8..d58f053 100644
+--- a/ext/Hash-Util-FieldHash/t/10_hash.t
++++ b/ext/Hash-Util-FieldHash/t/10_hash.t
+@@ -38,15 +38,29 @@ use constant START     => "a";
+ 
+ # some initial hash data
+ fieldhash my %h2;
+-%h2 = map {$_ => 1} 'a'..'cc';
++my $counter= "a";
++$h2{$counter++}++ while $counter ne 'cd';
+ 
+ ok (!Internals::HvREHASH(%h2), 
+     "starting with pre-populated non-pathological hash (rehash flag if off)");
+ 
+ my @keys = get_keys(\%h2);
++my $buckets= buckets(\%h2);
+ $h2{$_}++ for @keys;
++$h2{$counter++}++ while buckets(\%h2) == $buckets; # force a split
+ ok (Internals::HvREHASH(%h2), 
+-    scalar(@keys) . " colliding into the same bucket keys are triggering rehash");
++    scalar(@keys) . " colliding into the same bucket keys are triggering rehash after split");
++
++# returns the number of buckets in a hash
++sub buckets {
++    my $hr = shift;
++    my $keys_buckets= scalar(%$hr);
++    if ($keys_buckets=~m!/([0-9]+)\z!) {
++        return 0+$1;
++    } else {
++        return 8;
++    }
++}
+ 
+ sub get_keys {
+     my $hr = shift;
+diff --git a/hv.c b/hv.c
+index 89c6456..8659678 100644
+--- a/hv.c
++++ b/hv.c
+@@ -35,7 +35,8 @@ holds the key and hash value.
+ #define PERL_HASH_INTERNAL_ACCESS
+ #include "perl.h"
+ 
+-#define HV_MAX_LENGTH_BEFORE_SPLIT 14
++#define HV_MAX_LENGTH_BEFORE_REHASH 14
++#define SHOULD_DO_HSPLIT(xhv) ((xhv)->xhv_keys > (xhv)->xhv_max) /* HvTOTALKEYS(hv) > HvMAX(hv) */
+ 
+ static const char S_strtab_error[]
+     = "Cannot modify shared string table in hv_%s";
+@@ -818,23 +819,8 @@ Perl_hv_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen,
+ 	xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */
+ 	if (!counter) {				/* initial entry? */
+ 	    xhv->xhv_fill++; /* HvFILL(hv)++ */
+-	} else if (xhv->xhv_keys > (IV)xhv->xhv_max) {
++	} else if ( SHOULD_DO_HSPLIT(xhv) ) {
+ 	    hsplit(hv);
+-	} else if(!HvREHASH(hv)) {
+-	    U32 n_links = 1;
+-
+-	    while ((counter = HeNEXT(counter)))
+-		n_links++;
+-
+-	    if (n_links > HV_MAX_LENGTH_BEFORE_SPLIT) {
+-		/* Use only the old HvKEYS(hv) > HvMAX(hv) condition to limit
+-		   bucket splits on a rehashed hash, as we're not going to
+-		   split it again, and if someone is lucky (evil) enough to
+-		   get all the keys in one list they could exhaust our memory
+-		   as we repeatedly double the number of buckets on every
+-		   entry. Linear search feels a less worse thing to do.  */
+-		hsplit(hv);
+-	    }
+ 	}
+     }
+ 
+@@ -1180,7 +1166,7 @@ S_hsplit(pTHX_ HV *hv)
+ 
+ 
+     /* Pick your policy for "hashing isn't working" here:  */
+-    if (longest_chain <= HV_MAX_LENGTH_BEFORE_SPLIT /* split worked?  */
++    if (longest_chain <= HV_MAX_LENGTH_BEFORE_REHASH /* split worked?  */
+ 	|| HvREHASH(hv)) {
+ 	return;
+     }
+@@ -2551,8 +2537,8 @@ S_share_hek_flags(pTHX_ const char *str, I32 len, register U32 hash, int flags)
+ 	xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */
+ 	if (!next) {			/* initial entry? */
+ 	    xhv->xhv_fill++; /* HvFILL(hv)++ */
+-	} else if (xhv->xhv_keys > (IV)xhv->xhv_max /* HvKEYS(hv) > HvMAX(hv) */) {
+-		hsplit(PL_strtab);
++	} else if ( SHOULD_DO_HSPLIT(xhv) ) {
++            hsplit(PL_strtab);
+ 	}
+     }
+ 
+diff --git a/t/op/hash.t b/t/op/hash.t
+index 9bde518..45eb782 100644
+--- a/t/op/hash.t
++++ b/t/op/hash.t
+@@ -39,22 +39,36 @@ use constant THRESHOLD => 14;
+ use constant START     => "a";
+ 
+ # some initial hash data
+-my %h2 = map {$_ => 1} 'a'..'cc';
++my %h2;
++my $counter= "a";
++$h2{$counter++}++ while $counter ne 'cd';
+ 
+ ok (!Internals::HvREHASH(%h2), 
+     "starting with pre-populated non-pathological hash (rehash flag if off)");
+ 
+ my @keys = get_keys(\%h2);
++my $buckets= buckets(\%h2);
+ $h2{$_}++ for @keys;
++$h2{$counter++}++ while buckets(\%h2) == $buckets; # force a split
+ ok (Internals::HvREHASH(%h2), 
+-    scalar(@keys) . " colliding into the same bucket keys are triggering rehash");
++    scalar(@keys) . " colliding into the same bucket keys are triggering rehash after split");
++
++# returns the number of buckets in a hash
++sub buckets {
++    my $hr = shift;
++    my $keys_buckets= scalar(%$hr);
++    if ($keys_buckets=~m!/([0-9]+)\z!) {
++        return 0+$1;
++    } else {
++        return 8;
++    }
++}
+ 
+ sub get_keys {
+     my $hr = shift;
+ 
+     # the minimum of bits required to mount the attack on a hash
+     my $min_bits = log(THRESHOLD)/log(2);
+-
+     # if the hash has already been populated with a significant amount
+     # of entries the number of mask bits can be higher
+     my $keys = scalar keys %$hr;
+-- 
+1.8.1.3
+
+
--- a/components/perl512/perl-512.p5m	Fri Mar 22 10:28:14 2013 -0500
+++ b/components/perl512/perl-512.p5m	Fri Mar 22 12:37:36 2013 -0700
@@ -18,7 +18,7 @@
 #
 # CDDL HEADER END
 #
-# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
 #
 
 <transform file path=usr.*/man/.+ -> default mangler.man.stability uncommitted>
@@ -3682,8 +3682,18 @@
 hardlink path=usr/perl5/$(PERL_VERSION)/man/man1/perlbug.1 target=perlthanks.1
 hardlink path=usr/perl5/$(PERL_VERSION)/man/man1/pstruct.1 target=c2ph.1
 hardlink path=usr/perl5/$(PERL_VERSION)/man/man1/s2p.1 target=psed.1
-link path=usr/bin/perl target=../perl5/5.12/bin/perl
-link path=usr/perl5/bin target=./5.12/bin
-link path=usr/perl5/man target=./5.12/man
-link path=usr/perl5/pod target=./5.12/lib/pod
+
+# This link is always mediated.
+# Customers may customize this link by creating their own IPS
+# packages with mediated links.
+# DELETE the dupaction once the mediated link is published
+# in the main repo.
+link path=usr/bin/perl target=../perl5/5.12/bin/perl \
+    mediator=perl mediator-version=5.12 mediator-priority=vendor \
+    pkg.linted.pkglint.dupaction010.2=true
+
+link path=usr/perl5/bin target=5.12/bin
+link path=usr/perl5/man target=5.12/man
+link path=usr/perl5/pod target=5.12/lib/pod
+
 license perl.license license=Artistic
--- a/tools/python/pkglint/userland.py	Fri Mar 22 10:28:14 2013 -0500
+++ b/tools/python/pkglint/userland.py	Fri Mar 22 12:37:36 2013 -0700
@@ -21,7 +21,7 @@
 #
 
 #
-# Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
 #
 
 # Some userland consolidation specific lint checks
@@ -45,6 +45,24 @@
 			self.proto_path = path.split()
 		else:
 			self.proto_path = None
+		#
+		# These lists are used to check if a 32/64-bit binary
+		# is in a proper 32/64-bit directory.
+		#
+		self.pathlist32 = [
+			"i86",
+			"sparcv7",
+			"32",
+			"i86pc-solaris-64int",  # perl path
+			"sun4-solaris-64int"    # perl path
+		]
+		self.pathlist64 = [
+			"amd64",
+			"sparcv9",
+			"64",
+			"i86pc-solaris-64",     # perl path
+			"sun4-solaris-64"       # perl path
+		]
 		self.runpath_re = [
 			re.compile('^/lib(/.*)?$'),
 			re.compile('^/usr/'),
@@ -53,7 +71,9 @@
 		self.runpath_64_re = [
 			re.compile('^.*/64(/.*)?$'),
 			re.compile('^.*/amd64(/.*)?$'),
-			re.compile('^.*/sparcv9(/.*)?$')
+			re.compile('^.*/sparcv9(/.*)?$'),
+			re.compile('^.*/i86pc-solaris-64(/.*)?$'), # perl path
+			re.compile('^.*/sun4-solaris-64(/.*)?$')   # perl path
 		]
 		self.initscript_re = re.compile("^etc/(rc.|init)\.d")
 
@@ -250,15 +270,15 @@
 		type = ei.get("type");
                 elems = os.path.dirname(path).split("/")
 
-                if ("amd64" in elems) or ("sparcv9" in elems) or ("64" in elems):
-                    path64 = True
-                else:
-                    path64 = False
+                path64 = False
+		for p in self.pathlist64:
+		    if (p in elems):
+			path64 = True
 
-                if ("i86" in elems) or ("sparcv7" in elems) or ("32" in elems):
-                    path32 = True
-                else:
-                    path32 = False
+                path32 = False
+		for p in self.pathlist32:
+		    if (p in elems):
+			path32 = True
 
 		# ignore 64-bit executables in normal (non-32-bit-specific)
 		# locations, that's ok now.