1 package Module::CoreList;
3 use vars qw/$VERSION %released %version %families %upstream
4 %bug_tracker %deprecated/;
9 Module::CoreList - what modules shipped with versions of perl
15 print $Module::CoreList::version{5.00503}{CPAN}; # prints 1.48
17 print Module::CoreList->first_release('File::Spec'); # prints 5.00405
18 print Module::CoreList->first_release_by_date('File::Spec'); # prints 5.005
19 print Module::CoreList->first_release('File::Spec', 0.82); # prints 5.006001
21 print join ', ', Module::CoreList->find_modules(qr/Data/);
22 # prints 'Data::Dumper'
23 print join ', ', Module::CoreList->find_modules(qr/test::h.*::.*s/i, 5.008008);
24 # prints 'Test::Harness::Assert, Test::Harness::Straps'
26 print join ", ", @{ $Module::CoreList::families{5.005} };
27 # prints "5.005, 5.00503, 5.00504"
31 Module::CoreList provides information on which core and dual-life modules shipped
32 with each version of L<perl>.
34 It provides a number of mechanisms for querying this information.
36 There is a utility called L<corelist> provided with this module
37 which is a convenient way of querying from the command-line.
39 There is a functional programming API available for programmers to query
42 Programmers may also query the contained hash structures to find relevant
47 These are the functions that are available, they may either be called as functions or class methods:
49 Module::CoreList::first_release('File::Spec'); # as a function
51 Module::CoreList->first_release('File::Spec'); # class method
55 =item C<first_release( MODULE )>
57 Behaviour since version 2.11
59 Requires a MODULE name as an argument, returns the perl version when that module first
60 appeared in core as ordered by perl version number or undef ( in scalar context )
61 or an empty list ( in list context ) if that module is not in core.
63 =item C<first_release_by_date( MODULE )>
65 Requires a MODULE name as an argument, returns the perl version when that module first
66 appeared in core as ordered by release date or undef ( in scalar context )
67 or an empty list ( in list context ) if that module is not in core.
69 =item C<find_modules( REGEX, [ LIST OF PERLS ] )>
71 Takes a regex as an argument, returns a list of modules that match the regex given.
72 If only a regex is provided applies to all modules in all perl versions. Optionally
73 you may provide a list of perl versions to limit the regex search.
75 =item C<find_version( PERL_VERSION )>
77 Takes a perl version as an argument. Returns that perl version if it exists or C<undef>
80 =item C<is_deprecated( MODULE, PERL_VERSION )>
82 Available in version 2.22 and above.
84 Returns true if MODULE is marked as deprecated in PERL_VERSION. If PERL_VERSION is
85 omitted, it defaults to the current version of Perl.
87 =item C<removed_from( MODULE )>
89 Available in version 2.32 and above
91 Takes a module name as an argument, returns the first perl version where that module
92 was removed from core. Returns undef if the given module was never in core or remains
95 =item C<removed_from_by_date( MODULE )>
97 Available in version 2.32 and above
99 Takes a module name as an argument, returns the first perl version by release date where that module
100 was removed from core. Returns undef if the given module was never in core or remains
105 =head1 DATA STRUCTURES
107 These are the hash data structures that are available:
111 =item C<%Module::CoreList::version>
113 A hash of hashes that is keyed on perl version as indicated
114 in $]. The second level hash is module => version pairs.
116 Note, it is possible for the version of a module to be unspecified,
117 whereby the value is C<undef>, so use C<exists $version{$foo}{$bar}> if
118 that's what you're testing for.
120 Starting with 2.10, the special module name C<Unicode> refers to the version of
121 the Unicode Character Database bundled with Perl.
123 =item C<%Module::CoreList::released>
125 Keyed on perl version this contains ISO
126 formatted versions of the release dates, as gleaned from L<perlhist>.
128 =item C<%Module::CoreList::families>
130 New, in 1.96, a hash that
131 clusters known perl releases by their major versions.
133 =item C<%Module::CoreList::deprecated>
135 A hash of hashes keyed on perl version and on module name.
136 If a module is defined it indicates that that module is
137 deprecated in that perl version and is scheduled for removal
138 from core at some future point.
140 =item C<%Module::CoreList::upstream>
142 A hash that contains information on where patches should be directed
143 for each core module.
145 UPSTREAM indicates where patches should go. C<undef> implies
146 that this hasn't been discussed for the module at hand.
147 C<blead> indicates that the copy of the module in the blead
148 sources is to be considered canonical, C<cpan> means that the
149 module on CPAN is to be patched first. C<first-come> means
150 that blead can be patched freely if it is in sync with the
151 latest release on CPAN.
153 =item C<%Module::CoreList::bug_tracker>
155 A hash that contains information on the appropriate bug tracker
156 for each core module.
158 BUGS is an email or url to post bug reports. For modules with
159 UPSTREAM => 'blead', use perl5-porters@perl.org. rt.cpan.org
160 appears to automatically provide a URL for CPAN modules; any value
161 given here overrides the default:
162 http://rt.cpan.org/Public/Dist/Display.html?Name=$ModuleName
168 Module::CoreList currently covers the 5.000, 5.001, 5.002, 5.003_07,
169 5.004, 5.004_05, 5.005, 5.005_03, 5.005_04, 5.6.0, 5.6.1, 5.6.2, 5.7.3,
170 5.8.0, 5.8.1, 5.8.2, 5.8.3, 5.8.4, 5.8.5, 5.8.6, 5.8.7, 5.8.8, 5.8.9,
171 5.9.0, 5.9.1, 5.9.2, 5.9.3, 5.9.4, 5.9.5, 5.10.0, 5.10.1, 5.11.0, 5.11.1,
172 5.11.2, 5.11.3, 5.11.4, 5.11.5, 5.12.0, 5.12.1, 5.12.2, 5.12.3, 5.13.0,
173 5.13.1, 5.13.2, 5.13.3, 5.13.4, 5.13.5, 5.13.6, 5.13.7, 5.13.8, 5.13.9
174 and 5.13.10 releases of perl.
178 Moved to Changes file.
182 Richard Clamp E<lt>richardc@unixbeard.netE<gt>
184 Currently maintained by the perl 5 porters E<lt>perl5-porters@perl.orgE<gt>.
188 Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.
190 This module is free software; you can redistribute it and/or modify it
191 under the same terms as Perl itself.
195 L<corelist>, L<Module::Info>, L<perl>
202 my $what = shift || '';
203 if ($what eq 'dumpinc') {
209 print "---INC---\n", join "\n" => keys %INC
214 sub first_release_raw {
216 $module = shift if $module->isa(__PACKAGE__)
217 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
221 ? grep { exists $version{$_}{ $module } &&
222 $version{$_}{ $module } ge $version } keys %version
223 : grep { exists $version{$_}{ $module } } keys %version;
228 sub first_release_by_date {
229 my @perls = &first_release_raw;
230 return unless @perls;
231 return (sort { $released{$a} cmp $released{$b} } @perls)[0];
235 my @perls = &first_release_raw;
236 return unless @perls;
237 return (sort { $a cmp $b } @perls)[0];
242 $regex = shift if $regex->isa(__PACKAGE__);
244 @perls = keys %version unless @perls;
248 while (my ($k, $v) = each %{$version{$_}}) {
249 $mods{$k}++ if $k =~ $regex;
252 return sort keys %mods
257 $v = shift if $v->isa(__PACKAGE__);
258 return $version{$v} if defined $version{$v};
264 $module = shift if $module->isa(__PACKAGE__)
265 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
266 my $perl_version = shift;
267 $perl_version ||= $];
268 return unless $module && exists $deprecated{$perl_version}{$module};
269 return $deprecated{$perl_version}{$module};
273 my @perls = &removed_raw;
277 sub removed_from_by_date {
278 my @perls = sort { $released{$a} cmp $released{$b} } &removed_raw;
284 $mod = shift if $mod->isa(__PACKAGE__)
285 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
286 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
287 my $last = pop @perls;
288 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
292 # When things escaped.
293 # NB. If you put version numbers with trailing zeroes here, you
294 # should also add an alias for the numerical ($]) version; see
295 # just before the __END__ of this module.
297 5.000 => '1994-10-17',
298 5.001 => '1995-03-14',
299 5.002 => '1996-02-29',
300 5.00307 => '1996-10-10',
301 5.004 => '1997-05-15',
302 5.005 => '1998-07-22',
303 5.00503 => '1999-03-28',
304 5.00405 => '1999-04-29',
305 5.006 => '2000-03-22',
306 5.006001 => '2001-04-08',
307 5.007003 => '2002-03-05',
308 5.008 => '2002-07-19',
309 5.008001 => '2003-09-25',
310 5.009 => '2003-10-27',
311 5.008002 => '2003-11-05',
312 5.006002 => '2003-11-15',
313 5.008003 => '2004-01-14',
314 5.00504 => '2004-02-23',
315 5.009001 => '2004-03-16',
316 5.008004 => '2004-04-21',
317 5.008005 => '2004-07-19',
318 5.008006 => '2004-11-27',
319 5.009002 => '2005-04-01',
320 5.008007 => '2005-05-30',
321 5.009003 => '2006-01-28',
322 5.008008 => '2006-01-31',
323 5.009004 => '2006-08-15',
324 5.009005 => '2007-07-07',
325 5.010000 => '2007-12-18',
326 5.008009 => '2008-12-14',
327 5.010001 => '2009-08-22',
328 5.011000 => '2009-10-02',
329 5.011001 => '2009-10-20',
330 5.011002 => '2009-11-20',
331 5.011003 => '2009-12-20',
332 5.011004 => '2010-01-20',
333 5.011005 => '2010-02-20',
334 5.012000 => '2010-04-12',
335 5.013000 => '2010-04-20',
336 5.012001 => '2010-05-16',
337 5.013001 => '2010-05-20',
338 5.013002 => '2010-06-22',
339 5.013003 => '2010-07-20',
340 5.013004 => '2010-08-20',
341 5.012002 => '2010-09-06',
342 5.013005 => '2010-09-19',
343 5.013006 => '2010-10-20',
344 5.013007 => '2010-11-20',
345 5.013008 => '2010-12-20',
346 5.012003 => '2011-01-21',
347 5.013009 => '2011-01-20',
348 5.013010 => '2011-02-20',
351 for my $version ( sort { $a <=> $b } keys %released ) {
352 my $family = int ($version * 1000) / 1000;
353 push @{ $families{ $family }} , $version;
359 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm
360 'AutoLoader' => undef, # lib/AutoLoader.pm
361 'AutoSplit' => undef, # lib/AutoSplit.pm
362 'Benchmark' => undef, # lib/Benchmark.pm
363 'Carp' => undef, # lib/Carp.pm
364 'Cwd' => undef, # lib/Cwd.pm
365 'DB_File' => undef, # ext/DB_File/DB_File.pm
366 'DynaLoader' => undef, # ext/DynaLoader/DynaLoader.pm
367 'English' => undef, # lib/English.pm
368 'Env' => undef, # lib/Env.pm
369 'Exporter' => undef, # lib/Exporter.pm
370 'ExtUtils::MakeMaker' => undef, # lib/ExtUtils/MakeMaker.pm
371 'Fcntl' => undef, # ext/Fcntl/Fcntl.pm
372 'File::Basename' => undef, # lib/File/Basename.pm
373 'File::CheckTree' => undef, # lib/File/CheckTree.pm
374 'File::Find' => undef, # lib/File/Find.pm
375 'FileHandle' => undef, # lib/FileHandle.pm
376 'GDBM_File' => undef, # ext/GDBM_File/GDBM_File.pm
377 'Getopt::Long' => undef, # lib/Getopt/Long.pm
378 'Getopt::Std' => undef, # lib/Getopt/Std.pm
379 'I18N::Collate' => undef, # lib/I18N/Collate.pm
380 'IPC::Open2' => undef, # lib/IPC/Open2.pm
381 'IPC::Open3' => undef, # lib/IPC/Open3.pm
382 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm
383 'Math::BigInt' => undef, # lib/Math/BigInt.pm
384 'Math::Complex' => undef, # lib/Math/Complex.pm
385 'NDBM_File' => undef, # ext/NDBM_File/NDBM_File.pm
386 'Net::Ping' => undef, # lib/Net/Ping.pm
387 'ODBM_File' => undef, # ext/ODBM_File/ODBM_File.pm
388 'POSIX' => undef, # ext/POSIX/POSIX.pm
389 'SDBM_File' => undef, # ext/SDBM_File/SDBM_File.pm
390 'Search::Dict' => undef, # lib/Search/Dict.pm
391 'Shell' => undef, # lib/Shell.pm
392 'Socket' => undef, # ext/Socket/Socket.pm
393 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm
394 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm
395 'Term::Cap' => undef, # lib/Term/Cap.pm
396 'Term::Complete' => undef, # lib/Term/Complete.pm
397 'Test::Harness' => undef, # lib/Test/Harness.pm
398 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm
399 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm
400 'Text::Soundex' => undef, # lib/Text/Soundex.pm
401 'Text::Tabs' => undef, # lib/Text/Tabs.pm
402 'TieHash' => undef, # lib/TieHash.pm
403 'Time::Local' => undef, # lib/Time/Local.pm
404 'integer' => undef, # lib/integer.pm
405 'less' => undef, # lib/less.pm
406 'sigtrap' => undef, # lib/sigtrap.pm
407 'strict' => undef, # lib/strict.pm
408 'subs' => undef, # lib/subs.pm
412 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm
413 'AutoLoader' => undef, # lib/AutoLoader.pm
414 'AutoSplit' => undef, # lib/AutoSplit.pm
415 'Benchmark' => undef, # lib/Benchmark.pm
416 'Carp' => undef, # lib/Carp.pm
417 'Cwd' => undef, # lib/Cwd.pm
418 'DB_File' => undef, # ext/DB_File/DB_File.pm
419 'DynaLoader' => undef, # ext/DynaLoader/DynaLoader.pm
420 'English' => undef, # lib/English.pm
421 'Env' => undef, # lib/Env.pm
422 'Exporter' => undef, # lib/Exporter.pm
423 'ExtUtils::Liblist' => undef, # lib/ExtUtils/Liblist.pm
424 'ExtUtils::MakeMaker' => undef, # lib/ExtUtils/MakeMaker.pm
425 'ExtUtils::Manifest' => undef, # lib/ExtUtils/Manifest.pm
426 'ExtUtils::Mkbootstrap' => undef, # lib/ExtUtils/Mkbootstrap.pm
427 'Fcntl' => undef, # ext/Fcntl/Fcntl.pm
428 'File::Basename' => undef, # lib/File/Basename.pm
429 'File::CheckTree' => undef, # lib/File/CheckTree.pm
430 'File::Find' => undef, # lib/File/Find.pm
431 'File::Path' => undef, # lib/File/Path.pm
432 'FileHandle' => undef, # lib/FileHandle.pm
433 'GDBM_File' => undef, # ext/GDBM_File/GDBM_File.pm
434 'Getopt::Long' => undef, # lib/Getopt/Long.pm
435 'Getopt::Std' => undef, # lib/Getopt/Std.pm
436 'I18N::Collate' => undef, # lib/I18N/Collate.pm
437 'IPC::Open2' => undef, # lib/IPC/Open2.pm
438 'IPC::Open3' => undef, # lib/IPC/Open3.pm
439 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm
440 'Math::BigInt' => undef, # lib/Math/BigInt.pm
441 'Math::Complex' => undef, # lib/Math/Complex.pm
442 'NDBM_File' => undef, # ext/NDBM_File/NDBM_File.pm
443 'Net::Ping' => undef, # lib/Net/Ping.pm
444 'ODBM_File' => undef, # ext/ODBM_File/ODBM_File.pm
445 'POSIX' => undef, # ext/POSIX/POSIX.pm
446 'SDBM_File' => undef, # ext/SDBM_File/SDBM_File.pm
447 'Search::Dict' => undef, # lib/Search/Dict.pm
448 'Shell' => undef, # lib/Shell.pm
449 'Socket' => undef, # ext/Socket/Socket.pm
450 'SubstrHash' => undef, # lib/SubstrHash.pm
451 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm
452 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm
453 'Term::Cap' => undef, # lib/Term/Cap.pm
454 'Term::Complete' => undef, # lib/Term/Complete.pm
455 'Test::Harness' => undef, # lib/Test/Harness.pm
456 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm
457 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm
458 'Text::Soundex' => undef, # lib/Text/Soundex.pm
459 'Text::Tabs' => undef, # lib/Text/Tabs.pm
460 'TieHash' => undef, # lib/TieHash.pm
461 'Time::Local' => undef, # lib/Time/Local.pm
462 'integer' => undef, # lib/integer.pm
463 'less' => undef, # lib/less.pm
464 'lib' => undef, # lib/lib.pm
465 'sigtrap' => undef, # lib/sigtrap.pm
466 'strict' => undef, # lib/strict.pm
467 'subs' => undef, # lib/subs.pm
471 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm
472 'AutoLoader' => undef, # lib/AutoLoader.pm
473 'AutoSplit' => undef, # lib/AutoSplit.pm
474 'Benchmark' => undef, # lib/Benchmark.pm
475 'Carp' => undef, # lib/Carp.pm
476 'Cwd' => undef, # lib/Cwd.pm
477 'DB_File' => '1.01', # ext/DB_File/DB_File.pm
478 'Devel::SelfStubber' => '1.01', # lib/Devel/SelfStubber.pm
479 'DirHandle' => undef, # lib/DirHandle.pm
480 'DynaLoader' => '1.00', # ext/DynaLoader/DynaLoader.pm
481 'English' => undef, # lib/English.pm
482 'Env' => undef, # lib/Env.pm
483 'Exporter' => undef, # lib/Exporter.pm
484 'ExtUtils::Install' => undef, # lib/ExtUtils/Install.pm
485 'ExtUtils::Liblist' => undef, # lib/ExtUtils/Liblist.pm
486 'ExtUtils::MM_OS2' => undef, # lib/ExtUtils/MM_OS2.pm
487 'ExtUtils::MM_Unix' => undef, # lib/ExtUtils/MM_Unix.pm
488 'ExtUtils::MM_VMS' => undef, # lib/ExtUtils/MM_VMS.pm
489 'ExtUtils::MakeMaker' => '5.21', # lib/ExtUtils/MakeMaker.pm
490 'ExtUtils::Manifest' => '1.22', # lib/ExtUtils/Manifest.pm
491 'ExtUtils::Mkbootstrap' => undef, # lib/ExtUtils/Mkbootstrap.pm
492 'ExtUtils::Mksymlists' => '1.00', # lib/ExtUtils/Mksymlists.pm
493 'Fcntl' => '1.00', # ext/Fcntl/Fcntl.pm
494 'File::Basename' => undef, # lib/File/Basename.pm
495 'File::CheckTree' => undef, # lib/File/CheckTree.pm
496 'File::Copy' => '1.5', # lib/File/Copy.pm
497 'File::Find' => undef, # lib/File/Find.pm
498 'File::Path' => '1.01', # lib/File/Path.pm
499 'FileCache' => undef, # lib/FileCache.pm
500 'FileHandle' => '1.00', # ext/FileHandle/FileHandle.pm
501 'GDBM_File' => '1.00', # ext/GDBM_File/GDBM_File.pm
502 'Getopt::Long' => '2.01', # lib/Getopt/Long.pm
503 'Getopt::Std' => undef, # lib/Getopt/Std.pm
504 'I18N::Collate' => undef, # lib/I18N/Collate.pm
505 'IPC::Open2' => undef, # lib/IPC/Open2.pm
506 'IPC::Open3' => undef, # lib/IPC/Open3.pm
507 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm
508 'Math::BigInt' => undef, # lib/Math/BigInt.pm
509 'Math::Complex' => undef, # lib/Math/Complex.pm
510 'NDBM_File' => '1.00', # ext/NDBM_File/NDBM_File.pm
511 'Net::Ping' => '1', # lib/Net/Ping.pm
512 'ODBM_File' => '1.00', # ext/ODBM_File/ODBM_File.pm
513 'POSIX' => '1.00', # ext/POSIX/POSIX.pm
514 'Pod::Functions' => undef, # lib/Pod/Functions.pm
515 'Pod::Text' => undef, # lib/Pod/Text.pm
516 'SDBM_File' => '1.00', # ext/SDBM_File/SDBM_File.pm
517 'Safe' => '1.00', # ext/Safe/Safe.pm
518 'Search::Dict' => undef, # lib/Search/Dict.pm
519 'SelectSaver' => undef, # lib/SelectSaver.pm
520 'SelfLoader' => '1.06', # lib/SelfLoader.pm
521 'Shell' => undef, # lib/Shell.pm
522 'Socket' => '1.5', # ext/Socket/Socket.pm
523 'Symbol' => undef, # lib/Symbol.pm
524 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm
525 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm
526 'Term::Cap' => undef, # lib/Term/Cap.pm
527 'Term::Complete' => undef, # lib/Term/Complete.pm
528 'Term::ReadLine' => undef, # lib/Term/ReadLine.pm
529 'Test::Harness' => '1.07', # lib/Test/Harness.pm
530 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm
531 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm
532 'Text::Soundex' => undef, # lib/Text/Soundex.pm
533 'Text::Tabs' => undef, # lib/Text/Tabs.pm
534 'Text::Wrap' => undef, # lib/Text/Wrap.pm
535 'Tie::Hash' => undef, # lib/Tie/Hash.pm
536 'Tie::Scalar' => undef, # lib/Tie/Scalar.pm
537 'Tie::SubstrHash' => undef, # lib/Tie/SubstrHash.pm
538 'Time::Local' => undef, # lib/Time/Local.pm
539 'diagnostics' => undef, # lib/diagnostics.pm
540 'integer' => undef, # lib/integer.pm
541 'less' => undef, # lib/less.pm
542 'lib' => undef, # lib/lib.pm
543 'overload' => undef, # lib/overload.pm
544 'sigtrap' => undef, # lib/sigtrap.pm
545 'strict' => undef, # lib/strict.pm
546 'subs' => undef, # lib/subs.pm
547 'vars' => undef, # lib/vars.pm
551 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
552 'AutoLoader' => undef, #./lib/AutoLoader.pm
553 'AutoSplit' => undef, #./lib/AutoSplit.pm
554 'Benchmark' => undef, #./lib/Benchmark.pm
555 'Carp' => undef, #./lib/Carp.pm
557 'Cwd' => undef, #./lib/Cwd.pm
558 'DB_File' => '1.03', #./lib/DB_File.pm
559 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
560 'diagnostics' => undef, #./lib/diagnostics.pm
561 'DirHandle' => undef, #./lib/DirHandle.pm
562 'DynaLoader' => '1.00', #./ext/DynaLoader/DynaLoader.pm
563 'English' => undef, #./lib/English.pm
564 'Env' => undef, #./lib/Env.pm
565 'Exporter' => undef, #./lib/Exporter.pm
566 'ExtUtils::Embed' => '1.18', #./lib/ExtUtils/Embed.pm
567 'ExtUtils::Install' => '1.15 ', #./lib/ExtUtils/Install.pm
568 'ExtUtils::Liblist' => '1.20 ', #./lib/ExtUtils/Liblist.pm
569 'ExtUtils::MakeMaker' => '5.38', #./lib/ExtUtils/MakeMaker.pm
570 'ExtUtils::Manifest' => '1.27', #./lib/ExtUtils/Manifest.pm
571 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
572 'ExtUtils::Mksymlists' => '1.12 ', #./lib/ExtUtils/Mksymlists.pm
573 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
574 'ExtUtils::MM_Unix' => '1.107 ', #./lib/ExtUtils/MM_Unix.pm
575 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
576 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
577 'Fatal' => undef, #./lib/Fatal.pm
578 'Fcntl' => '1.00', #./ext/Fcntl/Fcntl.pm
579 'File::Basename' => '2.4', #./lib/File/Basename.pm
580 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
581 'File::Copy' => '1.5', #./lib/File/Copy.pm
582 'File::Find' => undef, #./lib/File/Find.pm
583 'File::Path' => '1.01', #./lib/File/Path.pm
584 'FileCache' => undef, #./lib/FileCache.pm
585 'FileHandle' => '1.00', #./ext/FileHandle/FileHandle.pm
586 'FindBin' => '1.04', #./lib/FindBin.pm
587 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
588 'Getopt::Long' => '2.04', #./lib/Getopt/Long.pm
589 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
590 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
591 'integer' => undef, #./lib/integer.pm
592 'IO' => undef, #./ext/IO/IO.pm
593 'IO::File' => '1.05', #./ext/IO/lib/IO/File.pm
594 'IO::Handle' => '1.12', #./ext/IO/lib/IO/Handle.pm
595 'IO::Pipe' => '1.07', #./ext/IO/lib/IO/Pipe.pm
596 'IO::Seekable' => '1.05', #./ext/IO/lib/IO/Seekable.pm
597 'IO::Select' => '1.09', #./ext/IO/lib/IO/Select.pm
598 'IO::Socket' => '1.13', #./ext/IO/lib/IO/Socket.pm
599 'IPC::Open2' => undef, #./lib/IPC/Open2.pm
600 'IPC::Open3' => undef, #./lib/IPC/Open3.pm
601 'less' => undef, #./lib/less.pm
602 'lib' => undef, #./lib/lib.pm
603 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
604 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
605 'Math::Complex' => undef, #./lib/Math/Complex.pm
606 'NDBM_File' => '1.00', #./ext/NDBM_File/NDBM_File.pm
607 'Net::Ping' => '1.01', #./lib/Net/Ping.pm
608 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
609 'Opcode' => '1.01', #./ext/Opcode/Opcode.pm
610 'ops' => undef, #./ext/Opcode/ops.pm
611 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
612 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
613 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm
614 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
615 'overload' => undef, #./lib/overload.pm
616 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
617 'Pod::Text' => undef, #./lib/Pod/Text.pm
618 'POSIX' => '1.00', #./ext/POSIX/POSIX.pm
619 'Safe' => '2.06', #./ext/Opcode/Safe.pm
620 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
621 'Search::Dict' => undef, #./lib/Search/Dict.pm
622 'SelectSaver' => undef, #./lib/SelectSaver.pm
623 'SelfLoader' => '1.06', #./lib/SelfLoader.pm
624 'Shell' => undef, #./lib/Shell.pm
625 'sigtrap' => '1.01', #./lib/sigtrap.pm
626 'Socket' => '1.5', #./ext/Socket/Socket.pm
627 'strict' => undef, #./lib/strict.pm
628 'subs' => undef, #./lib/subs.pm
629 'Symbol' => undef, #./lib/Symbol.pm
630 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
631 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
632 'Term::Cap' => undef, #./lib/Term/Cap.pm
633 'Term::Complete' => undef, #./lib/Term/Complete.pm
634 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
635 'Test::Harness' => '1.13', #./lib/Test/Harness.pm
636 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
637 'Text::ParseWords' => undef, #./lib/Text/ParseWords.pm
638 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
639 'Text::Tabs' => '96.051501', #./lib/Text/Tabs.pm
640 'Text::Wrap' => '96.041801', #./lib/Text/Wrap.pm
641 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
642 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
643 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
644 'Time::Local' => undef, #./lib/Time/Local.pm
645 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
646 'vars' => undef, #./lib/vars.pm
647 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
648 'VMS::Stdio' => '2.0', #./vms/ext/Stdio/Stdio.pm
652 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
653 'AutoLoader' => undef, #./lib/AutoLoader.pm
654 'AutoSplit' => undef, #./lib/AutoSplit.pm
655 'autouse' => '1.01', #./lib/autouse.pm
656 'Benchmark' => undef, #./lib/Benchmark.pm
657 'blib' => undef, #./lib/blib.pm
658 'Bundle::CPAN' => '0.02', #./lib/Bundle/CPAN.pm
659 'Carp' => undef, #./lib/Carp.pm
660 'CGI' => '2.36', #./lib/CGI.pm
661 'CGI::Apache' => '1.01', #./lib/CGI/Apache.pm
662 'CGI::Carp' => '1.06', #./lib/CGI/Carp.pm
663 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm
664 'CGI::Push' => '1.00', #./lib/CGI/Push.pm
665 'CGI::Switch' => '0.05', #./lib/CGI/Switch.pm
666 'Class::Struct' => undef, #./lib/Class/Struct.pm
668 'constant' => '1.00', #./lib/constant.pm
669 'CPAN' => '1.2401', #./lib/CPAN.pm
670 'CPAN::FirstTime' => '1.18 ', #./lib/CPAN/FirstTime.pm
671 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm
672 'Cwd' => '2.00', #./lib/Cwd.pm
673 'DB_File' => '1.14', #./ext/DB_File/DB_File.pm
674 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
675 'diagnostics' => undef, #./lib/diagnostics.pm
676 'DirHandle' => undef, #./lib/DirHandle.pm
677 'DynaLoader' => '1.02', #./ext/DynaLoader/DynaLoader.pm
678 'English' => undef, #./lib/English.pm
679 'Env' => undef, #./lib/Env.pm
680 'Exporter' => undef, #./lib/Exporter.pm
681 'ExtUtils::Command' => '1.00', #./lib/ExtUtils/Command.pm
682 'ExtUtils::Embed' => '1.2501', #./lib/ExtUtils/Embed.pm
683 'ExtUtils::Install' => '1.16 ', #./lib/ExtUtils/Install.pm
684 'ExtUtils::Liblist' => '1.2201 ', #./lib/ExtUtils/Liblist.pm
685 'ExtUtils::MakeMaker' => '5.4002', #./lib/ExtUtils/MakeMaker.pm
686 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
687 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
688 'ExtUtils::Mksymlists' => '1.13 ', #./lib/ExtUtils/Mksymlists.pm
689 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
690 'ExtUtils::MM_Unix' => '1.114 ', #./lib/ExtUtils/MM_Unix.pm
691 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
692 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
693 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
694 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
695 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
696 'File::Basename' => '2.5', #./lib/File/Basename.pm
697 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
698 'File::Compare' => '1.1001', #./lib/File/Compare.pm
699 'File::Copy' => '2.02', #./lib/File/Copy.pm
700 'File::Find' => undef, #./lib/File/Find.pm
701 'File::Path' => '1.04', #./lib/File/Path.pm
702 'File::stat' => undef, #./lib/File/stat.pm
703 'FileCache' => undef, #./lib/FileCache.pm
704 'FileHandle' => '2.00', #./lib/FileHandle.pm
705 'FindBin' => '1.04', #./lib/FindBin.pm
706 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
707 'Getopt::Long' => '2.10', #./lib/Getopt/Long.pm
708 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
709 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
710 'integer' => undef, #./lib/integer.pm
711 'IO' => undef, #./ext/IO/IO.pm
712 'IO::File' => '1.0602', #./ext/IO/lib/IO/File.pm
713 'IO::Handle' => '1.1504', #./ext/IO/lib/IO/Handle.pm
714 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm
715 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm
716 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm
717 'IO::Socket' => '1.1602', #./ext/IO/lib/IO/Socket.pm
718 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
719 'IPC::Open3' => '1.0101', #./lib/IPC/Open3.pm
720 'less' => undef, #./lib/less.pm
721 'lib' => undef, #./lib/lib.pm
722 'locale' => undef, #./lib/locale.pm
723 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
724 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
725 'Math::Complex' => '1.01', #./lib/Math/Complex.pm
726 'Math::Trig' => '1', #./lib/Math/Trig.pm
727 'NDBM_File' => '1.00', #./ext/NDBM_File/NDBM_File.pm
728 'Net::hostent' => undef, #./lib/Net/hostent.pm
729 'Net::netent' => undef, #./lib/Net/netent.pm
730 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
731 'Net::protoent' => undef, #./lib/Net/protoent.pm
732 'Net::servent' => undef, #./lib/Net/servent.pm
733 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
734 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
735 'ops' => undef, #./ext/Opcode/ops.pm
736 'Safe' => '2.06', #./ext/Opcode/Safe.pm
737 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
738 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
739 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm
740 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
741 'overload' => undef, #./lib/overload.pm
742 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
743 'Pod::Html' => undef, #./lib/Pod/Html.pm
744 'Pod::Text' => '1.0203', #./lib/Pod/Text.pm
745 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm
746 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
747 'Search::Dict' => undef, #./lib/Search/Dict.pm
748 'SelectSaver' => undef, #./lib/SelectSaver.pm
749 'SelfLoader' => '1.07', #./lib/SelfLoader.pm
750 'Shell' => undef, #./lib/Shell.pm
751 'sigtrap' => '1.02', #./lib/sigtrap.pm
752 'Socket' => '1.6', #./ext/Socket/Socket.pm
753 'strict' => undef, #./lib/strict.pm
754 'subs' => undef, #./lib/subs.pm
755 'Symbol' => '1.02', #./lib/Symbol.pm
756 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
757 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
758 'Term::Cap' => undef, #./lib/Term/Cap.pm
759 'Term::Complete' => undef, #./lib/Term/Complete.pm
760 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
761 'Test::Harness' => '1.1502', #./lib/Test/Harness.pm
762 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
763 'Text::ParseWords' => undef, #./lib/Text/ParseWords.pm
764 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
765 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm
766 'Text::Wrap' => '97.011701', #./lib/Text/Wrap.pm
767 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
768 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
769 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
770 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
771 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
772 'Time::Local' => undef, #./lib/Time/Local.pm
773 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
774 'Time::tm' => undef, #./lib/Time/tm.pm
775 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
776 'User::grent' => undef, #./lib/User/grent.pm
777 'User::pwent' => undef, #./lib/User/pwent.pm
778 'vars' => undef, #./lib/vars.pm
779 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
780 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
781 'VMS::Stdio' => '2.02', #./vms/ext/Stdio/Stdio.pm
782 'vmsish' => undef, #./vms/ext/vmsish.pm
786 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
787 'attrs' => '1.0', #./ext/attrs/attrs.pm
788 'AutoLoader' => undef, #./lib/AutoLoader.pm
789 'AutoSplit' => '1.0302', #./lib/AutoSplit.pm
790 'autouse' => '1.01', #./lib/autouse.pm
791 'B' => undef, #./ext/B/B.pm
792 'B::Asmdata' => undef, #./ext/B/B/Asmdata.pm
793 'B::Assembler' => undef, #./ext/B/B/Assembler.pm
794 'B::Bblock' => undef, #./ext/B/B/Bblock.pm
795 'B::Bytecode' => undef, #./ext/B/B/Bytecode.pm
796 'B::C' => undef, #./ext/B/B/C.pm
797 'B::CC' => undef, #./ext/B/B/CC.pm
798 'B::Debug' => undef, #./ext/B/B/Debug.pm
799 'B::Deparse' => '0.56', #./ext/B/B/Deparse.pm
800 'B::Disassembler' => undef, #./ext/B/B/Disassembler.pm
801 'B::Lint' => undef, #./ext/B/B/Lint.pm
802 'B::Showlex' => undef, #./ext/B/B/Showlex.pm
803 'B::Stackobj' => undef, #./ext/B/B/Stackobj.pm
804 'B::Terse' => undef, #./ext/B/B/Terse.pm
805 'B::Xref' => undef, #./ext/B/B/Xref.pm
806 'base' => undef, #./lib/base.pm
807 'Benchmark' => undef, #./lib/Benchmark.pm
808 'blib' => '1.00', #./lib/blib.pm
809 'Carp' => undef, #./lib/Carp.pm
810 'CGI' => '2.42', #./lib/CGI.pm
811 'CGI::Apache' => '1.1', #./lib/CGI/Apache.pm
812 'CGI::Carp' => '1.101', #./lib/CGI/Carp.pm
813 'CGI::Cookie' => '1.06', #./lib/CGI/Cookie.pm
814 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm
815 'CGI::Push' => '1.01', #./lib/CGI/Push.pm
816 'CGI::Switch' => '0.06', #./lib/CGI/Switch.pm
817 'Class::Struct' => undef, #./lib/Class/Struct.pm
819 'constant' => '1.00', #./lib/constant.pm
820 'CPAN' => '1.3901', #./lib/CPAN.pm
821 'CPAN::FirstTime' => '1.29 ', #./lib/CPAN/FirstTime.pm
822 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm
823 'Cwd' => '2.01', #./lib/Cwd.pm
824 'Data::Dumper' => '2.09', #./ext/Data/Dumper/Dumper.pm
825 'DB_File' => '1.60', #./ext/DB_File/DB_File.pm
826 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
827 'DynaLoader' => '1.03',
828 'diagnostics' => undef, #./lib/diagnostics.pm
829 'DirHandle' => undef, #./lib/DirHandle.pm
830 'English' => undef, #./lib/English.pm
831 'Env' => undef, #./lib/Env.pm
832 'Exporter' => undef, #./lib/Exporter.pm
833 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm
834 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm
835 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm
836 'ExtUtils::Installed' => '0.02', #./lib/ExtUtils/Installed.pm
837 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm
838 'ExtUtils::MakeMaker' => '5.4301', #./lib/ExtUtils/MakeMaker.pm
839 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
840 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
841 'ExtUtils::Mksymlists' => '1.17 ', #./lib/ExtUtils/Mksymlists.pm
842 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
843 'ExtUtils::MM_Unix' => '1.12601 ', #./lib/ExtUtils/MM_Unix.pm
844 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
845 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
846 'ExtUtils::Packlist' => '0.03', #./lib/ExtUtils/Packlist.pm
847 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
848 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
849 'Fatal' => '1.02', #./lib/Fatal.pm
850 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
851 'fields' => '0.02', #./lib/fields.pm
852 'File::Basename' => '2.6', #./lib/File/Basename.pm
853 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
854 'File::Compare' => '1.1001', #./lib/File/Compare.pm
855 'File::Copy' => '2.02', #./lib/File/Copy.pm
856 'File::DosGlob' => undef, #./lib/File/DosGlob.pm
857 'File::Find' => undef, #./lib/File/Find.pm
858 'File::Path' => '1.0401', #./lib/File/Path.pm
859 'File::Spec' => '0.6', #./lib/File/Spec.pm
860 'File::Spec::Mac' => '1.0', #./lib/File/Spec/Mac.pm
861 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm
862 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm
863 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm
864 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm
865 'File::stat' => undef, #./lib/File/stat.pm
866 'FileCache' => undef, #./lib/FileCache.pm
867 'FileHandle' => '2.00', #./lib/FileHandle.pm
868 'FindBin' => '1.41', #./lib/FindBin.pm
869 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
870 'Getopt::Long' => '2.17', #./lib/Getopt/Long.pm
871 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
872 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
873 'integer' => undef, #./lib/integer.pm
874 'IO' => undef, #./ext/IO/IO.pm
875 'IO::File' => '1.06021', #./ext/IO/lib/IO/File.pm
876 'IO::Handle' => '1.1505', #./ext/IO/lib/IO/Handle.pm
877 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm
878 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm
879 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm
880 'IO::Socket' => '1.1603', #./ext/IO/lib/IO/Socket.pm
881 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
882 'IPC::Open3' => '1.0102', #./lib/IPC/Open3.pm
883 'IPC::Msg' => '1.00', #./ext/IPC/SysV/Msg.pm
884 'IPC::Semaphore' => '1.00', #./ext/IPC/SysV/Semaphore.pm
885 'IPC::SysV' => '1.03', #./ext/IPC/SysV/SysV.pm
886 'less' => undef, #./lib/less.pm
887 'lib' => undef, #./lib/lib.pm
888 'locale' => undef, #./lib/locale.pm
889 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
890 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
891 'Math::Complex' => '1.25', #./lib/Math/Complex.pm
892 'Math::Trig' => '1', #./lib/Math/Trig.pm
893 'NDBM_File' => '1.01', #./ext/NDBM_File/NDBM_File.pm
894 'Net::hostent' => undef, #./lib/Net/hostent.pm
895 'Net::netent' => undef, #./lib/Net/netent.pm
896 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
897 'Net::protoent' => undef, #./lib/Net/protoent.pm
898 'Net::servent' => undef, #./lib/Net/servent.pm
899 'O' => undef, #./ext/B/O.pm
900 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
901 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
902 'ops' => undef, #./ext/Opcode/ops.pm
903 'Safe' => '2.06', #./ext/Opcode/Safe.pm
904 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
905 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
906 'OS2::Process' => '0.2', #./os2/OS2/Process/Process.pm
907 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
908 'overload' => undef, #./lib/overload.pm
909 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
910 'Pod::Html' => '1.01', #./lib/Pod/Html.pm
911 'Pod::Text' => '1.0203', #./lib/Pod/Text.pm
912 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm
913 're' => '0.02', #./ext/re/re.pm
914 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
915 'Search::Dict' => undef, #./lib/Search/Dict.pm
916 'SelectSaver' => undef, #./lib/SelectSaver.pm
917 'SelfLoader' => '1.08', #./lib/SelfLoader.pm
918 'Shell' => undef, #./lib/Shell.pm
919 'sigtrap' => '1.02', #./lib/sigtrap.pm
920 'Socket' => '1.7', #./ext/Socket/Socket.pm
921 'strict' => '1.01', #./lib/strict.pm
922 'subs' => undef, #./lib/subs.pm
923 'Symbol' => '1.02', #./lib/Symbol.pm
924 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
925 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
926 'Term::Cap' => undef, #./lib/Term/Cap.pm
927 'Term::Complete' => undef, #./lib/Term/Complete.pm
928 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
929 'Test' => '1.04', #./lib/Test.pm
930 'Test::Harness' => '1.1602', #./lib/Test/Harness.pm
931 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
932 'Text::ParseWords' => '3.1', #./lib/Text/ParseWords.pm
933 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
934 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm
935 'Text::Wrap' => '97.02', #./lib/Text/Wrap.pm
936 'Thread' => '1.0', #./ext/Thread/Thread.pm
937 'Thread::Queue' => undef, #./ext/Thread/Thread/Queue.pm
938 'Thread::Semaphore' => undef, #./ext/Thread/Thread/Semaphore.pm
939 'Thread::Signal' => undef, #./ext/Thread/Thread/Signal.pm
940 'Thread::Specific' => undef, #./ext/Thread/Thread/Specific.pm
941 'Tie::Array' => '1.00', #./lib/Tie/Array.pm
942 'Tie::Handle' => undef, #./lib/Tie/Handle.pm
943 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
944 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
945 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
946 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
947 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
948 'Time::Local' => undef, #./lib/Time/Local.pm
949 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
950 'Time::tm' => undef, #./lib/Time/tm.pm
951 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
952 'User::grent' => undef, #./lib/User/grent.pm
953 'User::pwent' => undef, #./lib/User/pwent.pm
954 'vars' => undef, #./lib/vars.pm
955 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
956 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
957 'VMS::Stdio' => '2.1', #./vms/ext/Stdio/Stdio.pm
958 'vmsish' => undef, #./vms/ext/vmsish.pm
962 'AnyDBM_File' => undef,
964 'AutoLoader' => undef,
965 'AutoSplit' => 1.0303,
967 'B::Asmdata' => undef,
968 'B::Assembler' => undef,
969 'B::Bblock' => undef,
970 'B::Bytecode' => undef,
974 'B::Deparse' => 0.56,
975 'B::Disassembler' => undef,
978 'B::Showlex' => undef,
979 'B::Stackobj' => undef,
983 'Benchmark' => undef,
987 'CGI::Apache' => 1.1,
989 'CGI::Cookie' => 1.06,
992 'CGI::Switch' => 0.06,
993 'Class::Struct' => undef,
995 'constant' => '1.00',
996 'CPAN::FirstTime' => 1.36 ,
998 'CPAN::Nox' => '1.00',
1000 'Data::Dumper' => 2.101,
1002 'Devel::SelfStubber' => 1.01,
1003 'diagnostics' => undef,
1004 'DirHandle' => undef,
1005 'Dumpvalue' => undef,
1006 'DynaLoader' => 1.03,
1009 'Exporter' => undef,
1010 'ExtUtils::Command' => 1.01,
1011 'ExtUtils::Embed' => 1.2505,
1012 'ExtUtils::Install' => 1.28 ,
1013 'ExtUtils::Installed' => 0.02,
1014 'ExtUtils::Liblist' => 1.25 ,
1015 'ExtUtils::MakeMaker' => 5.4302,
1016 'ExtUtils::Manifest' => 1.33 ,
1017 'ExtUtils::Mkbootstrap' => 1.14 ,
1018 'ExtUtils::Mksymlists' => 1.17 ,
1019 'ExtUtils::MM_OS2' => undef,
1020 'ExtUtils::MM_Unix' => 1.12602 ,
1021 'ExtUtils::MM_VMS' => undef,
1022 'ExtUtils::MM_Win32' => undef,
1023 'ExtUtils::Packlist' => 0.03,
1024 'ExtUtils::testlib' => 1.11 ,
1025 'ExtUtils::XSSymSet' => '1.0',
1029 'File::Basename' => 2.6,
1030 'File::CheckTree' => undef,
1031 'File::Compare' => 1.1001,
1032 'File::Copy' => 2.02,
1033 'File::DosGlob' => undef,
1034 'File::Find' => undef,
1035 'File::Path' => 1.0401,
1036 'File::Spec' => 0.6,
1037 'File::Spec::Mac' => '1.0',
1038 'File::Spec::OS2' => undef,
1039 'File::Spec::Unix' => undef,
1040 'File::Spec::VMS' => undef,
1041 'File::Spec::Win32' => undef,
1042 'File::stat' => undef,
1043 'FileCache' => undef,
1044 'FileHandle' => '2.00',
1046 'GDBM_File' => '1.00',
1047 'Getopt::Long' => 2.19,
1048 'Getopt::Std' => 1.01,
1049 'I18N::Collate' => undef,
1052 'IO::File' => 1.06021,
1053 'IO::Handle' => 1.1505,
1054 'IO::Pipe' => 1.0902,
1055 'IO::Seekable' => 1.06,
1056 'IO::Select' => '1.10',
1057 'IO::Socket' => 1.1603,
1058 'IPC::Msg' => '1.00',
1059 'IPC::Open2' => 1.01,
1060 'IPC::Open3' => 1.0103,
1061 'IPC::Semaphore' => '1.00',
1062 'IPC::SysV' => 1.03,
1066 'Math::BigFloat' => undef,
1067 'Math::BigInt' => undef,
1068 'Math::Complex' => 1.26,
1070 'NDBM_File' => 1.01,
1071 'Net::hostent' => undef,
1072 'Net::netent' => undef,
1073 'Net::Ping' => 2.02,
1074 'Net::protoent' => undef,
1075 'Net::servent' => undef,
1077 'ODBM_File' => '1.00',
1080 'OS2::ExtAttr' => 0.01,
1081 'OS2::PrfDB' => 0.02,
1082 'OS2::Process' => 0.2,
1083 'OS2::REXX' => undef,
1084 'overload' => undef,
1085 'Pod::Functions' => undef,
1086 'Pod::Html' => 1.01,
1087 'Pod::Text' => 1.0203,
1091 'SDBM_File' => '1.00',
1092 'Search::Dict' => undef,
1093 'SelectSaver' => undef,
1094 'SelfLoader' => 1.08,
1101 'Sys::Hostname' => undef,
1102 'Sys::Syslog' => undef,
1103 'Term::Cap' => undef,
1104 'Term::Complete' => undef,
1105 'Term::ReadLine' => undef,
1107 'Test::Harness' => 1.1602,
1108 'Text::Abbrev' => undef,
1109 'Text::ParseWords' => 3.1,
1110 'Text::Soundex' => undef,
1111 'Text::Tabs' => 96.121201,
1112 'Text::Wrap' => 98.112902,
1114 'Thread::Queue' => undef,
1115 'Thread::Semaphore' => undef,
1116 'Thread::Specific' => undef,
1117 'Thread::Signal' => undef,
1118 'Tie::Array' => '1.00',
1119 'Tie::Handle' => undef,
1120 'Tie::Hash' => undef,
1121 'Tie::RefHash' => undef,
1122 'Tie::Scalar' => undef,
1123 'Tie::SubstrHash' => undef,
1124 'Time::gmtime' => 1.01,
1125 'Time::Local' => undef,
1126 'Time::localtime' => 1.01,
1127 'Time::tm' => undef,
1128 'UNIVERSAL' => undef,
1129 'User::grent' => undef,
1130 'User::pwent' => undef,
1132 'VMS::DCLsym' => 1.01,
1133 'VMS::Filespec' => undef,
1134 'VMS::Stdio' => 2.1,
1139 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
1140 'attrs' => '0.1', #./lib/attrs.pm
1141 'AutoLoader' => '5.56', #./lib/AutoLoader.pm
1142 'AutoSplit' => '1.0303', #./lib/AutoSplit.pm
1143 'autouse' => '1.01', #./lib/autouse.pm
1144 'base' => undef, #./lib/base.pm
1145 'Benchmark' => undef, #./lib/Benchmark.pm
1146 'blib' => '1.00', #./lib/blib.pm
1147 'Bundle::CPAN' => '0.03', #./lib/Bundle/CPAN.pm
1148 'Carp' => undef, #./lib/Carp.pm
1149 'CGI' => '2.42', #./lib/CGI.pm
1150 'CGI::Apache' => '1.1', #./lib/CGI/Apache.pm
1151 'CGI::Carp' => '1.10', #./lib/CGI/Carp.pm
1152 'CGI::Cookie' => '1.06', #./lib/CGI/Cookie.pm
1153 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm
1154 'CGI::Push' => '1.01', #./lib/CGI/Push.pm
1155 'CGI::Switch' => '0.06', #./lib/CGI/Switch.pm
1156 'Class::Struct' => undef, #./lib/Class/Struct.pm
1158 'constant' => '1.00', #./lib/constant.pm
1159 'CPAN' => '1.40', #./lib/CPAN.pm
1160 'CPAN::FirstTime' => '1.30 ', #./lib/CPAN/FirstTime.pm
1161 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm
1162 'Cwd' => '2.01', #./lib/Cwd.pm
1163 'DB_File' => '1.15', #./ext/DB_File/DB_File.pm
1164 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
1165 'diagnostics' => undef, #./lib/diagnostics.pm
1166 'DirHandle' => undef, #./lib/DirHandle.pm
1167 'DynaLoader' => '1.03',
1168 'English' => undef, #./lib/English.pm
1169 'Env' => undef, #./lib/Env.pm
1170 'Exporter' => undef, #./lib/Exporter.pm
1171 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm
1172 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm
1173 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm
1174 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm
1175 'ExtUtils::MakeMaker' => '5.42', #./lib/ExtUtils/MakeMaker.pm
1176 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
1177 'ExtUtils::Mkbootstrap' => '1.14 ', #./lib/ExtUtils/Mkbootstrap.pm
1178 'ExtUtils::Mksymlists' => '1.16 ', #./lib/ExtUtils/Mksymlists.pm
1179 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
1180 'ExtUtils::MM_Unix' => '1.118 ', #./lib/ExtUtils/MM_Unix.pm
1181 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
1182 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
1183 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
1184 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
1185 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
1186 'File::Basename' => '2.6', #./lib/File/Basename.pm
1187 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
1188 'File::Compare' => '1.1001', #./lib/File/Compare.pm
1189 'File::Copy' => '2.02', #./lib/File/Copy.pm
1190 'File::DosGlob' => undef, #./lib/File/DosGlob.pm
1191 'File::Find' => undef, #./lib/File/Find.pm
1192 'File::Path' => '1.0402', #./lib/File/Path.pm
1193 'File::Spec' => '0.6', #./lib/File/Spec.pm
1194 'File::Spec::Mac' => '1.0', #./lib/File/Spec/Mac.pm
1195 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm
1196 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm
1197 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm
1198 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm
1199 'File::stat' => undef, #./lib/File/stat.pm
1200 'FileCache' => undef, #./lib/FileCache.pm
1201 'FileHandle' => '2.00', #./lib/FileHandle.pm
1202 'FindBin' => '1.41', #./lib/FindBin.pm
1203 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
1204 'Getopt::Long' => '2.19', #./lib/Getopt/Long.pm
1205 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
1206 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
1207 'integer' => undef, #./lib/integer.pm
1208 'IO' => undef, #./ext/IO/IO.pm
1209 'IO::File' => '1.06021', #./ext/IO/lib/IO/File.pm
1210 'IO::Handle' => '1.1504', #./ext/IO/lib/IO/Handle.pm
1211 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm
1212 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm
1213 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm
1214 'IO::Socket' => '1.1603', #./ext/IO/lib/IO/Socket.pm
1215 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
1216 'IPC::Open3' => '1.0103', #./lib/IPC/Open3.pm
1217 'less' => undef, #./lib/less.pm
1218 'lib' => undef, #./lib/lib.pm
1219 'locale' => undef, #./lib/locale.pm
1220 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
1221 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
1222 'Math::Complex' => '1.25', #./lib/Math/Complex.pm
1223 'Math::Trig' => '1', #./lib/Math/Trig.pm
1224 'NDBM_File' => '1.01', #./ext/NDBM_File/NDBM_File.pm
1225 'Net::hostent' => undef, #./lib/Net/hostent.pm
1226 'Net::netent' => undef, #./lib/Net/netent.pm
1227 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
1228 'Net::protoent' => undef, #./lib/Net/protoent.pm
1229 'Net::servent' => undef, #./lib/Net/servent.pm
1230 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
1231 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
1232 'ops' => undef, #./ext/Opcode/ops.pm
1233 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
1234 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
1235 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm
1236 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
1237 'overload' => undef, #./lib/overload.pm
1238 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
1239 'Pod::Html' => '1.0101', #./lib/Pod/Html.pm
1240 'Pod::Text' => '1.0204', #./lib/Pod/Text.pm
1241 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm
1242 're' => undef, #./lib/re.pm
1243 'Safe' => '2.06', #./ext/Opcode/Safe.pm
1244 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
1245 'Search::Dict' => undef, #./lib/Search/Dict.pm
1246 'SelectSaver' => undef, #./lib/SelectSaver.pm
1247 'SelfLoader' => '1.08', #./lib/SelfLoader.pm
1248 'Shell' => undef, #./lib/Shell.pm
1249 'sigtrap' => '1.02', #./lib/sigtrap.pm
1250 'Socket' => '1.7', #./ext/Socket/Socket.pm
1251 'strict' => '1.01', #./lib/strict.pm
1252 'subs' => undef, #./lib/subs.pm
1253 'Symbol' => '1.02', #./lib/Symbol.pm
1254 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
1255 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
1256 'Term::Cap' => undef, #./lib/Term/Cap.pm
1257 'Term::Complete' => undef, #./lib/Term/Complete.pm
1258 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
1259 'Test' => '1.04', #./lib/Test.pm
1260 'Test::Harness' => '1.1602', #./lib/Test/Harness.pm
1261 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
1262 'Text::ParseWords' => '3.1001', #./lib/Text/ParseWords.pm
1263 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
1264 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm
1265 'Text::Wrap' => '98.112902', #./lib/Text/Wrap.pm
1266 'Tie::Handle' => undef, #./lib/Tie/Handle.pm
1267 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
1268 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
1269 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
1270 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
1271 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
1272 'Time::Local' => undef, #./lib/Time/Local.pm
1273 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
1274 'Time::tm' => undef, #./lib/Time/tm.pm
1275 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
1276 'User::grent' => undef, #./lib/User/grent.pm
1277 'User::pwent' => undef, #./lib/User/pwent.pm
1278 'vars' => undef, #./lib/vars.pm
1279 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
1280 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
1281 'VMS::Stdio' => '2.02', #./vms/ext/Stdio/Stdio.pm
1282 'vmsish' => undef, #./vms/ext/vmsish.pm
1286 'AnyDBM_File' => undef, #lib/AnyDBM_File.pm
1287 'attrs' => '1.0', #lib/attrs.pm
1288 'AutoLoader' => undef, #lib/AutoLoader.pm
1289 'AutoSplit' => '1.0303', #lib/AutoSplit.pm
1290 'autouse' => '1.01', #lib/autouse.pm
1291 'base' => undef, #lib/base.pm
1292 'B::Asmdata' => undef, #lib/B/Asmdata.pm
1293 'B::Assembler' => undef, #lib/B/Assembler.pm
1294 'B::Bblock' => undef, #lib/B/Bblock.pm
1295 'B::Bytecode' => undef, #lib/B/Bytecode.pm
1296 'B::CC' => undef, #lib/B/CC.pm
1297 'B::C' => undef, #lib/B/C.pm
1298 'B::Debug' => undef, #lib/B/Debug.pm
1299 'B::Deparse' => '0.56', #lib/B/Deparse.pm
1300 'B::Disassembler' => undef, #lib/B/Disassembler.pm
1301 'Benchmark' => undef, #lib/Benchmark.pm
1302 'blib' => '1.00', #lib/blib.pm
1303 'B::Lint' => undef, #lib/B/Lint.pm
1304 'B::Showlex' => undef, #lib/B/Showlex.pm
1305 'B::Stackobj' => undef, #lib/B/Stackobj.pm
1306 'B::Terse' => undef, #lib/B/Terse.pm
1307 'B' => undef, #lib/B.pm
1308 'B::Xref' => undef, #lib/B/Xref.pm
1309 'Carp' => undef, #lib/Carp.pm
1310 'CGI' => '2.46', #lib/CGI.pm
1311 'CGI::Apache' => '1.1', #lib/CGI/Apache.pm
1312 'CGI::Carp' => '1.13', #lib/CGI/Carp.pm
1313 'CGI::Cookie' => '1.06', #lib/CGI/Cookie.pm
1314 'CGI::Fast' => '1.01', #lib/CGI/Fast.pm
1315 'CGI::Push' => '1.01', #lib/CGI/Push.pm
1316 'CGI::Switch' => '0.06', #lib/CGI/Switch.pm
1317 'Class::Struct' => undef, #lib/Class/Struct.pm
1318 'Config' => undef, #lib/Config.pm
1319 'constant' => '1.00', #lib/constant.pm
1320 'CPAN' => '1.48', #lib/CPAN.pm
1321 'CPAN::FirstTime' => '1.36 ', #lib/CPAN/FirstTime.pm
1322 'CPAN::Nox' => '1.00', #lib/CPAN/Nox.pm
1323 'Cwd' => '2.01', #lib/Cwd.pm
1324 'Data::Dumper' => '2.101', #lib/Data/Dumper.pm
1325 'DB_File' => '1.807', #lib/DB_File.pm
1326 'Devel::SelfStubber' => '1.01', #lib/Devel/SelfStubber.pm
1327 'diagnostics' => undef, #lib/diagnostics.pm
1328 'DirHandle' => undef, #lib/DirHandle.pm
1329 'Dumpvalue' => undef, #lib/Dumpvalue.pm
1330 'DynaLoader' => '1.03', #lib/DynaLoader.pm
1331 'English' => undef, #lib/English.pm
1332 'Env' => undef, #lib/Env.pm
1333 'Errno' => '1.111', #lib/Errno.pm
1334 'Exporter' => undef, #lib/Exporter.pm
1335 'ExtUtils::Command' => '1.01', #lib/ExtUtils/Command.pm
1336 'ExtUtils::Embed' => '1.2505', #lib/ExtUtils/Embed.pm
1337 'ExtUtils::Install' => '1.28 ', #lib/ExtUtils/Install.pm
1338 'ExtUtils::Installed' => '0.02', #lib/ExtUtils/Installed.pm
1339 'ExtUtils::Liblist' => '1.25 ', #lib/ExtUtils/Liblist.pm
1340 'ExtUtils::MakeMaker' => '5.4302', #lib/ExtUtils/MakeMaker.pm
1341 'ExtUtils::Manifest' => '1.33 ', #lib/ExtUtils/Manifest.pm
1342 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
1343 'ExtUtils::Mkbootstrap' => '1.14 ', #lib/ExtUtils/Mkbootstrap.pm
1344 'ExtUtils::Mksymlists' => '1.17 ', #lib/ExtUtils/Mksymlists.pm
1345 'ExtUtils::MM_OS2' => undef, #lib/ExtUtils/MM_OS2.pm
1346 'ExtUtils::MM_Unix' => '1.12602 ', #lib/ExtUtils/MM_Unix.pm
1347 'ExtUtils::MM_VMS' => undef, #lib/ExtUtils/MM_VMS.pm
1348 'ExtUtils::MM_Win32' => undef, #lib/ExtUtils/MM_Win32.pm
1349 'ExtUtils::Packlist' => '0.03', #lib/ExtUtils/Packlist.pm
1350 'ExtUtils::testlib' => '1.11 ', #lib/ExtUtils/testlib.pm
1351 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
1352 'Fatal' => '1.02', #lib/Fatal.pm
1353 'Fcntl' => '1.03', #lib/Fcntl.pm
1354 'fields' => '0.02', #lib/fields.pm
1355 'File::Basename' => '2.6', #lib/File/Basename.pm
1356 'FileCache' => undef, #lib/FileCache.pm
1357 'File::CheckTree' => undef, #lib/File/CheckTree.pm
1358 'File::Compare' => '1.1002', #lib/File/Compare.pm
1359 'File::Copy' => '2.02', #lib/File/Copy.pm
1360 'File::DosGlob' => undef, #lib/File/DosGlob.pm
1361 'File::Find' => undef, #lib/File/Find.pm
1362 'FileHandle' => '2.00', #lib/FileHandle.pm
1363 'File::Path' => '1.0401', #lib/File/Path.pm
1364 'File::Spec' => '0.8', #lib/File/Spec.pm
1365 'File::Spec::Functions' => undef, #lib/File/Spec/Functions.pm
1366 'File::Spec::Mac' => undef, #lib/File/Spec/Mac.pm
1367 'File::Spec::OS2' => undef, #lib/File/Spec/OS2.pm
1368 'File::Spec::Unix' => undef, #lib/File/Spec/Unix.pm
1369 'File::Spec::VMS' => undef, #lib/File/Spec/VMS.pm
1370 'File::Spec::Win32' => undef, #lib/File/Spec/Win32.pm
1371 'File::stat' => undef, #lib/File/stat.pm
1372 'FindBin' => '1.42', #lib/FindBin.pm
1373 'GDBM_File' => '1.00', #lib/GDBM_File.pm
1374 'Getopt::Long' => '2.20', #lib/Getopt/Long.pm
1375 'Getopt::Std' => '1.01', #lib/Getopt/Std.pm
1376 'I18N::Collate' => undef, #lib/I18N/Collate.pm
1377 'integer' => undef, #lib/integer.pm
1378 'IO::File' => '1.06021', #lib/IO/File.pm
1379 'IO::Handle' => '1.1505', #lib/IO/Handle.pm
1380 'IO::Pipe' => '1.0902', #lib/IO/Pipe.pm
1381 'IO::Seekable' => '1.06', #lib/IO/Seekable.pm
1382 'IO::Select' => '1.10', #lib/IO/Select.pm
1383 'IO::Socket' => '1.1603', #lib/IO/Socket.pm
1384 'IO' => undef, #lib/IO.pm
1385 'IPC::Msg' => '1.00', #lib/IPC/Msg.pm
1386 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
1387 'IPC::Open3' => '1.0103', #lib/IPC/Open3.pm
1388 'IPC::Semaphore' => '1.00', #lib/IPC/Semaphore.pm
1389 'IPC::SysV' => '1.03', #lib/IPC/SysV.pm
1390 'less' => undef, #lib/less.pm
1391 'lib' => undef, #lib/lib.pm
1392 'locale' => undef, #lib/locale.pm
1393 'Math::BigFloat' => undef, #lib/Math/BigFloat.pm
1394 'Math::BigInt' => undef, #lib/Math/BigInt.pm
1395 'Math::Complex' => '1.26', #lib/Math/Complex.pm
1396 'Math::Trig' => '1', #lib/Math/Trig.pm
1397 'NDBM_File' => '1.01', #ext/NDBM_File/NDBM_File.pm
1398 'Net::hostent' => undef, #lib/Net/hostent.pm
1399 'Net::netent' => undef, #lib/Net/netent.pm
1400 'Net::Ping' => '2.02', #lib/Net/Ping.pm
1401 'Net::protoent' => undef, #lib/Net/protoent.pm
1402 'Net::servent' => undef, #lib/Net/servent.pm
1403 'ODBM_File' => '1.00', #ext/ODBM_File/ODBM_File.pm
1404 'Opcode' => '1.04', #lib/Opcode.pm
1405 'ops' => undef, #lib/ops.pm
1406 'O' => undef, #lib/O.pm
1407 'OS2::ExtAttr' => '0.01', #os2/OS2/ExtAttr/ExtAttr.pm
1408 'OS2::PrfDB' => '0.02', #os2/OS2/PrfDB/PrfDB.pm
1409 'OS2::Process' => '0.2', #os2/OS2/Process/Process.pm
1410 'OS2::REXX' => undef, #os2/OS2/REXX/REXX.pm
1411 'overload' => undef, #lib/overload.pm
1412 'Pod::Functions' => undef, #lib/Pod/Functions.pm
1413 'Pod::Html' => '1.02', #lib/Pod/Html.pm
1414 'Pod::Text' => '1.0203', #lib/Pod/Text.pm
1415 'POSIX' => '1.02', #lib/POSIX.pm
1416 're' => '0.02', #lib/re.pm
1417 'Safe' => '2.06', #lib/Safe.pm
1418 'SDBM_File' => '1.00', #lib/SDBM_File.pm
1419 'Search::Dict' => undef, #lib/Search/Dict.pm
1420 'SelectSaver' => undef, #lib/SelectSaver.pm
1421 'SelfLoader' => '1.08', #lib/SelfLoader.pm
1422 'Shell' => undef, #lib/Shell.pm
1423 'sigtrap' => '1.02', #lib/sigtrap.pm
1424 'Socket' => '1.7', #lib/Socket.pm
1425 'strict' => '1.01', #lib/strict.pm
1426 'subs' => undef, #lib/subs.pm
1427 'Symbol' => '1.02', #lib/Symbol.pm
1428 'Sys::Hostname' => undef, #lib/Sys/Hostname.pm
1429 'Sys::Syslog' => undef, #lib/Sys/Syslog.pm
1430 'Term::Cap' => undef, #lib/Term/Cap.pm
1431 'Term::Complete' => undef, #lib/Term/Complete.pm
1432 'Term::ReadLine' => undef, #lib/Term/ReadLine.pm
1433 'Test' => '1.122', #lib/Test.pm
1434 'Test::Harness' => '1.1602', #lib/Test/Harness.pm
1435 'Text::Abbrev' => undef, #lib/Text/Abbrev.pm
1436 'Text::ParseWords' => '3.1', #lib/Text/ParseWords.pm
1437 'Text::Soundex' => undef, #lib/Text/Soundex.pm
1438 'Text::Tabs' => '96.121201', #lib/Text/Tabs.pm
1439 'Text::Wrap' => '98.112902', #lib/Text/Wrap.pm
1440 'Thread' => '1.0', #ext/Thread/Thread.pm
1441 'Thread::Queue' => undef, #ext/Thread/Thread/Queue.pm
1442 'Thread::Semaphore' => undef, #ext/Thread/Thread/Semaphore.pm
1443 'Thread::Signal' => undef, #ext/Thread/Thread/Signal.pm
1444 'Thread::Specific' => undef, #ext/Thread/Thread/Specific.pm
1445 'Tie::Array' => '1.00', #lib/Tie/Array.pm
1446 'Tie::Handle' => undef, #lib/Tie/Handle.pm
1447 'Tie::Hash' => undef, #lib/Tie/Hash.pm
1448 'Tie::RefHash' => undef, #lib/Tie/RefHash.pm
1449 'Tie::Scalar' => undef, #lib/Tie/Scalar.pm
1450 'Tie::SubstrHash' => undef, #lib/Tie/SubstrHash.pm
1451 'Time::gmtime' => '1.01', #lib/Time/gmtime.pm
1452 'Time::localtime' => '1.01', #lib/Time/localtime.pm
1453 'Time::Local' => undef, #lib/Time/Local.pm
1454 'Time::tm' => undef, #lib/Time/tm.pm
1455 'UNIVERSAL' => undef, #lib/UNIVERSAL.pm
1456 'User::grent' => undef, #lib/User/grent.pm
1457 'User::pwent' => undef, #lib/User/pwent.pm
1458 'vars' => undef, #lib/vars.pm
1459 'VMS::DCLsym' => '1.01', #vms/ext/DCLsym/DCLsym.pm
1460 'VMS::Filespec' => undef, #vms/ext/Filespec.pm
1461 'VMS::Stdio' => '2.1', #vms/ext/Stdio/Stdio.pm
1462 'vmsish' => undef, #vms/ext/vmsish.pm
1466 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
1467 'AutoLoader' => '5.57', #./lib/AutoLoader.pm
1468 'AutoSplit' => '1.0305', #./lib/AutoSplit.pm
1469 'B' => undef, #./ext/B/B.pm
1470 'B::Asmdata' => undef, #./ext/B/B/Asmdata.pm
1471 'B::Assembler' => undef, #./ext/B/B/Assembler.pm
1472 'B::Bblock' => undef, #./ext/B/B/Bblock.pm
1473 'B::Bytecode' => undef, #./ext/B/B/Bytecode.pm
1474 'B::C' => undef, #./ext/B/B/C.pm
1475 'B::CC' => undef, #./ext/B/B/CC.pm
1476 'B::Debug' => undef, #./ext/B/B/Debug.pm
1477 'B::Deparse' => '0.59', #./ext/B/B/Deparse.pm
1478 'B::Disassembler' => undef, #./ext/B/B/Disassembler.pm
1479 'B::Lint' => undef, #./ext/B/B/Lint.pm
1480 'B::Showlex' => undef, #./ext/B/B/Showlex.pm
1481 'B::Stackobj' => undef, #./ext/B/B/Stackobj.pm
1482 'B::Stash' => undef, #./ext/B/B/Stash.pm
1483 'B::Terse' => undef, #./ext/B/B/Terse.pm
1484 'B::Xref' => undef, #./ext/B/B/Xref.pm
1485 'Benchmark' => '1', #./lib/Benchmark.pm
1486 'ByteLoader' => '0.03', #./ext/ByteLoader/ByteLoader.pm
1487 'CGI' => '2.56', #./lib/CGI.pm
1488 'CGI::Apache' => undef, #./lib/CGI/Apache.pm
1489 'CGI::Carp' => '1.14', #./lib/CGI/Carp.pm
1490 'CGI::Cookie' => '1.12', #./lib/CGI/Cookie.pm
1491 'CGI::Fast' => '1.02', #./lib/CGI/Fast.pm
1492 'CGI::Pretty' => '1.03', #./lib/CGI/Pretty.pm
1493 'CGI::Push' => '1.01', #./lib/CGI/Push.pm
1494 'CGI::Switch' => undef, #./lib/CGI/Switch.pm
1495 'CPAN' => '1.52', #./lib/CPAN.pm
1496 'CPAN::FirstTime' => '1.38 ', #./lib/CPAN/FirstTime.pm
1497 'CPAN::Nox' => '1.00', #./lib/CPAN/Nox.pm
1498 'Carp' => undef, #./lib/Carp.pm
1499 'Carp::Heavy' => undef, #./lib/Carp/Heavy.pm
1500 'Class::Struct' => '0.58', #./lib/Class/Struct.pm
1502 'Cwd' => '2.02', #./lib/Cwd.pm
1503 'DB' => '1.0', #./lib/DB.pm
1504 'DB_File' => '1.72', #./ext/DB_File/DB_File.pm
1505 'Data::Dumper' => '2.101', #./ext/Data/Dumper/Dumper.pm
1506 'Devel::DProf' => '20000000.00_00', #./ext/Devel/DProf/DProf.pm
1507 'Devel::Peek' => '1.00_01', #./ext/Devel/Peek/Peek.pm
1508 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
1509 'DirHandle' => undef, #./lib/DirHandle.pm
1510 'Dumpvalue' => undef, #./lib/Dumpvalue.pm
1511 'DynaLoader' => '1.04',
1512 'English' => undef, #./lib/English.pm
1513 'Env' => undef, #./lib/Env.pm
1514 'Exporter' => '5.562', #./lib/Exporter.pm
1515 'Exporter::Heavy' => undef, #./lib/Exporter/Heavy.pm
1516 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm
1517 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm
1518 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm
1519 'ExtUtils::Installed' => '0.02', #./lib/ExtUtils/Installed.pm
1520 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm
1521 'ExtUtils::MM_Cygwin' => undef, #./lib/ExtUtils/MM_Cygwin.pm
1522 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
1523 'ExtUtils::MM_Unix' => '1.12603 ', #./lib/ExtUtils/MM_Unix.pm
1524 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
1525 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
1526 'ExtUtils::MakeMaker' => '5.45', #./lib/ExtUtils/MakeMaker.pm
1527 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
1528 'ExtUtils::Miniperl' => undef,
1529 'ExtUtils::Mkbootstrap' => '1.14 ', #./lib/ExtUtils/Mkbootstrap.pm
1530 'ExtUtils::Mksymlists' => '1.17 ', #./lib/ExtUtils/Mksymlists.pm
1531 'ExtUtils::Packlist' => '0.03', #./lib/ExtUtils/Packlist.pm
1532 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
1533 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
1534 'Fatal' => '1.02', #./lib/Fatal.pm
1535 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
1536 'File::Basename' => '2.6', #./lib/File/Basename.pm
1537 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
1538 'File::Compare' => '1.1002', #./lib/File/Compare.pm
1539 'File::Copy' => '2.03', #./lib/File/Copy.pm
1540 'File::DosGlob' => undef, #./lib/File/DosGlob.pm
1541 'File::Find' => undef, #./lib/File/Find.pm
1542 'File::Glob' => '0.991', #./ext/File/Glob/Glob.pm
1543 'File::Path' => '1.0403', #./lib/File/Path.pm
1544 'File::Spec' => '0.8', #./lib/File/Spec.pm
1545 'File::Spec::Functions' => undef, #./lib/File/Spec/Functions.pm
1546 'File::Spec::Mac' => undef, #./lib/File/Spec/Mac.pm
1547 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm
1548 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm
1549 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm
1550 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm
1551 'File::stat' => undef, #./lib/File/stat.pm
1552 'FileCache' => undef, #./lib/FileCache.pm
1553 'FileHandle' => '2.00', #./lib/FileHandle.pm
1554 'FindBin' => '1.42', #./lib/FindBin.pm
1555 'GDBM_File' => '1.03', #./ext/GDBM_File/GDBM_File.pm
1556 'Getopt::Long' => '2.23', #./lib/Getopt/Long.pm
1557 'Getopt::Std' => '1.02', #./lib/Getopt/Std.pm
1558 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
1559 'IO' => '1.20', #./ext/IO/IO.pm
1560 'IO::Dir' => '1.03', #./ext/IO/lib/IO/Dir.pm
1561 'IO::File' => '1.08', #./ext/IO/lib/IO/File.pm
1562 'IO::Handle' => '1.21', #./ext/IO/lib/IO/Handle.pm
1563 'IO::Pipe' => '1.121', #./ext/IO/lib/IO/Pipe.pm
1564 'IO::Poll' => '0.01', #./ext/IO/lib/IO/Poll.pm
1565 'IO::Seekable' => '1.08', #./ext/IO/lib/IO/Seekable.pm
1566 'IO::Select' => '1.14', #./ext/IO/lib/IO/Select.pm
1567 'IO::Socket' => '1.26', #./ext/IO/lib/IO/Socket.pm
1568 'IO::Socket::INET' => '1.25', #./ext/IO/lib/IO/Socket/INET.pm
1569 'IO::Socket::UNIX' => '1.20', #./ext/IO/lib/IO/Socket/UNIX.pm
1570 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
1571 'IPC::Open3' => '1.0103', #./lib/IPC/Open3.pm
1572 'IPC::Msg' => '1.00', #./ext/IPC/SysV/Msg.pm
1573 'IPC::Semaphore' => '1.00', #./ext/IPC/SysV/Semaphore.pm
1574 'IPC::SysV' => '1.03', #./ext/IPC/SysV/SysV.pm
1575 'JNI' => '0.01', #./jpl/JNI/JNI.pm
1576 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm
1577 'JPL::Class' => undef, #./jpl/JPL/Class.pm
1578 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm
1579 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
1580 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
1581 'Math::Complex' => '1.26', #./lib/Math/Complex.pm
1582 'Math::Trig' => '1', #./lib/Math/Trig.pm
1583 'NDBM_File' => '1.03', #./ext/NDBM_File/NDBM_File.pm
1584 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
1585 'Net::hostent' => undef, #./lib/Net/hostent.pm
1586 'Net::netent' => undef, #./lib/Net/netent.pm
1587 'Net::protoent' => undef, #./lib/Net/protoent.pm
1588 'Net::servent' => undef, #./lib/Net/servent.pm
1589 'O' => undef, #./ext/B/O.pm
1590 'ODBM_File' => '1.02', #./ext/ODBM_File/ODBM_File.pm
1591 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
1592 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
1593 'OS2::Process' => '0.2', #./os2/OS2/Process/Process.pm
1594 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
1595 'OS2::DLL' => undef, #./os2/OS2/REXX/DLL/DLL.pm
1596 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
1597 'POSIX' => '1.03', #./ext/POSIX/POSIX.pm
1598 'Pod::Checker' => '1.098', #./lib/Pod/Checker.pm
1599 'Pod::Find' => '0.12', #./lib/Pod/Find.pm
1600 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
1601 'Pod::Html' => '1.03', #./lib/Pod/Html.pm
1602 'Pod::InputObjects' => '1.12', #./lib/Pod/InputObjects.pm
1603 'Pod::Man' => '1.02', #./lib/Pod/Man.pm
1604 'Pod::ParseUtils' => '0.2', #./lib/Pod/ParseUtils.pm
1605 'Pod::Parser' => '1.12', #./lib/Pod/Parser.pm
1606 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm
1607 'Pod::Select' => '1.12', #./lib/Pod/Select.pm
1608 'Pod::Text' => '2.03', #./lib/Pod/Text.pm
1609 'Pod::Text::Color' => '0.05', #./lib/Pod/Text/Color.pm
1610 'Pod::Text::Termcap' => '0.04', #./lib/Pod/Text/Termcap.pm
1611 'Pod::Usage' => '1.12', #./lib/Pod/Usage.pm
1612 'SDBM_File' => '1.02', #./ext/SDBM_File/SDBM_File.pm
1613 'Safe' => '2.06', #./ext/Opcode/Safe.pm
1614 'Search::Dict' => undef, #./lib/Search/Dict.pm
1615 'SelectSaver' => undef, #./lib/SelectSaver.pm
1616 'SelfLoader' => '1.0901', #./lib/SelfLoader.pm
1617 'Shell' => '0.2', #./lib/Shell.pm
1618 'Socket' => '1.72', #./ext/Socket/Socket.pm
1619 'Symbol' => '1.02', #./lib/Symbol.pm
1620 'Sys::Hostname' => '1.1', #./ext/Sys/Hostname/Hostname.pm
1621 'Sys::Syslog' => '0.01', #./ext/Sys/Syslog/Syslog.pm
1622 'Term::ANSIColor' => '1.01', #./lib/Term/ANSIColor.pm
1623 'Term::Cap' => undef, #./lib/Term/Cap.pm
1624 'Term::Complete' => undef, #./lib/Term/Complete.pm
1625 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
1626 'Test' => '1.13', #./lib/Test.pm
1627 'Test::Harness' => '1.1604', #./lib/Test/Harness.pm
1628 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
1629 'Text::ParseWords' => '3.2', #./lib/Text/ParseWords.pm
1630 'Text::Soundex' => '1.0', #./lib/Text/Soundex.pm
1631 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm
1632 'Text::Wrap' => '98.112902', #./lib/Text/Wrap.pm
1633 'Thread' => '1.0', #./ext/Thread/Thread.pm
1634 'Thread::Queue' => undef, #./ext/Thread/Thread/Queue.pm
1635 'Thread::Semaphore' => undef, #./ext/Thread/Thread/Semaphore.pm
1636 'Thread::Signal' => undef, #./ext/Thread/Thread/Signal.pm
1637 'Thread::Specific' => undef, #./ext/Thread/Thread/Specific.pm
1638 'Tie::Array' => '1.01', #./lib/Tie/Array.pm
1639 'Tie::Handle' => '1.0', #./lib/Tie/Handle.pm
1640 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
1641 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
1642 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
1643 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
1644 'Time::Local' => undef, #./lib/Time/Local.pm
1645 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
1646 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
1647 'Time::tm' => undef, #./lib/Time/tm.pm
1648 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
1649 'User::grent' => undef, #./lib/User/grent.pm
1650 'User::pwent' => undef, #./lib/User/pwent.pm
1651 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
1652 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
1653 'VMS::Stdio' => '2.2', #./vms/ext/Stdio/Stdio.pm
1654 'XSLoader' => '0.01',
1655 'attributes' => '0.03', #./lib/attributes.pm
1656 'attrs' => '1.0', #./ext/attrs/attrs.pm
1657 'autouse' => '1.02', #./lib/autouse.pm
1658 'base' => '1.01', #./lib/base.pm
1659 'blib' => '1.00', #./lib/blib.pm
1660 'bytes' => undef, #./lib/bytes.pm
1661 'charnames' => undef, #./lib/charnames.pm
1662 'constant' => '1.02', #./lib/constant.pm
1663 'diagnostics' => '1.0', #./lib/diagnostics.pm
1664 'fields' => '1.01', #./lib/fields.pm
1665 'filetest' => undef, #./lib/filetest.pm
1666 'integer' => undef, #./lib/integer.pm
1667 'less' => undef, #./lib/less.pm
1668 'lib' => '0.5564', #./lib/lib.pm
1669 'locale' => undef, #./lib/locale.pm
1670 'open' => undef, #./lib/open.pm
1671 'ops' => undef, #./ext/Opcode/ops.pm
1672 'overload' => undef, #./lib/overload.pm
1673 're' => '0.02', #./ext/re/re.pm
1674 'sigtrap' => '1.02', #./lib/sigtrap.pm
1675 'strict' => '1.01', #./lib/strict.pm
1676 'subs' => undef, #./lib/subs.pm
1677 'utf8' => undef, #./lib/utf8.pm
1678 'vars' => undef, #./lib/vars.pm
1679 'vmsish' => undef, #./vms/ext/vmsish.pm
1680 'warnings' => undef, #./lib/warnings.pm
1681 'warnings::register' => undef, #./lib/warnings/register.pm
1685 'AnyDBM_File' => undef,
1686 'attributes' => 0.03,
1688 'AutoLoader' => 5.58,
1689 'AutoSplit' => 1.0305,
1691 'B::Asmdata' => undef,
1692 'B::Assembler' => 0.02,
1693 'B::Bblock' => undef,
1694 'B::Bytecode' => undef,
1697 'B::Concise' => 0.51,
1698 'B::Debug' => undef,
1699 'B::Deparse' => 0.6,
1700 'B::Disassembler' => undef,
1703 'B::Showlex' => undef,
1704 'B::Stackobj' => undef,
1705 'B::Stash' => undef,
1706 'B::Terse' => undef,
1711 'ByteLoader' => 0.04,
1714 'Carp::Heavy' => undef,
1716 'CGI::Apache' => undef,
1717 'CGI::Carp' => '1.20',
1718 'CGI::Cookie' => 1.18,
1719 'CGI::Fast' => 1.02,
1720 'CGI::Pretty' => 1.05,
1721 'CGI::Push' => 1.04,
1722 'CGI::Switch' => undef,
1724 'charnames' => undef,
1725 'Class::Struct' => 0.59,
1728 'CPAN::FirstTime' => 1.53 ,
1729 'CPAN' => '1.59_54',
1730 'CPAN::Nox' => '1.00',
1732 'Data::Dumper' => 2.102,
1735 'Devel::DProf' => '20000000.00_00',
1736 'Devel::Peek' => '1.00_01',
1737 'Devel::SelfStubber' => 1.01,
1738 'diagnostics' => '1.0', # really v1.0, but that causes breakage
1739 'DirHandle' => undef,
1740 'Dumpvalue' => undef,
1741 'DynaLoader' => 1.04,
1744 'Exporter' => 5.562,
1745 'Exporter::Heavy' => undef,
1746 'ExtUtils::Command' => 1.01,
1747 'ExtUtils::Embed' => 1.2505,
1748 'ExtUtils::Install' => 1.28 ,
1749 'ExtUtils::Installed' => 0.02,
1750 'ExtUtils::Liblist' => 1.26 ,
1751 'ExtUtils::MakeMaker' => 5.45,
1752 'ExtUtils::Manifest' => 1.33 ,
1753 'ExtUtils::Miniperl' => undef,
1754 'ExtUtils::Mkbootstrap' => 1.14 ,
1755 'ExtUtils::Mksymlists' => 1.17 ,
1756 'ExtUtils::MM_Cygwin' => undef,
1757 'ExtUtils::MM_OS2' => undef,
1758 'ExtUtils::MM_Unix' => 1.12603 ,
1759 'ExtUtils::MM_VMS' => undef,
1760 'ExtUtils::MM_Win32' => undef,
1761 'ExtUtils::Packlist' => 0.03,
1762 'ExtUtils::testlib' => 1.11 ,
1763 'ExtUtils::XSSymSet' => '1.0',
1767 'File::Basename' => 2.6,
1768 'File::CheckTree' => undef,
1769 'File::Compare' => 1.1002,
1770 'File::Copy' => 2.03,
1771 'File::DosGlob' => undef,
1772 'File::Find' => undef,
1773 'File::Glob' => 0.991,
1774 'File::Path' => 1.0404,
1775 'File::Spec' => 0.82,
1776 'File::Spec::Epoc' => undef,
1777 'File::Spec::Functions' => 1.1,
1778 'File::Spec::Mac' => 1.2,
1779 'File::Spec::OS2' => 1.1,
1780 'File::Spec::Unix' => 1.2,
1781 'File::Spec::VMS' => 1.1,
1782 'File::Spec::Win32' => 1.2,
1783 'File::stat' => undef,
1784 'File::Temp' => 0.12,
1785 'FileCache' => undef,
1786 'FileHandle' => '2.00',
1787 'filetest' => undef,
1789 'GDBM_File' => 1.05,
1790 'Getopt::Long' => 2.25,
1791 'Getopt::Std' => 1.02,
1792 'I18N::Collate' => undef,
1797 'IO::Handle' => 1.21,
1798 'IO::Pipe' => 1.121,
1800 'IO::Seekable' => 1.08,
1801 'IO::Select' => 1.14,
1802 'IO::Socket' => 1.26,
1803 'IO::Socket::INET' => 1.25,
1804 'IO::Socket::UNIX' => '1.20',
1805 'IPC::Msg' => '1.00',
1806 'IPC::Open2' => 1.01,
1807 'IPC::Open3' => 1.0103,
1808 'IPC::Semaphore' => '1.00',
1809 'IPC::SysV' => 1.03,
1811 'JPL::AutoLoader' => undef,
1812 'JPL::Class' => undef,
1813 'JPL::Compile' => undef,
1817 'Math::BigFloat' => 0.02,
1818 'Math::BigInt' => 0.01,
1819 'Math::Complex' => 1.31,
1821 'NDBM_File' => 1.04,
1822 'Net::hostent' => undef,
1823 'Net::netent' => undef,
1824 'Net::Ping' => 2.02,
1825 'Net::protoent' => undef,
1826 'Net::servent' => undef,
1828 'ODBM_File' => 1.03,
1832 'OS2::DLL' => undef,
1833 'OS2::ExtAttr' => 0.01,
1834 'OS2::PrfDB' => 0.02,
1835 'OS2::Process' => 0.2,
1836 'OS2::REXX' => '1.00',
1837 'overload' => undef,
1838 'Pod::Checker' => 1.2,
1839 'Pod::Find' => 0.21,
1840 'Pod::Functions' => undef,
1841 'Pod::Html' => 1.03,
1842 'Pod::LaTeX' => 0.53,
1844 'Pod::InputObjects' => 1.13,
1845 'Pod::Parser' => 1.13,
1846 'Pod::ParseUtils' => 0.22,
1847 'Pod::Plainer' => 0.01,
1848 'Pod::Select' => 1.13,
1849 'Pod::Text' => 2.08,
1850 'Pod::Text::Color' => 0.06,
1851 'Pod::Text::Overstrike' => 1.01,
1852 'Pod::Text::Termcap' => 1,
1853 'Pod::Usage' => 1.14,
1857 'SDBM_File' => 1.03,
1858 'Search::Dict' => undef,
1859 'SelectSaver' => undef,
1860 'SelfLoader' => 1.0902,
1867 'Sys::Hostname' => 1.1,
1868 'Sys::Syslog' => 0.01,
1869 'Term::ANSIColor' => 1.03,
1870 'Term::Cap' => undef,
1871 'Term::Complete' => undef,
1872 'Term::ReadLine' => undef,
1874 'Test::Harness' => 1.1604,
1875 'Text::Abbrev' => undef,
1876 'Text::ParseWords' => 3.2,
1877 'Text::Soundex' => '1.0',
1878 'Text::Tabs' => 98.112801,
1879 'Text::Wrap' => 2001.0131,
1881 'Thread::Queue' => undef,
1882 'Thread::Semaphore' => undef,
1883 'Thread::Signal' => undef,
1884 'Thread::Specific' => undef,
1885 'Tie::Array' => 1.01,
1886 'Tie::Handle' => '4.0',
1887 'Tie::Hash' => undef,
1888 'Tie::RefHash' => 1.3,
1889 'Tie::Scalar' => undef,
1890 'Tie::SubstrHash' => undef,
1891 'Time::gmtime' => 1.01,
1892 'Time::Local' => undef,
1893 'Time::localtime' => 1.01,
1894 'Time::tm' => undef,
1895 'UNIVERSAL' => undef,
1896 'User::grent' => undef,
1897 'User::pwent' => undef,
1900 'VMS::DCLsym' => 1.01,
1901 'VMS::Filespec' => undef,
1902 'VMS::Stdio' => 2.2,
1904 'warnings' => undef,
1905 'warnings::register' => undef,
1906 'XSLoader' => '0.01',
1910 'AnyDBM_File' => undef, #lib/AnyDBM_File.pm
1911 'attributes' => '0.03', #lib/attributes.pm
1912 'attrs' => '1.0', #lib/attrs.pm
1913 'AutoLoader' => '5.58', #lib/AutoLoader.pm
1914 'AutoSplit' => '1.0305', #lib/AutoSplit.pm
1915 'autouse' => '1.02', #lib/autouse.pm
1916 'B' => undef, #lib/B.pm
1917 'B::Asmdata' => undef, #lib/B/Asmdata.pm
1918 'B::Assembler' => '0.02', #lib/B/Assembler.pm
1919 'B::Bblock' => undef, #lib/B/Bblock.pm
1920 'B::Bytecode' => undef, #lib/B/Bytecode.pm
1921 'B::C' => undef, #lib/B/C.pm
1922 'B::CC' => undef, #lib/B/CC.pm
1923 'B::Concise' => '0.51', #lib/B/Concise.pm
1924 'B::Debug' => undef, #lib/B/Debug.pm
1925 'B::Deparse' => '0.6', #lib/B/Deparse.pm
1926 'B::Disassembler' => undef, #lib/B/Disassembler.pm
1927 'B::Lint' => undef, #lib/B/Lint.pm
1928 'B::Showlex' => undef, #lib/B/Showlex.pm
1929 'B::Stackobj' => undef, #lib/B/Stackobj.pm
1930 'B::Stash' => undef, #lib/B/Stash.pm
1931 'B::Terse' => undef, #lib/B/Terse.pm
1932 'B::Xref' => undef, #lib/B/Xref.pm
1933 'base' => '1.01', #lib/base.pm
1934 'Benchmark' => '1', #lib/Benchmark.pm
1935 'blib' => '1.00', #lib/blib.pm
1936 'ByteLoader' => '0.04', #lib/ByteLoader.pm
1937 'bytes' => undef, #lib/bytes.pm
1938 'Carp' => undef, #lib/Carp.pm
1939 'Carp::Heavy' => undef, #lib/Carp/Heavy.pm
1940 'CGI' => '2.752', #lib/CGI.pm
1941 'CGI::Apache' => undef, #lib/CGI/Apache.pm
1942 'CGI::Carp' => '1.20', #lib/CGI/Carp.pm
1943 'CGI::Cookie' => '1.18', #lib/CGI/Cookie.pm
1944 'CGI::Fast' => '1.02', #lib/CGI/Fast.pm
1945 'CGI::Pretty' => '1.05', #lib/CGI/Pretty.pm
1946 'CGI::Push' => '1.04', #lib/CGI/Push.pm
1947 'CGI::Switch' => undef, #lib/CGI/Switch.pm
1948 'CGI::Util' => '1.1', #lib/CGI/Util.pm
1949 'charnames' => undef, #lib/charnames.pm
1950 'Class::Struct' => '0.59', #lib/Class/Struct.pm
1951 'Config' => undef, #lib/Config.pm
1952 'constant' => '1.02', #lib/constant.pm
1953 'CPAN' => '1.59_54', #lib/CPAN.pm
1954 'CPAN::FirstTime' => '1.53 ', #lib/CPAN/FirstTime.pm
1955 'CPAN::Nox' => '1.00', #lib/CPAN/Nox.pm
1956 'Cwd' => '2.04', #lib/Cwd.pm
1957 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm
1958 'DB' => '1.0', #lib/DB.pm
1959 'DB_File' => '1.806', #lib/DB_File.pm
1960 'Devel::DProf' => '20000000.00_00', #lib/Devel/DProf.pm
1961 'Devel::Peek' => '1.00_01', #lib/Devel/Peek.pm
1962 'Devel::SelfStubber' => '1.01', #lib/Devel/SelfStubber.pm
1963 'diagnostics' => '1.0', #lib/diagnostics.pm
1964 'DirHandle' => undef, #lib/DirHandle.pm
1965 'Dumpvalue' => undef, #lib/Dumpvalue.pm
1966 'DynaLoader' => '1.04', #lib/DynaLoader.pm
1967 'English' => undef, #lib/English.pm
1968 'Env' => undef, #lib/Env.pm
1969 'Errno' => '1.111', #lib/Errno.pm
1970 'Exporter' => '5.562', #lib/Exporter.pm
1971 'Exporter::Heavy' => undef, #lib/Exporter/Heavy.pm
1972 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm
1973 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm
1974 'ExtUtils::Embed' => '1.2505', #lib/ExtUtils/Embed.pm
1975 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm
1976 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm
1977 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm
1978 'ExtUtils::Liblist::Kid'=> '1.3', #lib/ExtUtils/Liblist/Kid.pm
1979 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm
1980 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm
1981 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm
1982 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm
1983 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
1984 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm
1985 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm
1986 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm
1987 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm
1988 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm
1989 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm
1990 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm
1991 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm
1992 'ExtUtils::MM_NW5' => '2.06', #lib/ExtUtils/MM_NW5.pm
1993 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm
1994 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm
1995 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm
1996 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm
1997 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm
1998 'ExtUtils::MM_Win95' => '0.03', #lib/ExtUtils/MM_Win95.pm
1999 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm
2000 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm
2001 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm
2002 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
2003 'Fatal' => '1.02', #lib/Fatal.pm
2004 'Fcntl' => '1.03', #lib/Fcntl.pm
2005 'fields' => '1.01', #lib/fields.pm
2006 'File::Basename' => '2.6', #lib/File/Basename.pm
2007 'File::CheckTree' => undef, #lib/File/CheckTree.pm
2008 'File::Compare' => '1.1002', #lib/File/Compare.pm
2009 'File::Copy' => '2.03', #lib/File/Copy.pm
2010 'File::DosGlob' => undef, #lib/File/DosGlob.pm
2011 'File::Find' => undef, #lib/File/Find.pm
2012 'File::Glob' => '0.991', #lib/File/Glob.pm
2013 'File::Path' => '1.0404', #lib/File/Path.pm
2014 'File::Spec' => '0.86', #lib/File/Spec.pm
2015 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm
2016 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm
2017 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm
2018 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm
2019 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm
2020 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm
2021 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm
2022 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm
2023 'File::stat' => undef, #lib/File/stat.pm
2024 'File::Temp' => '0.14', #lib/File/Temp.pm
2025 'FileCache' => undef, #lib/FileCache.pm
2026 'FileHandle' => '2.00', #lib/FileHandle.pm
2027 'filetest' => undef, #lib/filetest.pm
2028 'FindBin' => '1.42', #lib/FindBin.pm
2029 'GDBM_File' => '1.05', #ext/GDBM_File/GDBM_File.pm
2030 'Getopt::Long' => '2.25', #lib/Getopt/Long.pm
2031 'Getopt::Std' => '1.02', #lib/Getopt/Std.pm
2032 'I18N::Collate' => undef, #lib/I18N/Collate.pm
2033 'if' => '0.03', #lib/if.pm
2034 'integer' => undef, #lib/integer.pm
2035 'IO' => '1.20', #lib/IO.pm
2036 'IO::Dir' => '1.03', #lib/IO/Dir.pm
2037 'IO::File' => '1.08', #lib/IO/File.pm
2038 'IO::Handle' => '1.21', #lib/IO/Handle.pm
2039 'IO::Pipe' => '1.121', #lib/IO/Pipe.pm
2040 'IO::Poll' => '0.05', #lib/IO/Poll.pm
2041 'IO::Seekable' => '1.08', #lib/IO/Seekable.pm
2042 'IO::Select' => '1.14', #lib/IO/Select.pm
2043 'IO::Socket' => '1.26', #lib/IO/Socket.pm
2044 'IO::Socket::INET' => '1.25', #lib/IO/Socket/INET.pm
2045 'IO::Socket::UNIX' => '1.20', #lib/IO/Socket/UNIX.pm
2046 'IPC::Msg' => '1.00', #lib/IPC/Msg.pm
2047 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
2048 'IPC::Open3' => '1.0103', #lib/IPC/Open3.pm
2049 'IPC::Semaphore' => '1.00', #lib/IPC/Semaphore.pm
2050 'IPC::SysV' => '1.03', #lib/IPC/SysV.pm
2051 'JNI' => '0.1', #jpl/JNI/JNI.pm
2052 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm
2053 'JPL::Class' => undef, #jpl/JPL/Class.pm
2054 'JPL::Compile' => undef, #jpl/JPL/Compile.pm
2055 'less' => undef, #lib/less.pm
2056 'lib' => '0.5564', #lib/lib.pm
2057 'locale' => undef, #lib/locale.pm
2058 'Math::BigFloat' => '0.02', #lib/Math/BigFloat.pm
2059 'Math::BigInt' => '0.01', #lib/Math/BigInt.pm
2060 'Math::Complex' => '1.31', #lib/Math/Complex.pm
2061 'Math::Trig' => '1', #lib/Math/Trig.pm
2062 'NDBM_File' => '1.04', #ext/NDBM_File/NDBM_File.pm
2063 'Net::hostent' => undef, #lib/Net/hostent.pm
2064 'Net::netent' => undef, #lib/Net/netent.pm
2065 'Net::Ping' => '2.02', #lib/Net/Ping.pm
2066 'Net::protoent' => undef, #lib/Net/protoent.pm
2067 'Net::servent' => undef, #lib/Net/servent.pm
2068 'O' => undef, #lib/O.pm
2069 'ODBM_File' => '1.03', #ext/ODBM_File/ODBM_File.pm
2070 'Opcode' => '1.04', #lib/Opcode.pm
2071 'open' => undef, #lib/open.pm
2072 'ops' => '1.00', #lib/ops.pm
2073 'OS2::DLL' => undef, #os2/OS2/REXX/DLL/DLL.pm
2074 'OS2::ExtAttr' => '0.01', #os2/OS2/ExtAttr/ExtAttr.pm
2075 'OS2::PrfDB' => '0.02', #os2/OS2/PrfDB/PrfDB.pm
2076 'OS2::Process' => '0.2', #os2/OS2/Process/Process.pm
2077 'OS2::REXX' => '1.00', #os2/OS2/REXX/REXX.pm
2078 'overload' => undef, #lib/overload.pm
2079 'Pod::Checker' => '1.2', #lib/Pod/Checker.pm
2080 'Pod::Find' => '0.21', #lib/Pod/Find.pm
2081 'Pod::Functions' => undef, #lib/Pod/Functions.pm
2082 'Pod::Html' => '1.03', #lib/Pod/Html.pm
2083 'Pod::InputObjects' => '1.13', #lib/Pod/InputObjects.pm
2084 'Pod::LaTeX' => '0.53', #lib/Pod/LaTeX.pm
2085 'Pod::Man' => '1.15', #lib/Pod/Man.pm
2086 'Pod::Parser' => '1.13', #lib/Pod/Parser.pm
2087 'Pod::ParseUtils' => '0.22', #lib/Pod/ParseUtils.pm
2088 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm
2089 'Pod::Select' => '1.13', #lib/Pod/Select.pm
2090 'Pod::Text' => '2.08', #lib/Pod/Text.pm
2091 'Pod::Text::Color' => '0.06', #lib/Pod/Text/Color.pm
2092 'Pod::Text::Overstrike' => '1.01', #lib/Pod/Text/Overstrike.pm
2093 'Pod::Text::Termcap' => '1', #lib/Pod/Text/Termcap.pm
2094 'Pod::Usage' => '1.14', #lib/Pod/Usage.pm
2095 'POSIX' => '1.03', #lib/POSIX.pm
2096 're' => '0.02', #lib/re.pm
2097 'Safe' => '2.10', #lib/Safe.pm
2098 'SDBM_File' => '1.03', #lib/SDBM_File.pm
2099 'Search::Dict' => undef, #lib/Search/Dict.pm
2100 'SelectSaver' => undef, #lib/SelectSaver.pm
2101 'SelfLoader' => '1.0902', #lib/SelfLoader.pm
2102 'Shell' => '0.3', #lib/Shell.pm
2103 'sigtrap' => '1.02', #lib/sigtrap.pm
2104 'Socket' => '1.72', #lib/Socket.pm
2105 'strict' => '1.01', #lib/strict.pm
2106 'subs' => undef, #lib/subs.pm
2107 'Symbol' => '1.02', #lib/Symbol.pm
2108 'Sys::Hostname' => '1.1', #lib/Sys/Hostname.pm
2109 'Sys::Syslog' => '0.01', #lib/Sys/Syslog.pm
2110 'Term::ANSIColor' => '1.03', #lib/Term/ANSIColor.pm
2111 'Term::Cap' => undef, #lib/Term/Cap.pm
2112 'Term::Complete' => undef, #lib/Term/Complete.pm
2113 'Term::ReadLine' => undef, #lib/Term/ReadLine.pm
2114 'Test' => '1.24', #lib/Test.pm
2115 'Test::Builder' => '0.17', #lib/Test/Builder.pm
2116 'Test::Harness' => '2.30', #lib/Test/Harness.pm
2117 'Test::Harness::Assert' => '0.01', #lib/Test/Harness/Assert.pm
2118 'Test::Harness::Iterator'=> '0.01', #lib/Test/Harness/Iterator.pm
2119 'Test::Harness::Straps' => '0.15', #lib/Test/Harness/Straps.pm
2120 'Test::More' => '0.47', #lib/Test/More.pm
2121 'Test::Simple' => '0.47', #lib/Test/Simple.pm
2122 'Text::Abbrev' => undef, #lib/Text/Abbrev.pm
2123 'Text::ParseWords' => '3.2', #lib/Text/ParseWords.pm
2124 'Text::Soundex' => '1.0', #lib/Text/Soundex.pm
2125 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm
2126 'Text::Wrap' => '2001.0131', #lib/Text/Wrap.pm
2127 'Thread' => '1.0', #ext/Thread/Thread.pm
2128 'Thread::Queue' => undef, #ext/Thread/Thread/Queue.pm
2129 'Thread::Semaphore' => undef, #ext/Thread/Thread/Semaphore.pm
2130 'Thread::Signal' => undef, #ext/Thread/Thread/Signal.pm
2131 'Thread::Specific' => undef, #ext/Thread/Thread/Specific.pm
2132 'Tie::Array' => '1.01', #lib/Tie/Array.pm
2133 'Tie::Handle' => '4.0', #lib/Tie/Handle.pm
2134 'Tie::Hash' => undef, #lib/Tie/Hash.pm
2135 'Tie::RefHash' => '1.3', #lib/Tie/RefHash.pm
2136 'Tie::Scalar' => undef, #lib/Tie/Scalar.pm
2137 'Tie::SubstrHash' => undef, #lib/Tie/SubstrHash.pm
2138 'Time::gmtime' => '1.01', #lib/Time/gmtime.pm
2139 'Time::Local' => undef, #lib/Time/Local.pm
2140 'Time::localtime' => '1.01', #lib/Time/localtime.pm
2141 'Time::tm' => undef, #lib/Time/tm.pm
2142 'Unicode' => '3.0.1', # lib/unicore/version
2143 'UNIVERSAL' => undef, #lib/UNIVERSAL.pm
2144 'User::grent' => undef, #lib/User/grent.pm
2145 'User::pwent' => undef, #lib/User/pwent.pm
2146 'utf8' => undef, #lib/utf8.pm
2147 'vars' => undef, #lib/vars.pm
2148 'VMS::DCLsym' => '1.01', #vms/ext/DCLsym/DCLsym.pm
2149 'VMS::Filespec' => undef, #vms/ext/Filespec.pm
2150 'VMS::Stdio' => '2.2', #vms/ext/Stdio/Stdio.pm
2151 'vmsish' => undef, #vms/ext/vmsish.pm
2152 'warnings' => undef, #lib/warnings.pm
2153 'warnings::register' => undef, #lib/warnings/register.pm
2154 'XSLoader' => '0.01', #lib/XSLoader.pm
2158 'AnyDBM_File' => '1.00',
2159 'Attribute::Handlers' => '0.76',
2160 'attributes' => '0.04_01',
2162 'AutoLoader' => '5.59',
2163 'AutoSplit' => '1.0307',
2164 'autouse' => '1.03',
2165 'B::Asmdata' => '1.00',
2166 'B::Assembler' => '0.04',
2167 'B::Bblock' => '1.00',
2168 'B::Bytecode' => '1.00',
2171 'B::Concise' => '0.52',
2172 'B::Debug' => '1.00',
2173 'B::Deparse' => '0.63',
2174 'B::Disassembler' => '1.01',
2175 'B::Lint' => '1.00',
2177 'B::Showlex' => '1.00',
2178 'B::Stackobj' => '1.00',
2179 'B::Stash' => '1.00',
2180 'B::Terse' => '1.00',
2181 'B::Xref' => '1.00',
2183 'Benchmark' => '1.04',
2185 'ByteLoader' => '0.04',
2188 'Carp::Heavy' => undef,
2190 'CGI::Apache' => '1.00',
2191 'CGI::Carp' => '1.22',
2192 'CGI::Cookie' => '1.20',
2193 'CGI::Fast' => '1.04',
2194 'CGI::Pretty' => '1.05_00',
2195 'CGI::Push' => '1.04',
2196 'CGI::Switch' => '1.00',
2197 'CGI::Util' => '1.3',
2198 'charnames' => '1.01',
2199 'Class::ISA' => '0.32',
2200 'Class::Struct' => '0.61',
2202 'constant' => '1.04',
2203 'CPAN::FirstTime' => '1.54 ',
2204 'CPAN' => '1.59_56',
2205 'CPAN::Nox' => '1.00_01',
2207 'Data::Dumper' => '2.12',
2209 'DB_File' => '1.804',
2210 'Devel::DProf' => '20000000.00_01',
2211 'Devel::Peek' => '1.00_03',
2212 'Devel::PPPort' => '2.0002',
2213 'Devel::SelfStubber' => '1.03',
2214 'diagnostics' => '1.1',
2216 'Digest::MD5' => '2.16',
2217 'DirHandle' => '1.00',
2218 'Dumpvalue' => '1.10',
2219 'DynaLoader' => 1.04,
2221 'Encode::CN' => '0.02',
2222 'Encode::CN::HZ' => undef,
2223 'Encode::Encoding' => '0.02',
2224 'Encode::Internal' => '0.30',
2225 'Encode::iso10646_1' => '0.30',
2226 'Encode::JP' => '0.02',
2227 'Encode::JP::Constants' => '1.02',
2228 'Encode::JP::H2Z' => '0.77',
2229 'Encode::JP::ISO_2022_JP' => undef,
2230 'Encode::JP::JIS' => undef,
2231 'Encode::JP::Tr' => '0.77',
2232 'Encode::KR' => '0.02',
2233 'Encode::Tcl' => '1.01',
2234 'Encode::Tcl::Escape' => '1.01',
2235 'Encode::Tcl::Extended' => '1.01',
2236 'Encode::Tcl::HanZi' => '1.01',
2237 'Encode::Tcl::Table' => '1.01',
2238 'Encode::TW' => '0.02',
2239 'Encode::Unicode' => '0.30',
2240 'Encode::usc2_le' => '0.30',
2241 'Encode::utf8' => '0.30',
2242 'Encode::XS' => '0.40',
2243 'encoding' => '1.00',
2244 'English' => '1.00',
2246 'Exporter' => '5.566',
2247 'Exporter::Heavy' => '5.562',
2248 'ExtUtils::Command' => '1.02',
2249 'ExtUtils::Constant' => '0.11',
2250 'ExtUtils::Embed' => '1.250601',
2251 'ExtUtils::Install' => '1.29',
2252 'ExtUtils::Installed' => '0.04',
2253 'ExtUtils::Liblist' => '1.2701',
2254 'ExtUtils::MakeMaker' => '5.48_03',
2255 'ExtUtils::Manifest' => '1.35',
2256 'ExtUtils::Miniperl' => undef,
2257 'ExtUtils::Mkbootstrap' => '1.1401',
2258 'ExtUtils::Mksymlists' => '1.18',
2259 'ExtUtils::MM_BeOS' => '1.00',
2260 'ExtUtils::MM_Cygwin' => '1.00',
2261 'ExtUtils::MM_OS2' => '1.00',
2262 'ExtUtils::MM_Unix' => '1.12607',
2263 'ExtUtils::MM_VMS' => '5.56',
2264 'ExtUtils::MM_Win32' => '1.00_02',
2265 'ExtUtils::Packlist' => '0.04',
2266 'ExtUtils::testlib' => '1.1201',
2267 'ExtUtils::XSSymSet' => '1.0',
2271 'File::Basename' => '2.71',
2272 'File::CheckTree' => '4.1',
2273 'File::Compare' => '1.1003',
2274 'File::Copy' => '2.05',
2275 'File::DosGlob' => '1.00',
2276 'File::Find' => '1.04',
2277 'File::Glob' => '1.01',
2278 'File::Path' => '1.05',
2279 'File::Spec' => '0.83',
2280 'File::Spec::Cygwin' => '1.0',
2281 'File::Spec::Epoc' => '1.00',
2282 'File::Spec::Functions' => '1.2',
2283 'File::Spec::Mac' => '1.3',
2284 'File::Spec::OS2' => '1.1',
2285 'File::Spec::Unix' => '1.4',
2286 'File::Spec::VMS' => '1.2',
2287 'File::Spec::Win32' => '1.3',
2288 'File::stat' => '1.00',
2289 'File::Temp' => '0.13',
2290 'FileCache' => '1.00',
2291 'FileHandle' => '2.01',
2292 'filetest' => '1.00',
2293 'Filter::Simple' => '0.77',
2294 'Filter::Util::Call' => '1.06',
2295 'FindBin' => '1.43',
2296 'GDBM_File' => '1.06',
2297 'Getopt::Long' => '2.28',
2298 'Getopt::Std' => '1.03',
2299 'I18N::Collate' => '1.00',
2300 'I18N::Langinfo' => '0.01',
2301 'I18N::LangTags' => '0.27',
2302 'I18N::LangTags::List' => '0.25',
2304 'integer' => '1.00',
2306 'IO::Dir' => '1.03_00',
2307 'IO::File' => '1.09',
2308 'IO::Handle' => '1.21_00',
2309 'IO::Pipe' => '1.122',
2310 'IO::Poll' => '0.06',
2311 'IO::Seekable' => '1.08_00',
2312 'IO::Select' => '1.15',
2313 'IO::Socket' => '1.27',
2314 'IO::Socket::INET' => '1.26',
2315 'IO::Socket::UNIX' => '1.20_00',
2316 'IPC::Msg' => '1.00_00',
2317 'IPC::Open2' => '1.01',
2318 'IPC::Open3' => '1.0104',
2319 'IPC::Semaphore' => '1.00_00',
2320 'IPC::SysV' => '1.03_00',
2322 'JPL::AutoLoader' => undef,
2323 'JPL::Class' => undef,
2324 'JPL::Compile' => undef,
2327 'List::Util' => '1.06_00',
2329 'Locale::Constants' => '2.01',
2330 'Locale::Country' => '2.01',
2331 'Locale::Currency' => '2.01',
2332 'Locale::Language' => '2.01',
2333 'Locale::Maketext' => '1.03',
2334 'Locale::Script' => '2.01',
2335 'Math::BigFloat' => '1.30',
2336 'Math::BigInt' => '1.54',
2337 'Math::BigInt::Calc' => '0.25',
2338 'Math::Complex' => '1.34',
2339 'Math::Trig' => '1.01',
2340 'Memoize' => '0.66',
2341 'Memoize::AnyDBM_File' => '0.65',
2342 'Memoize::Expire' => '0.66',
2343 'Memoize::ExpireFile' => '0.65',
2344 'Memoize::ExpireTest' => '0.65',
2345 'Memoize::NDBM_File' => '0.65',
2346 'Memoize::SDBM_File' => '0.65',
2347 'Memoize::Storable' => '0.65',
2348 'MIME::Base64' => '2.12',
2349 'MIME::QuotedPrint' => '2.03',
2350 'NDBM_File' => '1.04',
2351 'Net::Cmd' => '2.21',
2352 'Net::Config' => '1.10',
2353 'Net::Domain' => '2.17',
2354 'Net::FTP' => '2.64',
2355 'Net::FTP::A' => '1.15',
2356 'Net::FTP::dataconn' => '0.10',
2357 'Net::FTP::E' => '0.01',
2358 'Net::FTP::I' => '1.12',
2359 'Net::FTP::L' => '0.01',
2360 'Net::hostent' => '1.00',
2361 'Net::netent' => '1.00',
2362 'Net::Netrc' => '2.12',
2363 'Net::NNTP' => '2.21',
2364 'Net::Ping' => '2.12',
2365 'Net::POP3' => '2.23',
2366 'Net::protoent' => '1.00',
2367 'Net::servent' => '1.00',
2368 'Net::SMTP' => '2.21',
2369 'Net::Time' => '2.09',
2372 'ODBM_File' => '1.03',
2376 'OS2::DLL' => '1.00',
2377 'OS2::ExtAttr' => '0.01',
2378 'OS2::PrfDB' => '0.02',
2379 'OS2::Process' => '1.0',
2380 'OS2::REXX' => '1.01',
2381 'overload' => '1.00',
2383 'PerlIO::Scalar' => '0.01',
2384 'PerlIO::Via' => '0.01',
2385 'Pod::Checker' => '1.3',
2386 'Pod::Find' => '0.22',
2387 'Pod::Functions' => '1.01',
2388 'Pod::Html' => '1.04',
2389 'Pod::LaTeX' => '0.54',
2390 'Pod::Man' => '1.32',
2391 'Pod::InputObjects' => '1.13',
2392 'Pod::ParseLink' => '1.05',
2393 'Pod::Parser' => '1.13',
2394 'Pod::ParseUtils' => '0.22',
2395 'Pod::Plainer' => '0.01',
2396 'Pod::Select' => '1.13',
2397 'Pod::Text' => '2.18',
2398 'Pod::Text::Color' => '1.03',
2399 'Pod::Text::Overstrike' => '1.08',
2400 'Pod::Text::Termcap' => '1.09',
2401 'Pod::Usage' => '1.14',
2405 'Scalar::Util' => undef,
2406 'SDBM_File' => '1.03',
2407 'Search::Dict' => '1.02',
2408 'SelectSaver' => '1.00',
2409 'SelfLoader' => '1.0903',
2411 'sigtrap' => '1.02',
2414 'Storable' => '1.015',
2419 'Sys::Hostname' => '1.1',
2420 'Sys::Syslog' => '0.02',
2421 'Term::ANSIColor' => '1.04',
2422 'Term::Cap' => '1.07',
2423 'Term::Complete' => '1.4',
2424 'Term::ReadLine' => '1.00',
2426 'Test::Builder' => '0.11',
2427 'Test::Harness' => '2.01',
2428 'Test::Harness::Assert' => '0.01',
2429 'Test::Harness::Iterator'=> '0.01',
2430 'Test::Harness::Straps' => '0.08',
2431 'Test::More' => '0.41',
2432 'Test::Simple' => '0.41',
2433 'Text::Abbrev' => '1.00',
2434 'Text::Balanced' => '1.89',
2435 'Text::ParseWords' => '3.21',
2436 'Text::Soundex' => '1.01',
2437 'Text::Tabs' => '98.112801',
2438 'Text::Wrap' => '2001.0929',
2440 'Thread::Queue' => '1.00',
2441 'Thread::Semaphore' => '1.00',
2442 'Thread::Signal' => '1.00',
2443 'Thread::Specific' => '1.00',
2444 'threads' => '0.05',
2445 'threads::shared' => '0.90',
2446 'Tie::Array' => '1.02',
2447 'Tie::File' => '0.17',
2448 'Tie::Hash' => '1.00',
2449 'Tie::Handle' => '4.1',
2450 'Tie::Memoize' => '1.0',
2451 'Tie::RefHash' => '1.3_00',
2452 'Tie::Scalar' => '1.00',
2453 'Tie::SubstrHash' => '1.00',
2454 'Time::gmtime' => '1.02',
2455 'Time::HiRes' => '1.20_00',
2456 'Time::Local' => '1.04',
2457 'Time::localtime' => '1.02',
2458 'Time::tm' => '1.00',
2459 'Unicode::Collate' => '0.10',
2460 'Unicode::Normalize' => '0.14',
2461 'Unicode::UCD' => '0.2',
2462 'UNIVERSAL' => '1.00',
2463 'User::grent' => '1.00',
2464 'User::pwent' => '1.00',
2467 'VMS::DCLsym' => '1.02',
2468 'VMS::Filespec' => '1.1',
2469 'VMS::Stdio' => '2.3',
2471 'warnings' => '1.00',
2472 'warnings::register' => '1.00',
2473 'XS::Typemap' => '0.01',
2474 'XSLoader' => '0.01',
2478 'AnyDBM_File' => '1.00', #./lib/AnyDBM_File.pm
2479 'Attribute::Handlers' => '0.77', #./lib/Attribute/Handlers.pm
2480 'attributes' => '0.05', #./lib/attributes.pm
2481 'attrs' => '1.01', #./ext/attrs/attrs.pm
2482 'AutoLoader' => '5.59', #./lib/AutoLoader.pm
2483 'AutoSplit' => '1.0307', #./lib/AutoSplit.pm
2484 'autouse' => '1.03', #./lib/autouse.pm
2485 'B' => '1.01', #./ext/B/B.pm
2486 'B::Asmdata' => '1.00', #./ext/B/B/Asmdata.pm
2487 'B::Assembler' => '0.04', #./ext/B/B/Assembler.pm
2488 'B::Bblock' => '1.00', #./ext/B/B/Bblock.pm
2489 'B::Bytecode' => '1.00', #./ext/B/B/Bytecode.pm
2490 'B::C' => '1.01', #./ext/B/B/C.pm
2491 'B::CC' => '1.00', #./ext/B/B/CC.pm
2492 'B::Concise' => '0.52', #./ext/B/B/Concise.pm
2493 'B::Debug' => '1.00', #./ext/B/B/Debug.pm
2494 'B::Deparse' => '0.63', #./ext/B/B/Deparse.pm
2495 'B::Disassembler' => '1.01', #./ext/B/B/Disassembler.pm
2496 'B::Lint' => '1.01', #./ext/B/B/Lint.pm
2497 'B::Showlex' => '1.00', #./ext/B/B/Showlex.pm
2498 'B::Stackobj' => '1.00', #./ext/B/B/Stackobj.pm
2499 'B::Stash' => '1.00', #./ext/B/B/Stash.pm
2500 'B::Terse' => '1.00', #./ext/B/B/Terse.pm
2501 'B::Xref' => '1.01', #./ext/B/B/Xref.pm
2502 'base' => '1.03', #./lib/base.pm
2503 'Benchmark' => '1.04', #./lib/Benchmark.pm
2504 'bigint' => '0.02', #./lib/bigint.pm
2505 'bignum' => '0.11', #./lib/bignum.pm
2506 'bigrat' => '0.04', #./lib/bigrat.pm
2507 'blib' => '1.02', #./lib/blib.pm
2508 'ByteLoader' => '0.04', #./ext/ByteLoader/ByteLoader.pm
2509 'bytes' => '1.00', #./lib/bytes.pm
2510 'Carp' => '1.01', #./lib/Carp.pm
2511 'Carp::Heavy' => 'undef', #./lib/Carp/Heavy.pm
2512 'CGI' => '2.81', #./lib/CGI.pm
2513 'CGI::Apache' => '1.00', #./lib/CGI/Apache.pm
2514 'CGI::Carp' => '1.23', #./lib/CGI/Carp.pm
2515 'CGI::Cookie' => '1.20', #./lib/CGI/Cookie.pm
2516 'CGI::Fast' => '1.04', #./lib/CGI/Fast.pm
2517 'CGI::Pretty' => '1.05_00', #./lib/CGI/Pretty.pm
2518 'CGI::Push' => '1.04', #./lib/CGI/Push.pm
2519 'CGI::Switch' => '1.00', #./lib/CGI/Switch.pm
2520 'CGI::Util' => '1.3', #./lib/CGI/Util.pm
2521 'charnames' => '1.01', #./lib/charnames.pm
2522 'Class::ISA' => '0.32', #./lib/Class/ISA.pm
2523 'Class::Struct' => '0.61', #./lib/Class/Struct.pm
2524 'constant' => '1.04', #./lib/constant.pm
2526 'CPAN' => '1.61', #./lib/CPAN.pm
2527 'CPAN::FirstTime' => '1.56 ', #./lib/CPAN/FirstTime.pm
2528 'CPAN::Nox' => '1.02', #./lib/CPAN/Nox.pm
2529 'Cwd' => '2.06', #./lib/Cwd.pm
2530 'Data::Dumper' => '2.12', #./ext/Data/Dumper/Dumper.pm
2531 'DB' => '1.0', #./lib/DB.pm
2532 'DB_File' => '1.804', #./ext/DB_File/DB_File.pm
2533 'Devel::DProf' => '20000000.00_01', #./ext/Devel/DProf/DProf.pm
2534 'Devel::Peek' => '1.00_03', #./ext/Devel/Peek/Peek.pm
2535 'Devel::PPPort' => '2.0002', #./ext/Devel/PPPort/PPPort.pm
2536 'Devel::SelfStubber' => '1.03', #./lib/Devel/SelfStubber.pm
2537 'diagnostics' => '1.1', #./lib/diagnostics.pm
2538 'Digest' => '1.00', #./lib/Digest.pm
2539 'Digest::MD5' => '2.20', #./ext/Digest/MD5/MD5.pm
2540 'DirHandle' => '1.00', #./lib/DirHandle.pm
2541 'Dumpvalue' => '1.11', #./lib/Dumpvalue.pm
2542 'DynaLoader' => '1.04',
2543 'Encode' => '1.75', #./ext/Encode/Encode.pm
2544 'Encode::Alias' => '1.32', #./ext/Encode/lib/Encode/Alias.pm
2545 'Encode::Byte' => '1.22', #./ext/Encode/Byte/Byte.pm
2546 'Encode::CJKConstants' => '1.00', #./ext/Encode/lib/Encode/CJKConstants.pm
2547 'Encode::CN' => '1.24', #./ext/Encode/CN/CN.pm
2548 'Encode::CN::HZ' => '1.04', #./ext/Encode/lib/Encode/CN/HZ.pm
2549 'Encode::Config' => '1.06', #./ext/Encode/lib/Encode/Config.pm
2550 'Encode::EBCDIC' => '1.21', #./ext/Encode/EBCDIC/EBCDIC.pm
2551 'Encode::Encoder' => '0.05', #./ext/Encode/lib/Encode/Encoder.pm
2552 'Encode::Encoding' => '1.30', #./ext/Encode/lib/Encode/Encoding.pm
2553 'Encode::Guess' => '1.06', #./ext/Encode/lib/Encode/Guess.pm
2554 'Encode::JP::H2Z' => '1.02', #./ext/Encode/lib/Encode/JP/H2Z.pm
2555 'Encode::JP::JIS7' => '1.08', #./ext/Encode/lib/Encode/JP/JIS7.pm
2556 'Encode::JP' => '1.25', #./ext/Encode/JP/JP.pm
2557 'Encode::KR' => '1.22', #./ext/Encode/KR/KR.pm
2558 'Encode::KR::2022_KR' => '1.05', #./ext/Encode/lib/Encode/KR/2022_KR.pm
2559 'Encode::MIME::Header' => '1.05', #./ext/Encode/lib/Encode/MIME/Header.pm
2560 'Encode::Symbol' => '1.22', #./ext/Encode/Symbol/Symbol.pm
2561 'Encode::TW' => '1.26', #./ext/Encode/TW/TW.pm
2562 'Encode::Unicode' => '1.37', #./ext/Encode/Unicode/Unicode.pm
2563 'encoding' => '1.35', #./ext/Encode/encoding.pm
2564 'English' => '1.00', #./lib/English.pm
2565 'Env' => '1.00', #./lib/Env.pm
2566 'Exporter' => '5.566', #./lib/Exporter.pm
2567 'Exporter::Heavy' => '5.566', #./lib/Exporter/Heavy.pm
2568 'ExtUtils::Command' => '1.04', #./lib/ExtUtils/Command.pm
2569 'ExtUtils::Command::MM' => '0.01', #./lib/ExtUtils/Command/MM.pm
2570 'ExtUtils::Constant' => '0.12', #./lib/ExtUtils/Constant.pm
2571 'ExtUtils::Embed' => '1.250601', #./lib/ExtUtils/Embed.pm
2572 'ExtUtils::Install' => '1.29', #./lib/ExtUtils/Install.pm
2573 'ExtUtils::Installed' => '0.06', #./lib/ExtUtils/Installed.pm
2574 'ExtUtils::Liblist' => '1.00', #./lib/ExtUtils/Liblist.pm
2575 'ExtUtils::Liblist::Kid'=> '1.29', #./lib/ExtUtils/Liblist/Kid.pm
2576 'ExtUtils::MakeMaker' => '6.03', #./lib/ExtUtils/MakeMaker.pm
2577 'ExtUtils::Manifest' => '1.38', #./lib/ExtUtils/Manifest.pm
2578 'ExtUtils::Miniperl' => undef,
2579 'ExtUtils::Mkbootstrap' => '1.15', #./lib/ExtUtils/Mkbootstrap.pm
2580 'ExtUtils::Mksymlists' => '1.19', #./lib/ExtUtils/Mksymlists.pm
2581 'ExtUtils::MM' => '0.04', #./lib/ExtUtils/MM.pm
2582 'ExtUtils::MM_Any' => '0.04', #./lib/ExtUtils/MM_Any.pm
2583 'ExtUtils::MM_BeOS' => '1.03', #./lib/ExtUtils/MM_BeOS.pm
2584 'ExtUtils::MM_Cygwin' => '1.04', #./lib/ExtUtils/MM_Cygwin.pm
2585 'ExtUtils::MM_DOS' => '0.01', #./lib/ExtUtils/MM_DOS.pm
2586 'ExtUtils::MM_MacOS' => '1.03', #./lib/ExtUtils/MM_MacOS.pm
2587 'ExtUtils::MM_NW5' => '2.05', #./lib/ExtUtils/MM_NW5.pm
2588 'ExtUtils::MM_OS2' => '1.03', #./lib/ExtUtils/MM_OS2.pm
2589 'ExtUtils::MM_Unix' => '1.33', #./lib/ExtUtils/MM_Unix.pm
2590 'ExtUtils::MM_UWIN' => '0.01', #./lib/ExtUtils/MM_UWIN.pm
2591 'ExtUtils::MM_VMS' => '5.65', #./lib/ExtUtils/MM_VMS.pm
2592 'ExtUtils::MM_Win32' => '1.05', #./lib/ExtUtils/MM_Win32.pm
2593 'ExtUtils::MM_Win95' => '0.02', #./lib/ExtUtils/MM_Win95.pm
2594 'ExtUtils::MY' => '0.01', #./lib/ExtUtils/MY.pm
2595 'ExtUtils::Packlist' => '0.04', #./lib/ExtUtils/Packlist.pm
2596 'ExtUtils::testlib' => '1.15', #./lib/ExtUtils/testlib.pm
2597 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
2598 'Fatal' => '1.03', #./lib/Fatal.pm
2599 'Fcntl' => '1.04', #./ext/Fcntl/Fcntl.pm
2600 'fields' => '1.02', #./lib/fields.pm
2601 'File::Basename' => '2.71', #./lib/File/Basename.pm
2602 'File::CheckTree' => '4.2', #./lib/File/CheckTree.pm
2603 'File::Compare' => '1.1003', #./lib/File/Compare.pm
2604 'File::Copy' => '2.05', #./lib/File/Copy.pm
2605 'File::DosGlob' => '1.00', #./lib/File/DosGlob.pm
2606 'File::Find' => '1.04', #./lib/File/Find.pm
2607 'File::Glob' => '1.01', #./ext/File/Glob/Glob.pm
2608 'File::Path' => '1.05', #./lib/File/Path.pm
2609 'File::Spec' => '0.83', #./lib/File/Spec.pm
2610 'File::Spec::Cygwin' => '1.0', #./lib/File/Spec/Cygwin.pm
2611 'File::Spec::Epoc' => '1.00', #./lib/File/Spec/Epoc.pm
2612 'File::Spec::Functions' => '1.2', #./lib/File/Spec/Functions.pm
2613 'File::Spec::Mac' => '1.3', #./lib/File/Spec/Mac.pm
2614 'File::Spec::OS2' => '1.1', #./lib/File/Spec/OS2.pm
2615 'File::Spec::Unix' => '1.4', #./lib/File/Spec/Unix.pm
2616 'File::Spec::VMS' => '1.2', #./lib/File/Spec/VMS.pm
2617 'File::Spec::Win32' => '1.3', #./lib/File/Spec/Win32.pm
2618 'File::stat' => '1.00', #./lib/File/stat.pm
2619 'File::Temp' => '0.13', #./lib/File/Temp.pm
2620 'FileCache' => '1.021', #./lib/FileCache.pm
2621 'FileHandle' => '2.01', #./lib/FileHandle.pm
2622 'filetest' => '1.00', #./lib/filetest.pm
2623 'Filter::Simple' => '0.78', #./lib/Filter/Simple.pm
2624 'Filter::Util::Call' => '1.06', #./ext/Filter/Util/Call/Call.pm
2625 'FindBin' => '1.43', #./lib/FindBin.pm
2626 'GDBM_File' => '1.06', #./ext/GDBM_File/GDBM_File.pm
2627 'Getopt::Long' => '2.32', #./lib/Getopt/Long.pm
2628 'Getopt::Std' => '1.03', #./lib/Getopt/Std.pm
2629 'Hash::Util' => '0.04', #./lib/Hash/Util.pm
2630 'I18N::Collate' => '1.00', #./lib/I18N/Collate.pm
2631 'I18N::Langinfo' => '0.01', #./ext/I18N/Langinfo/Langinfo.pm
2632 'I18N::LangTags' => '0.27', #./lib/I18N/LangTags.pm
2633 'I18N::LangTags::List' => '0.25', #./lib/I18N/LangTags/List.pm
2634 'if' => '0.01', #./lib/if.pm
2635 'integer' => '1.00', #./lib/integer.pm
2636 'IO' => '1.20', #./ext/IO/IO.pm
2637 'IO::Dir' => '1.03_00', #./ext/IO/lib/IO/Dir.pm
2638 'IO::File' => '1.09', #./ext/IO/lib/IO/File.pm
2639 'IO::Handle' => '1.21_00', #./ext/IO/lib/IO/Handle.pm
2640 'IO::Pipe' => '1.122', #./ext/IO/lib/IO/Pipe.pm
2641 'IO::Poll' => '0.06', #./ext/IO/lib/IO/Poll.pm
2642 'IO::Seekable' => '1.08_00', #./ext/IO/lib/IO/Seekable.pm
2643 'IO::Select' => '1.15', #./ext/IO/lib/IO/Select.pm
2644 'IO::Socket' => '1.27', #./ext/IO/lib/IO/Socket.pm
2645 'IO::Socket::INET' => '1.26', #./ext/IO/lib/IO/Socket/INET.pm
2646 'IO::Socket::UNIX' => '1.20_00', #./ext/IO/lib/IO/Socket/UNIX.pm
2647 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
2648 'IPC::Open3' => '1.0104', #./lib/IPC/Open3.pm
2649 'IPC::Msg' => '1.00_00', #./ext/IPC/SysV/Msg.pm
2650 'IPC::Semaphore' => '1.00_00', #./ext/IPC/SysV/Semaphore.pm
2651 'IPC::SysV' => '1.03_00', #./ext/IPC/SysV/SysV.pm
2652 'JNI' => '0.1', #./jpl/JNI/JNI.pm
2653 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm
2654 'JPL::Class' => undef, #./jpl/JPL/Class.pm
2655 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm
2656 'less' => '0.01', #./lib/less.pm
2658 'List::Util' => '1.07_00', #./ext/List/Util/lib/List/Util.pm
2659 'locale' => '1.00', #./lib/locale.pm
2660 'Locale::Constants' => '2.01', #./lib/Locale/Constants.pm
2661 'Locale::Country' => '2.04', #./lib/Locale/Country.pm
2662 'Locale::Currency' => '2.01', #./lib/Locale/Currency.pm
2663 'Locale::Language' => '2.01', #./lib/Locale/Language.pm
2664 'Locale::Maketext' => '1.03', #./lib/Locale/Maketext.pm
2665 'Locale::Script' => '2.01', #./lib/Locale/Script.pm
2666 'Math::BigFloat' => '1.35', #./lib/Math/BigFloat.pm
2667 'Math::BigFloat::Trace' => '0.01', #./lib/Math/BigFloat/Trace.pm
2668 'Math::BigInt' => '1.60', #./lib/Math/BigInt.pm
2669 'Math::BigInt::Calc' => '0.30', #./lib/Math/BigInt/Calc.pm
2670 'Math::BigInt::Trace' => '0.01', #./lib/Math/BigInt/Trace.pm
2671 'Math::BigRat' => '0.07', #./lib/Math/BigRat.pm
2672 'Math::Complex' => '1.34', #./lib/Math/Complex.pm
2673 'Math::Trig' => '1.01', #./lib/Math/Trig.pm
2674 'Memoize' => '1.01', #./lib/Memoize.pm
2675 'Memoize::AnyDBM_File' => '0.65', #./lib/Memoize/AnyDBM_File.pm
2676 'Memoize::Expire' => '1.00', #./lib/Memoize/Expire.pm
2677 'Memoize::ExpireFile' => '1.01', #./lib/Memoize/ExpireFile.pm
2678 'Memoize::ExpireTest' => '0.65', #./lib/Memoize/ExpireTest.pm
2679 'Memoize::NDBM_File' => '0.65', #./lib/Memoize/NDBM_File.pm
2680 'Memoize::SDBM_File' => '0.65', #./lib/Memoize/SDBM_File.pm
2681 'Memoize::Storable' => '0.65', #./lib/Memoize/Storable.pm
2682 'MIME::Base64' => '2.12', #./ext/MIME/Base64/Base64.pm
2683 'MIME::QuotedPrint' => '2.03', #./ext/MIME/Base64/QuotedPrint.pm
2684 'NDBM_File' => '1.04', #./ext/NDBM_File/NDBM_File.pm
2685 'Net::Cmd' => '2.21', #./lib/Net/Cmd.pm
2686 'Net::Config' => '1.10', #./lib/Net/Config.pm
2687 'Net::Domain' => '2.17', #./lib/Net/Domain.pm
2688 'Net::FTP' => '2.65', #./lib/Net/FTP.pm
2689 'Net::FTP::A' => '1.15', #./lib/Net/FTP/A.pm
2690 'Net::FTP::dataconn' => '0.11', #./lib/Net/FTP/dataconn.pm
2691 'Net::FTP::E' => '0.01', #./lib/Net/FTP/E.pm
2692 'Net::FTP::I' => '1.12', #./lib/Net/FTP/I.pm
2693 'Net::FTP::L' => '0.01', #./lib/Net/FTP/L.pm
2694 'Net::hostent' => '1.00', #./lib/Net/hostent.pm
2695 'Net::netent' => '1.00', #./lib/Net/netent.pm
2696 'Net::Netrc' => '2.12', #./lib/Net/Netrc.pm
2697 'Net::NNTP' => '2.21', #./lib/Net/NNTP.pm
2698 'Net::Ping' => '2.19', #./lib/Net/Ping.pm
2699 'Net::POP3' => '2.23', #./lib/Net/POP3.pm
2700 'Net::protoent' => '1.00', #./lib/Net/protoent.pm
2701 'Net::servent' => '1.00', #./lib/Net/servent.pm
2702 'Net::SMTP' => '2.24', #./lib/Net/SMTP.pm
2703 'Net::Time' => '2.09', #./lib/Net/Time.pm
2704 'NEXT' => '0.50', #./lib/NEXT.pm
2705 'O' => '1.00', #./ext/B/O.pm
2706 'ODBM_File' => '1.03', #./ext/ODBM_File/ODBM_File.pm
2707 'Opcode' => '1.05', #./ext/Opcode/Opcode.pm
2708 'open' => '1.01', #./lib/open.pm
2709 'ops' => '1.00', #./ext/Opcode/ops.pm
2710 'OS2::DLL' => '1.00', #./os2/OS2/REXX/DLL/DLL.pm
2711 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
2712 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
2713 'OS2::Process' => '1.0', #./os2/OS2/Process/Process.pm
2714 'OS2::REXX' => '1.01', #./os2/OS2/REXX/REXX.pm
2715 'overload' => '1.00', #./lib/overload.pm
2716 'PerlIO' => '1.01', #./lib/PerlIO.pm
2717 'PerlIO::encoding' => '0.06', #./ext/PerlIO/encoding/encoding.pm
2718 'PerlIO::scalar' => '0.01', #./ext/PerlIO/scalar/scalar.pm
2719 'PerlIO::via' => '0.01', #./ext/PerlIO/via/via.pm
2720 'PerlIO::via::QuotedPrint'=> '0.04', #./lib/PerlIO/via/QuotedPrint.pm
2721 'Pod::Checker' => '1.3', #./lib/Pod/Checker.pm
2722 'Pod::Find' => '0.22', #./lib/Pod/Find.pm
2723 'Pod::Functions' => '1.01', #./lib/Pod/Functions.pm
2724 'Pod::Html' => '1.04', #./lib/Pod/Html.pm
2725 'Pod::InputObjects' => '1.13', #./lib/Pod/InputObjects.pm
2726 'Pod::LaTeX' => '0.54', #./lib/Pod/LaTeX.pm
2727 'Pod::Man' => '1.33', #./lib/Pod/Man.pm
2728 'Pod::ParseLink' => '1.05', #./lib/Pod/ParseLink.pm
2729 'Pod::Parser' => '1.13', #./lib/Pod/Parser.pm
2730 'Pod::ParseUtils' => '0.22', #./lib/Pod/ParseUtils.pm
2731 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm
2732 'Pod::Select' => '1.13', #./lib/Pod/Select.pm
2733 'Pod::Text' => '2.19', #./lib/Pod/Text.pm
2734 'Pod::Text::Color' => '1.03', #./lib/Pod/Text/Color.pm
2735 'Pod::Text::Overstrike' => '1.08', #./lib/Pod/Text/Overstrike.pm
2736 'Pod::Text::Termcap' => '1.09', #./lib/Pod/Text/Termcap.pm
2737 'Pod::Usage' => '1.14', #./lib/Pod/Usage.pm
2738 'POSIX' => '1.05', #./ext/POSIX/POSIX.pm
2739 're' => '0.03', #./ext/re/re.pm
2740 'Safe' => '2.07', #./ext/Opcode/Safe.pm
2741 'Scalar::Util' => 'undef', #./ext/List/Util/lib/Scalar/Util.pm
2742 'SDBM_File' => '1.03', #./ext/SDBM_File/SDBM_File.pm
2743 'Search::Dict' => '1.02', #./lib/Search/Dict.pm
2744 'SelectSaver' => '1.00', #./lib/SelectSaver.pm
2745 'SelfLoader' => '1.0903', #./lib/SelfLoader.pm
2746 'Shell' => '0.4', #./lib/Shell.pm
2747 'sigtrap' => '1.02', #./lib/sigtrap.pm
2748 'Socket' => '1.75', #./ext/Socket/Socket.pm
2749 'sort' => '1.01', #./lib/sort.pm
2750 'Storable' => '2.04', #./ext/Storable/Storable.pm
2751 'strict' => '1.02', #./lib/strict.pm
2752 'subs' => '1.00', #./lib/subs.pm
2753 'Switch' => '2.09', #./lib/Switch.pm
2754 'Symbol' => '1.04', #./lib/Symbol.pm
2755 'Sys::Hostname' => '1.1', #./ext/Sys/Hostname/Hostname.pm
2756 'Sys::Syslog' => '0.03', #./ext/Sys/Syslog/Syslog.pm
2757 'Term::ANSIColor' => '1.04', #./lib/Term/ANSIColor.pm
2758 'Term::Cap' => '1.07', #./lib/Term/Cap.pm
2759 'Term::Complete' => '1.4', #./lib/Term/Complete.pm
2760 'Term::ReadLine' => '1.00', #./lib/Term/ReadLine.pm
2761 'Test' => '1.20', #./lib/Test.pm
2762 'Test::Builder' => '0.15', #./lib/Test/Builder.pm
2763 'Test::Harness' => '2.26', #./lib/Test/Harness.pm
2764 'Test::Harness::Assert' => '0.01', #./lib/Test/Harness/Assert.pm
2765 'Test::Harness::Iterator'=> '0.01', #./lib/Test/Harness/Iterator.pm
2766 'Test::Harness::Straps' => '0.14', #./lib/Test/Harness/Straps.pm
2767 'Test::More' => '0.45', #./lib/Test/More.pm
2768 'Test::Simple' => '0.45', #./lib/Test/Simple.pm
2769 'Text::Abbrev' => '1.00', #./lib/Text/Abbrev.pm
2770 'Text::Balanced' => '1.89', #./lib/Text/Balanced.pm
2771 'Text::ParseWords' => '3.21', #./lib/Text/ParseWords.pm
2772 'Text::Soundex' => '1.01', #./lib/Text/Soundex.pm
2773 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm
2774 'Text::Wrap' => '2001.0929', #./lib/Text/Wrap.pm
2775 'Thread' => '2.00', #./lib/Thread.pm
2776 'Thread::Queue' => '2.00', #./lib/Thread/Queue.pm
2777 'Thread::Semaphore' => '2.00', #./lib/Thread/Semaphore.pm
2778 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm
2779 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm
2780 'threads' => '0.99', #./ext/threads/threads.pm
2781 'threads::shared' => '0.90', #./ext/threads/shared/shared.pm
2782 'Tie::Array' => '1.02', #./lib/Tie/Array.pm
2783 'Tie::File' => '0.93', #./lib/Tie/File.pm
2784 'Tie::Handle' => '4.1', #./lib/Tie/Handle.pm
2785 'Tie::Hash' => '1.00', #./lib/Tie/Hash.pm
2786 'Tie::Memoize' => '1.0', #./lib/Tie/Memoize.pm
2787 'Tie::RefHash' => '1.30', #./lib/Tie/RefHash.pm
2788 'Tie::Scalar' => '1.00', #./lib/Tie/Scalar.pm
2789 'Tie::SubstrHash' => '1.00', #./lib/Tie/SubstrHash.pm
2790 'Time::gmtime' => '1.02', #./lib/Time/gmtime.pm
2791 'Time::HiRes' => '1.20_00', #./ext/Time/HiRes/HiRes.pm
2792 'Time::Local' => '1.04', #./lib/Time/Local.pm
2793 'Time::localtime' => '1.02', #./lib/Time/localtime.pm
2794 'Time::tm' => '1.00', #./lib/Time/tm.pm
2795 'Unicode' => '3.2.0', # lib/unicore/version
2796 'Unicode::Collate' => '0.12', #./lib/Unicode/Collate.pm
2797 'Unicode::Normalize' => '0.17', #./ext/Unicode/Normalize/Normalize.pm
2798 'Unicode::UCD' => '0.2', #./lib/Unicode/UCD.pm
2799 'UNIVERSAL' => '1.00', #./lib/UNIVERSAL.pm
2800 'User::grent' => '1.00', #./lib/User/grent.pm
2801 'User::pwent' => '1.00', #./lib/User/pwent.pm
2802 'utf8' => '1.00', #./lib/utf8.pm
2803 'vars' => '1.01', #./lib/vars.pm
2804 'VMS::DCLsym' => '1.02', #./vms/ext/DCLsym/DCLsym.pm
2805 'VMS::Filespec' => '1.1', #./vms/ext/Filespec.pm
2806 'VMS::Stdio' => '2.3', #./vms/ext/Stdio/Stdio.pm
2807 'vmsish' => '1.00', #./lib/vmsish.pm
2808 'warnings' => '1.00', #./lib/warnings.pm
2809 'warnings::register' => '1.00', #./lib/warnings/register.pm
2810 'XS::APItest' => '0.01', #./ext/XS/APItest/APItest.pm
2811 'XS::Typemap' => '0.01', #./ext/XS/Typemap/Typemap.pm
2812 'XSLoader' => '0.01',
2816 'AnyDBM_File' => '1.00', #./lib/AnyDBM_File.pm
2817 'Attribute::Handlers' => '0.78', #./lib/Attribute/Handlers.pm
2818 'attributes' => '0.06', #./lib/attributes.pm
2819 'attrs' => '1.01', #./lib/attrs.pm
2820 'AutoLoader' => '5.60', #./lib/AutoLoader.pm
2821 'AutoSplit' => '1.04', #./lib/AutoSplit.pm
2822 'autouse' => '1.03', #./lib/autouse.pm
2823 'B' => '1.02', #./lib/B.pm
2824 'B::Asmdata' => '1.01', #./lib/B/Asmdata.pm
2825 'B::Assembler' => '0.06', #./lib/B/Assembler.pm
2826 'B::Bblock' => '1.02', #./lib/B/Bblock.pm
2827 'B::Bytecode' => '1.01', #./lib/B/Bytecode.pm
2828 'B::C' => '1.02', #./lib/B/C.pm
2829 'B::CC' => '1.00', #./lib/B/CC.pm
2830 'B::Concise' => '0.56', #./lib/B/Concise.pm
2831 'B::Debug' => '1.01', #./lib/B/Debug.pm
2832 'B::Deparse' => '0.64', #./lib/B/Deparse.pm
2833 'B::Disassembler' => '1.03', #./lib/B/Disassembler.pm
2834 'B::Lint' => '1.02', #./lib/B/Lint.pm
2835 'B::Showlex' => '1.00', #./lib/B/Showlex.pm
2836 'B::Stackobj' => '1.00', #./lib/B/Stackobj.pm
2837 'B::Stash' => '1.00', #./lib/B/Stash.pm
2838 'B::Terse' => '1.02', #./lib/B/Terse.pm
2839 'B::Xref' => '1.01', #./lib/B/Xref.pm
2840 'base' => '2.03', #./lib/base.pm
2841 'Benchmark' => '1.051', #./lib/Benchmark.pm
2842 'bigint' => '0.04', #./lib/bigint.pm
2843 'bignum' => '0.14', #./lib/bignum.pm
2844 'bigrat' => '0.06', #./lib/bigrat.pm
2845 'blib' => '1.02', #./lib/blib.pm
2846 'ByteLoader' => '0.05', #./lib/ByteLoader.pm
2847 'bytes' => '1.01', #./lib/bytes.pm
2848 'Carp' => '1.01', #./lib/Carp.pm
2849 'Carp::Heavy' => '1.01', #./lib/Carp/Heavy.pm
2850 'CGI' => '3.00', #./lib/CGI.pm
2851 'CGI::Apache' => '1.00', #./lib/CGI/Apache.pm
2852 'CGI::Carp' => '1.26', #./lib/CGI/Carp.pm
2853 'CGI::Cookie' => '1.24', #./lib/CGI/Cookie.pm
2854 'CGI::Fast' => '1.041', #./lib/CGI/Fast.pm
2855 'CGI::Pretty' => '1.07_00', #./lib/CGI/Pretty.pm
2856 'CGI::Push' => '1.04', #./lib/CGI/Push.pm
2857 'CGI::Switch' => '1.00', #./lib/CGI/Switch.pm
2858 'CGI::Util' => '1.31', #./lib/CGI/Util.pm
2859 'charnames' => '1.02', #./lib/charnames.pm
2860 'Class::ISA' => '0.32', #./lib/Class/ISA.pm
2861 'Class::Struct' => '0.63', #./lib/Class/Struct.pm
2862 'Config' => undef, #./lib/Config.pm
2863 'constant' => '1.04', #./lib/constant.pm
2864 'CPAN' => '1.76_01', #./lib/CPAN.pm
2865 'CPAN::FirstTime' => '1.60 ', #./lib/CPAN/FirstTime.pm
2866 'CPAN::Nox' => '1.03', #./lib/CPAN/Nox.pm
2867 'Cwd' => '2.08', #./lib/Cwd.pm
2868 'Data::Dumper' => '2.121', #./lib/Data/Dumper.pm
2869 'DB' => '1.0', #./lib/DB.pm
2870 'DB_File' => '1.806', #./lib/DB_File.pm
2871 'Devel::DProf' => '20030813.00', #./lib/Devel/DProf.pm
2872 'Devel::Peek' => '1.01', #./lib/Devel/Peek.pm
2873 'Devel::PPPort' => '2.007', #./lib/Devel/PPPort.pm
2874 'Devel::SelfStubber' => '1.03', #./lib/Devel/SelfStubber.pm
2875 'diagnostics' => '1.11', #./lib/diagnostics.pm
2876 'Digest' => '1.02', #./lib/Digest.pm
2877 'Digest::MD5' => '2.27', #./lib/Digest/MD5.pm
2878 'DirHandle' => '1.00', #./lib/DirHandle.pm
2879 'Dumpvalue' => '1.11', #./lib/Dumpvalue.pm
2880 'DynaLoader' => '1.04', #./lib/DynaLoader.pm
2881 'Encode' => '1.9801', #./lib/Encode.pm
2882 'Encode::Alias' => '1.38', #./lib/Encode/Alias.pm
2883 'Encode::Byte' => '1.23', #./lib/Encode/Byte.pm
2884 'Encode::CJKConstants' => '1.02', #./lib/Encode/CJKConstants.pm
2885 'Encode::CN' => '1.24', #./lib/Encode/CN.pm
2886 'Encode::CN::HZ' => '1.05', #./lib/Encode/CN/HZ.pm
2887 'Encode::Config' => '1.07', #./lib/Encode/Config.pm
2888 'Encode::EBCDIC' => '1.21', #./lib/Encode/EBCDIC.pm
2889 'Encode::Encoder' => '0.07', #./lib/Encode/Encoder.pm
2890 'Encode::Encoding' => '1.33', #./lib/Encode/Encoding.pm
2891 'Encode::Guess' => '1.09', #./lib/Encode/Guess.pm
2892 'Encode::JP' => '1.25', #./lib/Encode/JP.pm
2893 'Encode::JP::H2Z' => '1.02', #./lib/Encode/JP/H2Z.pm
2894 'Encode::JP::JIS7' => '1.12', #./lib/Encode/JP/JIS7.pm
2895 'Encode::KR' => '1.23', #./lib/Encode/KR.pm
2896 'Encode::KR::2022_KR' => '1.06', #./lib/Encode/KR/2022_KR.pm
2897 'Encode::MIME::Header' => '1.09', #./lib/Encode/MIME/Header.pm
2898 'Encode::Symbol' => '1.22', #./lib/Encode/Symbol.pm
2899 'Encode::TW' => '1.26', #./lib/Encode/TW.pm
2900 'Encode::Unicode' => '1.40', #./lib/Encode/Unicode.pm
2901 'Encode::Unicode::UTF7' => '0.02', #./lib/Encode/Unicode/UTF7.pm
2902 'encoding' => '1.47', #./lib/encoding.pm
2903 'English' => '1.01', #./lib/English.pm
2904 'Env' => '1.00', #./lib/Env.pm
2905 'Errno' => '1.09_00', #./lib/Errno.pm
2906 'Exporter' => '5.567', #./lib/Exporter.pm
2907 'Exporter::Heavy' => '5.567', #./lib/Exporter/Heavy.pm
2908 'ExtUtils::Command' => '1.05', #./lib/ExtUtils/Command.pm
2909 'ExtUtils::Command::MM' => '0.03', #./lib/ExtUtils/Command/MM.pm
2910 'ExtUtils::Constant' => '0.14', #./lib/ExtUtils/Constant.pm
2911 'ExtUtils::Embed' => '1.250601', #./lib/ExtUtils/Embed.pm
2912 'ExtUtils::Install' => '1.32', #./lib/ExtUtils/Install.pm
2913 'ExtUtils::Installed' => '0.08', #./lib/ExtUtils/Installed.pm
2914 'ExtUtils::Liblist' => '1.01', #./lib/ExtUtils/Liblist.pm
2915 'ExtUtils::Liblist::Kid'=> '1.3', #./lib/ExtUtils/Liblist/Kid.pm
2916 'ExtUtils::MakeMaker' => '6.17', #./lib/ExtUtils/MakeMaker.pm
2917 'ExtUtils::MakeMaker::bytes'=> '0.01', #./lib/ExtUtils/MakeMaker/bytes.pm
2918 'ExtUtils::MakeMaker::vmsish'=> '0.01', #./lib/ExtUtils/MakeMaker/vmsish.pm
2919 'ExtUtils::Manifest' => '1.42', #./lib/ExtUtils/Manifest.pm
2920 'ExtUtils::Miniperl' => undef, #./lib/ExtUtils/Miniperl.pm
2921 'ExtUtils::Mkbootstrap' => '1.15', #./lib/ExtUtils/Mkbootstrap.pm
2922 'ExtUtils::Mksymlists' => '1.19', #./lib/ExtUtils/Mksymlists.pm
2923 'ExtUtils::MM' => '0.04', #./lib/ExtUtils/MM.pm
2924 'ExtUtils::MM_Any' => '0.07', #./lib/ExtUtils/MM_Any.pm
2925 'ExtUtils::MM_BeOS' => '1.04', #./lib/ExtUtils/MM_BeOS.pm
2926 'ExtUtils::MM_Cygwin' => '1.06', #./lib/ExtUtils/MM_Cygwin.pm
2927 'ExtUtils::MM_DOS' => '0.02', #./lib/ExtUtils/MM_DOS.pm
2928 'ExtUtils::MM_MacOS' => '1.07', #./lib/ExtUtils/MM_MacOS.pm
2929 'ExtUtils::MM_NW5' => '2.06', #./lib/ExtUtils/MM_NW5.pm
2930 'ExtUtils::MM_OS2' => '1.04', #./lib/ExtUtils/MM_OS2.pm
2931 'ExtUtils::MM_Unix' => '1.42', #./lib/ExtUtils/MM_Unix.pm
2932 'ExtUtils::MM_UWIN' => '0.02', #./lib/ExtUtils/MM_UWIN.pm
2933 'ExtUtils::MM_VMS' => '5.70', #./lib/ExtUtils/MM_VMS.pm
2934 'ExtUtils::MM_Win32' => '1.09', #./lib/ExtUtils/MM_Win32.pm
2935 'ExtUtils::MM_Win95' => '0.03', #./lib/ExtUtils/MM_Win95.pm
2936 'ExtUtils::MY' => '0.01', #./lib/ExtUtils/MY.pm
2937 'ExtUtils::Packlist' => '0.04', #./lib/ExtUtils/Packlist.pm
2938 'ExtUtils::testlib' => '1.15', #./lib/ExtUtils/testlib.pm
2939 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
2940 'Fatal' => '1.03', #./lib/Fatal.pm
2941 'Fcntl' => '1.05', #./lib/Fcntl.pm
2942 'fields' => '2.03', #./lib/fields.pm
2943 'File::Basename' => '2.72', #./lib/File/Basename.pm
2944 'File::CheckTree' => '4.2', #./lib/File/CheckTree.pm
2945 'File::Compare' => '1.1003', #./lib/File/Compare.pm
2946 'File::Copy' => '2.06', #./lib/File/Copy.pm
2947 'File::DosGlob' => '1.00', #./lib/File/DosGlob.pm
2948 'File::Find' => '1.05', #./lib/File/Find.pm
2949 'File::Glob' => '1.02', #./lib/File/Glob.pm
2950 'File::Path' => '1.06', #./lib/File/Path.pm
2951 'File::Spec' => '0.86', #./lib/File/Spec.pm
2952 'File::Spec::Cygwin' => '1.1', #./lib/File/Spec/Cygwin.pm
2953 'File::Spec::Epoc' => '1.1', #./lib/File/Spec/Epoc.pm
2954 'File::Spec::Functions' => '1.3', #./lib/File/Spec/Functions.pm
2955 'File::Spec::Mac' => '1.4', #./lib/File/Spec/Mac.pm
2956 'File::Spec::OS2' => '1.2', #./lib/File/Spec/OS2.pm
2957 'File::Spec::Unix' => '1.5', #./lib/File/Spec/Unix.pm
2958 'File::Spec::VMS' => '1.4', #./lib/File/Spec/VMS.pm
2959 'File::Spec::Win32' => '1.4', #./lib/File/Spec/Win32.pm
2960 'File::stat' => '1.00', #./lib/File/stat.pm
2961 'File::Temp' => '0.14', #./lib/File/Temp.pm
2962 'FileCache' => '1.03', #./lib/FileCache.pm
2963 'FileHandle' => '2.01', #./lib/FileHandle.pm
2964 'filetest' => '1.01', #./lib/filetest.pm
2965 'Filter::Simple' => '0.78', #./lib/Filter/Simple.pm
2966 'Filter::Util::Call' => '1.0601', #./lib/Filter/Util/Call.pm
2967 'FindBin' => '1.43', #./lib/FindBin.pm
2968 'GDBM_File' => '1.07', #./ext/GDBM_File/GDBM_File.pm
2969 'Getopt::Long' => '2.34', #./lib/Getopt/Long.pm
2970 'Getopt::Std' => '1.04', #./lib/Getopt/Std.pm
2971 'Hash::Util' => '0.05', #./lib/Hash/Util.pm
2972 'I18N::Collate' => '1.00', #./lib/I18N/Collate.pm
2973 'I18N::Langinfo' => '0.02', #./lib/I18N/Langinfo.pm
2974 'I18N::LangTags' => '0.28', #./lib/I18N/LangTags.pm
2975 'I18N::LangTags::List' => '0.26', #./lib/I18N/LangTags/List.pm
2976 'if' => '0.03', #./lib/if.pm
2977 'integer' => '1.00', #./lib/integer.pm
2978 'IO' => '1.21', #./lib/IO.pm
2979 'IO::Dir' => '1.04', #./lib/IO/Dir.pm
2980 'IO::File' => '1.10', #./lib/IO/File.pm
2981 'IO::Handle' => '1.23', #./lib/IO/Handle.pm
2982 'IO::Pipe' => '1.122', #./lib/IO/Pipe.pm
2983 'IO::Poll' => '0.06', #./lib/IO/Poll.pm
2984 'IO::Seekable' => '1.09', #./lib/IO/Seekable.pm
2985 'IO::Select' => '1.16', #./lib/IO/Select.pm
2986 'IO::Socket' => '1.28', #./lib/IO/Socket.pm
2987 'IO::Socket::INET' => '1.27', #./lib/IO/Socket/INET.pm
2988 'IO::Socket::UNIX' => '1.21', #./lib/IO/Socket/UNIX.pm
2989 'IPC::Msg' => '1.02', #./lib/IPC/Msg.pm
2990 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
2991 'IPC::Open3' => '1.0105', #./lib/IPC/Open3.pm
2992 'IPC::Semaphore' => '1.02', #./lib/IPC/Semaphore.pm
2993 'IPC::SysV' => '1.04', #./lib/IPC/SysV.pm
2994 'JNI' => '0.2', #./jpl/JNI/JNI.pm
2995 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm
2996 'JPL::Class' => undef, #./jpl/JPL/Class.pm
2997 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm
2998 'less' => '0.01', #./lib/less.pm
2999 'lib' => '0.5565', #./lib/lib.pm
3000 'List::Util' => '1.13', #./lib/List/Util.pm
3001 'locale' => '1.00', #./lib/locale.pm
3002 'Locale::Constants' => '2.01', #./lib/Locale/Constants.pm
3003 'Locale::Country' => '2.61', #./lib/Locale/Country.pm
3004 'Locale::Currency' => '2.21', #./lib/Locale/Currency.pm
3005 'Locale::Language' => '2.21', #./lib/Locale/Language.pm
3006 'Locale::Maketext' => '1.06', #./lib/Locale/Maketext.pm
3007 'Locale::Maketext::Guts'=> undef, #./lib/Locale/Maketext/Guts.pm
3008 'Locale::Maketext::GutsLoader'=> undef, #./lib/Locale/Maketext/GutsLoader.pm
3009 'Locale::Script' => '2.21', #./lib/Locale/Script.pm
3010 'Math::BigFloat' => '1.40', #./lib/Math/BigFloat.pm
3011 'Math::BigFloat::Trace' => '0.01', #./lib/Math/BigFloat/Trace.pm
3012 'Math::BigInt' => '1.66', #./lib/Math/BigInt.pm
3013 'Math::BigInt::Calc' => '0.36', #./lib/Math/BigInt/Calc.pm
3014 'Math::BigInt::Scalar' => '0.11', #./lib/Math/BigInt/Scalar.pm
3015 'Math::BigInt::Trace' => '0.01', #./lib/Math/BigInt/Trace.pm
3016 'Math::BigRat' => '0.10', #./lib/Math/BigRat.pm
3017 'Math::Complex' => '1.34', #./lib/Math/Complex.pm
3018 'Math::Trig' => '1.02', #./lib/Math/Trig.pm
3019 'Memoize' => '1.01', #./lib/Memoize.pm
3020 'Memoize::AnyDBM_File' => '0.65', #./lib/Memoize/AnyDBM_File.pm
3021 'Memoize::Expire' => '1.00', #./lib/Memoize/Expire.pm
3022 'Memoize::ExpireFile' => '1.01', #./lib/Memoize/ExpireFile.pm
3023 'Memoize::ExpireTest' => '0.65', #./lib/Memoize/ExpireTest.pm
3024 'Memoize::NDBM_File' => '0.65', #./lib/Memoize/NDBM_File.pm
3025 'Memoize::SDBM_File' => '0.65', #./lib/Memoize/SDBM_File.pm
3026 'Memoize::Storable' => '0.65', #./lib/Memoize/Storable.pm
3027 'MIME::Base64' => '2.20', #./lib/MIME/Base64.pm
3028 'MIME::QuotedPrint' => '2.20', #./lib/MIME/QuotedPrint.pm
3029 'NDBM_File' => '1.05', #./ext/NDBM_File/NDBM_File.pm
3030 'Net::Cmd' => '2.24', #./lib/Net/Cmd.pm
3031 'Net::Config' => '1.10', #./lib/Net/Config.pm
3032 'Net::Domain' => '2.18', #./lib/Net/Domain.pm
3033 'Net::FTP' => '2.71', #./lib/Net/FTP.pm
3034 'Net::FTP::A' => '1.16', #./lib/Net/FTP/A.pm
3035 'Net::FTP::dataconn' => '0.11', #./lib/Net/FTP/dataconn.pm
3036 'Net::FTP::E' => '0.01', #./lib/Net/FTP/E.pm
3037 'Net::FTP::I' => '1.12', #./lib/Net/FTP/I.pm
3038 'Net::FTP::L' => '0.01', #./lib/Net/FTP/L.pm
3039 'Net::hostent' => '1.01', #./lib/Net/hostent.pm
3040 'Net::netent' => '1.00', #./lib/Net/netent.pm
3041 'Net::Netrc' => '2.12', #./lib/Net/Netrc.pm
3042 'Net::NNTP' => '2.22', #./lib/Net/NNTP.pm
3043 'Net::Ping' => '2.31', #./lib/Net/Ping.pm
3044 'Net::POP3' => '2.24', #./lib/Net/POP3.pm
3045 'Net::protoent' => '1.00', #./lib/Net/protoent.pm
3046 'Net::servent' => '1.01', #./lib/Net/servent.pm
3047 'Net::SMTP' => '2.26', #./lib/Net/SMTP.pm
3048 'Net::Time' => '2.09', #./lib/Net/Time.pm
3049 'NEXT' => '0.60', #./lib/NEXT.pm
3050 'O' => '1.00', #./lib/O.pm
3051 'ODBM_File' => '1.04', #./ext/ODBM_File/ODBM_File.pm
3052 'Opcode' => '1.05', #./lib/Opcode.pm
3053 'open' => '1.02', #./lib/open.pm
3054 'ops' => '1.00', #./lib/ops.pm
3055 'OS2::ExtAttr' => '0.02', #./os2/OS2/ExtAttr/ExtAttr.pm
3056 'OS2::PrfDB' => '0.03', #./os2/OS2/PrfDB/PrfDB.pm
3057 'OS2::Process' => '1.01', #./os2/OS2/Process/Process.pm
3058 'OS2::DLL' => '1.01', #./os2/OS2/REXX/DLL/DLL.pm
3059 'OS2::REXX' => '1.02', #./os2/OS2/REXX/REXX.pm
3060 'overload' => '1.01', #./lib/overload.pm
3061 'PerlIO' => '1.02', #./lib/PerlIO.pm
3062 'PerlIO::encoding' => '0.07', #./lib/PerlIO/encoding.pm
3063 'PerlIO::scalar' => '0.02', #./lib/PerlIO/scalar.pm
3064 'PerlIO::via' => '0.02', #./lib/PerlIO/via.pm
3065 'PerlIO::via::QuotedPrint'=> '0.05', #./lib/PerlIO/via/QuotedPrint.pm
3066 'Pod::Checker' => '1.41', #./lib/Pod/Checker.pm
3067 'Pod::Find' => '0.24', #./lib/Pod/Find.pm
3068 'Pod::Functions' => '1.02', #./lib/Pod/Functions.pm
3069 'Pod::Html' => '1.0501', #./lib/Pod/Html.pm
3070 'Pod::InputObjects' => '1.14', #./lib/Pod/InputObjects.pm
3071 'Pod::LaTeX' => '0.55', #./lib/Pod/LaTeX.pm
3072 'Pod::Man' => '1.37', #./lib/Pod/Man.pm
3073 'Pod::ParseLink' => '1.06', #./lib/Pod/ParseLink.pm
3074 'Pod::Parser' => '1.13', #./lib/Pod/Parser.pm
3075 'Pod::ParseUtils' => '0.3', #./lib/Pod/ParseUtils.pm
3076 'Pod::Perldoc' => '3.10', #./lib/Pod/Perldoc.pm
3077 'Pod::Perldoc::BaseTo' => undef, #./lib/Pod/Perldoc/BaseTo.pm
3078 'Pod::Perldoc::GetOptsOO'=> undef, #./lib/Pod/Perldoc/GetOptsOO.pm
3079 'Pod::Perldoc::ToChecker'=> undef, #./lib/Pod/Perldoc/ToChecker.pm
3080 'Pod::Perldoc::ToMan' => undef, #./lib/Pod/Perldoc/ToMan.pm
3081 'Pod::Perldoc::ToNroff' => undef, #./lib/Pod/Perldoc/ToNroff.pm
3082 'Pod::Perldoc::ToPod' => undef, #./lib/Pod/Perldoc/ToPod.pm
3083 'Pod::Perldoc::ToRtf' => undef, #./lib/Pod/Perldoc/ToRtf.pm
3084 'Pod::Perldoc::ToText' => undef, #./lib/Pod/Perldoc/ToText.pm
3085 'Pod::Perldoc::ToTk' => 'undef', #./lib/Pod/Perldoc/ToTk.pm
3086 'Pod::Perldoc::ToXml' => undef, #./lib/Pod/Perldoc/ToXml.pm
3087 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm
3088 'Pod::PlainText' => '2.01', #./lib/Pod/PlainText.pm
3089 'Pod::Select' => '1.13', #./lib/Pod/Select.pm
3090 'Pod::Text' => '2.21', #./lib/Pod/Text.pm
3091 'Pod::Text::Color' => '1.04', #./lib/Pod/Text/Color.pm
3092 'Pod::Text::Overstrike' => '1.1', #./lib/Pod/Text/Overstrike.pm
3093 'Pod::Text::Termcap' => '1.11', #./lib/Pod/Text/Termcap.pm
3094 'Pod::Usage' => '1.16', #./lib/Pod/Usage.pm
3095 'POSIX' => '1.06', #./lib/POSIX.pm
3096 're' => '0.04', #./lib/re.pm
3097 'Safe' => '2.10', #./lib/Safe.pm
3098 'Scalar::Util' => '1.13', #./lib/Scalar/Util.pm
3099 'SDBM_File' => '1.04', #./lib/SDBM_File.pm
3100 'Search::Dict' => '1.02', #./lib/Search/Dict.pm
3101 'SelectSaver' => '1.00', #./lib/SelectSaver.pm
3102 'SelfLoader' => '1.0904', #./lib/SelfLoader.pm
3103 'Shell' => '0.5', #./lib/Shell.pm
3104 'sigtrap' => '1.02', #./lib/sigtrap.pm
3105 'Socket' => '1.76', #./lib/Socket.pm
3106 'sort' => '1.02', #./lib/sort.pm
3107 'Storable' => '2.08', #./lib/Storable.pm
3108 'strict' => '1.03', #./lib/strict.pm
3109 'subs' => '1.00', #./lib/subs.pm
3110 'Switch' => '2.10', #./lib/Switch.pm
3111 'Symbol' => '1.05', #./lib/Symbol.pm
3112 'Sys::Hostname' => '1.11', #./lib/Sys/Hostname.pm
3113 'Sys::Syslog' => '0.04', #./lib/Sys/Syslog.pm
3114 'Term::ANSIColor' => '1.07', #./lib/Term/ANSIColor.pm
3115 'Term::Cap' => '1.08', #./lib/Term/Cap.pm
3116 'Term::Complete' => '1.401', #./lib/Term/Complete.pm
3117 'Term::ReadLine' => '1.01', #./lib/Term/ReadLine.pm
3118 'Test' => '1.24', #./lib/Test.pm
3119 'Test::Builder' => '0.17', #./lib/Test/Builder.pm
3120 'Test::Harness' => '2.30', #./lib/Test/Harness.pm
3121 'Test::Harness::Assert' => '0.01', #./lib/Test/Harness/Assert.pm
3122 'Test::Harness::Iterator'=> '0.01', #./lib/Test/Harness/Iterator.pm
3123 'Test::Harness::Straps' => '0.15', #./lib/Test/Harness/Straps.pm
3124 'Test::More' => '0.47', #./lib/Test/More.pm
3125 'Test::Simple' => '0.47', #./lib/Test/Simple.pm
3126 'Text::Abbrev' => '1.01', #./lib/Text/Abbrev.pm
3127 'Text::Balanced' => '1.95', #./lib/Text/Balanced.pm
3128 'Text::ParseWords' => '3.21', #./lib/Text/ParseWords.pm
3129 'Text::Soundex' => '1.01', #./lib/Text/Soundex.pm
3130 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm
3131 'Text::Wrap' => '2001.09291', #./lib/Text/Wrap.pm
3132 'Thread' => '2.00', #./lib/Thread.pm
3133 'Thread::Queue' => '2.00', #./lib/Thread/Queue.pm
3134 'Thread::Semaphore' => '2.01', #./lib/Thread/Semaphore.pm
3135 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm
3136 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm
3137 'threads' => '1.00', #./lib/threads.pm
3138 'threads::shared' => '0.91', #./lib/threads/shared.pm
3139 'Tie::Array' => '1.03', #./lib/Tie/Array.pm
3140 'Tie::File' => '0.97', #./lib/Tie/File.pm
3141 'Tie::Handle' => '4.1', #./lib/Tie/Handle.pm
3142 'Tie::Hash' => '1.00', #./lib/Tie/Hash.pm
3143 'Tie::Memoize' => '1.0', #./lib/Tie/Memoize.pm
3144 'Tie::RefHash' => '1.31', #./lib/Tie/RefHash.pm
3145 'Tie::Scalar' => '1.00', #./lib/Tie/Scalar.pm
3146 'Tie::SubstrHash' => '1.00', #./lib/Tie/SubstrHash.pm
3147 'Time::gmtime' => '1.02', #./lib/Time/gmtime.pm
3148 'Time::HiRes' => '1.51', #./lib/Time/HiRes.pm
3149 'Time::Local' => '1.07', #./lib/Time/Local.pm
3150 'Time::localtime' => '1.02', #./lib/Time/localtime.pm
3151 'Time::tm' => '1.00', #./lib/Time/tm.pm
3152 'Unicode' => '4.0.0', # lib/unicore/version
3153 'Unicode::Collate' => '0.28', #./lib/Unicode/Collate.pm
3154 'Unicode::Normalize' => '0.23', #./lib/Unicode/Normalize.pm
3155 'Unicode::UCD' => '0.21', #./lib/Unicode/UCD.pm
3156 'UNIVERSAL' => '1.01', #./lib/UNIVERSAL.pm
3157 'User::grent' => '1.00', #./lib/User/grent.pm
3158 'User::pwent' => '1.00', #./lib/User/pwent.pm
3159 'utf8' => '1.02', #./lib/utf8.pm
3160 'vars' => '1.01', #./lib/vars.pm
3161 'VMS::DCLsym' => '1.02', #./vms/ext/DCLsym/DCLsym.pm
3162 'VMS::Filespec' => '1.11', #./vms/ext/Filespec.pm
3163 'VMS::Stdio' => '2.3', #./vms/ext/Stdio/Stdio.pm
3164 'vmsish' => '1.01', #./lib/vmsish.pm
3165 'warnings' => '1.03', #./lib/warnings.pm
3166 'warnings::register' => '1.00', #./lib/warnings/register.pm
3167 'XS::APItest' => '0.02', #./lib/XS/APItest.pm
3168 'XS::Typemap' => '0.01', #./lib/XS/Typemap.pm
3169 'XSLoader' => '0.02', #./lib/XSLoader.pm
3173 'AnyDBM_File' => '1.00', #AnyDBM_File.pm
3174 'Attribute::Handlers' => 0.78, #Attribute\Handlers.pm
3175 'attributes' => 0.06, #attributes.pm
3176 'attrs' => 1.01, #attrs.pm
3177 'AutoLoader' => '5.60', #AutoLoader.pm
3178 'AutoSplit' => 1.04, #AutoSplit.pm
3179 'autouse' => 1.03, #autouse.pm