This is an archived low-energy page for bots and other anonmyous visitors.
Please sign up if you are a human and want to interact.
in reply to Re^7: Smart match in p5 in thread Smart match in p5
I walked into this one by catching mention of '~~' and of a count of how many modules might contain it as the discussion was ending for a while in the CB, and was unable to come up with the numbers before it ended. Here, however, are my numbers and methods, in hopes they may be of help.
- Version of perl: 5.8.3, installed on Mandrake 10.0 from RPM.
- Command used to generate listing: perl -MCPAN -e 'autobundle;'
- Number of modules installed (perl -ne 'print if (m/CONTENTS/..m/CONFIGURATION/ and not m/^\s+/ and not m/^=/);' ~/.cpan/Bundle/Snapshot_2005_03_14_00.pm | wc -l): 3_566
- Number of files under /usr/lib/perl5 (find /usr/lib/perl5 -type f | wc -l): 8_982
- Number of lines in files under /usr/lib/perl5 (find /usr/lib/perl5 -type f -exec cat "{}" \; | wc -l): 3_298_000
- Number of files containing '~~' (find /usr/lib/perl5 -type f -exec grep -il '~~' "{}" \; | wc -l): 93
- Number of lines containing '~~' (find /usr/lib/perl5 -type f -exec grep -i '~~' "{}" \; | wc -l): 170
- Number of files containing '~~', by type (find /usr/lib/perl5/ -type f -exec grep -il '~~' "{}" \; | xargs file | gawk '{FS=":"; print $2;}' | perl -pe 's/^\s+//;' | sort | uniq -c | sort -n):
| 1 | ASCII Java program text |
| 1 | ELF |
| 1 | GIF image data, version 87a, 60 x 60 |
| 1 | GIF image data, version 89a, 60 x 60 |
| 1 | gzip compressed data, was "ArcBall.pm", from Unix, max compression |
| 1 | gzip compressed data, was "Cartography.pm", from Unix, max compression |
| 1 | gzip compressed data, was "Char.pm", from Unix, max compression |
| 1 | gzip compressed data, was "Complex.pm", from Unix, max compression |
| 1 | gzip compressed data, was "Core.pm", from Unix, max compression |
| 1 | gzip compressed data, was "FlexRaw.pm", from Unix, max compression |
| 1 | gzip compressed data, was "Image2D.pm", from Unix, max compression |
| 1 | gzip compressed data, was "Misc.pm", from Unix, max compression |
| 1 | gzip compressed data, was "PP.pm", from Unix, max compression |
| 1 | gzip compressed data, was "Primitive.pm", from Unix, max compression |
| 1 | gzip compressed data, was "Transform.pm", from Unix, max compression |
| 1 | gzip compressed data, was "Window.pm", from Unix, max compression |
| 1 | ISO-8859 C program text |
| 1 | ISO-8859 English text, with CRLF line terminators |
| 3 | data |
| 3 | Perl5 module source text |
| 11 | ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), not stripped |
| 13 | ASCII English text, with CRLF line terminators |
| 20 | ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), stripped |
| 25 | ASCII English text |
In looking through those files (minus those ending in '.so'), all cases I could find of '~~' appeared either in format statements, as delimiters, or in comments.
I do not know if this information is of use, but I hope it will prove helpful. (The list of modules and versions is below.)
Algorithm::Annotate 0.10
Algorithm::BinPack 0.3
Algorithm::Bucketizer 0.10
Algorithm::CheckDigits 0.37
Algorithm::CheckDigits::M07_001 undef
Algorithm::CheckDigits::M09_001 undef
Algorithm::CheckDigits::M10_001 undef
Algorithm::CheckDigits::M10_002 undef
Algorithm::CheckDigits::M10_003 undef
Algorithm::CheckDigits::M10_004 undef
Algorithm::CheckDigits::M10_005 undef
Algorithm::CheckDigits::M10_006 undef
Algorithm::CheckDigits::M10_008 undef
Algorithm::CheckDigits::M10_009 undef
Algorithm::CheckDigits::M10_010 undef
Algorithm::CheckDigits::M10_011 undef
Algorithm::CheckDigits::M11_001 undef
Algorithm::CheckDigits::M11_002 undef
Algorithm::CheckDigits::M11_003 undef
Algorithm::CheckDigits::M11_004 undef
Algorithm::CheckDigits::M11_006 undef
Algorithm::CheckDigits::M11_007 undef
Algorithm::CheckDigits::M11_008 undef
Algorithm::CheckDigits::M11_009 undef
Algorithm::CheckDigits::M11_010 undef
Algorithm::CheckDigits::M11_011 undef
Algorithm::CheckDigits::M11_012 undef
Algorithm::CheckDigits::M11_013 undef
Algorithm::CheckDigits::M11_015 undef
Algorithm::CheckDigits::M11_016 undef
Algorithm::CheckDigits::M16_001 undef
Algorithm::CheckDigits::M23_001 undef
Algorithm::CheckDigits::M23_002 undef
Algorithm::CheckDigits::M43_001 undef
Algorithm::CheckDigits::M89_001 undef
Algorithm::CheckDigits::M97_001 undef
Algorithm::CheckDigits::M97_002 undef
Algorithm::CheckDigits::MBase_001 undef
Algorithm::CheckDigits::MBase_002 undef
Algorithm::CheckDigits::MBase_003 undef
Algorithm::CheckDigits::MXX_001 undef
Algorithm::CheckDigits::MXX_002 undef
Algorithm::CheckDigits::MXX_003 undef
Algorithm::CheckDigits::MXX_004 undef
Algorithm::CheckDigits::MXX_005 undef
Algorithm::ChooseSubsets 0.01
Algorithm::Cluster 1.27
Algorithm::Diff 1.1901
Algorithm::Diff::Apply 0.2.3
Algorithm::DiffOld 1.1
Algorithm::Evolutionary 0.53
Algorithm::Evolutionary::Experiment 1
Algorithm::Evolutionary::Individual::Base 1.14
Algorithm::Evolutionary::Individual::BitString 1.6
Algorithm::Evolutionary::Individual::String 1.6
Algorithm::Evolutionary::Individual::Tree 1.5
Algorithm::Evolutionary::Individual::Vector 1.8
Algorithm::Evolutionary::Op::ArithCrossover 1.2
Algorithm::Evolutionary::Op::Base 1
Algorithm::Evolutionary::Op::Bitflip 1.5
Algorithm::Evolutionary::Op::CX 1.3
Algorithm::Evolutionary::Op::CanonicalGA 1
Algorithm::Evolutionary::Op::ChangeLengthMutation 1.3
Algorithm::Evolutionary::Op::Creator 1
Algorithm::Evolutionary::Op::Crossover 1.7
Algorithm::Evolutionary::Op::DeltaTerm 1
Algorithm::Evolutionary::Op::Easy 1
Algorithm::Evolutionary::Op::FullAlgorithm 1
Algorithm::Evolutionary::Op::GaussianMutation 1.2
Algorithm::Evolutionary::Op::GeneralGeneration 1
Algorithm::Evolutionary::Op::GenerationalTerm 1
Algorithm::Evolutionary::Op::IncMutation 1.4
Algorithm::Evolutionary::Op::Inverover 1.3
Algorithm::Evolutionary::Op::LinearFreezer 1.2
Algorithm::Evolutionary::Op::Mutation 1.3
Algorithm::Evolutionary::Op::NoChangeTerm 1
Algorithm::Evolutionary::Op::Permutation 1.3
Algorithm::Evolutionary::Op::QuadXOver 1.1
Algorithm::Evolutionary::Op::RouletteWheel 1
Algorithm::Evolutionary::Op::SimulatedAnnealing 1
Algorithm::Evolutionary::Op::TournamentSelect 1
Algorithm::Evolutionary::Op::TreeMutation 1.3
Algorithm::Evolutionary::Op::VectorCrossover 1.7
Algorithm::Evolutionary::Wheel 1
Algorithm::Evolve 0.03
Algorithm::Evolve::Util 0.03
Algorithm::FastPermute 0.07
Algorithm::FloodControl 1.00
Algorithm::GDiffDelta 0.01
Algorithm::GenerateSequence 0.02
Algorithm::Graphs::TransitiveClosure 1.3
Algorithm::HITS 0.03
Algorithm::Hamming::Perl 0.05
Algorithm::HowSimilar 0.01
Algorithm::Huffman 0.09
Algorithm::Interval2Prefix 0.02
Algorithm::InversionList 0.03
Algorithm::Knapsack 0.02
Algorithm::LCSS 0.01
Algorithm::LUHN 1.00
Algorithm::Line::Bresenham 0.10
Algorithm::Loops 1.031
Algorithm::MDiff 0.94
Algorithm::MarkovChain 0.06
Algorithm::MarkovChain::Base undef
Algorithm::MarkovChain::GHash 0.01
Algorithm::MedianSelect 0.07
Algorithm::Merge 0.05
Algorithm::Metric::Chessboard 0.01
Algorithm::Metric::Chessboard::Journey undef
Algorithm::Metric::Chessboard::Wormhole undef
Algorithm::MinMax 0.01
Algorithm::Munkres 0.03
Algorithm::NaiveBayes 0.03
Algorithm::NaiveBayes::Model::Discrete undef
Algorithm::NaiveBayes::Model::Frequency undef
Algorithm::NaiveBayes::Model::Gaussian undef
Algorithm::NaiveBayes::Util undef
Algorithm::Networksort 1.05
Algorithm::PageRank 0.08
Algorithm::Permute 0.06
Algorithm::Points::MinimumDistance 0.01
Algorithm::QuadTree 0.1
Algorithm::SISort 0.14
Algorithm::SetCovering 0.05
Algorithm::SkipList 1.02
Algorithm::SkipList::Header 1.02
Algorithm::SkipList::Node 1.02
Algorithm::SkipList::PurePerl 1.00
Algorithm::Verhoeff 0.3
AnyDBM_File 1.00
Apache 1.27
Apache::AxKit::Language::YPathScript 1.1
Apache::Connection 1.00
Apache::Constants 1.09
Apache::Constants::Exports undef
Apache::Debug 1.61
Apache::ExtUtils 1.04
Apache::FakeRequest 1.00
Apache::FakeSSI undef
Apache::File 1.01
Apache::Filter 1.022
Apache::Include 1.00
Apache::Leak 1.00
Apache::Log 1.01
Apache::ModuleConfig 0.01
Apache::Opcode undef
Apache::Options 1.61
Apache::PerlRun undef
Apache::PerlRunFilter undef
Apache::PerlRunXS 0.03
Apache::PerlSections 1.61
Apache::RedirectLogFix undef
Apache::Registry 2.01
Apache::RegistryBB undef
Apache::RegistryFilter undef
Apache::RegistryLoader 1.91
Apache::RegistryNG 1.00
Apache::Resource 1.71
Apache::SIG 1.91
Apache::SOAP 0.55
Apache::SSI 2.17
Apache::Server 1.01
Apache::Session 1.54
Apache::Session::DB_File 1.01
Apache::Session::File 1.54
Apache::Session::Flex 1.01
Apache::Session::Generate::MD5 2.1
Apache::Session::Generate::ModUniqueId 0.01
Apache::Session::Generate::ModUsertrack 0.01
Apache::Session::Lock::File 1.01
Apache::Session::Lock::MySQL 1.00
Apache::Session::Lock::Null 1.01
Apache::Session::Lock::Semaphore 1.01
Apache::Session::MySQL 1.01
Apache::Session::Oracle 1.01
Apache::Session::Postgres 1.01
Apache::Session::Serialize::Base64 1.00
Apache::Session::Serialize::Storable 1.00
Apache::Session::Serialize::Sybase 1.00
Apache::Session::Serialize::UUEncode 1.00
Apache::Session::Store::DBI 1.01
Apache::Session::Store::DB_File 1.00
Apache::Session::Store::File 1.01
Apache::Session::Store::MySQL 1.03
Apache::Session::Store::Oracle 1.01
Apache::Session::Store::Postgres 1.03
Apache::Session::Store::Sybase 1.00
Apache::Session::Sybase 1.00
Apache::SizeLimit 0.03
Apache::StatINC 1.07
Apache::Status 2.03
Apache::Symbol 1.31
Apache::Symdump undef
Apache::Table 0.01
Apache::Test 1.06
Apache::Test5005compat 0.01
Apache::TestBuild undef
Apache::TestClient undef
Apache::TestCommon undef
Apache::TestCommonPost undef
Apache::TestConfig 1.29
Apache::TestConfigC undef
Apache::TestHandler undef
Apache::TestHarness undef
Apache::TestMM undef
Apache::TestReport undef
Apache::TestReportPerl undef
Apache::TestRequest undef
Apache::TestRun undef
Apache::TestRunPerl undef
Apache::TestSSLCA undef
Apache::TestServer undef
Apache::TestSmoke undef
Apache::TestSmokePerl undef
Apache::TestSort undef
Apache::TestTrace 0.01
Apache::TestUtil 0.01
Apache::URI 1.00
Apache::Util 1.02
Apache::XMLRPC::Lite 0.55
Apache::httpd_conf 0.01
Apache::src 0.01
Apache::testold 0.01
AppConfig 1.56
AppConfig::Args 1.60
AppConfig::CGI 1.60
AppConfig::File 1.62
AppConfig::Getopt 1.60
AppConfig::State 1.61
AppConfig::Sys 1.61
Archive::Tar 1.09
Archive::Tar::Constant 0.01
Archive::Tar::File 0.01
Archive::TarGzip 0.03
Archive::Zip 1.14
Archive::Zip::BufferedFileHandle undef
Archive::Zip::MemberRead undef
Archive::Zip::MockFileHandle undef
Array::Compare 1.09
Array::RefElem 0.02
Astro::FITS::Header 1.26
Astro::FITS::Header::CFITSIO 1.9
Astro::FITS::Header::GSD 0.01
Astro::FITS::Header::Item 1.18
Astro::FITS::Header::NDF 0.03
Attribute::Handlers 0.78
Attribute::Params::Validate 1.07
Authen::PAM 0.14
Authen::SASL 2.04
Authen::SASL::CRAM_MD5 0.99
Authen::SASL::EXTERNAL 0.99
Authen::SASL::Perl 1.01
Authen::SASL::Perl::ANONYMOUS 1.00
Authen::SASL::Perl::CRAM_MD5 1.00
Authen::SASL::Perl::DIGEST_MD5 1.00
Authen::SASL::Perl::EXTERNAL 1.00
Authen::SASL::Perl::LOGIN 1.01
Authen::SASL::Perl::PLAIN 1.00
Authen::Smb 0.91
AutoLoader 5.60
AutoSplit 1.04
B 1.02
B::Asmdata 1.01
B::Assembler 0.06
B::Bblock 1.02
B::Bytecode 1.01
B::C 1.02
B::CC 1.00
B::Concise 0.56
B::Debug 1.01
B::Deparse 0.64
B::Disassembler 1.03
B::Lint 1.02
B::Module::Info 0.24
B::Showlex 1.00
B::Stackobj 1.00
B::Stash 1.00
B::Terse 1.02
B::Utils 0.04_01
B::Xref 1.01
BSD::Resource 1.22
Benchmark 1.052
Bit::Vector 6.3
Bit::Vector::Overload 6.3
Business::ISBN 1.77
Business::ISBN::Data 1.08
ByteLoader 0.05
CGI 3.00
CGI::Carp 1.26
CGI::Cookie 1.24
CGI::Fast 1.04
CGI::Pretty 1.07_00
CGI::Push 1.04
CGI::Util 1.3
CPAN 1.76_01
CPAN::FirstTime 1.60
CPAN::Mini 0.24
CPAN::Nox 1.03
Cache 2.01
Cache::BaseCache undef
Cache::BaseCacheTester undef
Cache::Cache 1.02
Cache::CacheMetaData undef
Cache::CacheSizer undef
Cache::CacheTester undef
Cache::CacheUtils undef
Cache::Entry 2.00
Cache::File 2.01
Cache::File::Entry 2.00
Cache::File::Handle undef
Cache::File::Heap 2.00
Cache::FileBackend undef
Cache::FileCache undef
Cache::IOString undef
Cache::Memory 2.01
Cache::Memory::Entry 2.00
Cache::Memory::HeapElem undef
Cache::MemoryBackend undef
Cache::MemoryCache undef
Cache::Null 2.00
Cache::Null::Entry 2.00
Cache::NullCache undef
Cache::Object undef
Cache::RemovalStrategy 2.00
Cache::RemovalStrategy::FIFO undef
Cache::RemovalStrategy::LRU undef
Cache::SharedMemoryBackend undef
Cache::SharedMemoryCache undef
Cache::SizeAwareCache undef
Cache::SizeAwareCacheTester undef
Cache::SizeAwareFileCache undef
Cache::SizeAwareMemoryCache undef
Cache::SizeAwareSharedMemoryCache undef
Cache::Tester 2.00
Carp 1.01
Carp::Clan 5.1
Class::Accessor 0.19
Class::Accessor::Chained 0.01
Class::Accessor::Chained::Fast undef
Class::Accessor::Fast 0.19
Class::Accessor::Lvalue 0.11
Class::Accessor::Lvalue::Fast undef
Class::Base 0.03
Class::DBI 0.96
Class::DBI::Column undef
Class::DBI::ColumnGrouper undef
Class::DBI::DATA::Schema 0.04
Class::DBI::Iterator undef
Class::DBI::Query undef
Class::DBI::Relationship undef
Class::DBI::Relationship::HasA undef
Class::DBI::Relationship::HasMany undef
Class::DBI::Relationship::MightHave undef
Class::Data::Inheritable 0.02
Class::Factory::Util 1.6
Class::ISA 0.32
Class::Loader 2.02
Class::LoaderTest undef
Class::MethodMaker 2.04
Class::MethodMaker::Constants undef
Class::MethodMaker::Engine 2.04
Class::MethodMaker::OptExt undef
Class::MethodMaker::V1Compat undef
Class::Singleton 1.03
Class::Struct 0.63
Class::Trigger 0.08
Class::WhiteHole 0.04
Compress::LZF 1.0
Compress::Zlib 1.32
Config undef
Config::General 2.27
Config::General::Extended 2.00
Config::General::Interpolated 2.04
Convert::ASCII::Armor undef
Convert::ASCII::Armour 1.4
Convert::ASN1 0.16
Convert::ASN1::parser undef
Convert::BER 1.31
Convert::PEM 0.06
Convert::PEM::CBC undef
Convert::PEM::ErrorHandler undef
Crypt::Anubis 1.0.4
Crypt::Blowfish 2.09
Crypt::Blowfish_PP 1.12
Crypt::CAST5 0.04
Crypt::CAST5_PP 1.02
Crypt::CBC 2.12
Crypt::CBCeasy 0.24
Crypt::CFB 0.01
Crypt::Caesar 0.01
Crypt::Cipher 0.03
Crypt::CipherSaber 0.61
Crypt::Cracklib 0.01
Crypt::Ctr 0.01
Crypt::DES 2.03
Crypt::DES_EDE3 0.01
Crypt::DES_EEE3 0.01
Crypt::DES_PP 1.00
Crypt::DH 0.03
Crypt::DSA 0.12
Crypt::DSA::Key undef
Crypt::DSA::Key::PEM undef
Crypt::DSA::Key::SSH2 undef
Crypt::DSA::KeyChain undef
Crypt::DSA::Signature undef
Crypt::DSA::Util undef
Crypt::Discordian 0.01
Crypt::ECB 1.40
Crypt::Enigma 1.3
Crypt::GOST 1.00
Crypt::GOST_PP 1.10
Crypt::GPG 1.52
Crypt::GeneratePassword 0.03
Crypt::HCE_MD5 0.70
Crypt::HCE_SHA 0.70
Crypt::IDEA undef
Crypt::Imail 0.01
Crypt::Keys 0.06
Crypt::Keys::Buffer undef
Crypt::Keys::ErrorHandler undef
Crypt::Keys::Private::DSA::PEM undef
Crypt::Keys::Private::DSA::SSH2 undef
Crypt::Keys::Private::RSA::PEM undef
Crypt::Keys::Private::RSA::SSH1 undef
Crypt::Keys::Public::DSA::OpenSSH undef
Crypt::Keys::Public::RSA::OpenSSH undef
Crypt::Keys::Public::RSA::SSH1 undef
Crypt::Keys::Util undef
Crypt::Khazad 1.0.3
Crypt::Loki97 1.0.1
Crypt::MatrixSSL 0.04
Crypt::Memfrob 1.00
Crypt::Mimetic 0.02
Crypt::Mimetic::CipherSaber 0.01
Crypt::Mimetic::None 0.01
Crypt::Mimetic::TEA 0.01
Crypt::Misty1 1.1.3
Crypt::MySQL 0.02
Crypt::NULL 1.02
Crypt::Noekeon 1.0.2
Crypt::OFB 0.01
Crypt::OOEnigma 0.3
Crypt::OOEnigma::Commercial 0.3
Crypt::OOEnigma::Military 0.3
Crypt::OOEnigma::Plugboard 0.3
Crypt::OOEnigma::Reflector 0.3
Crypt::OOEnigma::Rotor 0.3
Crypt::OTP 2.00
Crypt::OpenPGP 1.03
Crypt::OpenPGP::Armour undef
Crypt::OpenPGP::Buffer undef
Crypt::OpenPGP::CFB undef
Crypt::OpenPGP::Certificate undef
Crypt::OpenPGP::Cipher undef
Crypt::OpenPGP::Ciphertext undef
Crypt::OpenPGP::Compressed undef
Crypt::OpenPGP::Config undef
Crypt::OpenPGP::Constants undef
Crypt::OpenPGP::Digest undef
Crypt::OpenPGP::ErrorHandler undef
Crypt::OpenPGP::Key undef
Crypt::OpenPGP::Key::Public undef
Crypt::OpenPGP::Key::Public::DSA undef
Crypt::OpenPGP::Key::Public::ElGamal undef
Crypt::OpenPGP::Key::Public::RSA undef
Crypt::OpenPGP::Key::Secret undef
Crypt::OpenPGP::Key::Secret::DSA undef
Crypt::OpenPGP::Key::Secret::ElGamal undef
Crypt::OpenPGP::Key::Secret::RSA undef
Crypt::OpenPGP::KeyBlock undef
Crypt::OpenPGP::KeyRing undef
Crypt::OpenPGP::KeyServer undef
Crypt::OpenPGP::MDC undef
Crypt::OpenPGP::Marker undef
Crypt::OpenPGP::Message undef
Crypt::OpenPGP::OnePassSig undef
Crypt::OpenPGP::PacketFactory undef
Crypt::OpenPGP::Plaintext undef
Crypt::OpenPGP::S2k undef
Crypt::OpenPGP::SKSessionKey undef
Crypt::OpenPGP::SessionKey undef
Crypt::OpenPGP::Signature undef
Crypt::OpenPGP::Signature::SubPacket undef
Crypt::OpenPGP::Trust undef
Crypt::OpenPGP::UserID undef
Crypt::OpenPGP::Util undef
Crypt::OpenPGP::Words undef
Crypt::OpenSSL::Bignum 0.03
Crypt::OpenSSL::Bignum::CTX undef
Crypt::OpenSSL::DSA 0.11
Crypt::OpenSSL::PKCS12 0.1
Crypt::OpenSSL::RSA 0.19
Crypt::OpenSSL::Random 0.03
Crypt::OpenSSL::SMIME 0.02
Crypt::OpenSSL::X509 0.3.1
Crypt::PGP2 0.03
Crypt::PGP5 1.38
Crypt::PGPSimple 0.13
Crypt::PPDES undef
Crypt::PassGen 0.04
Crypt::Passwd 0.03
Crypt::PasswdMD5 1.3
Crypt::Primes 0.50
Crypt::RC4 2.02
Crypt::RC5 2.00
Crypt::RC6 1
Crypt::RIPEMD160 0.04
Crypt::RIPEMD160::MAC 0.01
Crypt::RSA 1.55
Crypt::RSA::DataFormat undef
Crypt::RSA::Debug undef
Crypt::RSA::ES::OAEP 1.24
Crypt::RSA::ES::PKCS1v15 1.91
Crypt::RSA::Errorhandler undef
Crypt::RSA::Key 1.91
Crypt::RSA::Key::Private 1.15
Crypt::RSA::Key::Private::SSH undef
Crypt::RSA::Key::Public undef
Crypt::RSA::Key::Public::SSH undef
Crypt::RSA::Primitives undef
Crypt::RSA::SS::PKCS1v15 1.6
Crypt::RSA::SS::PSS 1.5
Crypt::Rabbit 1.0.0
Crypt::Rainbow 1.0.0
Crypt::RandPasswd 0.02
Crypt::Random 1.23
Crypt::Random::Generator undef
Crypt::Random::Provider::File undef
Crypt::Random::Provider::devrandom undef
Crypt::Random::Provider::devurandom undef
Crypt::Random::Provider::egd undef
Crypt::Random::Provider::rand undef
Crypt::Rijndael 0.04
Crypt::Rijndael_PP 0.04
Crypt::SEAL2 1.0.4
Crypt::SKey 0.06
Crypt::SSLeay 0.51
Crypt::SSLeay::CTX undef
Crypt::SSLeay::Conn undef
Crypt::SSLeay::Err undef
Crypt::SSLeay::MainContext undef
Crypt::SSLeay::X509 undef
Crypt::Salt 0.01
Crypt::SecurID 0.04
Crypt::Serpent 1.01
Crypt::Shark 1.0.1
Crypt::Simple 0.06
Crypt::Simple::SMIME 0.9
Crypt::Skipjack 1.0.2
Crypt::SmbHash 0.12
Crypt::Solitaire 2.0
Crypt::Square 1.0.0
Crypt::TC18 1.0.0
Crypt::Tea 2.09
Crypt::Tea_JS 2.11
Crypt::TripleDES 0.24
Crypt::Twofish 2.12
Crypt::Twofish2 1.0
Crypt::Twofish_PP 0.17
Crypt::Twofish_PP::Key16 undef
Crypt::Twofish_PP::Key24 undef
Crypt::Twofish_PP::Key32 undef
Crypt::UnixCrypt 1.0
Crypt::UnixCrypt_XS 0.05
Crypt::Vigenere 0.07
Crypt::Wilkins 0.02
Crypt::YAPassGen 0.02
Crypt::securid 0.04
Crypt::xDBM_File 1.01
Curses 1.06
Cwd 2.12
DBD::CSV 0.2002
DBD::ExampleP 11.12
DBD::File 0.2001
DBD::NullP 11.04
DBD::Pg 1.31
DBD::Proxy 0.2004
DBD::SQLite 1.06
DBD::SQLite2 0.33
DBD::Sponge 11.10
DBD::mysql 2.0419
DBI 1.40
DBI::Const::GetInfo::ANSI 1.03
DBI::Const::GetInfo::ODBC 1.03
DBI::Const::GetInfoReturn 1.04
DBI::Const::GetInfoType 1.05
DBI::DBD 11.20
DBI::DBD::Metadata 1.04
DBI::FAQ 0.38
DBI::Profile 1.07
DBI::ProfileData 1.0
DBI::ProfileDumper 1.0
DBI::ProfileDumper::Apache 1.0
DBI::ProxyServer 0.3005
DBIx::Compat undef
DBIx::ContextualFetch 1.01
DBIx::Database undef
DBIx::Recordset 0.24
DBIx::Recordset::DBSeq undef
DBIx::Recordset::FileSeq undef
DBM::Deep 0.94
DB_File 1.806
Data::Buffer 0.04
Data::Denter 0.15
Data::Dump 0.04
Data::Dump::Streamer 1.10
Data::DumpXML 1.05
Data::DumpXML::Parser 1.01
Data::Dumper 2.121
Data::Grove 0.07
Data::Grove::Parent 0.07
Data::Grove::Visitor 0.07
Data::Random 0.05
Data::Random::WordList 0.05
Data::Serializer 0.25
Data::Serializer::Config::General 0.01
Data::Serializer::Cookbook 0.02
Data::Serializer::Data::Denter 0.01
Data::Serializer::Data::Dumper 0.01
Data::Serializer::FreezeThaw 0.01
Data::Serializer::PHP::Serialization 0.01
Data::Serializer::Storable 0.01
Data::Serializer::XML::Dumper 0.01
Data::Serializer::XML::Simple 0.01
Data::Serializer::YAML 0.01
Data::ShowTable undef
Data::Startup 0.08
Date::Calc 5.3
Date::Calc::Object 5.3
Date::Calendar 5.3
Date::Calendar::Profiles 5.3
Date::Calendar::Year 5.3
Date::Format 2.22
Date::Language 1.10
Date::Language::Afar 0.99
Date::Language::Amharic 1.00
Date::Language::Austrian 1.01
Date::Language::Brazilian 1.01
Date::Language::Chinese_GB 1.01
Date::Language::Czech 1.01
Date::Language::Danish 1.01
Date::Language::Dutch 1.02
Date::Language::English 1.01
Date::Language::Finnish 1.01
Date::Language::French 1.04
Date::Language::Gedeo 0.99
Date::Language::German 1.02
Date::Language::Greek 1.00
Date::Language::Italian 1.01
Date::Language::Norwegian 1.01
Date::Language::Oromo 0.99
Date::Language::Sidama 0.99
Date::Language::Somali 0.99
Date::Language::Swedish 1.01
Date::Language::Tigrinya 1.00
Date::Language::TigrinyaEritrean 1.00
Date::Language::TigrinyaEthiopian 1.00
Date::Manip 5.42
Date::Parse 2.27
DateTime 0.2101
DateTime::Duration undef
DateTime::Infinite undef
DateTime::LeapSecond 0.05
DateTime::Locale 0.09
DateTime::Locale::Alias::ISO639_2 undef
DateTime::Locale::Base undef
DateTime::Locale::af undef
DateTime::Locale::af_ZA undef
DateTime::Locale::am undef
DateTime::Locale::am_ET undef
DateTime::Locale::ar undef
DateTime::Locale::ar_IN undef
DateTime::Locale::ar_JO undef
DateTime::Locale::ar_LB undef
DateTime::Locale::ar_QA undef
DateTime::Locale::ar_SA undef
DateTime::Locale::ar_SY undef
DateTime::Locale::ar_TN undef
DateTime::Locale::ar_YE undef
DateTime::Locale::az undef
DateTime::Locale::az_AZ undef
DateTime::Locale::be undef
DateTime::Locale::bg undef
DateTime::Locale::bn undef
DateTime::Locale::bn_IN undef
DateTime::Locale::ca undef
DateTime::Locale::cs undef
DateTime::Locale::da undef
DateTime::Locale::de undef
DateTime::Locale::de_AT undef
DateTime::Locale::de_BE undef
DateTime::Locale::dv undef
DateTime::Locale::dv_MV undef
DateTime::Locale::el undef
DateTime::Locale::en_AU undef
DateTime::Locale::en_BE undef
DateTime::Locale::en_BW undef
DateTime::Locale::en_BZ undef
DateTime::Locale::en_CA undef
DateTime::Locale::en_GB undef
DateTime::Locale::en_HK undef
DateTime::Locale::en_IE undef
DateTime::Locale::en_IN undef
DateTime::Locale::en_MT undef
DateTime::Locale::en_NZ undef
DateTime::Locale::en_PH undef
DateTime::Locale::en_SG undef
DateTime::Locale::en_ZA undef
DateTime::Locale::en_ZW undef
DateTime::Locale::eo undef
DateTime::Locale::es undef
DateTime::Locale::es_AR undef
DateTime::Locale::es_BO undef
DateTime::Locale::es_CL undef
DateTime::Locale::es_CO undef
DateTime::Locale::es_CR undef
DateTime::Locale::es_DO undef
DateTime::Locale::es_EC undef
DateTime::Locale::es_ES undef
DateTime::Locale::es_GT undef
DateTime::Locale::es_HN undef
DateTime::Locale::es_MX undef
DateTime::Locale::es_NI undef
DateTime::Locale::es_PA undef
DateTime::Locale::es_PE undef
DateTime::Locale::es_PR undef
DateTime::Locale::es_PY undef
DateTime::Locale::es_SV undef
DateTime::Locale::es_US undef
DateTime::Locale::es_UY undef
DateTime::Locale::es_VE undef
DateTime::Locale::et undef
DateTime::Locale::eu undef
DateTime::Locale::eu_ES undef
DateTime::Locale::fa undef
DateTime::Locale::fi undef
DateTime::Locale::fo undef
DateTime::Locale::fo_FO undef
DateTime::Locale::fr undef
DateTime::Locale::fr_BE undef
DateTime::Locale::fr_CA undef
DateTime::Locale::fr_CH undef
DateTime::Locale::ga undef
DateTime::Locale::ga_IE undef
DateTime::Locale::gl undef
DateTime::Locale::gl_ES undef
DateTime::Locale::gu undef
DateTime::Locale::gu_IN undef
DateTime::Locale::gv undef
DateTime::Locale::gv_GB undef
DateTime::Locale::he undef
DateTime::Locale::hi undef
DateTime::Locale::hi_IN undef
DateTime::Locale::hr undef
DateTime::Locale::hu undef
DateTime::Locale::hy undef
DateTime::Locale::hy_AM undef
DateTime::Locale::hy_AM_REVISED undef
DateTime::Locale::id undef
DateTime::Locale::id_ID undef
DateTime::Locale::is undef
DateTime::Locale::it undef
DateTime::Locale::it_CH undef
DateTime::Locale::it_IT undef
DateTime::Locale::ja undef
DateTime::Locale::ka undef
DateTime::Locale::ka_GE undef
DateTime::Locale::kk undef
DateTime::Locale::kl undef
DateTime::Locale::kl_GL undef
DateTime::Locale::kn undef
DateTime::Locale::kn_IN undef
DateTime::Locale::ko undef
DateTime::Locale::ko_KR undef
DateTime::Locale::kok undef
DateTime::Locale::kok_IN undef
DateTime::Locale::kw undef
DateTime::Locale::kw_GB undef
DateTime::Locale::ky undef
DateTime::Locale::ky_KG undef
DateTime::Locale::lt undef
DateTime::Locale::lv undef
DateTime::Locale::mk undef
DateTime::Locale::mn undef
DateTime::Locale::mn_MN undef
DateTime::Locale::mr undef
DateTime::Locale::mr_IN undef
DateTime::Locale::ms undef
DateTime::Locale::ms_BN undef
DateTime::Locale::ms_MY undef
DateTime::Locale::mt undef
DateTime::Locale::nb undef
DateTime::Locale::nl undef
DateTime::Locale::nl_BE undef
DateTime::Locale::nn undef
DateTime::Locale::no undef
DateTime::Locale::om undef
DateTime::Locale::om_ET undef
DateTime::Locale::om_KE undef
DateTime::Locale::pa undef
DateTime::Locale::pa_IN undef
DateTime::Locale::pl undef
DateTime::Locale::pt undef
DateTime::Locale::pt_BR undef
DateTime::Locale::ro undef
DateTime::Locale::root undef
DateTime::Locale::ru undef
DateTime::Locale::ru_UA undef
DateTime::Locale::sa undef
DateTime::Locale::sa_IN undef
DateTime::Locale::sh undef
DateTime::Locale::sk undef
DateTime::Locale::sl undef
DateTime::Locale::so undef
DateTime::Locale::so_KE undef
DateTime::Locale::sq undef
DateTime::Locale::sr undef
DateTime::Locale::sv undef
DateTime::Locale::sw undef
DateTime::Locale::syr undef
DateTime::Locale::syr_SY undef
DateTime::Locale::ta undef
DateTime::Locale::ta_IN undef
DateTime::Locale::te undef
DateTime::Locale::te_IN undef
DateTime::Locale::th undef
DateTime::Locale::ti undef
DateTime::Locale::ti_ER undef
DateTime::Locale::ti_ET undef
DateTime::Locale::tr undef
DateTime::Locale::tt undef
DateTime::Locale::tt_RU undef
DateTime::Locale::uk undef
DateTime::Locale::ur undef
DateTime::Locale::ur_PK undef
DateTime::Locale::uz undef
DateTime::Locale::uz_UZ undef
DateTime::Locale::vi undef
DateTime::Locale::zh undef
DateTime::Locale::zh_CN undef
DateTime::Locale::zh_HK undef
DateTime::Locale::zh_MO undef
DateTime::Locale::zh_SG undef
DateTime::Locale::zh_TW undef
DateTime::LocaleCatalog undef
DateTime::TimeZone 0.30
DateTime::TimeZone::Africa::Abidjan undef
DateTime::TimeZone::Africa::Accra undef
DateTime::TimeZone::Africa::Addis_Ababa undef
DateTime::TimeZone::Africa::Algiers undef
DateTime::TimeZone::Africa::Asmera undef
DateTime::TimeZone::Africa::Bamako undef
DateTime::TimeZone::Africa::Bangui undef
DateTime::TimeZone::Africa::Banjul undef
DateTime::TimeZone::Africa::Bissau undef
DateTime::TimeZone::Africa::Blantyre undef
DateTime::TimeZone::Africa::Brazzaville undef
DateTime::TimeZone::Africa::Bujumbura undef
DateTime::TimeZone::Africa::Cairo undef
DateTime::TimeZone::Africa::Casablanca undef
DateTime::TimeZone::Africa::Ceuta undef
DateTime::TimeZone::Africa::Conakry undef
DateTime::TimeZone::Africa::Dakar undef
DateTime::TimeZone::Africa::Dar_es_Salaam undef
DateTime::TimeZone::Africa::Djibouti undef
DateTime::TimeZone::Africa::Douala undef
DateTime::TimeZone::Africa::El_Aaiun undef
DateTime::TimeZone::Africa::Freetown undef
DateTime::TimeZone::Africa::Gaborone undef
DateTime::TimeZone::Africa::Harare undef
DateTime::TimeZone::Africa::Johannesburg undef
DateTime::TimeZone::Africa::Kampala undef
DateTime::TimeZone::Africa::Khartoum undef
DateTime::TimeZone::Africa::Kigali undef
DateTime::TimeZone::Africa::Kinshasa undef
DateTime::TimeZone::Africa::Lagos undef
DateTime::TimeZone::Africa::Libreville undef
DateTime::TimeZone::Africa::Lome undef
DateTime::TimeZone::Africa::Luanda undef
DateTime::TimeZone::Africa::Lubumbashi undef
DateTime::TimeZone::Africa::Lusaka undef
DateTime::TimeZone::Africa::Malabo undef
DateTime::TimeZone::Africa::Maputo undef
DateTime::TimeZone::Africa::Maseru undef
DateTime::TimeZone::Africa::Mbabane undef
DateTime::TimeZone::Africa::Mogadishu undef
DateTime::TimeZone::Africa::Monrovia undef
DateTime::TimeZone::Africa::Nairobi undef
DateTime::TimeZone::Africa::Ndjamena undef
DateTime::TimeZone::Africa::Niamey undef
DateTime::TimeZone::Africa::Nouakchott undef
DateTime::TimeZone::Africa::Ouagadougou undef
DateTime::TimeZone::Africa::Porto_Novo undef
DateTime::TimeZone::Africa::Sao_Tome undef
DateTime::TimeZone::Africa::Timbuktu undef
DateTime::TimeZone::Africa::Tripoli undef
DateTime::TimeZone::Africa::Tunis undef
DateTime::TimeZone::Africa::Windhoek undef
DateTime::TimeZone::America::Adak undef
DateTime::TimeZone::America::Anchorage undef
DateTime::TimeZone::America::Anguilla undef
DateTime::TimeZone::America::Antigua undef
DateTime::TimeZone::America::Araguaina undef
DateTime::TimeZone::America::Argentina::Buenos_Aires undef
DateTime::TimeZone::America::Argentina::Catamarca undef
DateTime::TimeZone::America::Argentina::ComodRivadavia undef
DateTime::TimeZone::America::Argentina::Cordoba undef
DateTime::TimeZone::America::Argentina::Jujuy undef
DateTime::TimeZone::America::Argentina::La_Rioja undef
DateTime::TimeZone::America::Argentina::Mendoza undef
DateTime::TimeZone::America::Argentina::Rio_Gallegos undef
DateTime::TimeZone::America::Argentina::San_Juan undef
DateTime::TimeZone::America::Argentina::Tucuman undef
DateTime::TimeZone::America::Argentina::Ushuaia undef
DateTime::TimeZone::America::Aruba undef
DateTime::TimeZone::America::Asuncion undef
DateTime::TimeZone::America::Bahia undef
DateTime::TimeZone::America::Barbados undef
DateTime::TimeZone::America::Belem undef
DateTime::TimeZone::America::Belize undef
DateTime::TimeZone::America::Boa_Vista undef
DateTime::TimeZone::America::Bogota undef
DateTime::TimeZone::America::Boise undef
DateTime::TimeZone::America::Cambridge_Bay undef
DateTime::TimeZone::America::Campo_Grande undef
DateTime::TimeZone::America::Cancun undef
DateTime::TimeZone::America::Caracas undef
DateTime::TimeZone::America::Cayenne undef
DateTime::TimeZone::America::Cayman undef
DateTime::TimeZone::America::Chicago undef
DateTime::TimeZone::America::Chihuahua undef
DateTime::TimeZone::America::Costa_Rica undef
DateTime::TimeZone::America::Cuiaba undef
DateTime::TimeZone::America::Curacao undef
DateTime::TimeZone::America::Danmarkshavn undef
DateTime::TimeZone::America::Dawson undef
DateTime::TimeZone::America::Dawson_Creek undef
DateTime::TimeZone::America::Denver undef
DateTime::TimeZone::America::Detroit undef
DateTime::TimeZone::America::Dominica undef
DateTime::TimeZone::America::Edmonton undef
DateTime::TimeZone::America::Eirunepe undef
DateTime::TimeZone::America::El_Salvador undef
DateTime::TimeZone::America::Fortaleza undef
DateTime::TimeZone::America::Glace_Bay undef
DateTime::TimeZone::America::Godthab undef
DateTime::TimeZone::America::Goose_Bay undef
DateTime::TimeZone::America::Grand_Turk undef
DateTime::TimeZone::America::Grenada undef
DateTime::TimeZone::America::Guadeloupe undef
DateTime::TimeZone::America::Guatemala undef
DateTime::TimeZone::America::Guayaquil undef
DateTime::TimeZone::America::Guyana undef
DateTime::TimeZone::America::Halifax undef
DateTime::TimeZone::America::Havana undef
DateTime::TimeZone::America::Hermosillo undef
DateTime::TimeZone::America::Indiana::Knox undef
DateTime::TimeZone::America::Indiana::Marengo undef
DateTime::TimeZone::America::Indiana::Vevay undef
DateTime::TimeZone::America::Indianapolis undef
DateTime::TimeZone::America::Inuvik undef
DateTime::TimeZone::America::Iqaluit undef
DateTime::TimeZone::America::Jamaica undef
DateTime::TimeZone::America::Juneau undef
DateTime::TimeZone::America::Kentucky::Monticello undef
DateTime::TimeZone::America::La_Paz undef
DateTime::TimeZone::America::Lima undef
DateTime::TimeZone::America::Los_Angeles undef
DateTime::TimeZone::America::Louisville undef
DateTime::TimeZone::America::Maceio undef
DateTime::TimeZone::America::Managua undef
DateTime::TimeZone::America::Manaus undef
DateTime::TimeZone::America::Martinique undef
DateTime::TimeZone::America::Mazatlan undef
DateTime::TimeZone::America::Menominee undef
DateTime::TimeZone::America::Merida undef
DateTime::TimeZone::America::Mexico_City undef
DateTime::TimeZone::America::Miquelon undef
DateTime::TimeZone::America::Monterrey undef
DateTime::TimeZone::America::Montevideo undef
DateTime::TimeZone::America::Montreal undef
DateTime::TimeZone::America::Montserrat undef
DateTime::TimeZone::America::Nassau undef
DateTime::TimeZone::America::New_York undef
DateTime::TimeZone::America::Nipigon undef
DateTime::TimeZone::America::Nome undef
DateTime::TimeZone::America::Noronha undef
DateTime::TimeZone::America::North_Dakota::Center undef
DateTime::TimeZone::America::Panama undef
DateTime::TimeZone::America::Pangnirtung undef
DateTime::TimeZone::America::Paramaribo undef
DateTime::TimeZone::America::Phoenix undef
DateTime::TimeZone::America::Port_au_Prince undef
DateTime::TimeZone::America::Port_of_Spain undef
DateTime::TimeZone::America::Porto_Velho undef
DateTime::TimeZone::America::Puerto_Rico undef
DateTime::TimeZone::America::Rainy_River undef
DateTime::TimeZone::America::Rankin_Inlet undef
DateTime::TimeZone::America::Recife undef
DateTime::TimeZone::America::Regina undef
DateTime::TimeZone::America::Rio_Branco undef
DateTime::TimeZone::America::Santiago undef
DateTime::TimeZone::America::Santo_Domingo undef
DateTime::TimeZone::America::Sao_Paulo undef
DateTime::TimeZone::America::Scoresbysund undef
DateTime::TimeZone::America::St_Johns undef
DateTime::TimeZone::America::St_Kitts undef
DateTime::TimeZone::America::St_Lucia undef
DateTime::TimeZone::America::St_Thomas undef
DateTime::TimeZone::America::St_Vincent undef
DateTime::TimeZone::America::Swift_Current undef
DateTime::TimeZone::America::Tegucigalpa undef
DateTime::TimeZone::America::Thule undef
DateTime::TimeZone::America::Thunder_Bay undef
DateTime::TimeZone::America::Tijuana undef
DateTime::TimeZone::America::Toronto undef
DateTime::TimeZone::America::Tortola undef
DateTime::TimeZone::America::Vancouver undef
DateTime::TimeZone::America::Whitehorse undef
DateTime::TimeZone::America::Winnipeg undef
DateTime::TimeZone::America::Yakutat undef
DateTime::TimeZone::America::Yellowknife undef
DateTime::TimeZone::Antarctica::Casey undef
DateTime::TimeZone::Antarctica::Davis undef
DateTime::TimeZone::Antarctica::DumontDUrville undef
DateTime::TimeZone::Antarctica::Mawson undef
DateTime::TimeZone::Antarctica::McMurdo undef
DateTime::TimeZone::Antarctica::Palmer undef
DateTime::TimeZone::Antarctica::Rothera undef
DateTime::TimeZone::Antarctica::Syowa undef
DateTime::TimeZone::Antarctica::Vostok undef
DateTime::TimeZone::Asia::Aden undef
DateTime::TimeZone::Asia::Almaty undef
DateTime::TimeZone::Asia::Amman undef
DateTime::TimeZone::Asia::Anadyr undef
DateTime::TimeZone::Asia::Aqtau undef
DateTime::TimeZone::Asia::Aqtobe undef
DateTime::TimeZone::Asia::Ashgabat undef
DateTime::TimeZone::Asia::Baghdad undef
DateTime::TimeZone::Asia::Bahrain undef
DateTime::TimeZone::Asia::Baku undef
DateTime::TimeZone::Asia::Bangkok undef
DateTime::TimeZone::Asia::Beirut undef
DateTime::TimeZone::Asia::Bishkek undef
DateTime::TimeZone::Asia::Brunei undef
DateTime::TimeZone::Asia::Calcutta undef
DateTime::TimeZone::Asia::Choibalsan undef
DateTime::TimeZone::Asia::Chongqing undef
DateTime::TimeZone::Asia::Colombo undef
DateTime::TimeZone::Asia::Damascus undef
DateTime::TimeZone::Asia::Dhaka undef
DateTime::TimeZone::Asia::Dili undef
DateTime::TimeZone::Asia::Dubai undef
DateTime::TimeZone::Asia::Dushanbe undef
DateTime::TimeZone::Asia::Gaza undef
DateTime::TimeZone::Asia::Harbin undef
DateTime::TimeZone::Asia::Hong_Kong undef
DateTime::TimeZone::Asia::Hovd undef
DateTime::TimeZone::Asia::Irkutsk undef
DateTime::TimeZone::Asia::Jakarta undef
DateTime::TimeZone::Asia::Jayapura undef
DateTime::TimeZone::Asia::Jerusalem undef
DateTime::TimeZone::Asia::Kabul undef
DateTime::TimeZone::Asia::Kamchatka undef
DateTime::TimeZone::Asia::Karachi undef
DateTime::TimeZone::Asia::Kashgar undef
DateTime::TimeZone::Asia::Katmandu undef
DateTime::TimeZone::Asia::Krasnoyarsk undef
DateTime::TimeZone::Asia::Kuala_Lumpur undef
DateTime::TimeZone::Asia::Kuching undef
DateTime::TimeZone::Asia::Kuwait undef
DateTime::TimeZone::Asia::Macau undef
DateTime::TimeZone::Asia::Magadan undef
DateTime::TimeZone::Asia::Makassar undef
DateTime::TimeZone::Asia::Manila undef
DateTime::TimeZone::Asia::Muscat undef
DateTime::TimeZone::Asia::Nicosia undef
DateTime::TimeZone::Asia::Novosibirsk undef
DateTime::TimeZone::Asia::Omsk undef
DateTime::TimeZone::Asia::Oral undef
DateTime::TimeZone::Asia::Phnom_Penh undef
DateTime::TimeZone::Asia::Pontianak undef
DateTime::TimeZone::Asia::Pyongyang undef
DateTime::TimeZone::Asia::Qatar undef
DateTime::TimeZone::Asia::Qyzylorda undef
DateTime::TimeZone::Asia::Rangoon undef
DateTime::TimeZone::Asia::Riyadh undef
DateTime::TimeZone::Asia::Saigon undef
DateTime::TimeZone::Asia::Sakhalin undef
DateTime::TimeZone::Asia::Samarkand undef
DateTime::TimeZone::Asia::Seoul undef
DateTime::TimeZone::Asia::Shanghai undef
DateTime::TimeZone::Asia::Singapore undef
DateTime::TimeZone::Asia::Taipei undef
DateTime::TimeZone::Asia::Tashkent undef
DateTime::TimeZone::Asia::Tbilisi undef
DateTime::TimeZone::Asia::Tehran undef
DateTime::TimeZone::Asia::Thimphu undef
DateTime::TimeZone::Asia::Tokyo undef
DateTime::TimeZone::Asia::Ulaanbaatar undef
DateTime::TimeZone::Asia::Urumqi undef
DateTime::TimeZone::Asia::Vientiane undef
DateTime::TimeZone::Asia::Vladivostok undef
DateTime::TimeZone::Asia::Yakutsk undef
DateTime::TimeZone::Asia::Yekaterinburg undef
DateTime::TimeZone::Asia::Yerevan undef
DateTime::TimeZone::Atlantic::Azores undef
DateTime::TimeZone::Atlantic::Bermuda undef
DateTime::TimeZone::Atlantic::Canary undef
DateTime::TimeZone::Atlantic::Cape_Verde undef
DateTime::TimeZone::Atlantic::Faeroe undef
DateTime::TimeZone::Atlantic::Madeira undef
DateTime::TimeZone::Atlantic::Reykjavik undef
DateTime::TimeZone::Atlantic::South_Georgia undef
DateTime::TimeZone::Atlantic::St_Helena undef
DateTime::TimeZone::Atlantic::Stanley undef
DateTime::TimeZone::Australia::Adelaide undef
DateTime::TimeZone::Australia::Brisbane undef
DateTime::TimeZone::Australia::Broken_Hill undef
DateTime::TimeZone::Australia::Darwin undef
DateTime::TimeZone::Australia::Hobart undef
DateTime::TimeZone::Australia::Lindeman undef
DateTime::TimeZone::Australia::Lord_Howe undef
DateTime::TimeZone::Australia::Melbourne undef
DateTime::TimeZone::Australia::Perth undef
DateTime::TimeZone::Australia::Sydney undef
DateTime::TimeZone::Europe::Amsterdam undef
DateTime::TimeZone::Europe::Andorra undef
DateTime::TimeZone::Europe::Athens undef
DateTime::TimeZone::Europe::Belfast undef
DateTime::TimeZone::Europe::Belgrade undef
DateTime::TimeZone::Europe::Berlin undef
DateTime::TimeZone::Europe::Brussels undef
DateTime::TimeZone::Europe::Bucharest undef
DateTime::TimeZone::Europe::Budapest undef
DateTime::TimeZone::Europe::Chisinau undef
DateTime::TimeZone::Europe::Copenhagen undef
DateTime::TimeZone::Europe::Dublin undef
DateTime::TimeZone::Europe::Gibraltar undef
DateTime::TimeZone::Europe::Helsinki undef
DateTime::TimeZone::Europe::Istanbul undef
DateTime::TimeZone::Europe::Kaliningrad undef
DateTime::TimeZone::Europe::Kiev undef
DateTime::TimeZone::Europe::Lisbon undef
DateTime::TimeZone::Europe::London undef
DateTime::TimeZone::Europe::Luxembourg undef
DateTime::TimeZone::Europe::Madrid undef
DateTime::TimeZone::Europe::Malta undef
DateTime::TimeZone::Europe::Minsk undef
DateTime::TimeZone::Europe::Monaco undef
DateTime::TimeZone::Europe::Moscow undef
DateTime::TimeZone::Europe::Oslo undef
DateTime::TimeZone::Europe::Paris undef
DateTime::TimeZone::Europe::Prague undef
DateTime::TimeZone::Europe::Riga undef
DateTime::TimeZone::Europe::Rome undef
DateTime::TimeZone::Europe::Samara undef
DateTime::TimeZone::Europe::Simferopol undef
DateTime::TimeZone::Europe::Sofia undef
DateTime::TimeZone::Europe::Stockholm undef
DateTime::TimeZone::Europe::Tallinn undef
DateTime::TimeZone::Europe::Tirane undef
DateTime::TimeZone::Europe::Uzhgorod undef
DateTime::TimeZone::Europe::Vaduz undef
DateTime::TimeZone::Europe::Vienna undef
DateTime::TimeZone::Europe::Vilnius undef
DateTime::TimeZone::Europe::Warsaw undef
DateTime::TimeZone::Europe::Zaporozhye undef
DateTime::TimeZone::Europe::Zurich undef
DateTime::TimeZone::Floating 0.01
DateTime::TimeZone::Indian::Antananarivo undef
DateTime::TimeZone::Indian::Chagos undef
DateTime::TimeZone::Indian::Christmas undef
DateTime::TimeZone::Indian::Cocos undef
DateTime::TimeZone::Indian::Comoro undef
DateTime::TimeZone::Indian::Kerguelen undef
DateTime::TimeZone::Indian::Mahe undef
DateTime::TimeZone::Indian::Maldives undef
DateTime::TimeZone::Indian::Mauritius undef
DateTime::TimeZone::Indian::Mayotte undef
DateTime::TimeZone::Indian::Reunion undef
DateTime::TimeZone::Local undef
DateTime::TimeZone::OffsetOnly 0.02
DateTime::TimeZone::OlsonDB undef
DateTime::TimeZone::Pacific::Apia undef
DateTime::TimeZone::Pacific::Auckland undef
DateTime::TimeZone::Pacific::Chatham undef
DateTime::TimeZone::Pacific::Easter undef
DateTime::TimeZone::Pacific::Efate undef
DateTime::TimeZone::Pacific::Enderbury undef
DateTime::TimeZone::Pacific::Fakaofo undef
DateTime::TimeZone::Pacific::Fiji undef
DateTime::TimeZone::Pacific::Funafuti undef
DateTime::TimeZone::Pacific::Galapagos undef
DateTime::TimeZone::Pacific::Gambier undef
DateTime::TimeZone::Pacific::Guadalcanal undef
DateTime::TimeZone::Pacific::Guam undef
DateTime::TimeZone::Pacific::Honolulu undef
DateTime::TimeZone::Pacific::Johnston undef
DateTime::TimeZone::Pacific::Kiritimati undef
DateTime::TimeZone::Pacific::Kosrae undef
DateTime::TimeZone::Pacific::Kwajalein undef
DateTime::TimeZone::Pacific::Majuro undef
DateTime::TimeZone::Pacific::Marquesas undef
DateTime::TimeZone::Pacific::Midway undef
DateTime::TimeZone::Pacific::Nauru undef
DateTime::TimeZone::Pacific::Niue undef
DateTime::TimeZone::Pacific::Norfolk undef
DateTime::TimeZone::Pacific::Noumea undef
DateTime::TimeZone::Pacific::Pago_Pago undef
DateTime::TimeZone::Pacific::Palau undef
DateTime::TimeZone::Pacific::Pitcairn undef
DateTime::TimeZone::Pacific::Ponape undef
DateTime::TimeZone::Pacific::Port_Moresby undef
DateTime::TimeZone::Pacific::Rarotonga undef
DateTime::TimeZone::Pacific::Saipan undef
DateTime::TimeZone::Pacific::Tahiti undef
DateTime::TimeZone::Pacific::Tarawa undef
DateTime::TimeZone::Pacific::Tongatapu undef
DateTime::TimeZone::Pacific::Truk undef
DateTime::TimeZone::Pacific::Wake undef
DateTime::TimeZone::Pacific::Wallis undef
DateTime::TimeZone::Pacific::Yap undef
DateTime::TimeZone::UTC 0.01
Devel::Cover 0.52
Devel::Cover::Annotation::Random 0.52
Devel::Cover::Branch 0.52
Devel::Cover::Condition 0.52
Devel::Cover::Condition_and_2 0.52
Devel::Cover::Condition_and_3 0.52
Devel::Cover::Condition_or_2 0.52
Devel::Cover::Condition_or_3 0.52
Devel::Cover::Condition_xor_4 0.52
Devel::Cover::Criterion 0.52
Devel::Cover::DB 0.52
Devel::Cover::DB::File 0.52
Devel::Cover::DB::Structure 0.52
Devel::Cover::Op 0.52
Devel::Cover::Pod 0.52
Devel::Cover::Report::Html 0.52
Devel::Cover::Report::Html_basic 0.52
Devel::Cover::Report::Html_minimal 0.52
Devel::Cover::Report::Html_subtle 0.52
Devel::Cover::Report::Sort 0.52
Devel::Cover::Report::Text 0.52
Devel::Cover::Report::Text2 0.52
Devel::Cover::Statement 0.52
Devel::Cover::Subroutine 0.52
Devel::Cover::Test 0.52
Devel::Cover::Time 0.52
Devel::Cover::Truth_Table 0.52
Devel::Coverage 0.2
Devel::Coverage::Analysis undef
Devel::Coverage::Utils undef
Devel::Cycle 1.02
Devel::DProf 20030813.00
Devel::GraphVizProf 0.8
Devel::PPPort 2.011
Devel::Peek 1.01
Devel::SelfStubber 1.03
Devel::StackTrace 1.11
Devel::Symdump 2.03
Devel::Symdump::Export undef
Devel::ptkdb 1.1091
Digest 1.05
Digest::Adler32 0.03
Digest::BubbleBabble 0.01
Digest::HMAC 1.01
Digest::HMAC_MD5 1.01
Digest::HMAC_SHA1 1.01
Digest::Hashcash 0.02
Digest::MD2 2.02
Digest::MD4 1.5
Digest::MD5 2.33
Digest::MD5::M4p 0.01
Digest::Nilsimsa 0.06
Digest::SHA 5.28
Digest::SHA1 2.04
Digest::SHA::PurePerl 5.28
Digest::base 1.00
DirHandle 1.00
Docs::Site_SVD::Archive_TarGzip 0.03
Docs::Site_SVD::Data_Startup 0.04
Docs::Site_SVD::File_AnySpec 0.06
Docs::Site_SVD::File_Maker 0.05
Docs::Site_SVD::File_Package 0.06
Docs::Site_SVD::File_SmartNL 0.05
Docs::Site_SVD::File_Where 0.05
Docs::Site_SVD::Proc_Command 0.04
Docs::Site_SVD::Text_Column 0.05
Docs::Site_SVD::Text_Replace 0.07
Docs::Site_SVD::Text_Scrub 0.08
Docs::Site_SVD::Tie_Form 0.02
Docs::Site_SVD::Tie_Gzip 0.06
Docs::Site_SVD::Tie_Layers 0.06
Dumpvalue 1.11
DynaLoader 1.04
Email::Abstract 2.0
Email::Abstract::EmailMIME undef
Email::Abstract::EmailSimple undef
Email::Abstract::MIMEEntity undef
Email::Abstract::MailInternet undef
Email::Abstract::MailMessage undef
Email::Address 1.80
Email::Date 1.03
Email::Filter 1.01
Email::Filter::Rules 0.4
Email::Find 0.09
Email::Find::addrspec 0.09
Email::Folder 0.83
Email::Folder::Ezmlm undef
Email::Folder::IMAP 1.02
Email::Folder::IMAPS 1.02
Email::Folder::Maildir undef
Email::Folder::Mbox undef
Email::Folder::Reader undef
Email::FolderType 0.7
Email::FolderType::Local 0.1
Email::FolderType::Net 1.02
Email::FolderType::Register 0.1
Email::LocalDelivery 0.08
Email::LocalDelivery::Ezmlm 0.10
Email::LocalDelivery::Maildir 1.06
Email::LocalDelivery::Mbox 1.07
Email::LocalDelivery::Store 0.01
Email::MIME 1.8
Email::MIME::Attachment::Stripper 1.3
Email::MIME::ContentType 1.0
Email::MIME::Creator 1.3
Email::MIME::Encodings 1.3
Email::MIME::Modifier 1.3
Email::MessageID 1.2
Email::Simple 1.9
Email::Simple::Creator 1.4
Email::Simple::Headers 1.01
Email::Store 0.15
Email::Store::Attachment undef
Email::Store::DBI undef
Email::Store::Date 1.0
Email::Store::Entity undef
Email::Store::Entity::Correlator::List undef
Email::Store::Entity::Correlator::Trivial undef
Email::Store::List undef
Email::Store::Mail undef
Email::Store::NamedEntity 1.3
Email::Store::Summary 1.1
Email::Store::Thread 1.1
Email::Valid 0.15
Email::Valid::Loose 0.04
Encode 1.99
Encode::Alias 1.38
Encode::Byte 1.23
Encode::CJKConstants 1.02
Encode::CN 1.24
Encode::CN::HZ 1.05
Encode::Config 1.07
Encode::EBCDIC 1.21
Encode::Encoder 0.07
Encode::Encoding 1.33
Encode::Guess 1.09
Encode::JP 1.25
Encode::JP::H2Z 1.02
Encode::JP::JIS7 1.12
Encode::KR 1.23
Encode::KR::2022_KR 1.06
Encode::MIME::Header 1.09
Encode::Symbol 1.22
Encode::TW 1.26
Encode::Unicode 1.40
Encode::Unicode::UTF7 0.02
English 1.01
Env 1.00
Errno 1.09_00
Error 0.15
Error::Mimetic 0.02
Event 1.00
Event::MakeMaker undef
Event::Watcher undef
Event::group undef
Event::idle undef
Event::io undef
Event::signal undef
Event::timer undef
Event::type undef
Event::var undef
Expect 1.15
Exporter 5.57
Exporter::Heavy 5.57
Exporter::Lite 0.01
ExtUtils::AutoConf 0.01
ExtUtils::AutoInstall 0.61
ExtUtils::CBuilder 0.09
ExtUtils::CBuilder::Platform::Unix undef
ExtUtils::CBuilder::Platform::VMS undef
ExtUtils::CBuilder::Platform::Windows undef
ExtUtils::CBuilder::Platform::aix undef
ExtUtils::CBuilder::Platform::cygwin undef
ExtUtils::CBuilder::Platform::darwin undef
ExtUtils::CBuilder::Platform::os2 undef
ExtUtils::Command 1.07
ExtUtils::Command::MM 0.03
ExtUtils::Constant 0.14
ExtUtils::Depends 0.104
ExtUtils::DynaGlue 1.10a
ExtUtils::Embed 1.250601
ExtUtils::F77 1.14
ExtUtils::FakeConfig 0.06
ExtUtils::Install 1.32
ExtUtils::Installed 0.08
ExtUtils::Liblist 1.01
ExtUtils::Liblist::Kid 1.3
ExtUtils::MM 0.04
ExtUtils::MM_Any 0.09
ExtUtils::MM_BeOS 1.04
ExtUtils::MM_Cygwin 1.07
ExtUtils::MM_DOS 0.02
ExtUtils::MM_MacOS 1.08
ExtUtils::MM_NW5 2.07
ExtUtils::MM_OS2 1.04
ExtUtils::MM_UWIN 0.02
ExtUtils::MM_Unix 1.45
ExtUtils::MM_VMS 5.71
ExtUtils::MM_Win32 1.10
ExtUtils::MM_Win95 0.03
ExtUtils::MY 0.01
ExtUtils::MakeMaker 6.23
ExtUtils::MakeMaker::Coverage 0.02
ExtUtils::MakeMaker::bytes 0.01
ExtUtils::MakeMaker::vmsish 0.01
ExtUtils::Manifest 1.44
ExtUtils::Mkbootstrap 1.15
ExtUtils::Mksymlists 1.19
ExtUtils::ModuleMaker 0.32
ExtUtils::ModuleMaker::Licenses::Local 0.32
ExtUtils::ModuleMaker::Licenses::Standard 0.32
ExtUtils::ModuleMaker::SecondStyle 0.32
ExtUtils::ModuleMaker::TT 0.73
ExtUtils::Packlist 0.04
ExtUtils::ParseXS 2.08
ExtUtils::PerlPP 0.03
ExtUtils::PkgConfig 1.02
ExtUtils::TBone 1.124
ExtUtils::XSBuilder 0.27
ExtUtils::XSBuilder::C::grammar 0.30
ExtUtils::XSBuilder::CallbackMap undef
ExtUtils::XSBuilder::FunctionMap undef
ExtUtils::XSBuilder::MapUtil undef
ExtUtils::XSBuilder::PODTemplate undef
ExtUtils::XSBuilder::ParseSource 0.03
ExtUtils::XSBuilder::StructureMap undef
ExtUtils::XSBuilder::TypeMap undef
ExtUtils::XSBuilder::WrapXS 0.03
ExtUtils::configPL 1.1
ExtUtils::testlib 1.15
FCGI 0.67
Fatal 1.03
Fcntl 1.05
Festival::Client 1.0
Festival::Client::Async 0.0303
File::AnySpec 1.13
File::Basename 2.72
File::CheckTree 4.3
File::Compare 1.1003
File::Copy 2.07
File::DosGlob 1.00
File::Find 1.06
File::Find::Rule 0.28
File::Find::Rule::CVS 0.01
File::Find::Rule::DIZ 0.03
File::Find::Rule::Digest 0.01
File::Find::Rule::Filesys::Virtual 1.21
File::Find::Rule::ImageSize 0.03
File::Find::Rule::MMagic 0.02
File::Find::Rule::MP3Info 0.01
File::Find::Rule::Permissions 1.2
File::Find::Rule::SAUCE 0.04
File::Find::Rule::TTMETA undef
File::Find::Rule::Type 0.05
File::Find::Rule::WellFormed undef
File::Find::Rule::XPath 0.03
File::Glob 1.02
File::Listing 1.15
File::MMagic 1.22
File::Maker 0.05
File::Modified 0.06
File::NCopy 0.32
File::NFSLock 1.20
File::Package 1.16
File::Path 1.06
File::Path::Expand 1.01
File::SAUCE 0.12
File::Slurp 9999.06
File::Slurp::Tree 1.22
File::SmartNL 1.16
File::Spec 0.87
File::Spec::Cygwin 1.1
File::Spec::Epoc 1.1
File::Spec::Functions 1.3
File::Spec::Mac 1.4
File::Spec::OS2 1.2
File::Spec::Unix 1.5
File::Spec::VMS 1.4
File::Spec::Win32 1.4
File::Tail 0.98
File::Temp 0.14
File::Type 0.22
File::Type::Builder 0.11
File::Where 1.16
File::Which 0.05
File::stat 1.00
FileCache 1.03
FileHandle 2.01
Filesys::Virtual 0.04
Filesys::Virtual::DAAP 0.03
Filesys::Virtual::Plain 0.04
Filesys::Virtual::SSH 0.02
Filter::Simple 0.78
Filter::Util::Call 1.0601
Filter::Util::Exec 1.02
Filter::cpp 1.03
Filter::decrypt 1.04
Filter::exec 1.01
Filter::sh 1.01
Filter::tee 1.02
FindBin 1.44
Font::AFM 1.19
Font::BDF::Reader 0.01
Font::FNT 0.02
Font::FreeType 0.03
Font::FreeType::Face undef
Font::FreeType::Glyph undef
Font::Fret 1.202
Font::Metrics::Courier undef
Font::Metrics::CourierBold undef
Font::Metrics::CourierBoldOblique undef
Font::Metrics::CourierOblique undef
Font::Metrics::Helvetica undef
Font::Metrics::HelveticaBold undef
Font::Metrics::HelveticaBoldOblique undef
Font::Metrics::HelveticaOblique undef
Font::Metrics::TimesBold undef
Font::Metrics::TimesBoldItalic undef
Font::Metrics::TimesItalic undef
Font::Metrics::TimesRoman undef
Font::TFM 0.130
Font::TTF::AATKern undef
Font::TTF::AATutils undef
Font::TTF::Anchor undef
Font::TTF::Bsln undef
Font::TTF::Cmap undef
Font::TTF::Coverage undef
Font::TTF::Cvt_ 0.0001
Font::TTF::Delta undef
Font::TTF::Fdsc undef
Font::TTF::Feat undef
Font::TTF::Fmtx undef
Font::TTF::Font 0.34
Font::TTF::Fpgm 0.0001
Font::TTF::GDEF undef
Font::TTF::GPOS undef
Font::TTF::GSUB undef
Font::TTF::Glyf undef
Font::TTF::Glyph undef
Font::TTF::Hdmx undef
Font::TTF::Head undef
Font::TTF::Hhea undef
Font::TTF::Hmtx undef
Font::TTF::Kern undef
Font::TTF::Kern::ClassArray undef
Font::TTF::Kern::CompactClassArray undef
Font::TTF::Kern::OrderedList undef
Font::TTF::Kern::StateTable undef
Font::TTF::Kern::Subtable undef
Font::TTF::LTSH undef
Font::TTF::Loca undef
Font::TTF::Maxp undef
Font::TTF::Mort undef
Font::TTF::Mort::Chain undef
Font::TTF::Mort::Contextual undef
Font::TTF::Mort::Insertion undef
Font::TTF::Mort::Ligature undef
Font::TTF::Mort::Noncontextual undef
Font::TTF::Mort::Rearrangement undef
Font::TTF::Mort::Subtable undef
Font::TTF::Name 1.1
Font::TTF::OS_2 undef
Font::TTF::OldCmap undef
Font::TTF::OldMort undef
Font::TTF::PCLT undef
Font::TTF::PSNames undef
Font::TTF::Post 0.01
Font::TTF::Prep 0.0001
Font::TTF::Prop undef
Font::TTF::Segarr 0.0001
Font::TTF::Table 0.0001
Font::TTF::Ttc 0.0001
Font::TTF::Ttopen undef
Font::TTF::Utils 0.0001
Font::TTF::Vhea undef
Font::TTF::Vmtx undef
Font::TTF::Win32 undef
Font::TTF::XMLparse undef
Font::TTFMetrics 0.1
FreezeThaw 0.43
GD 2.07
GD::Graph 1.43
GD::Graph3d 0.63
GD::Graph::Data 1.21
GD::Graph::Error 1.8
GD::Graph::area 1.16
GD::Graph::axestype 1.44
GD::Graph::axestype3d 0.63
GD::Graph::bars 1.25
GD::Graph::bars3d 0.63
GD::Graph::colour 1.10
GD::Graph::cylinder 0.63
GD::Graph::cylinder3d 0.63
GD::Graph::hbars 1.3
GD::Graph::histogram 1
GD::Graph::lines 1.15
GD::Graph::lines3d 0.63
GD::Graph::linespoints 1.8
GD::Graph::mixed 1.12
GD::Graph::pie 1.20
GD::Graph::pie3d 0.63
GD::Graph::points 1.13
GD::Graph::utils 1.7
GD::Polyline 0.1
GD::Text 0.86
GD::Text::Align 1.18
GD::Text::Wrap 1.20
GDBM_File 1.07
Getopt::ArgvFile 1.09
Getopt::Declare 1.11
Getopt::Long 2.34
Getopt::Std 1.05
Gimp 1.211
Gimp::Compat 1.211
Gimp::Data undef
Gimp::Feature 0.7009
Gimp::Fu undef
Gimp::Lib 1.211
Gimp::Module 1.211
Gimp::Net 1.211
Gimp::PDL undef
Gimp::Pod 1.211
Gimp::UI 1.211
Gimp::Util 1.211
Gimp::basewidget 1.211
Glib 1.021
Glib::GenPod undef
Glib::MakeHelper undef
Glib::Object::Subclass undef
Glib::ParseXSDoc 1.00
Gnome 0.7009
Gnome2::Vte 0.02
Gnome::Print 0.7009
Graph 0.20105
Graph::BFS undef
Graph::Base undef
Graph::DFS undef
Graph::Directed undef
Graph::HeapElem 0.01
Graph::Traversal undef
Graph::Undirected undef
GraphViz 2.01
GraphViz::Data::Grapher 0.01
GraphViz::No 0.01
GraphViz::Parse::RecDescent 0.01
GraphViz::Parse::Yacc 0.01
GraphViz::Parse::Yapp 0.01
GraphViz::Regex 0.02
GraphViz::Small 0.01
GraphViz::XML 0.01
Gtk 0.7009
Gtk2 1.023
Gtk2::CodeGen undef
Gtk2::Helper undef
Gtk2::Pango undef
Gtk2::SimpleList 0.14
Gtk2::SimpleMenu 0.5
Gtk2::TrayIcon 0.03
Gtk::Atoms undef
Gtk::CListModel undef
Gtk::ColorSelectButton 0.22
Gtk::GLArea 0.7009
Gtk::GLArea::Constants undef
Gtk::Gdk undef
Gtk::Gdk::ImlibImage 0.7009
Gtk::Gdk::Pixbuf 0.7009
Gtk::GladeXML 0.7009
Gtk::HTML 0.7009
Gtk::HTML::Simple 0.1
Gtk::LWP undef
Gtk::LWP::http undef
Gtk::LogHandler undef
Gtk::Types undef
Gtk::io undef
Gtk::lazy undef
HTML::AsSubs 1.16
HTML::Clean 0.8
HTML::Display 0.02
HTML::Display::Common undef
HTML::Display::Debian 0.02
HTML::Display::Dump 0.02
HTML::Display::Galeon 0.02
HTML::Display::Mozilla 0.02
HTML::Display::OSX 0.02
HTML::Display::OSX::Camino 0.02
HTML::Display::OSX::Safari 0.02
HTML::Display::Opera 0.03
HTML::Display::Phoenix 0.02
HTML::Display::TempFile 0.02
HTML::Display::Win32 0.03
HTML::Display::Win32::IE 0.02
HTML::Display::Win32::OLE 0.02
HTML::Element 3.16
HTML::Element::traverse undef
HTML::Embperl 1.3.6
HTML::Embperl::Mail 1.3.4
HTML::Embperl::Module 0.01_dev-1
HTML::Embperl::Session 1.50
HTML::EmbperlObject 1.3.1
HTML::Entities 1.27
HTML::FillInForm 1.02
HTML::Filter 2.10
HTML::Form 1.038
HTML::HeadParser 2.18
HTML::LinkExtor 1.33
HTML::Parse 2.71
HTML::Parser 3.35
HTML::PullParser 2.07
HTML::SimpleParse 0.12
HTML::Stream 1.55
HTML::Tagset 3.03
HTML::Template 2.7
HTML::Template::Dumper 0.1
HTML::Template::Dumper::Data_Dumper 0.1
HTML::Template::Dumper::Format 0.1
HTML::Template::Dumper::YAML 0.1
HTML::Template::Expr 0.04
HTML::Template::Extension 0.24
HTML::Template::Extension::CSTART 0.24
HTML::Template::Extension::DOC 0.24
HTML::Template::Extension::DO_NOTHING 0.24
HTML::Template::Extension::HEAD_BODY 0.24
HTML::Template::Extension::IF_TERN 0.24
HTML::Template::Extension::ObjBase 0.02
HTML::Template::Extension::SLASH_VAR 0.24
HTML::Template::HashWrapper 1.3
HTML::Template::JIT 0.04
HTML::Template::JIT::Base 0.01
HTML::Template::JIT::Compiler 0.01
HTML::Template::Set 1.009
HTML::Template::XPath 0.10
HTML::TokeParser 2.28
HTML::TokeParser::Simple 2.2
HTML::Tree 3.18
HTML::TreeBuilder 3.13
HTTP::Cookies 1.36
HTTP::Cookies::Microsoft 1.07
HTTP::Cookies::Netscape 1.26
HTTP::Daemon 1.33
HTTP::Date 1.46
HTTP::Headers 1.47
HTTP::Headers::Auth 1.03
HTTP::Headers::ETag 1.04
HTTP::Headers::Util 1.13
HTTP::Message 1.30
HTTP::Negotiate 1.14
HTTP::Proxy 0.13
HTTP::Proxy::BodyFilter undef
HTTP::Proxy::BodyFilter::htmlparser undef
HTTP::Proxy::BodyFilter::htmltext undef
HTTP::Proxy::BodyFilter::lines undef
HTTP::Proxy::BodyFilter::simple undef
HTTP::Proxy::BodyFilter::tags undef
HTTP::Proxy::HeaderFilter undef
HTTP::Proxy::HeaderFilter::simple undef
HTTP::Proxy::HeaderFilter::standard undef
HTTP::Recorder 0.03_01
HTTP::Recorder::Httperf 0.02
HTTP::Recorder::Httperf::Logger 0.01
HTTP::Recorder::Logger undef
HTTP::Request 1.34
HTTP::Request::Common 1.22
HTTP::Response 1.41
HTTP::Status 1.28
Hash::Util 0.05
Heap 0.71
Heap::Binary 0.71
Heap::Binomial 0.71
Heap::Elem 0.71
Heap::Elem::Num 0.71
Heap::Elem::NumRev 0.71
Heap::Elem::Ref 0.71
Heap::Elem::RefRev 0.71
Heap::Elem::Str 0.71
Heap::Elem::StrRev 0.71
Heap::Fibonacci 0.71
Hook::LexWrap 0.20
I18N::Collate 1.00
I18N::LangTags 0.29
I18N::LangTags::List 0.29
I18N::Langinfo 0.02
IO 1.21
IO::AtomicFile 2.101
IO::Capture 0.03
IO::Capture::ErrorMessages undef
IO::Capture::Stderr undef
IO::Capture::Stdout undef
IO::Capture::Tie_STDx undef
IO::Dir 1.04
IO::File 1.10
IO::Handle 1.23
IO::InnerFile 2.102
IO::Lines 2.103
IO::Pipe 1.122
IO::Poll 0.06
IO::Pty 1.02
IO::Scalar 2.105
IO::ScalarArray 2.103
IO::Seekable 1.09
IO::Select 1.16
IO::SessionData 1.02
IO::SessionSet undef
IO::Socket 1.28
IO::Socket::INET 1.27
IO::Socket::SSL 0.96
IO::Socket::UNIX 1.21
IO::String 1.05
IO::Stringy 2.109
IO::Tty 1.02
IO::Wrap 2.102
IO::WrapTie 2.102
IO::Zlib 1.01
IPC::Msg 1.02
IPC::Open2 1.01
IPC::Open3 1.0105
IPC::Run 0.78
IPC::Run3 0.01
IPC::Run3::ProfArrayBuffer 0.0001
IPC::Run3::ProfLogReader 0.0001
IPC::Run3::ProfLogger 0.0001
IPC::Run3::ProfPP 0.0001
IPC::Run3::ProfReporter 0.0001
IPC::Run::Debug undef
IPC::Run::IO undef
IPC::Run::Timer undef
IPC::Run::Win32Helper undef
IPC::Run::Win32IO undef
IPC::Run::Win32Pump undef
IPC::Semaphore 1.02
IPC::ShareLite 0.09
IPC::Signal 1.00
IPC::SysV 1.04
Ima::DBI 0.33
Image::Base 1.07
Image::Info 1.16
Image::Info::BMP 1.01
Image::Info::GIF undef
Image::Info::JPEG undef
Image::Info::PNG undef
Image::Info::PPM undef
Image::Info::SVG 1.02
Image::Info::TIFF undef
Image::Info::XBM 1.04
Image::Info::XPM 1.03
Image::Magick 5.5.7
Image::PBMlib 1.05
Image::Pbm 0.03
Image::Size 2.992
Image::TIFF 1.00
Image::Xbm 1.08
Inline 0.44
Inline::C 0.44
Inline::C::ParseRecDescent undef
Inline::C::ParseRegExp undef
Inline::Foo 0.01
Inline::MakeMaker 0.44
Inline::MakePdlppInstallable undef
Inline::Pdlpp 0.2
Inline::denter undef
LWP 5.76
LWP::Authen::Basic undef
LWP::Authen::Digest undef
LWP::Authen::Ntlm 0.05
LWP::ConnCache 0.01
LWP::Debug undef
LWP::DebugFile undef
LWP::MediaTypes 1.30
LWP::MemberMixin undef
LWP::Protocol 1.41
LWP::Protocol::GHTTP undef
LWP::Protocol::cpan undef
LWP::Protocol::data undef
LWP::Protocol::file undef
LWP::Protocol::ftp undef
LWP::Protocol::gopher undef
LWP::Protocol::http undef
LWP::Protocol::http10 undef
LWP::Protocol::https undef
LWP::Protocol::https10 undef
LWP::Protocol::ldap 1.10
LWP::Protocol::mailto undef
LWP::Protocol::nntp undef
LWP::Protocol::nogo undef
LWP::RobotUA 1.23
LWP::Simple 1.38
LWP::UserAgent 2.024
LWPx::TimedHTTP 1.3
Lingua::EN::Inflect 1.88
Lingua::EN::Inflect::Number 1.1
Lingua::EN::NamedEntity 1.3
Lingua::GL::Stemmer 0.01
Lingua::LA::Stemmer 0.01
Lingua::PT::Stemmer 0.01
Lingua::Stem 0.81
Lingua::Stem::AutoLoader 1.02
Lingua::Stem::Da 1.01
Lingua::Stem::De 1.01
Lingua::Stem::En 2.13
Lingua::Stem::EnBroken 2.13
Lingua::Stem::Fr 0.02
Lingua::Stem::Gl 1.02
Lingua::Stem::It 0.01
Lingua::Stem::No 1.01
Lingua::Stem::Pt 1.01
Lingua::Stem::Ru 0.01
Lingua::Stem::Snowball 0.7
Lingua::Stem::Snowball::Da 1.01
Lingua::Stem::Snowball::No 1
Lingua::Stem::Snowball::Se 1.01
Lingua::Stem::Sv 1.01
List::SkipList 0.74
List::Util 1.13
Locale::Constants 2.01
Locale::Country 2.61
Locale::Currency 2.21
Locale::Language 2.21
Locale::Maketext 1.06
Locale::Maketext::Guts undef
Locale::Maketext::GutsLoader undef
Locale::Messages undef
Locale::Msgcat 1.03
Locale::Recode undef
Locale::Recode::_Aliases undef
Locale::Recode::_Conversions undef
Locale::RecodeData undef
Locale::RecodeData::ASMO_449 undef
Locale::RecodeData::ATARI_ST undef
Locale::RecodeData::ATARI_ST_EURO undef
Locale::RecodeData::CP10007 undef
Locale::RecodeData::CP1250 undef
Locale::RecodeData::CP1251 undef
Locale::RecodeData::CP1252 undef
Locale::RecodeData::CP1253 undef
Locale::RecodeData::CP1254 undef
Locale::RecodeData::CP1256 undef
Locale::RecodeData::CP1257 undef
Locale::RecodeData::CSN_369103 undef
Locale::RecodeData::CWI undef
Locale::RecodeData::DEC_MCS undef
Locale::RecodeData::EBCDIC_AT_DE undef
Locale::RecodeData::EBCDIC_AT_DE_A undef
Locale::RecodeData::EBCDIC_CA_FR undef
Locale::RecodeData::EBCDIC_DK_NO undef
Locale::RecodeData::EBCDIC_DK_NO_A undef
Locale::RecodeData::EBCDIC_ES undef
Locale::RecodeData::EBCDIC_ES_A undef
Locale::RecodeData::EBCDIC_ES_S undef
Locale::RecodeData::EBCDIC_FI_SE undef
Locale::RecodeData::EBCDIC_FI_SE_A undef
Locale::RecodeData::EBCDIC_FR undef
Locale::RecodeData::EBCDIC_IS_FRISS undef
Locale::RecodeData::EBCDIC_IT undef
Locale::RecodeData::EBCDIC_PT undef
Locale::RecodeData::EBCDIC_UK undef
Locale::RecodeData::EBCDIC_US undef
Locale::RecodeData::ECMA_CYRILLIC undef
Locale::RecodeData::GEORGIAN_ACADEMY undef
Locale::RecodeData::GEORGIAN_PS undef
Locale::RecodeData::GOST_19768_74 undef
Locale::RecodeData::GREEK7 undef
Locale::RecodeData::GREEK7_OLD undef
Locale::RecodeData::GREEK_CCITT undef
Locale::RecodeData::HP_ROMAN8 undef
Locale::RecodeData::IBM037 undef
Locale::RecodeData::IBM038 undef
Locale::RecodeData::IBM1004 undef
Locale::RecodeData::IBM1026 undef
Locale::RecodeData::IBM1047 undef
Locale::RecodeData::IBM256 undef
Locale::RecodeData::IBM273 undef
Locale::RecodeData::IBM274 undef
Locale::RecodeData::IBM275 undef
Locale::RecodeData::IBM277 undef
Locale::RecodeData::IBM278 undef
Locale::RecodeData::IBM280 undef
Locale::RecodeData::IBM281 undef
Locale::RecodeData::IBM284 undef
Locale::RecodeData::IBM285 undef
Locale::RecodeData::IBM290 undef
Locale::RecodeData::IBM297 undef
Locale::RecodeData::IBM420 undef
Locale::RecodeData::IBM423 undef
Locale::RecodeData::IBM424 undef
Locale::RecodeData::IBM437 undef
Update: 14 Mar 2005
The listing was too long; therefore, the remainder of the list will be appended as a response to this node.
Re^9: Smart match in p5
by atcroft (Abbot) on Mar 14, 2005 at 15:40 UTC
|
The remainder of the listing, for those who may be interested, is provided below.
| [reply] [d/l] |
Re^9: Smart match in p5
by Juerd (Abbot) on Mar 15, 2005 at 06:53 UTC
|
Thank you very much for doing this research. This saves me some work (downloading a mini CPAN finished only an hour ago).
And thanks for splitting it, because now I can ++ you twice! :)
| [reply] |
Re^9: Smart match in p5
by xmath (Hermit) on Mar 15, 2005 at 10:23 UTC
|
hum, I've downloaded a few of those modules, but I haven't yet found any '~~' in any of them:
xmath@quoose cpan/build$ ls
Algorithm-Annotate-0.10 Algorithm-Evolutionary-0.53
Algorithm-BinPack-0.4 Algorithm-Evolve-0.03
Algorithm-Bucketizer-0.10 Algorithm-FastPermute-0.07
Algorithm-CheckDigits-0.38 Algorithm-FloodControl-1.00
Algorithm-ChooseSubsets-0.01 Algorithm-GDiffDelta-0.01
Algorithm-Cluster-1.28 Algorithm-GenerateSequence-0.02
Algorithm-Diff-1.1901 TransitiveClosure-1.4
Algorithm-Diff-Apply-0.2.3
xmath@quoose cpan/build$ grep -rs '~~' *
xmath@quoose cpan/build$
Am I missing something, or did you do something wrong with the search?
addendum: oh, this is a list of all modules checked? If so, I misunderstood. (a list of modules where you found ~~ would have been more useful to save downloading those which don't :-) | [reply] [d/l] |
|
|