diff -Nru libdate-manip-perl-6.51/Build.PL libdate-manip-perl-6.52/Build.PL --- libdate-manip-perl-6.51/Build.PL 2015-09-01 12:49:41.000000000 +0000 +++ libdate-manip-perl-6.52/Build.PL 1970-01-01 00:00:00.000000000 +0000 @@ -1,87 +0,0 @@ -###################################################################### -# Build.PL for Date::Manip -###################################################################### - -use strict; -use warnings; -use 5.006; -use Module::Build 0.21; - -my %IsWin32 = map { $_ => 1 } qw( MSWin32 NetWare symbian ); -my $IsWin32 = 1 if ($IsWin32{ $^O }); -my $Pvers = $]; -my $ConvVers= $Module::Build::VERSION; - -my %module_prereq = ( - 'perl' => '5.006', - 'Carp' => '0', - 'Cwd' => '0', - 'Data::Dumper' => '0', - 'Encode' => '0', - 'File::Find' => '0', - 'File::Spec' => '0', - 'IO::File' => '0', - 'Storable' => '0', - 'utf8' => '0', -); - -if ($IsWin32 && $Pvers >= 5.020) { - $module_prereq{'Win32::TieRegistry'} = 0.28; -} elsif ($IsWin32) { - $module_prereq{'Win32::TieRegistry'} = 0; -} - -my %script_prereq = ( -); - -my %test_prereq = ( - 'Test::Inter' => '0', - 'Test::More' => '0', -); - -my %config_prereq = ( - 'Module::Build' => '0.21', -); - -my %build_prereq = %config_prereq; -if ($Module::Build::VERSION < 0.4004) { - %build_prereq = (%config_prereq,%test_prereq); -} - -my $class = Module::Build->subclass( - class => "Module::Build::Custom", - code => q { sub ACTION_html { my $self = shift ; $self->SUPER::ACTION_html ( @_ ) if ( $ENV{ MAKE_HTML } ) ; } } -); - -my $build = $class->new( - module_name => "Date::Manip", - dist_version => "6.51", - dist_abstract => "Date manipulation routines", - license => "perl", - dist_author => "Sullivan Beck ", - - requires => \%module_prereq, - ($Module::Build::VERSION >= 0.4004 - ? (test_requires => \%test_prereq) - : ()), - ($Module::Build::VERSION >= 0.30 - ? (configure_requires => \%config_prereq) - : ()), - build_requires => \%build_prereq, - recommends => \%script_prereq, - sign => 1, - - ($Module::Build::VERSION >= 0.28 - ? (meta_merge => { - resources => { - repository => "https://github.com/SBECK-github/Date-Manip", - } - }) - : ()), - script_files => [ - 'examples/dm_date', - 'examples/dm_zdump', - ], -); - -$build->create_build_script; diff -Nru libdate-manip-perl-6.51/debian/changelog libdate-manip-perl-6.52/debian/changelog --- libdate-manip-perl-6.51/debian/changelog 2015-10-17 19:28:27.000000000 +0000 +++ libdate-manip-perl-6.52/debian/changelog 2015-12-02 19:48:48.000000000 +0000 @@ -1,3 +1,10 @@ +libdate-manip-perl (6.52-1) unstable; urgency=medium + + * Import upstream version 6.52. + * Add a spelling patch. + + -- gregor herrmann Wed, 02 Dec 2015 20:48:43 +0100 + libdate-manip-perl (6.51-1) unstable; urgency=medium * Import upstream version 6.51 diff -Nru libdate-manip-perl-6.51/debian/patches/series libdate-manip-perl-6.52/debian/patches/series --- libdate-manip-perl-6.51/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ libdate-manip-perl-6.52/debian/patches/series 2015-12-02 19:48:48.000000000 +0000 @@ -0,0 +1 @@ +spelling.patch diff -Nru libdate-manip-perl-6.51/debian/patches/spelling.patch libdate-manip-perl-6.52/debian/patches/spelling.patch --- libdate-manip-perl-6.51/debian/patches/spelling.patch 1970-01-01 00:00:00.000000000 +0000 +++ libdate-manip-perl-6.52/debian/patches/spelling.patch 2015-12-02 19:48:48.000000000 +0000 @@ -0,0 +1,1030 @@ +Description: spelling fix + s/occurence/occurrence/g +Origin: vendor +Author: gregor herrmann +Last-Update: 2015-12-02 +Forwarded: https://rt.cpan.org/Ticket/Display.html?id=110025 +Bug: https://rt.cpan.org/Ticket/Display.html?id=110025 + +--- a/internal/langpod ++++ b/internal/langpod +@@ -293,7 +293,7 @@ + + ${e}item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -304,10 +304,10 @@ + + $words{each} + +-${e}item B ++${e}item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -319,15 +319,15 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + $words{nextprev}[0] + +-Previous occurence: ++Previous occurrence: + + $words{nextprev}[1] + +-Last occurence: ++Last occurrence: + + $words{last} + +--- a/lib/Date/Manip/Changes5.pod ++++ b/lib/Date/Manip/Changes5.pod +@@ -355,9 +355,9 @@ + week in the week, month, or year. It is now possible to look at the + 3rd Friday of every month for example. + +-Y-0-WOY-DOW now refers to the WOY'th occurence of DOW instead of the ++Y-0-WOY-DOW now refers to the WOY'th occurrence of DOW instead of the + ISO 8601 date Y-W(WOY)-DOY. Also, changed Y-0-WOY-0 to refer to the +-WOY'th occurence of FirstDay, and got rid of the MW and MD flags. Many ++WOY'th occurrence of FirstDay, and got rid of the MW and MD flags. Many + other similar changes. + + =item B<(!) Changed %x format in UnixDate> +@@ -1057,7 +1057,7 @@ + + Fixed a bug in ParseDateDelta. Antonio Rosella. + +-Removed the only occurence of $& (which may speed some things up). Fix ++Removed the only occurrence of $& (which may speed some things up). Fix + by Ken Williams. First suggested by Abigail. + + Fixed an overflow bug in doing date calculations with 2 dates more than +@@ -1503,7 +1503,7 @@ + + Added options to delete existing holidays and ignore global config file. + +-Date_GetNext and Date_GetPrev now return the next/prev occurence of a ++Date_GetNext and Date_GetPrev now return the next/prev occurrence of a + time as well as a day. Suggested by Are Bryne. + + In approximate mode, deltas now come out completely normalized (only 1 +--- a/lib/Date/Manip/Changes5to6.pod ++++ b/lib/Date/Manip/Changes5to6.pod +@@ -609,9 +609,9 @@ + + 1*2:3:4:0:0:0 + +-referred to the 3rd occurence of the 4th day of the week in February. ++referred to the 3rd occurrence of the 4th day of the week in February. + +-The meaning has been changed to refer to the 3rd occurence of day 4 ++The meaning has been changed to refer to the 3rd occurrence of day 4 + (Thursday) in February. This is a much more useful type of recurrence. + + As a result of this change, the related recurrence: +--- a/lib/Date/Manip/DM5.pm ++++ b/lib/Date/Manip/DM5.pm +@@ -4472,7 +4472,7 @@ + $date1=_DateCalc_DateDelta($date0,"+0:1:0:0:0:0:0"); + + foreach $d (@d) { +- # Find 1st occurence of DOW (in both months) ++ # Find 1st occurrence of DOW (in both months) + $d0=Date_GetNext($date0,$d,1); + $d1=Date_GetNext($date1,$d,1); + +--- a/lib/Date/Manip/Date.pod ++++ b/lib/Date/Manip/Date.pod +@@ -498,13 +498,13 @@ + + $err = $date->prev($dow, $curr [,$time]); + +-If $curr = 0, this means to look for the previous occurence of the day ++If $curr = 0, this means to look for the previous occurrence of the day + of week, and set the time to the value passed in (or current time if + no time was passed in). The day is ALWAY less than the current day. If + the current day is the same day of week as $dow, then the date + returned will be one week earlier. + +-If $curr = 1, it means to look for the current or previous occurence ++If $curr = 1, it means to look for the current or previous occurrence + of the day of week, and set the time to the value passed in (or 00:00:00 if + none was passed in). If the current day of week is the same as $dow, the + date will remain unchanged. Since the time is then set, the new date may +@@ -1161,7 +1161,7 @@ + 1970 1st Dec + + next/prev DoW +- The next or last occurence of DoW ++ The next or last occurrence of DoW + next Friday + last Friday at 12:40 + +--- a/lib/Date/Manip/Holidays.pod ++++ b/lib/Date/Manip/Holidays.pod +@@ -59,11 +59,11 @@ + + 2004-12-31 = New Year's Day + +-then it would assume that it had found the occurence of New Year's for +-2004 when in fact, this is the 2005 occurence. ++then it would assume that it had found the occurrence of New Year's for ++2004 when in fact, this is the 2005 occurrence. + + Full date specifications should only be used as a last resort, and +-probably only if you will explicitly specify all occurences of the ++probably only if you will explicitly specify all occurrences of the + holiday. + + =item B +--- a/lib/Date/Manip/Lang/catalan.pod ++++ b/lib/Date/Manip/Lang/catalan.pod +@@ -252,7 +252,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -266,10 +266,10 @@ + cadascun + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -281,21 +281,21 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + proper + seguent + següent + + +-Previous occurence: ++Previous occurrence: + + passat + proppassat + anterior + + +-Last occurence: ++Last occurrence: + + darrer + darrera +--- a/lib/Date/Manip/Lang/danish.pod ++++ b/lib/Date/Manip/Lang/danish.pod +@@ -206,7 +206,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -218,10 +218,10 @@ + hver + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -233,18 +233,18 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + naste + næste + + +-Previous occurence: ++Previous occurrence: + + forrige + + +-Last occurence: ++Last occurrence: + + forrige + sidste +--- a/lib/Date/Manip/Lang/dutch.pod ++++ b/lib/Date/Manip/Lang/dutch.pod +@@ -219,7 +219,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -232,10 +232,10 @@ + elk + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -247,20 +247,20 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + volgende + volgend + + +-Previous occurence: ++Previous occurrence: + + voorgaande + voorgaand + vorige + + +-Last occurence: ++Last occurrence: + + laatste + afgelopen +--- a/lib/Date/Manip/Lang/english.pod ++++ b/lib/Date/Manip/Lang/english.pod +@@ -234,7 +234,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -247,10 +247,10 @@ + every + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -262,19 +262,19 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + next + following + + +-Previous occurence: ++Previous occurrence: + + previous + last + + +-Last occurence: ++Last occurrence: + + last + final +--- a/lib/Date/Manip/Lang/finnish.pod ++++ b/lib/Date/Manip/Lang/finnish.pod +@@ -240,7 +240,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -253,10 +253,10 @@ + jokainen + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -268,17 +268,17 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + ensi + + +-Previous occurence: ++Previous occurrence: + + viime + + +-Last occurence: ++Last occurrence: + + viimeinen + +--- a/lib/Date/Manip/Lang/french.pod ++++ b/lib/Date/Manip/Lang/french.pod +@@ -229,7 +229,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -243,10 +243,10 @@ + toutes les + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -258,7 +258,7 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + suivant + suivante +@@ -266,7 +266,7 @@ + prochaine + + +-Previous occurence: ++Previous occurrence: + + precedent + précédent +@@ -276,7 +276,7 @@ + dernière + + +-Last occurence: ++Last occurrence: + + dernier + +--- a/lib/Date/Manip/Lang/german.pod ++++ b/lib/Date/Manip/Lang/german.pod +@@ -215,7 +215,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -227,10 +227,10 @@ + jeden + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -242,7 +242,7 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + nachsten + nächsten +@@ -250,7 +250,7 @@ + nächste + + +-Previous occurence: ++Previous occurrence: + + vorherigen + vorherige +@@ -258,7 +258,7 @@ + letzten + + +-Last occurence: ++Last occurrence: + + letzten + letzte +--- a/lib/Date/Manip/Lang/italian.pod ++++ b/lib/Date/Manip/Lang/italian.pod +@@ -204,7 +204,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -216,10 +216,10 @@ + ogni + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -231,17 +231,17 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + prossimo + + +-Previous occurence: ++Previous occurrence: + + ultimo + + +-Last occurence: ++Last occurrence: + + ultimo + +--- a/lib/Date/Manip/Lang/norwegian.pod ++++ b/lib/Date/Manip/Lang/norwegian.pod +@@ -207,7 +207,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -219,10 +219,10 @@ + hver + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -234,17 +234,17 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + neste + + +-Previous occurence: ++Previous occurrence: + + forrige + + +-Last occurence: ++Last occurrence: + + siste + +--- a/lib/Date/Manip/Lang/polish.pod ++++ b/lib/Date/Manip/Lang/polish.pod +@@ -239,7 +239,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -254,10 +254,10 @@ + każdym + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -269,7 +269,7 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + nastepny + następny +@@ -281,7 +281,7 @@ + przyszłym + + +-Previous occurence: ++Previous occurrence: + + zeszly + zeszły +@@ -289,7 +289,7 @@ + zeszłym + + +-Last occurence: ++Last occurrence: + + ostatni + ostatna +--- a/lib/Date/Manip/Lang/portugue.pod ++++ b/lib/Date/Manip/Lang/portugue.pod +@@ -215,7 +215,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -227,10 +227,10 @@ + cada + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -242,7 +242,7 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + proxima + próxima +@@ -250,7 +250,7 @@ + próximo + + +-Previous occurence: ++Previous occurrence: + + ultima + última +@@ -258,7 +258,7 @@ + último + + +-Last occurence: ++Last occurrence: + + ultimo + último +--- a/lib/Date/Manip/Lang/romanian.pod ++++ b/lib/Date/Manip/Lang/romanian.pod +@@ -208,7 +208,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -220,10 +220,10 @@ + fiecare + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -235,19 +235,19 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + urmatoarea + următoarea + + +-Previous occurence: ++Previous occurrence: + + precedenta + ultima + + +-Last occurence: ++Last occurrence: + + ultima + +--- a/lib/Date/Manip/Lang/russian.pod ++++ b/lib/Date/Manip/Lang/russian.pod +@@ -262,7 +262,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -274,10 +274,10 @@ + каждый + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -289,17 +289,17 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + следующий + + +-Previous occurence: ++Previous occurrence: + + предыдущий + + +-Last occurence: ++Last occurrence: + + последний + +--- a/lib/Date/Manip/Lang/spanish.pod ++++ b/lib/Date/Manip/Lang/spanish.pod +@@ -209,7 +209,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -221,10 +221,10 @@ + cada + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -236,17 +236,17 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + siguiente + + +-Previous occurence: ++Previous occurrence: + + anterior + + +-Last occurence: ++Last occurrence: + + ultimo + último +--- a/lib/Date/Manip/Lang/swedish.pod ++++ b/lib/Date/Manip/Lang/swedish.pod +@@ -206,7 +206,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -218,10 +218,10 @@ + varje + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -233,19 +233,19 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + nasta + nästa + + +-Previous occurence: ++Previous occurrence: + + forra + förra + + +-Last occurence: ++Last occurrence: + + forra + förra +--- a/lib/Date/Manip/Lang/turkish.pod ++++ b/lib/Date/Manip/Lang/turkish.pod +@@ -206,7 +206,7 @@ + + =item B + +-There are a list of words that specify every occurence of something. These ++There are a list of words that specify every occurrence of something. These + are used in the following phrases: + + EACH Monday +@@ -218,10 +218,10 @@ + her + + +-=item B ++=item B + + There are a list of words that may be used to specify the next, +-previous, or last occurence of something. These words could be used ++previous, or last occurrence of something. These words could be used + in the following phrases: + + NEXT week +@@ -233,19 +233,19 @@ + + The following words may be used: + +-Next occurence: ++Next occurrence: + + gelecek + sonraki + + +-Previous occurence: ++Previous occurrence: + + onceki + önceki + + +-Last occurence: ++Last occurrence: + + son + sonuncu +--- a/lib/Date/Manip/Recur.pm ++++ b/lib/Date/Manip/Recur.pm +@@ -1346,10 +1346,10 @@ + + # *1:2:3:4 in Feb 0001 on the 3rd Thur of the month + # *0:2:3:4 on the 3rd Thur of Feb in the curr year +- # *1:2:3:0 the 3rd occurence of FirstDay in Feb 0001 +- # *0:2:3:0 the 3rd occurence of FirstDay in Feb of curr year ++ # *1:2:3:0 the 3rd occurrence of FirstDay in Feb 0001 ++ # *0:2:3:0 the 3rd occurrence of FirstDay in Feb of curr year + # 1*2:3:4 every year in Feb on the 3rd Thur +- # 1*2:3:0 every year on the 3rd occurence of FirstDay in Feb ++ # 1*2:3:0 every year on the 3rd occurrence of FirstDay in Feb + + ($err,@m) = $self->_rtime_values('m',$mf); + return () if ($err); +@@ -1400,9 +1400,9 @@ + + } else { + +- # 0:2*3:0 every 2 months on the 3rd occurence of FirstDay ++ # 0:2*3:0 every 2 months on the 3rd occurrence of FirstDay + # 0:2*3:4 every 2 months on the 3rd Thur of the month +- # 1:2*3:0 every 1 year, 2 months on 3rd occurence of FirstDay ++ # 1:2*3:0 every 1 year, 2 months on 3rd occurrence of FirstDay + # 1:2*3:4 every 1 year, 2 months on the 3rd Thur of the month + + if ($d_empty) { +@@ -2173,7 +2173,7 @@ + } elsif ($type eq 'dow_of_year') { + my($y,$dow) = @args; + +- # Get the 1st occurence of $dow ++ # Get the 1st occurrence of $dow + my $d0 = 1; + my $dow0 = $dmb->day_of_week([$y,1,$d0]); + if ($dow > $dow0) { +@@ -2201,7 +2201,7 @@ + } elsif ($type eq 'dow_of_month') { + my($y,$m,$dow) = @args; + +- # Get the 1st occurence of $dow in the month ++ # Get the 1st occurrence of $dow in the month + my $d0 = 1; + my $dow0 = $dmb->day_of_week([$y,$m,$d0]); + if ($dow > $dow0) { +--- a/lib/Date/Manip/Recur.pod ++++ b/lib/Date/Manip/Recur.pod +@@ -121,7 +121,7 @@ + to by the base date being the 0th occurrence, the first one after that + as the 1st occurrence, etc. Recurring events can also occur before + the base date with the last time the recurring event occurred before +-the base date is the -1th occurence. ++the base date is the -1th occurrence. + + So, if the frequency is + +@@ -372,7 +372,7 @@ + 0:0:0*x:x:x:x + 0:0:1*x:x:x:x + +-and can be thought of as every possible occurence of the rtime. ++and can be thought of as every possible occurrence of the rtime. + + NOTE: When applying a frequency to get a list of dates on which a + recurring event occurs, a delta is created from the frequency which is +@@ -781,7 +781,7 @@ + current year + + When the week is right of the asterisk, and the month is zero, the +-recurrence refers to an occurence of the day-of-week during the ++recurrence refers to an occurrence of the day-of-week during the + year. The following are possible: + + frequency meaning +@@ -866,27 +866,27 @@ + frequency meaning + + 1:2*3:0 every 1 year, 2 months on the 3rd +- occurence of FirstDay ++ occurrence of FirstDay + +- 0:2*3:0 every 2 months on the 3rd occurence ++ 0:2*3:0 every 2 months on the 3rd occurrence + of FirstDay + +- 1*2:3:0 every year on the 3rd occurence ++ 1*2:3:0 every year on the 3rd occurrence + of FirstDay in Feb + + 0*2:3:0 same as 1*2:3:0 + +- *1:2:3:0 the 3rd occurence of FirstDay ++ *1:2:3:0 the 3rd occurrence of FirstDay + Feb 0001 + +- *0:2:3:0 the 3rd occurence of FirstDay ++ *0:2:3:0 the 3rd occurrence of FirstDay + in Feb of the current year + + NOTE: in the last group, a slightly more intuitive definition of these + would have been to say that the week field refers to the week of the + month, but given the ISO 8601 manner of defining when weeks start, + this definition would have virtually no practical application. So the +-definition of the week field referring to the Nth occurence of ++definition of the week field referring to the Nth occurrence of + FirstDay in a month was used instead. + + There are a few special cases here: +@@ -894,7 +894,7 @@ + frequency meaning + + 0:0*3:0 same as 0:1*3:0 (every month on the 3rd +- occurence of the first day of week) ++ occurrence of the first day of week) + + 0*0:3:0 same as 1*0:3:0 + diff -Nru libdate-manip-perl-6.51/internal/data.abbrev.pl libdate-manip-perl-6.52/internal/data.abbrev.pl --- libdate-manip-perl-6.51/internal/data.abbrev.pl 2015-09-01 12:33:23.000000000 +0000 +++ libdate-manip-perl-6.52/internal/data.abbrev.pl 2015-11-25 16:48:20.000000000 +0000 @@ -83,7 +83,7 @@ 'America/Nome' ,1984,9999, 'America/Yakutat' ,1984,9999, 'America/Sitka' ,1984,9999, - 'America/Anchorage' ,1984,2037, + 'America/Anchorage' ,1984,9999, ], 'AKST' => [ 'America/Anchorage' ,1983,9999, @@ -1356,6 +1356,7 @@ 'America/Tijuana' ,1922,1930, 'Europe/Moscow' ,1917,1919, 'America/North_Dakota/Beulah' ,1883,2010, + 'America/Fort_Nelson' ,2015,9999, ], 'MUST' => [ 'Indian/Mauritius' ,1982,2009, @@ -1408,6 +1409,9 @@ 'NET' => [ 'Europe/Amsterdam' ,1937,1940, ], + 'NFST' => [ + 'Pacific/Norfolk' ,1974,1975, + ], 'NFT' => [ 'Pacific/Norfolk' ,1950,9999, ], @@ -1491,6 +1495,7 @@ 'America/Boise' ,1918,1919, 'America/Metlakatla' ,1969,1983, 'America/Sitka' ,1969,1983, + 'America/Fort_Nelson' ,1918,2014, ], 'PEST' => [ 'America/Lima' ,1938,1994, @@ -1565,6 +1570,7 @@ 'America/Vancouver' ,1945,1945, 'America/Metlakatla' ,1945,1945, 'America/Sitka' ,1945,1945, + 'America/Fort_Nelson' ,1945,1945, ], 'PST' => [ 'America/Los_Angeles' ,1883,9999, @@ -1584,6 +1590,7 @@ 'America/Metlakatla' ,1900,9999, 'America/Sitka' ,1900,1983, 'America/Creston' ,1916,1918, + 'America/Fort_Nelson' ,1884,2015, ], 'PWT' => [ 'Pacific/Palau' ,1900,9999, @@ -1595,6 +1602,7 @@ 'America/Vancouver' ,1942,1945, 'America/Metlakatla' ,1942,1945, 'America/Sitka' ,1942,1945, + 'America/Fort_Nelson' ,1942,1945, ], 'PYST' => [ 'America/Asuncion' ,1975,9999, diff -Nru libdate-manip-perl-6.51/internal/data.alias.pl libdate-manip-perl-6.52/internal/data.alias.pl --- libdate-manip-perl-6.51/internal/data.alias.pl 2015-09-01 12:32:04.000000000 +0000 +++ libdate-manip-perl-6.52/internal/data.alias.pl 2015-11-25 16:46:39.000000000 +0000 @@ -351,6 +351,7 @@ 'America/Boise' ,1918,1919, 'America/Metlakatla' ,1969,1983, 'America/Sitka' ,1969,1982, + 'America/Fort_Nelson' ,1918,2014, ], # Open to discussion @@ -376,7 +377,7 @@ 'America/Nome' ,1984,9999, 'America/Yakutat' ,1984,9999, 'America/Sitka' ,1984,9999, - 'America/Anchorage' ,1984,2037, + 'America/Anchorage' ,1984,9999, ], 'AKTT-5AKTST' => [ 'Asia/Aqtobe' ,1982,1990, @@ -832,6 +833,7 @@ 'America/Vancouver' ,1945,1945, 'America/Metlakatla' ,1945,1945, 'America/Sitka' ,1945,1945, + 'America/Fort_Nelson' ,1945,1945, ], 'PYT4PYST' => [ 'America/Asuncion' ,1976,9999, diff -Nru libdate-manip-perl-6.51/internal/data.offset.pl libdate-manip-perl-6.52/internal/data.offset.pl --- libdate-manip-perl-6.51/internal/data.offset.pl 2015-09-01 12:30:49.000000000 +0000 +++ libdate-manip-perl-6.52/internal/data.offset.pl 2015-11-25 16:44:33.000000000 +0000 @@ -938,21 +938,22 @@ 'Pacific/Efate' ,1912,9999, 'Pacific/Guadalcanal' ,1912,9999, 'Pacific/Noumea' ,1912,9999, + 'Asia/Srednekolymsk' ,1930,9999, + 'Pacific/Bougainville' ,2014,9999, + 'Pacific/Norfolk' ,2015,9999, 'Asia/Sakhalin' ,1945,2014, + 'Asia/Ust-Nera' ,1981,2014, 'Asia/Vladivostok' ,2011,2014, 'Asia/Kamchatka' ,1922,2011, 'Asia/Magadan' ,1930,2011, 'Asia/Anadyr' ,1991,2011, + 'Asia/Khandyga' ,2011,2011, + 'Pacific/Kwajalein' ,1900,1969, + 'Pacific/Majuro' ,1900,1969, 'Etc/GMT+11' ,0001,9999, 'X' ,0001,9999, 'Antarctica/Macquarie' ,2010,9999, - 'Pacific/Kwajalein' ,1900,1969, - 'Pacific/Majuro' ,1900,1969, 'Antarctica/Casey' ,2009,2012, - 'Asia/Ust-Nera' ,1981,2014, - 'Asia/Khandyga' ,2011,2011, - 'Asia/Srednekolymsk' ,1930,9999, - 'Pacific/Bougainville' ,2014,9999, ], '+11:05:48' => [ 'Pacific/Noumea' ,0001,1912, @@ -979,7 +980,7 @@ 'Pacific/Majuro' ,0001,1900, ], '+11:30:00' => [ - 'Pacific/Norfolk' ,1950,9999, + 'Pacific/Norfolk' ,1950,2015, 'Pacific/Nauru' ,1921,1979, 'Pacific/Auckland' ,1868,1940, ], @@ -1720,6 +1721,7 @@ 'America/Yellowknife' ,1935,9999, 'America/Dawson_Creek' ,1972,9999, 'America/Inuvik' ,1979,9999, + 'America/Fort_Nelson' ,2015,9999, 'Etc/GMT-7' ,0001,9999, 'G' ,0001,9999, 'America/North_Dakota/Beulah' ,1883,2010, @@ -1792,10 +1794,14 @@ 'America/Mazatlan' ,1949,1970, 'America/Boise' ,1883,1923, 'America/Creston' ,1916,1918, + 'America/Fort_Nelson' ,1884,2015, ], '-08:00:56' => [ 'America/Dawson_Creek' ,0001,1884, ], + '-08:10:47' => [ + 'America/Fort_Nelson' ,0001,1884, + ], '-08:12:28' => [ 'America/Vancouver' ,0001,1884, ], @@ -2211,6 +2217,7 @@ ], '+12:30:00' => [ 'Pacific/Auckland' ,1927,1928, + 'Pacific/Norfolk' ,1974,1975, ], '+13:00:00' => [ 'Pacific/Auckland' ,1974,9999, @@ -2328,11 +2335,12 @@ 'America/Indiana/Vevay' ,1969,9999, 'America/Indiana/Vincennes' ,1969,9999, 'America/Indiana/Winamac' ,1969,9999, - 'America/Grand_Turk' ,1979,2015, + 'America/Port-au-Prince' ,1983,9999, 'America/Pangnirtung' ,1995,9999, 'America/Kentucky/Monticello' ,2001,9999, 'America/Indiana/Petersburg' ,2008,9999, - 'America/Port-au-Prince' ,1983,9999, + 'America/Cayman' ,2016,9999, + 'America/Grand_Turk' ,1979,2015, 'America/Cancun' ,1996,1998, 'America/Eirunepe' ,1931,1994, 'America/Lima' ,1938,1994, @@ -2344,7 +2352,6 @@ 'America/Rankin_Inlet' ,1965,1965, 'America/Resolute' ,1965,1965, 'America/Santiago' ,1927,1932, - 'America/Cayman' ,2016,9999, ], '-04:30:00' => [ 'America/Santo_Domingo' ,1969,1974, @@ -2358,21 +2365,21 @@ 'America/Rainy_River' ,1918,9999, 'America/Mexico_City' ,1939,9999, 'America/Rankin_Inlet' ,1980,9999, - 'Pacific/Easter' ,1982,2015, + 'America/Resolute' ,1980,9999, 'America/Matamoros' ,1988,9999, 'America/Monterrey' ,1988,9999, 'America/North_Dakota/Center' ,1993,9999, 'America/Merida' ,1996,9999, - 'America/Cancun' ,1998,2014, 'America/North_Dakota/New_Salem' ,2004,9999, 'America/Bahia_Banderas' ,2010,9999, 'America/North_Dakota/Beulah' ,2011,9999, + 'Pacific/Easter' ,1982,2015, + 'America/Cancun' ,1998,2014, 'America/Indiana/Petersburg' ,1918,2007, 'America/Indiana/Vincennes' ,1918,2007, 'America/Indiana/Winamac' ,1918,2006, 'America/Guatemala' ,1973,2006, 'America/Managua' ,1979,2006, - 'America/Resolute' ,1980,9999, 'America/Tegucigalpa' ,1987,2006, 'America/Kentucky/Monticello' ,1918,2000, 'America/Cambridge_Bay' ,1965,2000, @@ -2420,6 +2427,7 @@ 'America/Tijuana' ,1931,9999, 'America/Dawson' ,1965,9999, 'America/Whitehorse' ,1965,9999, + 'America/Fort_Nelson' ,1918,2014, 'America/Juneau' ,1942,1983, 'America/Dawson_Creek' ,1918,1972, 'America/Boise' ,1918,1919, @@ -2429,11 +2437,11 @@ '-08:00:00' => [ 'America/Juneau' ,1980,9999, 'America/Yakutat' ,1942,9999, - 'America/Anchorage' ,1984,2037, + 'America/Anchorage' ,1984,9999, 'America/Nome' ,1984,9999, + 'America/Sitka' ,1984,9999, 'America/Dawson' ,1918,1945, 'America/Whitehorse' ,1918,1945, - 'America/Sitka' ,1984,9999, ], '-09:00:00' => [ 'America/Adak' ,1984,9999, diff -Nru libdate-manip-perl-6.51/internal/gen_dm5abbrevs libdate-manip-perl-6.52/internal/gen_dm5abbrevs --- libdate-manip-perl-6.51/internal/gen_dm5abbrevs 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/internal/gen_dm5abbrevs 2015-09-01 12:56:55.000000000 +0000 @@ -18,7 +18,7 @@ use Date::Manip::TZ; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($DEBUG); $DEBUG = 0; @@ -101,7 +101,7 @@ use warnings; our(\$VERSION); -\$VERSION='6.51'; +\$VERSION='6.52'; END { my \$tmp; diff -Nru libdate-manip-perl-6.51/internal/tzdata libdate-manip-perl-6.52/internal/tzdata --- libdate-manip-perl-6.51/internal/tzdata 2015-09-01 12:28:21.000000000 +0000 +++ libdate-manip-perl-6.52/internal/tzdata 2015-11-25 16:27:01.000000000 +0000 @@ -20,7 +20,7 @@ use warnings; our $VERSION; -$VERSION='6.51'; +$VERSION='6.52'; our ($dmb); $dmb = new Date::Manip::Base; @@ -190,14 +190,9 @@ sub do_build { print "Build...\n"; - my $dirs="TOPDIR=./tmp " . - "TZDIR=./tmp/zoneinfo " . - "ETCDIR=./tmp/etc " . - "BINDIR=./tmp/bin " . - "MANDIR=./tmp/man " . - "LIBDIR=./tmp/lib"; system("cd tzdata; " . - "make $dirs INSTALL;"); + "touch NEWS; " . + "make TOPDIR=./tmp INSTALL;"); } ############################################################################ @@ -1050,7 +1045,7 @@ } our (\$VERSION); -\$VERSION='6.51'; +\$VERSION='6.52'; END { undef \$VERSION; } \%Dates = ( @@ -1278,7 +1273,7 @@ require 5.010000; our (\$VERSION); -\$VERSION='6.51'; +\$VERSION='6.52'; END { undef \$VERSION; } our (\$Offset,\%Offset); @@ -1358,7 +1353,7 @@ require 5.010000; our (\$VERSION); -\$VERSION='6.51'; +\$VERSION='6.52'; END { undef \$VERSION; } our (\$TzdataVersion,\$TzcodeVersion, diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Base.pm libdate-manip-perl-6.52/lib/Date/Manip/Base.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Base.pm 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Base.pm 2015-12-01 14:20:29.000000000 +0000 @@ -26,7 +26,7 @@ require Date::Manip::Lang::index; our $VERSION; -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } ############################################################################### @@ -303,20 +303,16 @@ # {data}{sections}{holidays} = [ STRING, HOLIDAY_NAME, ... ] # - # {data}{holidays}{YEAR} = 1 if this year has been parsed - # 2 if YEAR-1 and YEAR+1 have been parsed - # (both must be done before holidays can - # be known so that New Years can be - # celebrated on Dec 31 if Jan 1 is weekend) - # {date} = DATE_OBJ - # a Date::Manip::Date object to use for holidays - # {hols} = [ RECUR_OBJ|DATE_STRING, HOLIDAY_NAME, ... ] - # DATE_STRING is suitable for parse_date - # using DATE_OBJ. RECUR_OBJ is a - # Date::Manip::Recur object that can be used - # once the start and end date is set. + # {data}{holidays}{init} = 1 if holidays have been initialized + # {ydone} = { Y => 1 } + # {yhols} = { Y => NAME => [Y,M,D] } + # {hols} = { NAME => Y => [Y,M,D] } # {dates} = { Y => M => D => NAME } - # + # {defs} = [ NAME DEF NAME DEF ... ] + # NAME is the name of a holiday (it will + # be 'DMunnamed I' for the Ith unnamed + # holiday) + # DEF is a string or a Recur # {data}{init_holidays} = 1 if currently initializing holidays $$self{'data'}{'holidays'} = {}; diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Changes6.pod libdate-manip-perl-6.52/lib/Date/Manip/Changes6.pod --- libdate-manip-perl-6.51/lib/Date/Manip/Changes6.pod 2015-09-01 12:39:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Changes6.pod 2015-12-01 18:51:56.000000000 +0000 @@ -37,6 +37,46 @@ =head1 VERSION 6.52 (planned 2015-12-01) +=over 4 + +=item B + +The date range can now be specified for either the fully modified dates, or +the unmodified dates. This will make it easier to work with holidays in some +instances. Based on L. + +=item B + +Based on L. + +=item B<(!) Reworked holidays slightly> + +Previously, every line in the Holidays section defined a unique holiday. +Now, the names determine the list of holidays. + +It is not allowed to have two separate holidays named exactly the same. +It IS allowed to have complex holidays that require two (or more) lines +in the Holidays section to define them completely. + +Based on L. + +=item Bug fixes + +Fixed a bug where the RecurRange config variable wasn't getting used. + +Fixed a bug where some deltas were not parsed correctly as dates. +RT 109600 + +=item Time zone fixes + +Newest zoneinfo data (tzdata 2015g) + +=item Test fixes + +Added a number of new tests based on Devel::Cover. + +=back + =head1 VERSION 6.51 2015-09-01 =over 4 diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Date.pm libdate-manip-perl-6.52/lib/Date/Manip/Date.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Date.pm 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Date.pm 2015-12-01 18:49:32.000000000 +0000 @@ -27,7 +27,7 @@ use Date::Manip::TZ; our $VERSION; -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } ######################################################################## @@ -258,6 +258,20 @@ $dow = ''; } last PARSE if ($done); + + # We'll also check the original string to see if it's a valid + # delta since some deltas may have interpreted part of it as + # a time or timezone. + + ($done,@tmp) = + $self->_parse_delta($instring,$dow,$got_time,$h,$mn,$s,\$noupdate); + if (@tmp) { + ($y,$m,$d,$h,$mn,$s) = @tmp; + $got_time = 1; + $dow = ''; + ($tzstring,$zone,$abb,$off) = (); + } + last PARSE if ($done); } # Parse holidays @@ -1942,17 +1956,12 @@ $y = $dmt->_now('y',$noupdate) if (! $y); $y += 0; - $self->_holidays($y,2); - return (0) if (! exists $$dmb{'data'}{'holidays'}{'dates'}{$y}); - foreach my $m (keys %{ $$dmb{'data'}{'holidays'}{'dates'}{$y} }) { - foreach my $d (keys %{ $$dmb{'data'}{'holidays'}{'dates'}{$y}{$m} }) { - foreach my $nam (@{ $$dmb{'data'}{'holidays'}{'dates'}{$y}{$m}{$d} }) { - if (lc($nam) eq lc($hol)) { - return(1,$y,$m,$d); - } - } - } - } + $self->_holidays($y-1); + $self->_holidays($y); + $self->_holidays($y+1); + return (0) if (! exists $$dmb{'data'}{'holidays'}{'yhols'}{$y+0}{$hol}); + my ($y,$m,$d) = @{ $$dmb{'data'}{'holidays'}{'yhols'}{$y+0}{$hol} }; + return(1,$y,$m,$d); } return (0); @@ -4043,7 +4052,11 @@ # Check for holidays - $self->_holidays($y,2) unless ($$dmb{'data'}{'init_holidays'}); + if (! $$dmb{'data'}{'init_holidays'}) { + $self->_holidays($y-1); + $self->_holidays($y); + $self->_holidays($y+1); + } return 0 if (exists $$dmb{'data'}{'holidays'}{'dates'} && exists $$dmb{'data'}{'holidays'}{'dates'}{$y+0} && @@ -4059,7 +4072,9 @@ my $dmb = $$dmt{'base'}; $y = $dmt->_now('y',1) if (! $y); - $self->_holidays($y,2); + $self->_holidays($y-1); + $self->_holidays($y); + $self->_holidays($y+1); my @ret; my @m = sort { $a <=> $b } keys %{ $$dmb{'data'}{'holidays'}{'dates'}{$y+0} }; @@ -4085,12 +4100,19 @@ my $dmb = $$dmt{'base'}; my($y,$m,$d) = @{ $$self{'data'}{'date'} }; - $self->_holidays($y,2); + $self->_holidays($y-1); + $self->_holidays($y); + $self->_holidays($y+1); if (exists $$dmb{'data'}{'holidays'}{'dates'}{$y+0} && exists $$dmb{'data'}{'holidays'}{'dates'}{$y+0}{$m+0} && exists $$dmb{'data'}{'holidays'}{'dates'}{$y+0}{$m+0}{$d+0}) { my @tmp = @{ $$dmb{'data'}{'holidays'}{'dates'}{$y+0}{$m+0}{$d+0} }; + + foreach my $tmp (@tmp) { + $tmp = '' if ($tmp =~ /DMunnamed/); + } + if (wantarray) { return () if (! @tmp); return @tmp; @@ -4237,11 +4259,19 @@ # Go through all of the strings from the config file. # my (@str) = @{ $$dmb{'data'}{'sections'}{'holidays'} }; - $$dmb{'data'}{'holidays'}{'hols'} = []; + $$dmb{'data'}{'holidays'}{'defs'} = []; + + # Keep track of the holiday names + my $unnamed = 0; + LINE: while (@str) { my($string) = shift(@str); my($name) = shift(@str); + if (! $name) { + $unnamed++; + $name = "DMunnamed $unnamed"; + } # If $string is a parse_date string AND it contains a year, we'll # store the date as a holiday, but not store the holiday description @@ -4249,19 +4279,41 @@ my $date = $self->new_date(); my $err = $date->parse_date($string); + if (! $err) { + my($y,$m,$d) = @{ $$date{'data'}{'date'} }; + if ($$date{'data'}{'def'}[0] eq '') { - push(@{ $$dmb{'data'}{'holidays'}{'hols'} },$string,$name); + # Lines of the form: Jun 12 + # + # We will NOT cache this holiday because we want to only + # cache holidays from lines like 'Jun 12 1972' during this + # phase so we find conflicts. + + push(@{ $$dmb{'data'}{'holidays'}{'defs'} },$name,$string); + } else { - my($y,$m,$d) = @{ $$date{'data'}{'date'} }; + # Lines of the form: Jun 12 1972 + # + # We'll cache these to make sure we don't have two lines: + # Jun 12 1972 = Some Holiday + # Jun 13 1972 = Some Holiday + + if (exists $$dmb{'data'}{'holidays'}{'hols'}{$name}{$y+0}) { + warn "WARNING: Holiday defined twice for one year: $name [$y]\n"; + next LINE; + } + + $$dmb{'data'}{'holidays'}{'yhols'}{$y+0}{$name} = [$y,$m,$d]; + $$dmb{'data'}{'holidays'}{'hols'}{$name}{$y+0} = [$y,$m,$d]; + if (exists $$dmb{'data'}{'holidays'}{'dates'}{$y+0}{$m+0}{$d+0}) { push @{ $$dmb{'data'}{'holidays'}{'dates'}{$y+0}{$m+0}{$d+0} },$name; } else { $$dmb{'data'}{'holidays'}{'dates'}{$y+0}{$m+0}{$d+0} = [ $name ]; } } - - next; + next LINE; } $date->err(1); @@ -4269,11 +4321,10 @@ # only have to do once) and store it. my $recur = $self->new_recur(); - $recur->_holiday(); $err = $recur->parse($string); if (! $err) { - push(@{ $$dmb{'data'}{'holidays'}{'hols'} },$recur,$name); - next; + push(@{ $$dmb{'data'}{'holidays'}{'defs'} },$name,$recur); + next LINE; } $recur->err(1); @@ -4282,105 +4333,91 @@ return; } -# Make sure that holidays are set for a given year. -# -# $$dmb{'data'}{'holidays'}{'years'}{$year} = 0 nothing done -# 1 this year done -# 2 both adjacent years done +# Make sure that holidays are done for a given year. # sub _holidays { - my($self,$year,$level) = @_; + my($self,$year) = @_; my $dmt = $$self{'tz'}; my $dmb = $$dmt{'base'}; - $self->_holiday_objs($year) if (! $$dmb{'data'}{'holidays'}{'init'}); - - $$dmb{'data'}{'holidays'}{'years'}{$year} = 0 - if (! exists $$dmb{'data'}{'holidays'}{'years'}{$year}); - my $curr_level = $$dmb{'data'}{'holidays'}{'years'}{$year}; - return if ($curr_level >= $level); - $$dmb{'data'}{'holidays'}{'years'}{$year} = $level; + return if ($$dmb{'data'}{'holidays'}{'ydone'}{$year+0}); + $self->_holiday_objs() if (! $$dmb{'data'}{'holidays'}{'init'}); # Parse the year - if ($curr_level == 0) { - $self->_holidays_year($year); - - return if ($level == 1); - } - - # Parse the years around it. - - $self->_holidays($year-1,1); - $self->_holidays($year+1,1); - return; -} - -sub _holidays_year { - my($self,$y) = @_; - - my $dmt = $$self{'tz'}; - my $dmb = $$dmt{'base'}; - # Get the objects and set them to use the new year. Also, get the # range for recurrences. - my @hol = @{ $$dmb{'data'}{'holidays'}{'hols'} }; + my @hol = @{ $$dmb{'data'}{'holidays'}{'defs'} }; - my $beg = $self->new_date(); - $beg->set('date',[$y-1,12,1,0,0,0]); - my $end = $self->new_date(); - $end->set('date',[$y+1,2,1,0,0,0]); + my $beg = "$year-01-01-00:00:00"; + my $end = "$year-12-31-23:59:59"; # Get the date for each holiday. $$dmb{'data'}{'init_holidays'} = 1; + $$dmb{'data'}{'tmpnow'} = [$year,1,1,0,0,0]; + HOLIDAY: while (@hol) { - my($obj) = shift(@hol); - my($name) = shift(@hol); + my $name = shift(@hol); + my $obj = shift(@hol); + + # Each holiday only gets defined once per year + next if (exists $$dmb{'data'}{'holidays'}{'hols'}{$name}{$year+0}); - $$dmb{'data'}{'tmpnow'} = [$y,1,1,0,0,0]; if (ref($obj)) { # It's a recurrence + # We have to initialize the recurrence as it may contain idates + # and dates outside of this range that are not correct. + + $obj->_init_dates(); + # If the recurrence has a date range built in, we won't override it. # Otherwise, we'll only look for dates in this year. + my @dates; if ($obj->start() && $obj->end()) { - $obj->dates(); + @dates = $obj->dates(); } else { - $obj->dates($beg,$end); + @dates = $obj->dates($beg,$end,1); } - foreach my $i (keys %{ $$obj{'data'}{'dates'} }) { - next if ($$obj{'data'}{'saved'}{$i}); - my $date = $$obj{'data'}{'dates'}{$i}; + foreach my $date (@dates) { my($y,$m,$d) = @{ $$date{'data'}{'date'} }; + + $$dmb{'data'}{'holidays'}{'yhols'}{$year+0}{$name} = [$y,$m,$d]; + $$dmb{'data'}{'holidays'}{'hols'}{$name}{$year+0} = [$y,$m,$d]; + if (exists $$dmb{'data'}{'holidays'}{'dates'}{$y+0}{$m+0}{$d+0}) { push @{ $$dmb{'data'}{'holidays'}{'dates'}{$y+0}{$m+0}{$d+0} },$name; } else { $$dmb{'data'}{'holidays'}{'dates'}{$y+0}{$m+0}{$d+0} = [$name]; } - $$obj{'data'}{'saved'}{$i} = 1; } } else { my $date = $self->new_date(); $date->parse_date($obj); my($y,$m,$d) = @{ $$date{'data'}{'date'} }; + + $$dmb{'data'}{'holidays'}{'yhols'}{$year+0}{$name} = [$y,$m,$d]; + $$dmb{'data'}{'holidays'}{'hols'}{$name}{$year+0} = [$y,$m,$d]; + if (exists $$dmb{'data'}{'holidays'}{'dates'}{$y+0}{$m+0}{$d+0}) { push @{ $$dmb{'data'}{'holidays'}{'dates'}{$y+0}{$m+0}{$d+0} },$name; } else { $$dmb{'data'}{'holidays'}{'dates'}{$y+0}{$m+0}{$d+0} = [$name]; } } - $$dmb{'data'}{'tmpnow'} = []; } - $$dmb{'data'}{'init_holidays'} = 0; + $$dmb{'data'}{'init_holidays'} = 0; + $$dmb{'data'}{'tmpnow'} = []; + $$dmb{'data'}{'holidays'}{'ydone'}{$year+0} = 1; return; } diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Date.pod libdate-manip-perl-6.52/lib/Date/Manip/Date.pod --- libdate-manip-perl-6.51/lib/Date/Manip/Date.pod 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Date.pod 2015-12-01 18:42:54.000000000 +0000 @@ -1555,7 +1555,7 @@ Dates are often specified in terms of a delta from "now". For example, "in 2 days". -Any valid delta can be used to specify a date, and the date is defined +Most valid deltas can be used to specify a date, and the date is defined as that delta added to "now". Refer to the Date::Manip::Delta documentation for a list of valid delta formats. diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Delta.pm libdate-manip-perl-6.52/lib/Date/Manip/Delta.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Delta.pm 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Delta.pm 2015-09-01 12:56:55.000000000 +0000 @@ -25,7 +25,7 @@ use Date::Manip::TZ; our $VERSION; -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } ######################################################################## diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/DM5abbrevs.pm libdate-manip-perl-6.52/lib/Date/Manip/DM5abbrevs.pm --- libdate-manip-perl-6.51/lib/Date/Manip/DM5abbrevs.pm 2015-09-01 12:48:17.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/DM5abbrevs.pm 2015-11-25 16:51:17.000000000 +0000 @@ -32,7 +32,7 @@ use warnings; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { my $tmp; @@ -313,6 +313,7 @@ negt -0330 nest +0120 net +0020 + nfst +1230 nft +1130 nmt +1112 novst +0700 @@ -720,6 +721,7 @@ NEGT -0330 NEST +0120 NET +0020 + NFST +1230 NFT +1130 NMT +1112 NOVST +0700 diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/DM5.pm libdate-manip-perl-6.52/lib/Date/Manip/DM5.pm --- libdate-manip-perl-6.51/lib/Date/Manip/DM5.pm 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/DM5.pm 2015-09-01 12:56:55.000000000 +0000 @@ -220,7 +220,7 @@ our($Abbrevs); use Date::Manip::DM5abbrevs; -$VERSION='6.51'; +$VERSION='6.52'; our $DM5_VERSION = '5.66'; ######################################################################## diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/DM6.pm libdate-manip-perl-6.52/lib/Date/Manip/DM6.pm --- libdate-manip-perl-6.51/lib/Date/Manip/DM6.pm 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/DM6.pm 2015-09-01 12:56:55.000000000 +0000 @@ -54,7 +54,7 @@ use warnings; our $VERSION; -$VERSION='6.51'; +$VERSION='6.52'; ########################################################################### diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Holidays.pod libdate-manip-perl-6.52/lib/Date/Manip/Holidays.pod --- libdate-manip-perl-6.51/lib/Date/Manip/Holidays.pod 2015-06-01 13:31:50.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Holidays.pod 2015-12-01 17:38:09.000000000 +0000 @@ -24,9 +24,21 @@ STRING = HOLIDAY -HOLIDAY is the name of the holiday (or it can be blank in which case -the day will still be treated as a holiday... for example the day -after Thanksgiving is often a work holiday though it is not named). +HOLIDAY is the name of the holiday or it can be blank. + +If HOLIDAY is blank, the holiday is unnamed, but still treated as a +holiday. For example, in the US, the day after Thanksgiving is often +a work holiday though it is not named. + +HOLIDAY should be unique in most cases. The only exception is if the +holiday definition is complex enough that it is impossible to describe +it with one STRING. In this case, multiple lines may be given with +different values of STRING but the same value for HOLIDAY, and in these +cases, the first STRING that matches a given year will be used. This +situation is described in more detail below. + +NOTE: It is not allowed to have unnamed holidays that require multiple +definitions, so a name will have to be assigned in that case. STRING is a string which can be parsed to give a valid date. It can be any of the following forms: @@ -41,6 +53,19 @@ Any format parseable by C can be used. +There is one caveat to using a full date. Date::Manip assumes that +most holidays will appear once per year, so if you were to explicitly +defined New Years (observed) as: + + 2004-12-31 = New Year's Day + +then it would assume that it had found the occurence of New Year's for +2004 when in fact, this is the 2005 occurence. + +Full date specifications should only be used as a last resort, and +probably only if you will explicitly specify all occurences of the +holiday. + =item B Some holidays occur every year on the same day. These can be defined @@ -55,7 +80,8 @@ to the L documentation to see what forms will work. ISO 8601 dates will not work since the year comes first. -Any format parseable by C can be used. +Any format parseable by C which allows the +year to be at the end can be used. =item B @@ -157,6 +183,38 @@ C method (or the C function), you can get a list of all names that the date contains. +=item B + +Occasionally, you cannot describe a holiday using a single line. For +example, the US Federal Reserve banks use a complex holiday description +where: + + For holidays falling on Saturday, Federal Reserve Banks + and Branches will be open the preceding Friday. For holidays + falling on Sunday, all Federal Reserve Banks and Branches + will be closed the following Monday. + +Since Saturday is not a business day, the DWD modifier will not work. +For these, you need a more complicated definition. + +The following definitions both work: + + # Saturday + 1*1:0:1:0:0:0*NBD,BD1,IBD,FD1 = New Year's Day + # Sunday (observed Monday) + 1*1:0:1:0:0:0*NBD,BD1,NBD,FD2 = New Year's Day + # M-F + 1*1:0:1:0:0:0*IBD = New Year's Day + +and + + # Saturday + 1*1:0:1:0:0:0*IW6 = New Year's Day + # Sunday (observed Monday) + 1*1:0:1:0:0:0*IW7,FD1 = New Year's Day + # M-F + 1*1:0:1:0:0:0*IBD = New Year's Day + =back =head1 EVENTS diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/catalan.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/catalan.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/catalan.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/catalan.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(utf-8 iso-8859-1 perl); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/danish.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/danish.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/danish.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/danish.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(utf-8 iso-8859-1 perl); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/dutch.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/dutch.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/dutch.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/dutch.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/english.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/english.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/english.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/english.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/finnish.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/finnish.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/finnish.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/finnish.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/french.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/french.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/french.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/french.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(utf-8 iso-8859-1 perl); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/german.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/german.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/german.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/german.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(utf-8 iso-8859-1 perl); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/index.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/index.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/index.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/index.pm 2015-09-01 12:56:55.000000000 +0000 @@ -25,7 +25,7 @@ use warnings; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our(%Lang); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/italian.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/italian.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/italian.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/italian.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(utf-8 iso-8859-1 perl); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/norwegian.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/norwegian.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/norwegian.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/norwegian.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(utf-8 iso-8859-1 perl); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/polish.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/polish.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/polish.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/polish.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(utf-8 iso-8859-2 perl); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/portugue.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/portugue.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/portugue.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/portugue.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(utf-8 iso-8859-1 perl); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/romanian.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/romanian.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/romanian.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/romanian.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(utf-8 iso-8859-16 perl); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/russian.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/russian.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/russian.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/russian.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(utf-8 koi8-r cp1251 perl); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/spanish.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/spanish.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/spanish.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/spanish.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(utf-8 iso-8859-1 perl); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/swedish.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/swedish.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/swedish.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/swedish.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(utf-8 ISO-8859-15 perl); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Lang/turkish.pm libdate-manip-perl-6.52/lib/Date/Manip/Lang/turkish.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Lang/turkish.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Lang/turkish.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use utf8; our($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; our($Language,@Encodings,$LangName,$YearAdded); @Encodings = qw(utf-8 iso-8859-1 perl); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Obj.pm libdate-manip-perl-6.52/lib/Date/Manip/Obj.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Obj.pm 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Obj.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use Storable qw(dclone); our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } ######################################################################## diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off000.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off000.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off000.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off000.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off001.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off001.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off001.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off001.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off002.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off002.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off002.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off002.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off003.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off003.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off003.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off003.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off004.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off004.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off004.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off004.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off005.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off005.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off005.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off005.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off006.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off006.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off006.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off006.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off007.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off007.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off007.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off007.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off008.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off008.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off008.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off008.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off009.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off009.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off009.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off009.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off010.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off010.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off010.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off010.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off011.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off011.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off011.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off011.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off012.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off012.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off012.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off012.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off013.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off013.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off013.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off013.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off014.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off014.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off014.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off014.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off015.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off015.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off015.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off015.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off016.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off016.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off016.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off016.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off017.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off017.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off017.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off017.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off018.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off018.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off018.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off018.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off019.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off019.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off019.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off019.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off020.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off020.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off020.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off020.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off021.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off021.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off021.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off021.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off022.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off022.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off022.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off022.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off023.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off023.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off023.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off023.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off024.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off024.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off024.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off024.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off025.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off025.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off025.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off025.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off026.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off026.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off026.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off026.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off027.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off027.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off027.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off027.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off028.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off028.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off028.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off028.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off029.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off029.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off029.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off029.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off030.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off030.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off030.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off030.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off031.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off031.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off031.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off031.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off032.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off032.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off032.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off032.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off033.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off033.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off033.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off033.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off034.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off034.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off034.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off034.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off035.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off035.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off035.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off035.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off036.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off036.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off036.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off036.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off037.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off037.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off037.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off037.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off038.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off038.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off038.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off038.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off039.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off039.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off039.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off039.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off040.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off040.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off040.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off040.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off041.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off041.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off041.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off041.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off042.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off042.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off042.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off042.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off043.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off043.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off043.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off043.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off044.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off044.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off044.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off044.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off045.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off045.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off045.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off045.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off046.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off046.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off046.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off046.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off047.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off047.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off047.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off047.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off048.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off048.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off048.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off048.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off049.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off049.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off049.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off049.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off050.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off050.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off050.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off050.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off051.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off051.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off051.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off051.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off052.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off052.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off052.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off052.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off053.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off053.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off053.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off053.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off054.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off054.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off054.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off054.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off055.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off055.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off055.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off055.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off056.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off056.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off056.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off056.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off057.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off057.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off057.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off057.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off058.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off058.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off058.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off058.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off059.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off059.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off059.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off059.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off060.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off060.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off060.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off060.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off061.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off061.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off061.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off061.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off062.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off062.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off062.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off062.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off063.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off063.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off063.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off063.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off064.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off064.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off064.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off064.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off065.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off065.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off065.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off065.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off066.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off066.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off066.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off066.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off067.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off067.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off067.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off067.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off068.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off068.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off068.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off068.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off069.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off069.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off069.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off069.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off070.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off070.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off070.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off070.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off071.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off071.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off071.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off071.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off072.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off072.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off072.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off072.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off073.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off073.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off073.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off073.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off074.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off074.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off074.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off074.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off075.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off075.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off075.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off075.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off076.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off076.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off076.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off076.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off077.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off077.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off077.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off077.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off078.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off078.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off078.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off078.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off079.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off079.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off079.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off079.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off080.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off080.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off080.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off080.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off081.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off081.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off081.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off081.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off082.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off082.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off082.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off082.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off083.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off083.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off083.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off083.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off084.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off084.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off084.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off084.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off085.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off085.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off085.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off085.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off086.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off086.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off086.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off086.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off087.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off087.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off087.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off087.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off088.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off088.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off088.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off088.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off089.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off089.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off089.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off089.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off090.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off090.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off090.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off090.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off091.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off091.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off091.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off091.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off092.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off092.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off092.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off092.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off093.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off093.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off093.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off093.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off094.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off094.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off094.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off094.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off095.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off095.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off095.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off095.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off096.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off096.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off096.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off096.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off097.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off097.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off097.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off097.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off098.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off098.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off098.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off098.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off099.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off099.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off099.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off099.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off100.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off100.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off100.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off100.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off101.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off101.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off101.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off101.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off102.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off102.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off102.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off102.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off103.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off103.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off103.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off103.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off104.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off104.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off104.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off104.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off105.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off105.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off105.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off105.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off106.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off106.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off106.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off106.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off107.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off107.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off107.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off107.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off108.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off108.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off108.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off108.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off109.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off109.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off109.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off109.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off110.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off110.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off110.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off110.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off111.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off111.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off111.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off111.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off112.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off112.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off112.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off112.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off113.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off113.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off113.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off113.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off114.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off114.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off114.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off114.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off115.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off115.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off115.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off115.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off116.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off116.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off116.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off116.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off117.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off117.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off117.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off117.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off118.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off118.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off118.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off118.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off119.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off119.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off119.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off119.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off120.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off120.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off120.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off120.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off121.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off121.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off121.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off121.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off122.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off122.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off122.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off122.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off123.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off123.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off123.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off123.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off124.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off124.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off124.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off124.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off125.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off125.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off125.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off125.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off126.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off126.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off126.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off126.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off127.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off127.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off127.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off127.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off128.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off128.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off128.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off128.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off129.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off129.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off129.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off129.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off130.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off130.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off130.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off130.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off131.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off131.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off131.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off131.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off132.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off132.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off132.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off132.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off133.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off133.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off133.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off133.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off134.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off134.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off134.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off134.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off135.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off135.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off135.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off135.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off136.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off136.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off136.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off136.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off137.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off137.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off137.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off137.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off138.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off138.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off138.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off138.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off139.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off139.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off139.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off139.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off140.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off140.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off140.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off140.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off141.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off141.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off141.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off141.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off142.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off142.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off142.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off142.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off143.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off143.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off143.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off143.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off144.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off144.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off144.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off144.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off145.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off145.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off145.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off145.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off146.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off146.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off146.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off146.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off147.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off147.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off147.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off147.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off148.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off148.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off148.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off148.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off149.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off149.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off149.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off149.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off150.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off150.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off150.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off150.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off151.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off151.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off151.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off151.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off152.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off152.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off152.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off152.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off153.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off153.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off153.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off153.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off154.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off154.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off154.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off154.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off155.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off155.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off155.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off155.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off156.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off156.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off156.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off156.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off157.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off157.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off157.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off157.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off158.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off158.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off158.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off158.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off159.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off159.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off159.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off159.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off160.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off160.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off160.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off160.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off161.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off161.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off161.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off161.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off162.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off162.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off162.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off162.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off163.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off163.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off163.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off163.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off164.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off164.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off164.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off164.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off165.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off165.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off165.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off165.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off166.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off166.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off166.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off166.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off167.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off167.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off167.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off167.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off168.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off168.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off168.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off168.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off169.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off169.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off169.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off169.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off170.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off170.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off170.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off170.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off171.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off171.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off171.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off171.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off172.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off172.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off172.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off172.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off173.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off173.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off173.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off173.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off174.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off174.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off174.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off174.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off175.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off175.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off175.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off175.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off176.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off176.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off176.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off176.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off177.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off177.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off177.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off177.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off178.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off178.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off178.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off178.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off179.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off179.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off179.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off179.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off180.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off180.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off180.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off180.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off181.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off181.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off181.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off181.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off182.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off182.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off182.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off182.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off183.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off183.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off183.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off183.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off184.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off184.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off184.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off184.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off185.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off185.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off185.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off185.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off186.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off186.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off186.pm 2015-09-01 12:30:59.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off186.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:30:59 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off187.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off187.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off187.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off187.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off188.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off188.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off188.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off188.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off189.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off189.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off189.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off189.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off190.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off190.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off190.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off190.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off191.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off191.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off191.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off191.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off192.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off192.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off192.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off192.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off193.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off193.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off193.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off193.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -37,21 +37,22 @@ 'pacific/efate', 'pacific/guadalcanal', 'pacific/noumea', + 'asia/srednekolymsk', + 'pacific/bougainville', + 'pacific/norfolk', 'asia/sakhalin', + 'asia/ust-nera', 'asia/vladivostok', 'asia/kamchatka', 'asia/magadan', 'asia/anadyr', + 'asia/khandyga', + 'pacific/kwajalein', + 'pacific/majuro', 'etc/gmt+11', 'x', 'antarctica/macquarie', - 'pacific/kwajalein', - 'pacific/majuro', 'antarctica/casey', - 'asia/ust-nera', - 'asia/khandyga', - 'asia/srednekolymsk', - 'pacific/bougainville', ], 1 => [ 'australia/melbourne', diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off194.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off194.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off194.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off194.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off195.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off195.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off195.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off195.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off196.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off196.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off196.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off196.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off197.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off197.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off197.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off197.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off198.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off198.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off198.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off198.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off199.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off199.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off199.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off199.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off200.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off200.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off200.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off200.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off201.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off201.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off201.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off201.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off202.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off202.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off202.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off202.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off203.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off203.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off203.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off203.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off204.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off204.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off204.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off204.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off205.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off205.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off205.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off205.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off206.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off206.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off206.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off206.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off207.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off207.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off207.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off207.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off208.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off208.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off208.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off208.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off209.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off209.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off209.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off209.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off210.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off210.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off210.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off210.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off211.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off211.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off211.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off211.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off212.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off212.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off212.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off212.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off213.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off213.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off213.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off213.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off214.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off214.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off214.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off214.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off215.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off215.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off215.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off215.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -33,6 +33,7 @@ %Offset = ( 1 => [ 'pacific/auckland', + 'pacific/norfolk', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off216.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off216.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off216.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off216.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off217.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off217.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off217.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off217.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off218.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off218.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off218.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off218.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off219.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off219.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off219.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off219.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off220.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off220.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off220.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off220.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off221.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off221.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off221.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off221.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off222.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off222.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off222.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off222.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off223.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off223.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off223.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off223.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off224.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off224.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off224.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off224.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off225.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off225.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off225.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off225.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off226.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off226.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off226.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off226.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off227.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off227.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off227.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off227.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off228.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off228.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off228.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off228.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off229.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off229.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off229.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off229.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off230.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off230.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off230.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off230.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off231.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off231.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off231.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off231.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off232.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off232.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off232.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off232.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off233.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off233.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off233.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off233.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off234.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off234.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off234.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off234.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off235.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off235.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off235.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off235.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off236.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off236.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off236.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off236.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off237.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off237.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off237.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off237.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off238.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off238.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off238.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off238.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off239.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off239.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off239.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off239.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off240.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off240.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off240.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off240.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off241.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off241.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off241.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off241.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off242.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off242.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off242.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off242.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off243.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off243.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off243.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off243.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off244.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off244.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off244.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off244.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off245.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off245.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off245.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off245.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off246.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off246.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off246.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off246.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off247.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off247.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off247.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off247.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off248.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off248.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off248.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off248.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off249.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off249.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off249.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off249.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off250.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off250.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off250.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off250.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off251.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off251.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off251.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off251.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off252.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off252.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off252.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off252.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off253.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off253.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off253.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off253.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off254.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off254.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off254.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off254.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off255.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off255.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off255.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off255.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off256.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off256.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off256.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off256.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off257.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off257.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off257.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off257.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off258.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off258.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off258.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off258.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off259.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off259.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off259.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off259.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off260.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off260.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off260.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off260.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off261.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off261.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off261.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off261.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off262.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off262.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off262.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off262.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off263.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off263.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off263.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off263.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off264.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off264.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off264.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off264.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off265.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off265.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off265.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off265.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off266.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off266.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off266.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off266.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off267.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off267.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off267.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off267.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off268.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off268.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off268.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off268.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off269.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off269.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off269.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off269.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off270.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off270.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off270.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off270.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off271.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off271.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off271.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off271.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off272.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off272.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off272.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off272.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off273.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off273.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off273.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off273.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off274.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off274.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off274.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off274.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off275.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off275.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off275.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off275.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off276.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off276.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off276.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off276.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off277.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off277.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off277.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off277.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off278.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off278.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off278.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off278.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off279.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off279.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off279.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off279.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off280.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off280.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off280.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off280.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off281.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off281.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off281.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off281.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off282.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off282.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off282.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off282.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off283.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off283.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off283.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off283.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off284.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off284.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off284.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off284.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off285.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off285.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off285.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off285.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off286.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off286.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off286.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off286.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off287.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off287.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off287.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off287.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -94,11 +94,12 @@ 'america/indiana/vevay', 'america/indiana/vincennes', 'america/indiana/winamac', - 'america/grand_turk', + 'america/port-au-prince', 'america/pangnirtung', 'america/kentucky/monticello', 'america/indiana/petersburg', - 'america/port-au-prince', + 'america/cayman', + 'america/grand_turk', 'america/cancun', 'america/eirunepe', 'america/lima', @@ -110,7 +111,6 @@ 'america/rankin_inlet', 'america/resolute', 'america/santiago', - 'america/cayman', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off288.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off288.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off288.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off288.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off289.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off289.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off289.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off289.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off290.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off290.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off290.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off290.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off291.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off291.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off291.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off291.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off292.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off292.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off292.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off292.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off293.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off293.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off293.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off293.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off294.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off294.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off294.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off294.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off295.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off295.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off295.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off295.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off296.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off296.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off296.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off296.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off297.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off297.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off297.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off297.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off298.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off298.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off298.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off298.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off299.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off299.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off299.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off299.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off300.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off300.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off300.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off300.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off301.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off301.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off301.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off301.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off302.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off302.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off302.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off302.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off303.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off303.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off303.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off303.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off304.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off304.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off304.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off304.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off305.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off305.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off305.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off305.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off306.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off306.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off306.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off306.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off307.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off307.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off307.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off307.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off308.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off308.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off308.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off308.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off309.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off309.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off309.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off309.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off310.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off310.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off310.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off310.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off311.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off311.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off311.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off311.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off312.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off312.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off312.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off312.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off313.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off313.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off313.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off313.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off314.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off314.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off314.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off314.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off315.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off315.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off315.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off315.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off316.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off316.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off316.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off316.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off317.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off317.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off317.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off317.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off318.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off318.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off318.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off318.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off319.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off319.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off319.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off319.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off320.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off320.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off320.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off320.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off321.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off321.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off321.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off321.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off322.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off322.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off322.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off322.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off323.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off323.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off323.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off323.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off324.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off324.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off324.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off324.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off325.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off325.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off325.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off325.pm 2015-11-25 16:44:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -87,21 +87,21 @@ 'america/rainy_river', 'america/mexico_city', 'america/rankin_inlet', - 'pacific/easter', + 'america/resolute', 'america/matamoros', 'america/monterrey', 'america/north_dakota/center', 'america/merida', - 'america/cancun', 'america/north_dakota/new_salem', 'america/bahia_banderas', 'america/north_dakota/beulah', + 'pacific/easter', + 'america/cancun', 'america/indiana/petersburg', 'america/indiana/vincennes', 'america/indiana/winamac', 'america/guatemala', 'america/managua', - 'america/resolute', 'america/tegucigalpa', 'america/kentucky/monticello', 'america/cambridge_bay', diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off326.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off326.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off326.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off326.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off327.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off327.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off327.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off327.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off328.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off328.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off328.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off328.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off329.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off329.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off329.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off329.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off330.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off330.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off330.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off330.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off331.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off331.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off331.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off331.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off332.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off332.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off332.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off332.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off333.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off333.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off333.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off333.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off334.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off334.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off334.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off334.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off335.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off335.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off335.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off335.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off336.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off336.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off336.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off336.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off337.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off337.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off337.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off337.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off338.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off338.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off338.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off338.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off339.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off339.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off339.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off339.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off340.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off340.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off340.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off340.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off341.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off341.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off341.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off341.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off342.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off342.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off342.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off342.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off343.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off343.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off343.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off343.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off344.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off344.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off344.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off344.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off345.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off345.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off345.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off345.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off346.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off346.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off346.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off346.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off347.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off347.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off347.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off347.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off348.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off348.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off348.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off348.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off349.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off349.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off349.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off349.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off350.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off350.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off350.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off350.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off351.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off351.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off351.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off351.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off352.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off352.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off352.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off352.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off353.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off353.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off353.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off353.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off354.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off354.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off354.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off354.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off355.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off355.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off355.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off355.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off356.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off356.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off356.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off356.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off357.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off357.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off357.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off357.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off358.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off358.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off358.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off358.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off359.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off359.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off359.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off359.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off360.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off360.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off360.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off360.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off361.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off361.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off361.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off361.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off362.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off362.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off362.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off362.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off363.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off363.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off363.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off363.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off364.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off364.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off364.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off364.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off365.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off365.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off365.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off365.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off366.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off366.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off366.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off366.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off367.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off367.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off367.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off367.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off368.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off368.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off368.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off368.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off369.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off369.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off369.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off369.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off370.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off370.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off370.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off370.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off371.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off371.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off371.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off371.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off372.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off372.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off372.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off372.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off373.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off373.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off373.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off373.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off374.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off374.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off374.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off374.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off375.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off375.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off375.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off375.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off376.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off376.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off376.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off376.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off377.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off377.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off377.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off377.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -45,6 +45,7 @@ 'america/yellowknife', 'america/dawson_creek', 'america/inuvik', + 'america/fort_nelson', 'etc/gmt-7', 'g', 'america/north_dakota/beulah', @@ -65,6 +66,7 @@ 'america/tijuana', 'america/dawson', 'america/whitehorse', + 'america/fort_nelson', 'america/juneau', 'america/dawson_creek', 'america/boise', diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off378.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off378.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off378.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off378.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off379.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off379.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off379.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off379.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off380.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off380.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off380.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off380.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off381.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off381.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off381.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off381.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off382.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off382.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off382.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off382.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off383.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off383.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off383.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off383.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off384.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off384.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off384.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off384.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off385.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off385.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off385.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off385.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off386.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off386.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off386.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off386.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off387.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off387.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off387.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off387.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off388.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off388.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off388.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off388.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off389.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off389.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off389.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off389.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off390.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off390.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off390.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off390.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off391.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off391.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off391.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off391.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -51,15 +51,16 @@ 'america/mazatlan', 'america/boise', 'america/creston', + 'america/fort_nelson', ], 1 => [ 'america/juneau', 'america/yakutat', 'america/anchorage', 'america/nome', + 'america/sitka', 'america/dawson', 'america/whitehorse', - 'america/sitka', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off392.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off392.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off392.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off392.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off393.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off393.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off393.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off393.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-08:12:28'; +$Offset = '-08:10:47'; %Offset = ( 0 => [ - 'america/vancouver', + 'america/fort_nelson', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off394.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off394.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off394.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off394.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-08:30:00'; +$Offset = '-08:12:28'; %Offset = ( 0 => [ - 'pacific/pitcairn', + 'america/vancouver', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off395.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off395.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off395.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off395.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,7 +28,7 @@ undef %Offset; } -$Offset = '-08:40:20'; +$Offset = '-08:30:00'; %Offset = ( 0 => [ diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off396.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off396.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off396.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off396.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-08:46:18'; +$Offset = '-08:40:20'; %Offset = ( 0 => [ - 'america/metlakatla', + 'pacific/pitcairn', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off397.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off397.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off397.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off397.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-08:57:41'; +$Offset = '-08:46:18'; %Offset = ( 0 => [ - 'america/juneau', + 'america/metlakatla', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off398.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off398.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off398.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off398.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-08:59:48'; +$Offset = '-08:57:41'; %Offset = ( 0 => [ - 'pacific/gambier', + 'america/juneau', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off399.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off399.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off399.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off399.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,24 +28,11 @@ undef %Offset; } -$Offset = '-09:00:00'; +$Offset = '-08:59:48'; %Offset = ( 0 => [ - 'america/yakutat', 'pacific/gambier', - 'america/anchorage', - 'america/juneau', - 'america/nome', - 'america/sitka', - 'etc/gmt-9', - 'i', - 'america/dawson', - 'america/whitehorse', - ], - 1 => [ - 'america/adak', - 'america/anchorage', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off400.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off400.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off400.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off400.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,12 +28,25 @@ undef %Offset; } -$Offset = '-09:00:12'; +$Offset = '-09:00:00'; %Offset = ( 0 => [ + 'america/yakutat', + 'pacific/gambier', + 'america/anchorage', + 'america/juneau', + 'america/nome', + 'america/sitka', + 'etc/gmt-9', + 'i', + 'america/dawson', 'america/whitehorse', ], + 1 => [ + 'america/adak', + 'america/anchorage', + ], ); 1; diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off401.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off401.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off401.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off401.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-09:01:13'; +$Offset = '-09:00:12'; %Offset = ( 0 => [ - 'america/sitka', + 'america/whitehorse', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off402.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off402.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off402.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off402.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-09:17:40'; +$Offset = '-09:01:13'; %Offset = ( 0 => [ - 'america/dawson', + 'america/sitka', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off403.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off403.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off403.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off403.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-09:18:00'; +$Offset = '-09:17:40'; %Offset = ( 0 => [ - 'pacific/marquesas', + 'america/dawson', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off404.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off404.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off404.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off404.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-09:18:55'; +$Offset = '-09:18:00'; %Offset = ( 0 => [ - 'america/yakutat', + 'pacific/marquesas', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off405.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off405.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off405.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off405.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,15 +28,11 @@ undef %Offset; } -$Offset = '-09:30:00'; +$Offset = '-09:18:55'; %Offset = ( 0 => [ - 'pacific/marquesas', - ], - 1 => [ - 'pacific/rarotonga', - 'pacific/honolulu', + 'america/yakutat', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off406.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off406.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off406.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off406.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,15 @@ undef %Offset; } -$Offset = '-09:58:16'; +$Offset = '-09:30:00'; %Offset = ( 0 => [ - 'pacific/tahiti', + 'pacific/marquesas', + ], + 1 => [ + 'pacific/rarotonga', + 'pacific/honolulu', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off407.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off407.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off407.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off407.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-09:59:36'; +$Offset = '-09:58:16'; %Offset = ( 0 => [ - 'america/anchorage', + 'pacific/tahiti', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off408.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off408.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off408.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off408.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,24 +28,12 @@ undef %Offset; } -$Offset = '-10:00:00'; +$Offset = '-09:59:36'; %Offset = ( 0 => [ - 'pacific/honolulu', - 'pacific/tahiti', - 'pacific/rarotonga', - 'america/adak', - 'etc/gmt-10', - 'k', - 'pacific/kiritimati', 'america/anchorage', ], - 1 => [ - 'pacific/apia', - 'america/adak', - 'america/nome', - ], ); 1; diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off409.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off409.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off409.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off409.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,23 @@ undef %Offset; } -$Offset = '-10:29:20'; +$Offset = '-10:00:00'; %Offset = ( 0 => [ + 'pacific/honolulu', + 'pacific/tahiti', + 'pacific/rarotonga', + 'america/adak', + 'etc/gmt-10', + 'k', 'pacific/kiritimati', + 'america/anchorage', + ], + 1 => [ + 'pacific/apia', + 'america/adak', + 'america/nome', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off410.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off410.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off410.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off410.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,12 +28,11 @@ undef %Offset; } -$Offset = '-10:30:00'; +$Offset = '-10:29:20'; %Offset = ( 0 => [ - 'pacific/rarotonga', - 'pacific/honolulu', + 'pacific/kiritimati', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off411.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off411.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off411.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off411.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,10 +28,11 @@ undef %Offset; } -$Offset = '-10:31:26'; +$Offset = '-10:30:00'; %Offset = ( 0 => [ + 'pacific/rarotonga', 'pacific/honolulu', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off412.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off412.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off412.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off412.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-10:39:04'; +$Offset = '-10:31:26'; %Offset = ( 0 => [ - 'pacific/rarotonga', + 'pacific/honolulu', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off413.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off413.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off413.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off413.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-10:40:00'; +$Offset = '-10:39:04'; %Offset = ( 0 => [ - 'pacific/kiritimati', + 'pacific/rarotonga', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off414.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off414.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off414.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off414.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,19 +28,11 @@ undef %Offset; } -$Offset = '-11:00:00'; +$Offset = '-10:40:00'; %Offset = ( 0 => [ - 'pacific/pago_pago', - 'pacific/niue', - 'etc/gmt-11', - 'l', - 'pacific/fakaofo', - 'pacific/apia', - 'pacific/enderbury', - 'america/adak', - 'america/nome', + 'pacific/kiritimati', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off415.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off415.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off415.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off415.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,10 +28,18 @@ undef %Offset; } -$Offset = '-11:01:38'; +$Offset = '-11:00:00'; %Offset = ( 0 => [ + 'pacific/pago_pago', + 'pacific/niue', + 'etc/gmt-11', + 'l', + 'pacific/fakaofo', + 'pacific/apia', + 'pacific/enderbury', + 'america/adak', 'america/nome', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off416.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off416.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off416.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off416.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-11:19:40'; +$Offset = '-11:01:38'; %Offset = ( 0 => [ - 'pacific/niue', + 'america/nome', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off417.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off417.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off417.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off417.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,7 +28,7 @@ undef %Offset; } -$Offset = '-11:20:00'; +$Offset = '-11:19:40'; %Offset = ( 0 => [ diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off418.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off418.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off418.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off418.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-11:22:48'; +$Offset = '-11:20:00'; %Offset = ( 0 => [ - 'pacific/pago_pago', + 'pacific/niue', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off419.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off419.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off419.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off419.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-11:24:20'; +$Offset = '-11:22:48'; %Offset = ( 0 => [ - 'pacific/enderbury', + 'pacific/pago_pago', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off420.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off420.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off420.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off420.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-11:24:56'; +$Offset = '-11:24:20'; %Offset = ( 0 => [ - 'pacific/fakaofo', + 'pacific/enderbury', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off421.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off421.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off421.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off421.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-11:26:56'; +$Offset = '-11:24:56'; %Offset = ( 0 => [ - 'pacific/apia', + 'pacific/fakaofo', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off422.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off422.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off422.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off422.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,10 @@ undef %Offset; } -$Offset = '-11:30:00'; +$Offset = '-11:26:56'; %Offset = ( 0 => [ - 'pacific/niue', 'pacific/apia', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off423.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off423.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off423.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off423.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,12 @@ undef %Offset; } -$Offset = '-11:46:38'; +$Offset = '-11:30:00'; %Offset = ( 0 => [ - 'america/adak', + 'pacific/niue', + 'pacific/apia', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off424.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off424.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off424.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off424.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,14 +28,11 @@ undef %Offset; } -$Offset = '-12:00:00'; +$Offset = '-11:46:38'; %Offset = ( 0 => [ - 'etc/gmt-12', - 'm', - 'pacific/kwajalein', - 'pacific/enderbury', + 'america/adak', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off425.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off425.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off425.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off425.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,14 @@ undef %Offset; } -$Offset = '-13:00:00'; +$Offset = '-12:00:00'; %Offset = ( 0 => [ - 'etc/gmt-13', + 'etc/gmt-12', + 'm', + 'pacific/kwajalein', + 'pacific/enderbury', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off426.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off426.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off426.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off426.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-14:00:00'; +$Offset = '-13:00:00'; %Offset = ( 0 => [ - 'etc/gmt-14', + 'etc/gmt-13', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off427.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off427.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off427.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off427.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-14:21:00'; +$Offset = '-14:00:00'; %Offset = ( 0 => [ - 'pacific/guam', + 'etc/gmt-14', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off428.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off428.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off428.pm 2015-09-01 12:31:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off428.pm 2015-11-25 16:44:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:31:00 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -19,7 +19,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($Offset,%Offset); @@ -28,11 +28,11 @@ undef %Offset; } -$Offset = '-15:56:00'; +$Offset = '-14:21:00'; %Offset = ( 0 => [ - 'asia/manila', + 'pacific/guam', ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Offset/off429.pm libdate-manip-perl-6.52/lib/Date/Manip/Offset/off429.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Offset/off429.pm 1970-01-01 00:00:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Offset/off429.pm 2015-11-25 16:44:44.000000000 +0000 @@ -0,0 +1,39 @@ +package # +Date::Manip::Offset::off429; +# Copyright (c) 2008-2015 Sullivan Beck. All rights reserved. +# This program is free software; you can redistribute it and/or modify it +# under the same terms as Perl itself. + +# This file was automatically generated. Any changes to this file will +# be lost the next time 'tzdata' is run. +# Generated on: Wed Nov 25 11:44:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g + +# This module contains data from the zoneinfo time zone database. The original +# data was obtained from the URL: +# ftp://ftp.iana.org/tz + +use strict; +use warnings; +require 5.010000; + +our ($VERSION); +$VERSION='6.52'; +END { undef $VERSION; } + +our ($Offset,%Offset); +END { + undef $Offset; + undef %Offset; +} + +$Offset = '-15:56:00'; + +%Offset = ( + 0 => [ + 'asia/manila', + ], +); + +1; diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Recur.pm libdate-manip-perl-6.52/lib/Date/Manip/Recur.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Recur.pm 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Recur.pm 2015-12-01 17:23:12.000000000 +0000 @@ -26,7 +26,7 @@ use Date::Manip::TZ; our $VERSION; -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } ######################################################################## @@ -45,45 +45,44 @@ my $dmt = $$self{'tz'}; my $dmb = $$dmt{'base'}; - $$self{'err'} = ''; + $$self{'err'} = ''; - $$self{'data'}{'freq'} = ''; # The frequency - $$self{'data'}{'flags'} = []; # Modifiers - $$self{'data'}{'base'} = undef; # The specified base date - $$self{'data'}{'BASE'} = undef; # The actual base date - $$self{'data'}{'start'} = undef; # Start and end date - $$self{'data'}{'end'} = undef; - $$self{'data'}{'holiday'} = 0; # If this is 1, the start/end data - # actually apply to the interval dates - # instead of the final dates. This is - # only used in determining holidays - # currently. - $$self{'data'}{'saved'} = {}; # I => 1 if date I is stored as a holiday - - $$self{'data'}{'interval'} = []; # (Y, M, ...) - $$self{'data'}{'rtime'} = []; # ( [ VAL_OR_RANGE, VAL_OR_RANGE, ... ], - # [ VAL_OR_RANGE, VAL_OR_RANGE, ... ], - # ... ) - $$self{'data'}{'slow'} = 0; # 1 if a range of the form 2--2 is - # included. - $$self{'data'}{'ev_per_d'} = 0; # The number of events per interval date. - $$self{'data'}{'delta'} = undef; # The offset based on the interval. - $$self{'data'}{'noint'} = 1; # 0 if an interval is present - # 1 if no interval is present and dates - # not done - # 2 if no interval is present and dates - # done - - $$self{'data'}{'idate'} = {}; # { N => Nth interval date } for non-slow - # { N => [Nth interval date,X,Y] } for slow - # [X,Y] are the first/last event indices - # generated by this interval date. - $$self{'data'}{'dates'} = {}; # { N => Nth recurring event } - # N is relative to the base date and is not - # affected by start/end - $$self{'data'}{'curr'} = undef; # Iterator pointer - $$self{'data'}{'first'} = undef; # N : the first date in a range - $$self{'data'}{'last'} = undef; # N : the last date in a range + $$self{'data'}{'freq'} = ''; # The frequency + $$self{'data'}{'flags'} = []; # Modifiers + $$self{'data'}{'base'} = undef; # The specified base date + $$self{'data'}{'BASE'} = undef; # The actual base date + $$self{'data'}{'start'} = undef; # Start and end date + $$self{'data'}{'end'} = undef; + $$self{'data'}{'unmod_range'} = 0; # If this is 1, the start/end range + # refer to the unmodified dates, not the + # final dates. + + $$self{'data'}{'interval'} = []; # (Y, M, ...) + $$self{'data'}{'rtime'} = []; # ( [ VAL_OR_RANGE, VAL_OR_RANGE, ... ], + # [ VAL_OR_RANGE, VAL_OR_RANGE, ... ], + # ... ) + $$self{'data'}{'slow'} = 0; # 1 if a range of the form 2--2 is + # included. + $$self{'data'}{'ev_per_d'} = 0; # The number of events per interval date. + $$self{'data'}{'delta'} = undef; # The offset based on the interval. + $$self{'data'}{'noint'} = 1; # 0 if an interval is present + # 1 if no interval is present and dates + # not done + # 2 if no interval is present and dates + # done + + $$self{'data'}{'idate'} = {}; # Non-slow: + # { N => Nth interval date } + # Slow: + # { N => [Nth interval date,X,Y] } + # [X,Y] are the first/last event indices + # generated by this interval date. + $$self{'data'}{'dates'} = {}; # { N => Nth recurring event } + # N is relative to the base date and is + # not affected by start/end + $$self{'data'}{'curr'} = undef; # Iterator pointer + $$self{'data'}{'first'} = undef; # N : the first date in a range + $$self{'data'}{'last'} = undef; # N : the last date in a range # Get the default start/end dates @@ -99,6 +98,8 @@ my $end = $self->new_date(); $start->set('date',[$y, 1, 1,00,00,00]); $end->set ('date',[$y,12,31,23,59,59]); + $$self{'data'}{'start'} = $start; + $$self{'data'}{'end'} = $end; } elsif ($range eq 'month') { my ($y,$m) = $dmt->_now('now',1); @@ -107,6 +108,8 @@ my $end = $self->new_date(); $start->set('date',[$y,$m, 1,00,00,00]); $end->set ('date',[$y,$m,$dim,23,59,59]); + $$self{'data'}{'start'} = $start; + $$self{'data'}{'end'} = $end; } elsif ($range eq 'week') { my($y,$m,$d) = $dmt->_now('now',1); @@ -120,6 +123,8 @@ my $end = $self->new_date(); $start->set('date',[$y, $m, $d, 00,00,00]); $end->set ('date',[$yy,$mm,$dd,23,59,59]); + $$self{'data'}{'start'} = $start; + $$self{'data'}{'end'} = $end; } elsif ($range eq 'day') { my($y,$m,$d) = $dmt->_now('now',1); @@ -127,12 +132,16 @@ my $end = $self->new_date(); $start->set('date',[$y,$m,$d,00,00,00]); $end->set ('date',[$y,$m,$d,23,59,59]); + $$self{'data'}{'start'} = $start; + $$self{'data'}{'end'} = $end; } elsif ($range eq 'all') { my $start = $self->new_date(); my $end = $self->new_date(); $start->set('date',[0001,02,01,00,00,00]); $end->set ('date',[9999,11,30,23,59,59]); + $$self{'data'}{'start'} = $start; + $$self{'data'}{'end'} = $end; } } @@ -147,7 +156,6 @@ $$self{'data'}{'BASE'} = undef; $$self{'data'}{'idate'} = {}; $$self{'data'}{'dates'} = {}; - $$self{'data'}{'saved'} = {}; } $$self{'data'}{'curr'} = undef; $$self{'data'}{'first'} = undef; @@ -161,21 +169,13 @@ $self->parse(@args); } -sub _holiday { - my($self,$val) = @_; - if ($val) { - $$self{'data'}{'holiday'} = $val; - } else { - $$self{'data'}{'holiday'} = 1; - } -} - ######################################################################## # METHODS ######################################################################## sub parse { my($self,$string,@args) = @_; + $self->_init(); # Test if $string = FREQ @@ -209,6 +209,7 @@ $self->err(1); if ($string =~ s/^([^*]*)\*//) { + # Everything up to he 1st '*' my $freq = $1; $err = $self->frequency($freq); if (! $err) { @@ -233,11 +234,12 @@ $err = $self->modifiers($tmp) if ($tmp); return 1 if ($err); } - if (@args == 1 || @args == 4) { - my $tmp = shift(@args); + + if (@args) { + my $tmp = $args[0]; if ($tmp && ! ref($tmp)) { $err = $self->modifiers($tmp); - return 1 if ($err); + shift(@args) if (! $err); } } @@ -248,36 +250,34 @@ $err = $self->basedate($tmp) if (defined($tmp) && $tmp); return 1 if ($err); } - if (@args == 3) { - my $tmp = $args[0]; + if (@args) { + my $tmp = shift(@args); $err = $self->basedate($tmp) if (defined($tmp) && $tmp); return 1 if ($err); } - # Handle START + # Handle START, END, UNMOD if (@string) { - my $tmp = shift(@string); - $err = $self->start($tmp) if (defined($tmp) && $tmp); + my($start) = shift(@string); + my($end) = shift(@string); + my($unmod) = shift(@string); + + $err = $self->start($start,$unmod) if (defined($start) && $start); return 1 if ($err); - } - if (@args == 3) { - my $tmp = $args[1]; - $err = $self->start($tmp) if (defined($tmp) && $tmp); + + $err = $self->end($end) if (defined($end) && $end); return 1 if ($err); } + if (@args) { + my($start) = shift(@args); + my($end) = shift(@args); + my($unmod) = shift(@args); - # END - - if (@string) { - my $tmp = shift(@string); - $err = $self->end($tmp) if (defined($tmp) && $tmp); + $err = $self->start($start,$unmod) if (defined($start) && $start); return 1 if ($err); - } - if (@args == 3) { - my $tmp = $args[2]; - @args = (); - $err = $self->end($tmp) if (defined($tmp) && $tmp); + + $err = $self->end($end) if (defined($end) && $end); return 1 if ($err); } @@ -636,10 +636,11 @@ } sub start { - my($self,$start) = @_; + my($self,$start,$unmod) = @_; return $$self{'data'}{'start'} if (! defined $start); $self->_init_dates(1); + $$self{'data'}{'unmod_range'} = $unmod; $self->_date('start',$start); } @@ -680,7 +681,7 @@ # Return an error if any modifier is unknown foreach my $flag (@flags) { - next if ($flag =~ /^([pn][dt][1-7]|wd[1-7]|[fb][dw]\d+|cw[dnp]|[npd]wd|[in]bd|easter)$/); + next if ($flag =~ /^([pn][dt][1-7]|wd[1-7]|[fb][dw]\d+|cw[dnp]|[npd]wd|[in]bd|[in]w[1-7]|easter)$/); $$self{'err'} = "[modifiers] Invalid modifier: $flag"; return 1; } @@ -694,14 +695,18 @@ sub nth { my($self,$n) = @_; $n = 0 if (! $n); - return ($$self{'data'}{'dates'}{$n},0) if (exists $$self{'data'}{'dates'}{$n}); + return ($$self{'data'}{'dates'}{$n},0) + if (exists $$self{'data'}{'dates'}{$n}); my ($err) = $self->_error(); return (undef,$err) if ($err); + return ($$self{'data'}{'dates'}{$n},0) + if (exists $$self{'data'}{'dates'}{$n}); + + # If there is no interval, then we've found every date that + # can be found. if ($$self{'data'}{'noint'}) { - return ($$self{'data'}{'dates'}{$n},0) - if (exists $$self{'data'}{'dates'}{$n}); return (undef,0); } @@ -834,7 +839,7 @@ } sub dates { - my($self,$start2,$end2) = @_; + my($self,$start2,$end2,$unmod) = @_; $self->err(1); # If $start2 or $end2 are provided, make sure they are valid. @@ -842,6 +847,7 @@ my $tmp_limits = 0; $tmp_limits = 1 if ($start2 || $end2); + $unmod = 0 if (! $unmod); # Check the recurrence for errors. If both $start2 and $end2 are # provided, it's not necessary for a range to be in the recurrence. @@ -860,18 +866,20 @@ # If $start2 or $end2 were provided, back up the data that applies # to the current date range, and store the new date range in it's place. - my ($old_start, $old_end, $old_first, $old_last); + my ($old_start, $old_end, $old_first, $old_last, $old_unmod); if ($tmp_limits) { $old_start = $$self{'data'}{'start'}; $old_end = $$self{'data'}{'end'}; $old_first = $$self{'data'}{'first'}; $old_last = $$self{'data'}{'last'}; + $old_unmod = $$self{'data'}{'unmod_range'}; $$self{'data'}{'start'} = $start2; $$self{'data'}{'end'} = $end2; $$self{'data'}{'first'} = undef; $$self{'data'}{'last'} = undef; + $$self{'data'}{'unmod_range'} = $unmod; } # Get all of the dates @@ -895,6 +903,7 @@ $$self{'data'}{'end'} = $old_end; $$self{'data'}{'first'} = $old_first; $$self{'data'}{'last'} = $old_last; + $$self{'data'}{'unmod_range'} = $old_unmod; } return @dates; @@ -1557,7 +1566,17 @@ last MODIFIER; } - } elsif ($flag =~ /^wd(\d)$/) { + } elsif ($flag =~ /^([in])w([1-7])$/) { + my($is,$dow) = ($1,$2); + $is = ($is eq 'i' ? 1 : 0); + my $currdow = $dmb->day_of_week([$y,$m,$d]); # Current dow + if ( ($is && $dow != $currdow) || + (! $is && $dow == $currdow) ) { + $keep = 0; + last MODIFIER; + } + + } elsif ($flag =~ /^wd([1-7])$/) { my $dow = $1; # Dow wanted my $currdow = $dmb->day_of_week([$y,$m,$d]); # Current dow if ($dow != $currdow) { @@ -1719,16 +1738,30 @@ my($n0,$n1); if ($$self{'data'}{'slow'}) { - if ($n == 0) { + if (! @date) { + $n0 = undef; + $n1 = undef; + + } elsif ($n == 0) { $n0 = 0; $n1 = $#date; } elsif ($n > 0) { - $n0 = $$self{'data'}{'idate'}{$n-1}[2] + 1; + foreach (my $i = $n-1; $i >= 0; $i--) { + next if (! defined $$self{'data'}{'idate'}{$i}[2]); + $n0 = $$self{'data'}{'idate'}{$i}[2] + 1; + last; + } + $n0 = 0 if (! defined $n0); $n1 = $n0 + $#date; } else { - $n1 = $$self{'data'}{'idate'}{$n+1}[1] - 1; + foreach (my $i = $n+1; $i <= 0; $i++) { + next if (! defined $$self{'data'}{'idate'}{$i}[1]); + $n1 = $$self{'data'}{'idate'}{$i}[1] - 1; + last; + } + $n1 = -1 if (! defined $n1); $n0 = $n1 - $#date; } @@ -1770,102 +1803,160 @@ return $$self{'data'}{$op} if (defined $$self{'data'}{$op} || $$self{'data'}{'noint'} == 2); - my ($first,$last); my $start = $$self{'data'}{'start'}; my $end = $$self{'data'}{'end'}; + my $unmod = $$self{'data'}{'unmod_range'}; + # Given interval date Idate(n) produces event dates: Date(f)..Date(l) # - # For a 'slow' recurrence, we'll get both the start and the end at - # once by starting at n=0 and working forwards or backwards. - # + # If we're looking at unmodified dates: + # Find smallest n such that: + # Idate(n) >= start + # first=f + # Then find largest n such that: + # Idate(n) <= end + # last=l + # Otherwise + # Find smallest n such that + # Date(y) >= start + # first=z (smallest z) + # Where x <= z <= y and + # Date(z) >= start + # Then find largest n such that + # Date(x) <= end + # last=z (largest z) + # Where x <= z <= y and + # Date(z) <= end + + my($first_int,$last_int,$first,$last); if ($$self{'data'}{'slow'}) { - if ($$self{'data'}{'holiday'}) { - # Move backwards until date <= start - # Then move forwards until date >= start - # - # Then move forwards until we have a date > end - # - # We want: - # start <= date(first) <= date(last) <= end + # + # For a 'slow' recurrence, we have to start at 0 and work forwards + # or backwards. + # - my($date,$first,$last); - $first = 0; + # Move backwards until we're completely before start + + $first_int = 0; + if ($unmod) { while (1) { - $self->_nth_interval($first); - $date = $$self{'data'}{'idate'}{$first}[0]; - last if (defined $date && $date->cmp($start) <= 0); - $first--; + $self->_nth_interval($first_int); + my $date = $$self{'data'}{'idate'}{$first_int}[0]; + last if (defined $date && $date->cmp($start) < 0); + $first_int--; } + + } else { while (1) { - $self->_nth_interval($first); - $date = $$self{'data'}{'idate'}{$first}[0]; - last if (defined $date && $date->cmp($start) >= 0); - $first++; + $self->_nth_interval($first_int); + my $ptr = $$self{'data'}{'idate'}{$first_int}[2]; + if (defined $ptr) { + my $date = $$self{'data'}{'dates'}{$ptr}; + last if (defined $date && $date->cmp($start) < 0); + } + $first_int--; } + } - return undef if ($date->cmp($end) == 1); - $last = $first; + # Then move forwards until we're after start + # i.e. Date(y) >= start for modified dates + if ($unmod) { while (1) { - $self->_nth_interval($last); - $date = $$self{'data'}{'idate'}{$last}[0]; - last if (defined $date && $date->cmp($end) == 1); - $last++; + $self->_nth_interval($first_int); + my $date = $$self{'data'}{'idate'}{$first_int}[0]; + last if (defined $date && $date->cmp($start) >= 0); + $first_int++; } - $last--; - - $first = $$self{'data'}{'idate'}{$first}[1]; - $last = $$self{'data'}{'idate'}{$last}[2]; + $first = $$self{'data'}{'idate'}{$first_int}[1]; } else { - # Move backwards until date <= start - # Then move forwards until date >= start - # - # Then move forwards until we have date > end - # - # We want: - # start <= date(first) <= date(last) <= end - - my($date,$err); - $first = 0; while (1) { - ($date,$err) = $self->nth($first); - last if (defined $date && $date->cmp($start) <= 0); - $first--; + $self->_nth_interval($first_int); + my $ptr = $$self{'data'}{'idate'}{$first_int}[2]; + if (defined $ptr) { + my $date = $$self{'data'}{'dates'}{$ptr}; + last if (defined $date && $date->cmp($start) >= 0); + } + $first_int++; } + + foreach my $i ($$self{'data'}{'idate'}{$first_int}[1] .. + $$self{'data'}{'idate'}{$first_int}[2]) { + my $date = $$self{'data'}{'dates'}{$i}; + if (defined $date && $date->cmp($start) >= 0) { + $first = $i; + last; + } + } + } + + # Then move forwards until we're after end + # i.e. Date(x) > end for modified dates + + $last_int = $first_int; + + if ($unmod) { while (1) { - ($date,$err) = $self->nth($first); - last if (defined $date && $date->cmp($start) >= 0); - $first++; + $self->_nth_interval($last_int); + my $date = $$self{'data'}{'idate'}{$last_int}[0]; + last if (defined $date && $date->cmp($end) > 0); + $last_int++; + } + $last_int--; + + for (my $i=$$self{'data'}{'idate'}{$last_int}[2]; + $i >= $$self{'data'}{'idate'}{$last_int}[1]; $i--) { + my $date = $$self{'data'}{'dates'}{$i}; + if (defined $date) { + $last = $i; + last; + } } - return undef if ($date->cmp($end) == 1); - $last = $first; + } else { + while (1) { + $self->_nth_interval($last_int); + my $ptr = $$self{'data'}{'idate'}{$last_int}[1]; + if (defined $ptr) { + my $date = $$self{'data'}{'dates'}{$ptr}; + last if (defined $date && $date->cmp($end) > 0); + } + $last_int++; + } + $last_int--; + $last = undef; + my $i = $first; while (1) { - ($date,$err) = $self->nth($last); - last if (defined $date && $date->cmp($end) == 1); - $last++; + last if (! exists $$self{'data'}{'dates'}{$i}); + my $date = $$self{'data'}{'dates'}{$i}; + next if (! defined $date); + last if ($date->cmp($end) > 0); + $last = $i; + $i++; } - $last--; } - return undef if ($last < $first); + return undef if (! defined $last || + $last < $first); $$self{'data'}{'first'} = $first; $$self{'data'}{'last'} = $last; return $$self{'data'}{$op} } # - # For a regular recurrence, we can estimate which interval date we're + # For a normal recurrence, we can estimate which interval date we're # interested in and then move forward/backward from it. # - # # Calculate the interval date index ($nn) based on the length of # the delta. # + # For the Nth interval, the dates produced are: + # N*EV_PER_DAY to (N+1)EV_PER_DAY-1 + # my $base = $$self{'data'}{'BASE'}; my $delta = $$self{'data'}{'delta'}; @@ -1876,96 +1967,124 @@ my $diff = $base->calc($targ); my $tot = $diff->printf('%sys'); my $nn = ($len ? int($tot/$len) : 1); - my $n = $nn*$$self{'data'}{'ev_per_d'}; - - # - # For a holiday, find the NNth interval date. - # - - my($date); - - if ($$self{'data'}{'holiday'}) { + my $ev = $$self{'data'}{'ev_per_d'}; - # Move backwards until we have date <= target - # Move forward until we have date >= target (after) - # Move backarad again until we have date <= target (before) + # Move backwards until we're completely before start - my($beforenn,$afternn); - $afternn = $nn; + $first_int = $nn; + if ($unmod) { + while (1) { + $self->_nth_interval($first_int); + my $date = $$self{'data'}{'idate'}{$first_int}; + last if (defined $date && $date->cmp($start) < 0); + $first_int--; + } + } else { + LOOP: while (1) { - $self->_nth_interval($afternn); - $date = $$self{'data'}{'idate'}{$afternn}[0]; - last if (defined $date && $date->cmp($targ) <= 0); - $afternn--; + $self->_nth_interval($first_int); + for (my $i=($first_int+1)*$ev - 1; $i >= $first_int*$ev; $i--) { + next if (! exists $$self{'data'}{'dates'}{$i}); + my $date = $$self{'data'}{'dates'}{$i}; + last LOOP if ($date->cmp($start) < 0); + } + $first_int--; } + } + + # Then move forwards until we're after start + # i.e. Date(y) >= start for modified dates + + if ($unmod) { while (1) { - $self->_nth_interval($afternn); - $date = $$self{'data'}{'idate'}{$afternn}[0]; - last if (defined $date && $date->cmp($targ) >= 0); - $afternn++; + $self->_nth_interval($first_int); + my $date = $$self{'data'}{'idate'}{$first_int}; + last if (defined $date && $date->cmp($start) >= 0); + $first_int++; } - $beforenn = $afternn; + + } else { + LOOP: while (1) { - $self->_nth_interval($beforenn); - $date = $$self{'data'}{'idate'}{$beforenn}[0]; - last if (defined $date && $date->cmp($targ) <= 0); - $beforenn--; + $self->_nth_interval($first_int); + for (my $i=($first_int+1)*$ev - 1; $i >= $first_int*$ev; $i--) { + next if (! exists $$self{'data'}{'dates'}{$i}); + my $date = $$self{'data'}{'dates'}{$i}; + last LOOP if ($date->cmp($start) >= 0); + } + $first_int++; } - return undef if ($afternn < $beforenn); + } + $first = $first_int*$ev; - # If we're looking for the first date, it's the afternn - # date. Otherwise, it's the beforenn one. + # Then move forwards until we're after end + # i.e. Date(y) > end for modified dates - if ($op eq 'first') { - $n = $afternn*$$self{'data'}{'ev_per_d'}; - } else { - $n = ($beforenn+1)*$$self{'data'}{'ev_per_d'}-1; + $last_int = $first_int; + + if ($unmod) { + while (1) { + $self->_nth_interval($last_int); + my $date = $$self{'data'}{'idate'}{$last_int}; + last if (defined $date && $date->cmp($end) > 0); + $last_int++; } + $last_int--; - $$self{'data'}{$op} = $n; - return $$self{'data'}{$op} + } else { + LOOP: + while (1) { + $self->_nth_interval($last_int); + for (my $i=($last_int+1)*$ev - 1; $i >= $last_int*$ev; $i--) { + next if (! exists $$self{'data'}{'dates'}{$i}); + my $date = $$self{'data'}{'dates'}{$i}; + last LOOP if ($date->cmp($end) >= 0); + } + $last_int++; + } } - # - # For a regular recurrence, find the Nth date. - # + $last = ($last_int+1)*$ev - 1; - # Move backwards until we have date <= target - # Move forward until we have date >= target (after) - # Move backarad again until we have date <= target (before) + # Now get the actual first/last dates - my($beforen,$aftern,$before,$after,$err); - $aftern = $n; + if ($unmod) { + while (1) { + last if (exists $$self{'data'}{'dates'}{$first} && + defined $$self{'data'}{'dates'}{$first}); + $first++; + return undef if ($first > $last); + } + + while (1) { + last if (exists $$self{'data'}{'dates'}{$last} && + defined $$self{'data'}{'dates'}{$last}); + $last--; + } - while (1) { - ($after,$err) = $self->nth($aftern); - return undef if ($err); - last if (defined $after && $after->cmp($targ) <= 0); - $aftern--; - } - while (1) { - ($after,$err) = $self->nth($aftern); - return undef if ($err); - last if (defined $after && $after->cmp($targ) >= 0); - $aftern++; - } - $beforen = $aftern; - while (1) { - ($before,$err) = $self->nth($beforen); - return undef if ($err); - last if (defined $before && $before->cmp($targ) <= 0); - $beforen--; - } - return undef if ($aftern < $beforen); - - if ($op eq 'first') { - $$self{'data'}{$op} = $aftern; - return $aftern; } else { - $$self{'data'}{$op} = $beforen; - return $beforen; + while (1) { + last if (exists $$self{'data'}{'dates'}{$first} && + defined $$self{'data'}{'dates'}{$first} && + $$self{'data'}{'dates'}{$first}->cmp($start) >= 0); + $first++; + return undef if ($first > $last); + } + + while (1) { + last if (exists $$self{'data'}{'dates'}{$last} && + defined $$self{'data'}{'dates'}{$last} && + $$self{'data'}{'dates'}{$last}->cmp($end) <= 0); + $last--; + } } + + return undef if (! defined $last || + $last < $first); + $$self{'data'}{'first'} = $first; + $$self{'data'}{'last'} = $last; + return $$self{'data'}{$op} } # This returns the date easter occurs on for a given year as ($month,$day). diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Recur.pod libdate-manip-perl-6.52/lib/Date/Manip/Recur.pod --- libdate-manip-perl-6.51/lib/Date/Manip/Recur.pod 2015-06-01 13:31:50.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Recur.pod 2015-12-01 17:35:09.000000000 +0000 @@ -53,9 +53,10 @@ infinite number of times, you usually have to specify a date range to get the actual dates. Some frequencies also require a base date (i.e. information about when one such even actually occurred) since the -frequency is ambiguous. For example, the frequency 'every other day' -does not include enough information to specify the dates that the -event happened on, so you have to explicitly define one. +frequency is otherwise ambiguous. For example, the frequency 'every +other day' does not include enough information to specify the dates +that the event happened on, so you have to explicitly define one of +them. Then all others can be derived. =item B @@ -202,6 +203,12 @@ NOTE: both dates in the range and the base date must all be in the same time zone, and use the same L object. +An alternate definition of the range may also be used to specify that +the recurring events based only on the interval and BEFORE any +modifiers are applied fall in the range. + +This definition is described in more detail below. + =back =head1 FREQUENCY NOTATION @@ -456,6 +463,42 @@ When a recurrence is created, it may include a default range, and this is handled by the RecurRange config variable. +By default, the date range applies to the final dates once all modifiers +have been applied. + +This behavior can be changed by applying the range to the unmodified +dates. + +An example of how this applies might be in defining New Year's Day +(observed). The most useful definition of this would be: + + 1*1:0:1:0:0:0*dwd + +which means Jan 1 modified to the nearest working day. + +But if you wanted to find New Year's for 2005 using this definition by passing +in a start date of 2005-01-01-00:00:00 and an end date of 2005-12-31-23:59:59, +you won't find anything because New Year's day will actually be observed on +2004-12-31 (since Jan 1 is a Saturday). + +To get around this, you can pass in a non-zero parameter with the recurrence +which means that this range will be applied to the unmodified dates. + +In effect, this discards the modifier (dwd), gets the dates that fall in +the range, and for all that fall in the range, the modifiers are applied. + +So: + + 1*1:0:1:0:0:0*dwd**2005-01-01-00:00:00*2005-12-31-23:59:59 + +will return no dates, but: + + 1*1:0:1:0:0:0*dwd**2005-01-01-00:00:00*2005-12-31-23:59:59*1 + +will return: + + 2004-12-31-00:00:00 + =head1 OTHER FREQUENCY FORMATS There are a small handful of English strings (or the equivalent in @@ -545,6 +588,10 @@ IBD This discards the date if it is not a business day. NBD This discards the date if it IS a business day. + IWn This discards the date if it is not the n'th day + of the week (n=1-7, 1 is Monday) + NWn This discards the date if it IS the n'th day of the week + The CWD, CWN, and CWP modifiers will always change the date to the closest working day NOT counting the current date. @@ -564,7 +611,7 @@ and the FW1 moves it to Tuesday. The final result will be Tuesday at noon. -The IBD and NBD modifiers eliminate dates from the list immediately. +The IBD, NBD, IWn, and NWn modifiers eliminate dates from the list immediately. In other words, if a recurrence has three modifiers: FD1,IBD,FD1 @@ -955,7 +1002,7 @@ =item B - $err = $recur->parse($string [,$modifiers] [,$base,$start,$end]); + $err = $recur->parse($string [,$modifiers] [,$base,$start,$end,$unmod]); This creates a new recurrence. A string containing a valid frequency is required. In addition, C<$start>, C<$end>, and C<$base> dates can be passed @@ -966,18 +1013,18 @@ automatically, based on the value of the RecurRange variable. If any of the dates are passed in, they must be included in the order given (though it is safe to pass an empty string or undef in for any of them -if you only want to set some, but not all of them). +if you only want to set some, but not all of them). If C<$unmod> is true, +the range will apply to unmodified dates rather than the modified dates. -The C<$modifiers> argument must either contain valid modifiers, or be -left out of the argument list entirely. You cannot pass an empty string -or undef in for it. +The C<$modifiers> argument must contain valid modifiers, or be left out of +the argument list entirely. You cannot pass an empty string or undef in for it. $err = $recur->parse($string); This creates a recurrence from a string which contains all of the necessary elements of the recurrence. The string is of the format: - FREQ*MODIFIERS*BASE*START*END + FREQ*MODIFIERS*BASE*START*END*UNMOD where FREQ is a string containing a frequency, MODIFIERS is a string containing a comma separated list of modifiers, BASE, START, and END @@ -989,6 +1036,7 @@ FREQ*MODIFIERS FREQ**BASE FREQ**BASE*START*END + FREQ***START*END*UNMOD If a part of the recurrence is passed in both as part of C<$string> and as an argument, the argument overrides the string portion, with the @@ -1012,6 +1060,7 @@ $err = $recur->frequency($frequency); $err = $recur->start($start); + $err = $recur->start($start,$unmod); $err = $recur->end($end); $err = $recur->basedate($base); @@ -1033,6 +1082,8 @@ In the start, end, and base methods, the date passed in can be a L object, or a string that can be parsed to get a date. +If C<$unmod> is true, it will mean that the range will apply to unmodified +dates. NOTE: the parse method will overwrite all parts of the recurrence, so it is not appropriate to do: @@ -1058,7 +1109,7 @@ =item B - @dates = $recur->dates([$start,$end]); + @dates = $recur->dates([$start,$end,$unmod]); Returns the list of dates defined by the full recurrence. If there is an error, or if there are no dates, an empty list will be returned. diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/a00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/a00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/a00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/a00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afabid00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afabid00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afabid00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afabid00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afaccr00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afaccr00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afaccr00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afaccr00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afalgi00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afalgi00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afalgi00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afalgi00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afbiss00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afbiss00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afbiss00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afbiss00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afcair00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afcair00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afcair00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afcair00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afcasa00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afcasa00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afcasa00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afcasa00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afceut00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afceut00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afceut00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afceut00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afel_a00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afel_a00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afel_a00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afel_a00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afjoha00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afjoha00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afjoha00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afjoha00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afkhar00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afkhar00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afkhar00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afkhar00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aflago00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aflago00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aflago00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aflago00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afmapu00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afmapu00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afmapu00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afmapu00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afmonr00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afmonr00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afmonr00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afmonr00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afnair00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afnair00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afnair00.pm 2015-09-01 12:27:12.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afnair00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:12 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afndja00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afndja00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afndja00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afndja00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aftrip00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aftrip00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aftrip00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aftrip00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aftuni00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aftuni00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aftuni00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aftuni00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/afwind00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/afwind00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/afwind00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/afwind00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amadak00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amadak00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amadak00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amadak00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amanch00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amanch00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amanch00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amanch00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( @@ -689,12 +689,288 @@ 'AKDT',1,[2037,11,1,9,59,59],[2037,11,1,1,59,59], '2037030811:00:00','2037030803:00:00','2037110109:59:59','2037110101:59:59' ], [ [2037,11,1,10,0,0],[2037,11,1,1,0,0],'-09:00:00',[-9,0,0], - 'AKST',0,[9999,12,31,0,0,0],[9999,12,30,15,0,0], - '2037110110:00:00','2037110101:00:00','9999123100:00:00','9999123015:00:00' ], + 'AKST',0,[2038,3,14,10,59,59],[2038,3,14,1,59,59], + '2037110110:00:00','2037110101:00:00','2038031410:59:59','2038031401:59:59' ], + ], + 2038 => + [ + [ [2038,3,14,11,0,0],[2038,3,14,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2038,11,7,9,59,59],[2038,11,7,1,59,59], + '2038031411:00:00','2038031403:00:00','2038110709:59:59','2038110701:59:59' ], + [ [2038,11,7,10,0,0],[2038,11,7,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2039,3,13,10,59,59],[2039,3,13,1,59,59], + '2038110710:00:00','2038110701:00:00','2039031310:59:59','2039031301:59:59' ], + ], + 2039 => + [ + [ [2039,3,13,11,0,0],[2039,3,13,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2039,11,6,9,59,59],[2039,11,6,1,59,59], + '2039031311:00:00','2039031303:00:00','2039110609:59:59','2039110601:59:59' ], + [ [2039,11,6,10,0,0],[2039,11,6,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2040,3,11,10,59,59],[2040,3,11,1,59,59], + '2039110610:00:00','2039110601:00:00','2040031110:59:59','2040031101:59:59' ], + ], + 2040 => + [ + [ [2040,3,11,11,0,0],[2040,3,11,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2040,11,4,9,59,59],[2040,11,4,1,59,59], + '2040031111:00:00','2040031103:00:00','2040110409:59:59','2040110401:59:59' ], + [ [2040,11,4,10,0,0],[2040,11,4,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2041,3,10,10,59,59],[2041,3,10,1,59,59], + '2040110410:00:00','2040110401:00:00','2041031010:59:59','2041031001:59:59' ], + ], + 2041 => + [ + [ [2041,3,10,11,0,0],[2041,3,10,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2041,11,3,9,59,59],[2041,11,3,1,59,59], + '2041031011:00:00','2041031003:00:00','2041110309:59:59','2041110301:59:59' ], + [ [2041,11,3,10,0,0],[2041,11,3,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2042,3,9,10,59,59],[2042,3,9,1,59,59], + '2041110310:00:00','2041110301:00:00','2042030910:59:59','2042030901:59:59' ], + ], + 2042 => + [ + [ [2042,3,9,11,0,0],[2042,3,9,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2042,11,2,9,59,59],[2042,11,2,1,59,59], + '2042030911:00:00','2042030903:00:00','2042110209:59:59','2042110201:59:59' ], + [ [2042,11,2,10,0,0],[2042,11,2,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2043,3,8,10,59,59],[2043,3,8,1,59,59], + '2042110210:00:00','2042110201:00:00','2043030810:59:59','2043030801:59:59' ], + ], + 2043 => + [ + [ [2043,3,8,11,0,0],[2043,3,8,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2043,11,1,9,59,59],[2043,11,1,1,59,59], + '2043030811:00:00','2043030803:00:00','2043110109:59:59','2043110101:59:59' ], + [ [2043,11,1,10,0,0],[2043,11,1,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2044,3,13,10,59,59],[2044,3,13,1,59,59], + '2043110110:00:00','2043110101:00:00','2044031310:59:59','2044031301:59:59' ], + ], + 2044 => + [ + [ [2044,3,13,11,0,0],[2044,3,13,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2044,11,6,9,59,59],[2044,11,6,1,59,59], + '2044031311:00:00','2044031303:00:00','2044110609:59:59','2044110601:59:59' ], + [ [2044,11,6,10,0,0],[2044,11,6,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2045,3,12,10,59,59],[2045,3,12,1,59,59], + '2044110610:00:00','2044110601:00:00','2045031210:59:59','2045031201:59:59' ], + ], + 2045 => + [ + [ [2045,3,12,11,0,0],[2045,3,12,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2045,11,5,9,59,59],[2045,11,5,1,59,59], + '2045031211:00:00','2045031203:00:00','2045110509:59:59','2045110501:59:59' ], + [ [2045,11,5,10,0,0],[2045,11,5,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2046,3,11,10,59,59],[2046,3,11,1,59,59], + '2045110510:00:00','2045110501:00:00','2046031110:59:59','2046031101:59:59' ], + ], + 2046 => + [ + [ [2046,3,11,11,0,0],[2046,3,11,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2046,11,4,9,59,59],[2046,11,4,1,59,59], + '2046031111:00:00','2046031103:00:00','2046110409:59:59','2046110401:59:59' ], + [ [2046,11,4,10,0,0],[2046,11,4,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2047,3,10,10,59,59],[2047,3,10,1,59,59], + '2046110410:00:00','2046110401:00:00','2047031010:59:59','2047031001:59:59' ], + ], + 2047 => + [ + [ [2047,3,10,11,0,0],[2047,3,10,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2047,11,3,9,59,59],[2047,11,3,1,59,59], + '2047031011:00:00','2047031003:00:00','2047110309:59:59','2047110301:59:59' ], + [ [2047,11,3,10,0,0],[2047,11,3,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2048,3,8,10,59,59],[2048,3,8,1,59,59], + '2047110310:00:00','2047110301:00:00','2048030810:59:59','2048030801:59:59' ], + ], + 2048 => + [ + [ [2048,3,8,11,0,0],[2048,3,8,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2048,11,1,9,59,59],[2048,11,1,1,59,59], + '2048030811:00:00','2048030803:00:00','2048110109:59:59','2048110101:59:59' ], + [ [2048,11,1,10,0,0],[2048,11,1,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2049,3,14,10,59,59],[2049,3,14,1,59,59], + '2048110110:00:00','2048110101:00:00','2049031410:59:59','2049031401:59:59' ], + ], + 2049 => + [ + [ [2049,3,14,11,0,0],[2049,3,14,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2049,11,7,9,59,59],[2049,11,7,1,59,59], + '2049031411:00:00','2049031403:00:00','2049110709:59:59','2049110701:59:59' ], + [ [2049,11,7,10,0,0],[2049,11,7,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2050,3,13,10,59,59],[2050,3,13,1,59,59], + '2049110710:00:00','2049110701:00:00','2050031310:59:59','2050031301:59:59' ], + ], + 2050 => + [ + [ [2050,3,13,11,0,0],[2050,3,13,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2050,11,6,9,59,59],[2050,11,6,1,59,59], + '2050031311:00:00','2050031303:00:00','2050110609:59:59','2050110601:59:59' ], + [ [2050,11,6,10,0,0],[2050,11,6,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2051,3,12,10,59,59],[2051,3,12,1,59,59], + '2050110610:00:00','2050110601:00:00','2051031210:59:59','2051031201:59:59' ], + ], + 2051 => + [ + [ [2051,3,12,11,0,0],[2051,3,12,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2051,11,5,9,59,59],[2051,11,5,1,59,59], + '2051031211:00:00','2051031203:00:00','2051110509:59:59','2051110501:59:59' ], + [ [2051,11,5,10,0,0],[2051,11,5,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2052,3,10,10,59,59],[2052,3,10,1,59,59], + '2051110510:00:00','2051110501:00:00','2052031010:59:59','2052031001:59:59' ], + ], + 2052 => + [ + [ [2052,3,10,11,0,0],[2052,3,10,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2052,11,3,9,59,59],[2052,11,3,1,59,59], + '2052031011:00:00','2052031003:00:00','2052110309:59:59','2052110301:59:59' ], + [ [2052,11,3,10,0,0],[2052,11,3,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2053,3,9,10,59,59],[2053,3,9,1,59,59], + '2052110310:00:00','2052110301:00:00','2053030910:59:59','2053030901:59:59' ], + ], + 2053 => + [ + [ [2053,3,9,11,0,0],[2053,3,9,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2053,11,2,9,59,59],[2053,11,2,1,59,59], + '2053030911:00:00','2053030903:00:00','2053110209:59:59','2053110201:59:59' ], + [ [2053,11,2,10,0,0],[2053,11,2,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2054,3,8,10,59,59],[2054,3,8,1,59,59], + '2053110210:00:00','2053110201:00:00','2054030810:59:59','2054030801:59:59' ], + ], + 2054 => + [ + [ [2054,3,8,11,0,0],[2054,3,8,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2054,11,1,9,59,59],[2054,11,1,1,59,59], + '2054030811:00:00','2054030803:00:00','2054110109:59:59','2054110101:59:59' ], + [ [2054,11,1,10,0,0],[2054,11,1,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2055,3,14,10,59,59],[2055,3,14,1,59,59], + '2054110110:00:00','2054110101:00:00','2055031410:59:59','2055031401:59:59' ], + ], + 2055 => + [ + [ [2055,3,14,11,0,0],[2055,3,14,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2055,11,7,9,59,59],[2055,11,7,1,59,59], + '2055031411:00:00','2055031403:00:00','2055110709:59:59','2055110701:59:59' ], + [ [2055,11,7,10,0,0],[2055,11,7,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2056,3,12,10,59,59],[2056,3,12,1,59,59], + '2055110710:00:00','2055110701:00:00','2056031210:59:59','2056031201:59:59' ], + ], + 2056 => + [ + [ [2056,3,12,11,0,0],[2056,3,12,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2056,11,5,9,59,59],[2056,11,5,1,59,59], + '2056031211:00:00','2056031203:00:00','2056110509:59:59','2056110501:59:59' ], + [ [2056,11,5,10,0,0],[2056,11,5,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2057,3,11,10,59,59],[2057,3,11,1,59,59], + '2056110510:00:00','2056110501:00:00','2057031110:59:59','2057031101:59:59' ], + ], + 2057 => + [ + [ [2057,3,11,11,0,0],[2057,3,11,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2057,11,4,9,59,59],[2057,11,4,1,59,59], + '2057031111:00:00','2057031103:00:00','2057110409:59:59','2057110401:59:59' ], + [ [2057,11,4,10,0,0],[2057,11,4,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2058,3,10,10,59,59],[2058,3,10,1,59,59], + '2057110410:00:00','2057110401:00:00','2058031010:59:59','2058031001:59:59' ], + ], + 2058 => + [ + [ [2058,3,10,11,0,0],[2058,3,10,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2058,11,3,9,59,59],[2058,11,3,1,59,59], + '2058031011:00:00','2058031003:00:00','2058110309:59:59','2058110301:59:59' ], + [ [2058,11,3,10,0,0],[2058,11,3,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2059,3,9,10,59,59],[2059,3,9,1,59,59], + '2058110310:00:00','2058110301:00:00','2059030910:59:59','2059030901:59:59' ], + ], + 2059 => + [ + [ [2059,3,9,11,0,0],[2059,3,9,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2059,11,2,9,59,59],[2059,11,2,1,59,59], + '2059030911:00:00','2059030903:00:00','2059110209:59:59','2059110201:59:59' ], + [ [2059,11,2,10,0,0],[2059,11,2,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2060,3,14,10,59,59],[2060,3,14,1,59,59], + '2059110210:00:00','2059110201:00:00','2060031410:59:59','2060031401:59:59' ], + ], + 2060 => + [ + [ [2060,3,14,11,0,0],[2060,3,14,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2060,11,7,9,59,59],[2060,11,7,1,59,59], + '2060031411:00:00','2060031403:00:00','2060110709:59:59','2060110701:59:59' ], + [ [2060,11,7,10,0,0],[2060,11,7,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2061,3,13,10,59,59],[2061,3,13,1,59,59], + '2060110710:00:00','2060110701:00:00','2061031310:59:59','2061031301:59:59' ], + ], + 2061 => + [ + [ [2061,3,13,11,0,0],[2061,3,13,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2061,11,6,9,59,59],[2061,11,6,1,59,59], + '2061031311:00:00','2061031303:00:00','2061110609:59:59','2061110601:59:59' ], + [ [2061,11,6,10,0,0],[2061,11,6,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2062,3,12,10,59,59],[2062,3,12,1,59,59], + '2061110610:00:00','2061110601:00:00','2062031210:59:59','2062031201:59:59' ], + ], + 2062 => + [ + [ [2062,3,12,11,0,0],[2062,3,12,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2062,11,5,9,59,59],[2062,11,5,1,59,59], + '2062031211:00:00','2062031203:00:00','2062110509:59:59','2062110501:59:59' ], + [ [2062,11,5,10,0,0],[2062,11,5,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2063,3,11,10,59,59],[2063,3,11,1,59,59], + '2062110510:00:00','2062110501:00:00','2063031110:59:59','2063031101:59:59' ], + ], + 2063 => + [ + [ [2063,3,11,11,0,0],[2063,3,11,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2063,11,4,9,59,59],[2063,11,4,1,59,59], + '2063031111:00:00','2063031103:00:00','2063110409:59:59','2063110401:59:59' ], + [ [2063,11,4,10,0,0],[2063,11,4,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2064,3,9,10,59,59],[2064,3,9,1,59,59], + '2063110410:00:00','2063110401:00:00','2064030910:59:59','2064030901:59:59' ], + ], + 2064 => + [ + [ [2064,3,9,11,0,0],[2064,3,9,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2064,11,2,9,59,59],[2064,11,2,1,59,59], + '2064030911:00:00','2064030903:00:00','2064110209:59:59','2064110201:59:59' ], + [ [2064,11,2,10,0,0],[2064,11,2,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2065,3,8,10,59,59],[2065,3,8,1,59,59], + '2064110210:00:00','2064110201:00:00','2065030810:59:59','2065030801:59:59' ], + ], + 2065 => + [ + [ [2065,3,8,11,0,0],[2065,3,8,3,0,0],'-08:00:00',[-8,0,0], + 'AKDT',1,[2065,11,1,9,59,59],[2065,11,1,1,59,59], + '2065030811:00:00','2065030803:00:00','2065110109:59:59','2065110101:59:59' ], + [ [2065,11,1,10,0,0],[2065,11,1,1,0,0],'-09:00:00',[-9,0,0], + 'AKST',0,[2066,3,14,10,59,59],[2066,3,14,1,59,59], + '2065110110:00:00','2065110101:00:00','2066031410:59:59','2066031401:59:59' ], ], ); %LastRule = ( + 'zone' => { + 'dstoff' => '-08:00:00', + 'stdoff' => '-09:00:00', + }, + 'rules' => { + '03' => { + 'flag' => 'ge', + 'dow' => '7', + 'num' => '8', + 'type' => 'w', + 'time' => '02:00:00', + 'isdst' => '1', + 'abb' => 'AKDT', + }, + '11' => { + 'flag' => 'ge', + 'dow' => '7', + 'num' => '1', + 'type' => 'w', + 'time' => '02:00:00', + 'isdst' => '0', + 'abb' => 'AKST', + }, + }, ); 1; diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amarag00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amarag00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amarag00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amarag00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amasun00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amasun00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amasun00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amasun00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amatik00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amatik00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amatik00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amatik00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambahi00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambahi00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambahi00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambahi00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambahi01.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambahi01.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambahi01.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambahi01.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambarb00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambarb00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambarb00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambarb00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambele00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambele00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambele00.pm 2015-09-01 12:27:12.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambele00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:12 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambeli00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambeli00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambeli00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambeli00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambeul00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambeul00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambeul00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambeul00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amblan00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amblan00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amblan00.pm 2015-09-01 12:27:12.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amblan00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:12 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amboa_00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amboa_00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amboa_00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amboa_00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambogo00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambogo00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambogo00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambogo00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambois00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambois00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambois00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambois00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambuen00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambuen00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ambuen00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ambuen00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcamb00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcamb00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcamb00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcamb00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcamp00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcamp00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcamp00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcamp00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcanc00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcanc00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcanc00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcanc00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcara00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcara00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcara00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcara00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcata00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcata00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcata00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcata00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcaye00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcaye00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcaye00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcaye00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcaym00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcaym00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcaym00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcaym00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcent00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcent00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcent00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcent00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amchic00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amchic00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amchic00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amchic00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amchih00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amchih00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amchih00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amchih00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcord00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcord00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcord00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcord00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcost00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcost00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcost00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcost00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcres00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcres00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcres00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcres00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcuia00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcuia00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcuia00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcuia00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcura00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcura00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amcura00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amcura00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amdanm00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amdanm00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amdanm00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amdanm00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amdaws00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amdaws00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amdaws00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amdaws00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amdaws01.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amdaws01.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amdaws01.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amdaws01.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amdenv00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amdenv00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amdenv00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amdenv00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amdetr00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amdetr00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amdetr00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amdetr00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amedmo00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amedmo00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amedmo00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amedmo00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ameiru00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ameiru00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ameiru00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ameiru00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amel_s00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amel_s00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amel_s00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amel_s00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amfort00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amfort00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amfort00.pm 2015-09-01 12:27:12.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amfort00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:12 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,207 +25,663 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( 1 => [ - [ [1,1,2,0,0,0],[1,1,1,21,26,0],'-02:34:00',[-2,-34,0], - 'LMT',0,[1914,1,1,2,33,59],[1913,12,31,23,59,59], - '0001010200:00:00','0001010121:26:00','1914010102:33:59','1913123123:59:59' ], - ], - 1914 => - [ - [ [1914,1,1,2,34,0],[1913,12,31,23,34,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1931,10,3,13,59,59],[1931,10,3,10,59,59], - '1914010102:34:00','1913123123:34:00','1931100313:59:59','1931100310:59:59' ], - ], - 1931 => - [ - [ [1931,10,3,14,0,0],[1931,10,3,12,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1932,4,1,1,59,59],[1932,3,31,23,59,59], - '1931100314:00:00','1931100312:00:00','1932040101:59:59','1932033123:59:59' ], - ], - 1932 => - [ - [ [1932,4,1,2,0,0],[1932,3,31,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1932,10,3,2,59,59],[1932,10,2,23,59,59], - '1932040102:00:00','1932033123:00:00','1932100302:59:59','1932100223:59:59' ], - [ [1932,10,3,3,0,0],[1932,10,3,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1933,4,1,1,59,59],[1933,3,31,23,59,59], - '1932100303:00:00','1932100301:00:00','1933040101:59:59','1933033123:59:59' ], - ], - 1933 => - [ - [ [1933,4,1,2,0,0],[1933,3,31,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1949,12,1,2,59,59],[1949,11,30,23,59,59], - '1933040102:00:00','1933033123:00:00','1949120102:59:59','1949113023:59:59' ], + [ [1,1,2,0,0,0],[1,1,1,15,49,13],'-08:10:47',[-8,-10,-47], + 'LMT',0,[1884,1,1,8,10,46],[1883,12,31,23,59,59], + '0001010200:00:00','0001010115:49:13','1884010108:10:46','1883123123:59:59' ], + ], + 1884 => + [ + [ [1884,1,1,8,10,47],[1884,1,1,0,10,47],'-08:00:00',[-8,0,0], + 'PST',0,[1918,4,14,9,59,59],[1918,4,14,1,59,59], + '1884010108:10:47','1884010100:10:47','1918041409:59:59','1918041401:59:59' ], + ], + 1918 => + [ + [ [1918,4,14,10,0,0],[1918,4,14,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1918,10,27,8,59,59],[1918,10,27,1,59,59], + '1918041410:00:00','1918041403:00:00','1918102708:59:59','1918102701:59:59' ], + [ [1918,10,27,9,0,0],[1918,10,27,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1942,2,9,9,59,59],[1942,2,9,1,59,59], + '1918102709:00:00','1918102701:00:00','1942020909:59:59','1942020901:59:59' ], + ], + 1942 => + [ + [ [1942,2,9,10,0,0],[1942,2,9,3,0,0],'-07:00:00',[-7,0,0], + 'PWT',1,[1945,8,14,22,59,59],[1945,8,14,15,59,59], + '1942020910:00:00','1942020903:00:00','1945081422:59:59','1945081415:59:59' ], + ], + 1945 => + [ + [ [1945,8,14,23,0,0],[1945,8,14,16,0,0],'-07:00:00',[-7,0,0], + 'PPT',1,[1945,9,30,8,59,59],[1945,9,30,1,59,59], + '1945081423:00:00','1945081416:00:00','1945093008:59:59','1945093001:59:59' ], + [ [1945,9,30,9,0,0],[1945,9,30,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1947,4,27,9,59,59],[1947,4,27,1,59,59], + '1945093009:00:00','1945093001:00:00','1947042709:59:59','1947042701:59:59' ], + ], + 1947 => + [ + [ [1947,4,27,10,0,0],[1947,4,27,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1947,9,28,8,59,59],[1947,9,28,1,59,59], + '1947042710:00:00','1947042703:00:00','1947092808:59:59','1947092801:59:59' ], + [ [1947,9,28,9,0,0],[1947,9,28,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1948,4,25,9,59,59],[1948,4,25,1,59,59], + '1947092809:00:00','1947092801:00:00','1948042509:59:59','1948042501:59:59' ], + ], + 1948 => + [ + [ [1948,4,25,10,0,0],[1948,4,25,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1948,9,26,8,59,59],[1948,9,26,1,59,59], + '1948042510:00:00','1948042503:00:00','1948092608:59:59','1948092601:59:59' ], + [ [1948,9,26,9,0,0],[1948,9,26,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1949,4,24,9,59,59],[1949,4,24,1,59,59], + '1948092609:00:00','1948092601:00:00','1949042409:59:59','1949042401:59:59' ], ], 1949 => [ - [ [1949,12,1,3,0,0],[1949,12,1,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1950,4,16,2,59,59],[1950,4,16,0,59,59], - '1949120103:00:00','1949120101:00:00','1950041602:59:59','1950041600:59:59' ], + [ [1949,4,24,10,0,0],[1949,4,24,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1949,9,25,8,59,59],[1949,9,25,1,59,59], + '1949042410:00:00','1949042403:00:00','1949092508:59:59','1949092501:59:59' ], + [ [1949,9,25,9,0,0],[1949,9,25,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1950,4,30,9,59,59],[1950,4,30,1,59,59], + '1949092509:00:00','1949092501:00:00','1950043009:59:59','1950043001:59:59' ], ], 1950 => [ - [ [1950,4,16,3,0,0],[1950,4,16,0,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1950,12,1,2,59,59],[1950,11,30,23,59,59], - '1950041603:00:00','1950041600:00:00','1950120102:59:59','1950113023:59:59' ], - [ [1950,12,1,3,0,0],[1950,12,1,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1951,4,1,1,59,59],[1951,3,31,23,59,59], - '1950120103:00:00','1950120101:00:00','1951040101:59:59','1951033123:59:59' ], + [ [1950,4,30,10,0,0],[1950,4,30,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1950,9,24,8,59,59],[1950,9,24,1,59,59], + '1950043010:00:00','1950043003:00:00','1950092408:59:59','1950092401:59:59' ], + [ [1950,9,24,9,0,0],[1950,9,24,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1951,4,29,9,59,59],[1951,4,29,1,59,59], + '1950092409:00:00','1950092401:00:00','1951042909:59:59','1951042901:59:59' ], ], 1951 => [ - [ [1951,4,1,2,0,0],[1951,3,31,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1951,12,1,2,59,59],[1951,11,30,23,59,59], - '1951040102:00:00','1951033123:00:00','1951120102:59:59','1951113023:59:59' ], - [ [1951,12,1,3,0,0],[1951,12,1,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1952,4,1,1,59,59],[1952,3,31,23,59,59], - '1951120103:00:00','1951120101:00:00','1952040101:59:59','1952033123:59:59' ], + [ [1951,4,29,10,0,0],[1951,4,29,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1951,9,30,8,59,59],[1951,9,30,1,59,59], + '1951042910:00:00','1951042903:00:00','1951093008:59:59','1951093001:59:59' ], + [ [1951,9,30,9,0,0],[1951,9,30,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1952,4,27,9,59,59],[1952,4,27,1,59,59], + '1951093009:00:00','1951093001:00:00','1952042709:59:59','1952042701:59:59' ], ], 1952 => [ - [ [1952,4,1,2,0,0],[1952,3,31,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1952,12,1,2,59,59],[1952,11,30,23,59,59], - '1952040102:00:00','1952033123:00:00','1952120102:59:59','1952113023:59:59' ], - [ [1952,12,1,3,0,0],[1952,12,1,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1953,3,1,1,59,59],[1953,2,28,23,59,59], - '1952120103:00:00','1952120101:00:00','1953030101:59:59','1953022823:59:59' ], + [ [1952,4,27,10,0,0],[1952,4,27,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1952,9,28,8,59,59],[1952,9,28,1,59,59], + '1952042710:00:00','1952042703:00:00','1952092808:59:59','1952092801:59:59' ], + [ [1952,9,28,9,0,0],[1952,9,28,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1953,4,26,9,59,59],[1953,4,26,1,59,59], + '1952092809:00:00','1952092801:00:00','1953042609:59:59','1953042601:59:59' ], ], 1953 => [ - [ [1953,3,1,2,0,0],[1953,2,28,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1963,12,9,2,59,59],[1963,12,8,23,59,59], - '1953030102:00:00','1953022823:00:00','1963120902:59:59','1963120823:59:59' ], + [ [1953,4,26,10,0,0],[1953,4,26,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1953,9,27,8,59,59],[1953,9,27,1,59,59], + '1953042610:00:00','1953042603:00:00','1953092708:59:59','1953092701:59:59' ], + [ [1953,9,27,9,0,0],[1953,9,27,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1954,4,25,9,59,59],[1954,4,25,1,59,59], + '1953092709:00:00','1953092701:00:00','1954042509:59:59','1954042501:59:59' ], + ], + 1954 => + [ + [ [1954,4,25,10,0,0],[1954,4,25,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1954,9,26,8,59,59],[1954,9,26,1,59,59], + '1954042510:00:00','1954042503:00:00','1954092608:59:59','1954092601:59:59' ], + [ [1954,9,26,9,0,0],[1954,9,26,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1955,4,24,9,59,59],[1955,4,24,1,59,59], + '1954092609:00:00','1954092601:00:00','1955042409:59:59','1955042401:59:59' ], + ], + 1955 => + [ + [ [1955,4,24,10,0,0],[1955,4,24,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1955,9,25,8,59,59],[1955,9,25,1,59,59], + '1955042410:00:00','1955042403:00:00','1955092508:59:59','1955092501:59:59' ], + [ [1955,9,25,9,0,0],[1955,9,25,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1956,4,29,9,59,59],[1956,4,29,1,59,59], + '1955092509:00:00','1955092501:00:00','1956042909:59:59','1956042901:59:59' ], + ], + 1956 => + [ + [ [1956,4,29,10,0,0],[1956,4,29,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1956,9,30,8,59,59],[1956,9,30,1,59,59], + '1956042910:00:00','1956042903:00:00','1956093008:59:59','1956093001:59:59' ], + [ [1956,9,30,9,0,0],[1956,9,30,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1957,4,28,9,59,59],[1957,4,28,1,59,59], + '1956093009:00:00','1956093001:00:00','1957042809:59:59','1957042801:59:59' ], + ], + 1957 => + [ + [ [1957,4,28,10,0,0],[1957,4,28,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1957,9,29,8,59,59],[1957,9,29,1,59,59], + '1957042810:00:00','1957042803:00:00','1957092908:59:59','1957092901:59:59' ], + [ [1957,9,29,9,0,0],[1957,9,29,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1958,4,27,9,59,59],[1958,4,27,1,59,59], + '1957092909:00:00','1957092901:00:00','1958042709:59:59','1958042701:59:59' ], + ], + 1958 => + [ + [ [1958,4,27,10,0,0],[1958,4,27,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1958,9,28,8,59,59],[1958,9,28,1,59,59], + '1958042710:00:00','1958042703:00:00','1958092808:59:59','1958092801:59:59' ], + [ [1958,9,28,9,0,0],[1958,9,28,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1959,4,26,9,59,59],[1959,4,26,1,59,59], + '1958092809:00:00','1958092801:00:00','1959042609:59:59','1959042601:59:59' ], + ], + 1959 => + [ + [ [1959,4,26,10,0,0],[1959,4,26,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1959,9,27,8,59,59],[1959,9,27,1,59,59], + '1959042610:00:00','1959042603:00:00','1959092708:59:59','1959092701:59:59' ], + [ [1959,9,27,9,0,0],[1959,9,27,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1960,4,24,9,59,59],[1960,4,24,1,59,59], + '1959092709:00:00','1959092701:00:00','1960042409:59:59','1960042401:59:59' ], + ], + 1960 => + [ + [ [1960,4,24,10,0,0],[1960,4,24,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1960,9,25,8,59,59],[1960,9,25,1,59,59], + '1960042410:00:00','1960042403:00:00','1960092508:59:59','1960092501:59:59' ], + [ [1960,9,25,9,0,0],[1960,9,25,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1961,4,30,9,59,59],[1961,4,30,1,59,59], + '1960092509:00:00','1960092501:00:00','1961043009:59:59','1961043001:59:59' ], + ], + 1961 => + [ + [ [1961,4,30,10,0,0],[1961,4,30,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1961,9,24,8,59,59],[1961,9,24,1,59,59], + '1961043010:00:00','1961043003:00:00','1961092408:59:59','1961092401:59:59' ], + [ [1961,9,24,9,0,0],[1961,9,24,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1962,4,29,9,59,59],[1962,4,29,1,59,59], + '1961092409:00:00','1961092401:00:00','1962042909:59:59','1962042901:59:59' ], + ], + 1962 => + [ + [ [1962,4,29,10,0,0],[1962,4,29,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1962,10,28,8,59,59],[1962,10,28,1,59,59], + '1962042910:00:00','1962042903:00:00','1962102808:59:59','1962102801:59:59' ], + [ [1962,10,28,9,0,0],[1962,10,28,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1963,4,28,9,59,59],[1963,4,28,1,59,59], + '1962102809:00:00','1962102801:00:00','1963042809:59:59','1963042801:59:59' ], ], 1963 => [ - [ [1963,12,9,3,0,0],[1963,12,9,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1964,3,1,1,59,59],[1964,2,29,23,59,59], - '1963120903:00:00','1963120901:00:00','1964030101:59:59','1964022923:59:59' ], + [ [1963,4,28,10,0,0],[1963,4,28,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1963,10,27,8,59,59],[1963,10,27,1,59,59], + '1963042810:00:00','1963042803:00:00','1963102708:59:59','1963102701:59:59' ], + [ [1963,10,27,9,0,0],[1963,10,27,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1964,4,26,9,59,59],[1964,4,26,1,59,59], + '1963102709:00:00','1963102701:00:00','1964042609:59:59','1964042601:59:59' ], ], 1964 => [ - [ [1964,3,1,2,0,0],[1964,2,29,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1965,1,31,2,59,59],[1965,1,30,23,59,59], - '1964030102:00:00','1964022923:00:00','1965013102:59:59','1965013023:59:59' ], + [ [1964,4,26,10,0,0],[1964,4,26,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1964,10,25,8,59,59],[1964,10,25,1,59,59], + '1964042610:00:00','1964042603:00:00','1964102508:59:59','1964102501:59:59' ], + [ [1964,10,25,9,0,0],[1964,10,25,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1965,4,25,9,59,59],[1965,4,25,1,59,59], + '1964102509:00:00','1964102501:00:00','1965042509:59:59','1965042501:59:59' ], ], 1965 => [ - [ [1965,1,31,3,0,0],[1965,1,31,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1965,3,31,1,59,59],[1965,3,30,23,59,59], - '1965013103:00:00','1965013101:00:00','1965033101:59:59','1965033023:59:59' ], - [ [1965,3,31,2,0,0],[1965,3,30,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1965,12,1,2,59,59],[1965,11,30,23,59,59], - '1965033102:00:00','1965033023:00:00','1965120102:59:59','1965113023:59:59' ], - [ [1965,12,1,3,0,0],[1965,12,1,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1966,3,1,1,59,59],[1966,2,28,23,59,59], - '1965120103:00:00','1965120101:00:00','1966030101:59:59','1966022823:59:59' ], + [ [1965,4,25,10,0,0],[1965,4,25,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1965,10,31,8,59,59],[1965,10,31,1,59,59], + '1965042510:00:00','1965042503:00:00','1965103108:59:59','1965103101:59:59' ], + [ [1965,10,31,9,0,0],[1965,10,31,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1966,4,24,9,59,59],[1966,4,24,1,59,59], + '1965103109:00:00','1965103101:00:00','1966042409:59:59','1966042401:59:59' ], ], 1966 => [ - [ [1966,3,1,2,0,0],[1966,2,28,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1966,11,1,2,59,59],[1966,10,31,23,59,59], - '1966030102:00:00','1966022823:00:00','1966110102:59:59','1966103123:59:59' ], - [ [1966,11,1,3,0,0],[1966,11,1,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1967,3,1,1,59,59],[1967,2,28,23,59,59], - '1966110103:00:00','1966110101:00:00','1967030101:59:59','1967022823:59:59' ], + [ [1966,4,24,10,0,0],[1966,4,24,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1966,10,30,8,59,59],[1966,10,30,1,59,59], + '1966042410:00:00','1966042403:00:00','1966103008:59:59','1966103001:59:59' ], + [ [1966,10,30,9,0,0],[1966,10,30,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1967,4,30,9,59,59],[1967,4,30,1,59,59], + '1966103009:00:00','1966103001:00:00','1967043009:59:59','1967043001:59:59' ], ], 1967 => [ - [ [1967,3,1,2,0,0],[1967,2,28,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1967,11,1,2,59,59],[1967,10,31,23,59,59], - '1967030102:00:00','1967022823:00:00','1967110102:59:59','1967103123:59:59' ], - [ [1967,11,1,3,0,0],[1967,11,1,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1968,3,1,1,59,59],[1968,2,29,23,59,59], - '1967110103:00:00','1967110101:00:00','1968030101:59:59','1968022923:59:59' ], + [ [1967,4,30,10,0,0],[1967,4,30,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1967,10,29,8,59,59],[1967,10,29,1,59,59], + '1967043010:00:00','1967043003:00:00','1967102908:59:59','1967102901:59:59' ], + [ [1967,10,29,9,0,0],[1967,10,29,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1968,4,28,9,59,59],[1968,4,28,1,59,59], + '1967102909:00:00','1967102901:00:00','1968042809:59:59','1968042801:59:59' ], ], 1968 => [ - [ [1968,3,1,2,0,0],[1968,2,29,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1985,11,2,2,59,59],[1985,11,1,23,59,59], - '1968030102:00:00','1968022923:00:00','1985110202:59:59','1985110123:59:59' ], + [ [1968,4,28,10,0,0],[1968,4,28,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1968,10,27,8,59,59],[1968,10,27,1,59,59], + '1968042810:00:00','1968042803:00:00','1968102708:59:59','1968102701:59:59' ], + [ [1968,10,27,9,0,0],[1968,10,27,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1969,4,27,9,59,59],[1969,4,27,1,59,59], + '1968102709:00:00','1968102701:00:00','1969042709:59:59','1969042701:59:59' ], + ], + 1969 => + [ + [ [1969,4,27,10,0,0],[1969,4,27,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1969,10,26,8,59,59],[1969,10,26,1,59,59], + '1969042710:00:00','1969042703:00:00','1969102608:59:59','1969102601:59:59' ], + [ [1969,10,26,9,0,0],[1969,10,26,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1970,4,26,9,59,59],[1970,4,26,1,59,59], + '1969102609:00:00','1969102601:00:00','1970042609:59:59','1970042601:59:59' ], + ], + 1970 => + [ + [ [1970,4,26,10,0,0],[1970,4,26,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1970,10,25,8,59,59],[1970,10,25,1,59,59], + '1970042610:00:00','1970042603:00:00','1970102508:59:59','1970102501:59:59' ], + [ [1970,10,25,9,0,0],[1970,10,25,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1971,4,25,9,59,59],[1971,4,25,1,59,59], + '1970102509:00:00','1970102501:00:00','1971042509:59:59','1971042501:59:59' ], + ], + 1971 => + [ + [ [1971,4,25,10,0,0],[1971,4,25,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1971,10,31,8,59,59],[1971,10,31,1,59,59], + '1971042510:00:00','1971042503:00:00','1971103108:59:59','1971103101:59:59' ], + [ [1971,10,31,9,0,0],[1971,10,31,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1972,4,30,9,59,59],[1972,4,30,1,59,59], + '1971103109:00:00','1971103101:00:00','1972043009:59:59','1972043001:59:59' ], + ], + 1972 => + [ + [ [1972,4,30,10,0,0],[1972,4,30,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1972,10,29,8,59,59],[1972,10,29,1,59,59], + '1972043010:00:00','1972043003:00:00','1972102908:59:59','1972102901:59:59' ], + [ [1972,10,29,9,0,0],[1972,10,29,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1973,4,29,9,59,59],[1973,4,29,1,59,59], + '1972102909:00:00','1972102901:00:00','1973042909:59:59','1973042901:59:59' ], + ], + 1973 => + [ + [ [1973,4,29,10,0,0],[1973,4,29,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1973,10,28,8,59,59],[1973,10,28,1,59,59], + '1973042910:00:00','1973042903:00:00','1973102808:59:59','1973102801:59:59' ], + [ [1973,10,28,9,0,0],[1973,10,28,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1974,4,28,9,59,59],[1974,4,28,1,59,59], + '1973102809:00:00','1973102801:00:00','1974042809:59:59','1974042801:59:59' ], + ], + 1974 => + [ + [ [1974,4,28,10,0,0],[1974,4,28,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1974,10,27,8,59,59],[1974,10,27,1,59,59], + '1974042810:00:00','1974042803:00:00','1974102708:59:59','1974102701:59:59' ], + [ [1974,10,27,9,0,0],[1974,10,27,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1975,4,27,9,59,59],[1975,4,27,1,59,59], + '1974102709:00:00','1974102701:00:00','1975042709:59:59','1975042701:59:59' ], + ], + 1975 => + [ + [ [1975,4,27,10,0,0],[1975,4,27,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1975,10,26,8,59,59],[1975,10,26,1,59,59], + '1975042710:00:00','1975042703:00:00','1975102608:59:59','1975102601:59:59' ], + [ [1975,10,26,9,0,0],[1975,10,26,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1976,4,25,9,59,59],[1976,4,25,1,59,59], + '1975102609:00:00','1975102601:00:00','1976042509:59:59','1976042501:59:59' ], + ], + 1976 => + [ + [ [1976,4,25,10,0,0],[1976,4,25,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1976,10,31,8,59,59],[1976,10,31,1,59,59], + '1976042510:00:00','1976042503:00:00','1976103108:59:59','1976103101:59:59' ], + [ [1976,10,31,9,0,0],[1976,10,31,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1977,4,24,9,59,59],[1977,4,24,1,59,59], + '1976103109:00:00','1976103101:00:00','1977042409:59:59','1977042401:59:59' ], + ], + 1977 => + [ + [ [1977,4,24,10,0,0],[1977,4,24,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1977,10,30,8,59,59],[1977,10,30,1,59,59], + '1977042410:00:00','1977042403:00:00','1977103008:59:59','1977103001:59:59' ], + [ [1977,10,30,9,0,0],[1977,10,30,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1978,4,30,9,59,59],[1978,4,30,1,59,59], + '1977103009:00:00','1977103001:00:00','1978043009:59:59','1978043001:59:59' ], + ], + 1978 => + [ + [ [1978,4,30,10,0,0],[1978,4,30,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1978,10,29,8,59,59],[1978,10,29,1,59,59], + '1978043010:00:00','1978043003:00:00','1978102908:59:59','1978102901:59:59' ], + [ [1978,10,29,9,0,0],[1978,10,29,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1979,4,29,9,59,59],[1979,4,29,1,59,59], + '1978102909:00:00','1978102901:00:00','1979042909:59:59','1979042901:59:59' ], + ], + 1979 => + [ + [ [1979,4,29,10,0,0],[1979,4,29,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1979,10,28,8,59,59],[1979,10,28,1,59,59], + '1979042910:00:00','1979042903:00:00','1979102808:59:59','1979102801:59:59' ], + [ [1979,10,28,9,0,0],[1979,10,28,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1980,4,27,9,59,59],[1980,4,27,1,59,59], + '1979102809:00:00','1979102801:00:00','1980042709:59:59','1980042701:59:59' ], + ], + 1980 => + [ + [ [1980,4,27,10,0,0],[1980,4,27,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1980,10,26,8,59,59],[1980,10,26,1,59,59], + '1980042710:00:00','1980042703:00:00','1980102608:59:59','1980102601:59:59' ], + [ [1980,10,26,9,0,0],[1980,10,26,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1981,4,26,9,59,59],[1981,4,26,1,59,59], + '1980102609:00:00','1980102601:00:00','1981042609:59:59','1981042601:59:59' ], + ], + 1981 => + [ + [ [1981,4,26,10,0,0],[1981,4,26,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1981,10,25,8,59,59],[1981,10,25,1,59,59], + '1981042610:00:00','1981042603:00:00','1981102508:59:59','1981102501:59:59' ], + [ [1981,10,25,9,0,0],[1981,10,25,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1982,4,25,9,59,59],[1982,4,25,1,59,59], + '1981102509:00:00','1981102501:00:00','1982042509:59:59','1982042501:59:59' ], + ], + 1982 => + [ + [ [1982,4,25,10,0,0],[1982,4,25,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1982,10,31,8,59,59],[1982,10,31,1,59,59], + '1982042510:00:00','1982042503:00:00','1982103108:59:59','1982103101:59:59' ], + [ [1982,10,31,9,0,0],[1982,10,31,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1983,4,24,9,59,59],[1983,4,24,1,59,59], + '1982103109:00:00','1982103101:00:00','1983042409:59:59','1983042401:59:59' ], + ], + 1983 => + [ + [ [1983,4,24,10,0,0],[1983,4,24,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1983,10,30,8,59,59],[1983,10,30,1,59,59], + '1983042410:00:00','1983042403:00:00','1983103008:59:59','1983103001:59:59' ], + [ [1983,10,30,9,0,0],[1983,10,30,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1984,4,29,9,59,59],[1984,4,29,1,59,59], + '1983103009:00:00','1983103001:00:00','1984042909:59:59','1984042901:59:59' ], + ], + 1984 => + [ + [ [1984,4,29,10,0,0],[1984,4,29,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1984,10,28,8,59,59],[1984,10,28,1,59,59], + '1984042910:00:00','1984042903:00:00','1984102808:59:59','1984102801:59:59' ], + [ [1984,10,28,9,0,0],[1984,10,28,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1985,4,28,9,59,59],[1985,4,28,1,59,59], + '1984102809:00:00','1984102801:00:00','1985042809:59:59','1985042801:59:59' ], ], 1985 => [ - [ [1985,11,2,3,0,0],[1985,11,2,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1986,3,15,1,59,59],[1986,3,14,23,59,59], - '1985110203:00:00','1985110201:00:00','1986031501:59:59','1986031423:59:59' ], + [ [1985,4,28,10,0,0],[1985,4,28,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1985,10,27,8,59,59],[1985,10,27,1,59,59], + '1985042810:00:00','1985042803:00:00','1985102708:59:59','1985102701:59:59' ], + [ [1985,10,27,9,0,0],[1985,10,27,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1986,4,27,9,59,59],[1986,4,27,1,59,59], + '1985102709:00:00','1985102701:00:00','1986042709:59:59','1986042701:59:59' ], ], 1986 => [ - [ [1986,3,15,2,0,0],[1986,3,14,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1986,10,25,2,59,59],[1986,10,24,23,59,59], - '1986031502:00:00','1986031423:00:00','1986102502:59:59','1986102423:59:59' ], - [ [1986,10,25,3,0,0],[1986,10,25,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1987,2,14,1,59,59],[1987,2,13,23,59,59], - '1986102503:00:00','1986102501:00:00','1987021401:59:59','1987021323:59:59' ], + [ [1986,4,27,10,0,0],[1986,4,27,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1986,10,26,8,59,59],[1986,10,26,1,59,59], + '1986042710:00:00','1986042703:00:00','1986102608:59:59','1986102601:59:59' ], + [ [1986,10,26,9,0,0],[1986,10,26,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1987,4,5,9,59,59],[1987,4,5,1,59,59], + '1986102609:00:00','1986102601:00:00','1987040509:59:59','1987040501:59:59' ], ], 1987 => [ - [ [1987,2,14,2,0,0],[1987,2,13,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1987,10,25,2,59,59],[1987,10,24,23,59,59], - '1987021402:00:00','1987021323:00:00','1987102502:59:59','1987102423:59:59' ], - [ [1987,10,25,3,0,0],[1987,10,25,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1988,2,7,1,59,59],[1988,2,6,23,59,59], - '1987102503:00:00','1987102501:00:00','1988020701:59:59','1988020623:59:59' ], + [ [1987,4,5,10,0,0],[1987,4,5,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1987,10,25,8,59,59],[1987,10,25,1,59,59], + '1987040510:00:00','1987040503:00:00','1987102508:59:59','1987102501:59:59' ], + [ [1987,10,25,9,0,0],[1987,10,25,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1988,4,3,9,59,59],[1988,4,3,1,59,59], + '1987102509:00:00','1987102501:00:00','1988040309:59:59','1988040301:59:59' ], ], 1988 => [ - [ [1988,2,7,2,0,0],[1988,2,6,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1988,10,16,2,59,59],[1988,10,15,23,59,59], - '1988020702:00:00','1988020623:00:00','1988101602:59:59','1988101523:59:59' ], - [ [1988,10,16,3,0,0],[1988,10,16,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1989,1,29,1,59,59],[1989,1,28,23,59,59], - '1988101603:00:00','1988101601:00:00','1989012901:59:59','1989012823:59:59' ], + [ [1988,4,3,10,0,0],[1988,4,3,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1988,10,30,8,59,59],[1988,10,30,1,59,59], + '1988040310:00:00','1988040303:00:00','1988103008:59:59','1988103001:59:59' ], + [ [1988,10,30,9,0,0],[1988,10,30,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1989,4,2,9,59,59],[1989,4,2,1,59,59], + '1988103009:00:00','1988103001:00:00','1989040209:59:59','1989040201:59:59' ], ], 1989 => [ - [ [1989,1,29,2,0,0],[1989,1,28,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1989,10,15,2,59,59],[1989,10,14,23,59,59], - '1989012902:00:00','1989012823:00:00','1989101502:59:59','1989101423:59:59' ], - [ [1989,10,15,3,0,0],[1989,10,15,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[1990,2,11,1,59,59],[1990,2,10,23,59,59], - '1989101503:00:00','1989101501:00:00','1990021101:59:59','1990021023:59:59' ], + [ [1989,4,2,10,0,0],[1989,4,2,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1989,10,29,8,59,59],[1989,10,29,1,59,59], + '1989040210:00:00','1989040203:00:00','1989102908:59:59','1989102901:59:59' ], + [ [1989,10,29,9,0,0],[1989,10,29,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1990,4,1,9,59,59],[1990,4,1,1,59,59], + '1989102909:00:00','1989102901:00:00','1990040109:59:59','1990040101:59:59' ], ], 1990 => [ - [ [1990,2,11,2,0,0],[1990,2,10,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[1999,10,3,2,59,59],[1999,10,2,23,59,59], - '1990021102:00:00','1990021023:00:00','1999100302:59:59','1999100223:59:59' ], + [ [1990,4,1,10,0,0],[1990,4,1,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1990,10,28,8,59,59],[1990,10,28,1,59,59], + '1990040110:00:00','1990040103:00:00','1990102808:59:59','1990102801:59:59' ], + [ [1990,10,28,9,0,0],[1990,10,28,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1991,4,7,9,59,59],[1991,4,7,1,59,59], + '1990102809:00:00','1990102801:00:00','1991040709:59:59','1991040701:59:59' ], + ], + 1991 => + [ + [ [1991,4,7,10,0,0],[1991,4,7,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1991,10,27,8,59,59],[1991,10,27,1,59,59], + '1991040710:00:00','1991040703:00:00','1991102708:59:59','1991102701:59:59' ], + [ [1991,10,27,9,0,0],[1991,10,27,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1992,4,5,9,59,59],[1992,4,5,1,59,59], + '1991102709:00:00','1991102701:00:00','1992040509:59:59','1992040501:59:59' ], + ], + 1992 => + [ + [ [1992,4,5,10,0,0],[1992,4,5,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1992,10,25,8,59,59],[1992,10,25,1,59,59], + '1992040510:00:00','1992040503:00:00','1992102508:59:59','1992102501:59:59' ], + [ [1992,10,25,9,0,0],[1992,10,25,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1993,4,4,9,59,59],[1993,4,4,1,59,59], + '1992102509:00:00','1992102501:00:00','1993040409:59:59','1993040401:59:59' ], + ], + 1993 => + [ + [ [1993,4,4,10,0,0],[1993,4,4,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1993,10,31,8,59,59],[1993,10,31,1,59,59], + '1993040410:00:00','1993040403:00:00','1993103108:59:59','1993103101:59:59' ], + [ [1993,10,31,9,0,0],[1993,10,31,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1994,4,3,9,59,59],[1994,4,3,1,59,59], + '1993103109:00:00','1993103101:00:00','1994040309:59:59','1994040301:59:59' ], + ], + 1994 => + [ + [ [1994,4,3,10,0,0],[1994,4,3,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1994,10,30,8,59,59],[1994,10,30,1,59,59], + '1994040310:00:00','1994040303:00:00','1994103008:59:59','1994103001:59:59' ], + [ [1994,10,30,9,0,0],[1994,10,30,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1995,4,2,9,59,59],[1995,4,2,1,59,59], + '1994103009:00:00','1994103001:00:00','1995040209:59:59','1995040201:59:59' ], + ], + 1995 => + [ + [ [1995,4,2,10,0,0],[1995,4,2,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1995,10,29,8,59,59],[1995,10,29,1,59,59], + '1995040210:00:00','1995040203:00:00','1995102908:59:59','1995102901:59:59' ], + [ [1995,10,29,9,0,0],[1995,10,29,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1996,4,7,9,59,59],[1996,4,7,1,59,59], + '1995102909:00:00','1995102901:00:00','1996040709:59:59','1996040701:59:59' ], + ], + 1996 => + [ + [ [1996,4,7,10,0,0],[1996,4,7,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1996,10,27,8,59,59],[1996,10,27,1,59,59], + '1996040710:00:00','1996040703:00:00','1996102708:59:59','1996102701:59:59' ], + [ [1996,10,27,9,0,0],[1996,10,27,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1997,4,6,9,59,59],[1997,4,6,1,59,59], + '1996102709:00:00','1996102701:00:00','1997040609:59:59','1997040601:59:59' ], + ], + 1997 => + [ + [ [1997,4,6,10,0,0],[1997,4,6,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1997,10,26,8,59,59],[1997,10,26,1,59,59], + '1997040610:00:00','1997040603:00:00','1997102608:59:59','1997102601:59:59' ], + [ [1997,10,26,9,0,0],[1997,10,26,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1998,4,5,9,59,59],[1998,4,5,1,59,59], + '1997102609:00:00','1997102601:00:00','1998040509:59:59','1998040501:59:59' ], + ], + 1998 => + [ + [ [1998,4,5,10,0,0],[1998,4,5,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1998,10,25,8,59,59],[1998,10,25,1,59,59], + '1998040510:00:00','1998040503:00:00','1998102508:59:59','1998102501:59:59' ], + [ [1998,10,25,9,0,0],[1998,10,25,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[1999,4,4,9,59,59],[1999,4,4,1,59,59], + '1998102509:00:00','1998102501:00:00','1999040409:59:59','1999040401:59:59' ], ], 1999 => [ - [ [1999,10,3,3,0,0],[1999,10,3,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[2000,2,27,1,59,59],[2000,2,26,23,59,59], - '1999100303:00:00','1999100301:00:00','2000022701:59:59','2000022623:59:59' ], + [ [1999,4,4,10,0,0],[1999,4,4,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[1999,10,31,8,59,59],[1999,10,31,1,59,59], + '1999040410:00:00','1999040403:00:00','1999103108:59:59','1999103101:59:59' ], + [ [1999,10,31,9,0,0],[1999,10,31,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2000,4,2,9,59,59],[2000,4,2,1,59,59], + '1999103109:00:00','1999103101:00:00','2000040209:59:59','2000040201:59:59' ], ], 2000 => [ - [ [2000,2,27,2,0,0],[2000,2,26,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[2000,10,8,2,59,59],[2000,10,7,23,59,59], - '2000022702:00:00','2000022623:00:00','2000100802:59:59','2000100723:59:59' ], - [ [2000,10,8,3,0,0],[2000,10,8,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[2000,10,22,1,59,59],[2000,10,21,23,59,59], - '2000100803:00:00','2000100801:00:00','2000102201:59:59','2000102123:59:59' ], - [ [2000,10,22,2,0,0],[2000,10,21,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[2001,10,14,2,59,59],[2001,10,13,23,59,59], - '2000102202:00:00','2000102123:00:00','2001101402:59:59','2001101323:59:59' ], + [ [2000,4,2,10,0,0],[2000,4,2,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2000,10,29,8,59,59],[2000,10,29,1,59,59], + '2000040210:00:00','2000040203:00:00','2000102908:59:59','2000102901:59:59' ], + [ [2000,10,29,9,0,0],[2000,10,29,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2001,4,1,9,59,59],[2001,4,1,1,59,59], + '2000102909:00:00','2000102901:00:00','2001040109:59:59','2001040101:59:59' ], ], 2001 => [ - [ [2001,10,14,3,0,0],[2001,10,14,1,0,0],'-02:00:00',[-2,0,0], - 'BRST',1,[2002,2,17,1,59,59],[2002,2,16,23,59,59], - '2001101403:00:00','2001101401:00:00','2002021701:59:59','2002021623:59:59' ], + [ [2001,4,1,10,0,0],[2001,4,1,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2001,10,28,8,59,59],[2001,10,28,1,59,59], + '2001040110:00:00','2001040103:00:00','2001102808:59:59','2001102801:59:59' ], + [ [2001,10,28,9,0,0],[2001,10,28,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2002,4,7,9,59,59],[2002,4,7,1,59,59], + '2001102809:00:00','2001102801:00:00','2002040709:59:59','2002040701:59:59' ], ], 2002 => [ - [ [2002,2,17,2,0,0],[2002,2,16,23,0,0],'-03:00:00',[-3,0,0], - 'BRT',0,[9999,12,31,0,0,0],[9999,12,30,21,0,0], - '2002021702:00:00','2002021623:00:00','9999123100:00:00','9999123021:00:00' ], + [ [2002,4,7,10,0,0],[2002,4,7,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2002,10,27,8,59,59],[2002,10,27,1,59,59], + '2002040710:00:00','2002040703:00:00','2002102708:59:59','2002102701:59:59' ], + [ [2002,10,27,9,0,0],[2002,10,27,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2003,4,6,9,59,59],[2003,4,6,1,59,59], + '2002102709:00:00','2002102701:00:00','2003040609:59:59','2003040601:59:59' ], + ], + 2003 => + [ + [ [2003,4,6,10,0,0],[2003,4,6,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2003,10,26,8,59,59],[2003,10,26,1,59,59], + '2003040610:00:00','2003040603:00:00','2003102608:59:59','2003102601:59:59' ], + [ [2003,10,26,9,0,0],[2003,10,26,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2004,4,4,9,59,59],[2004,4,4,1,59,59], + '2003102609:00:00','2003102601:00:00','2004040409:59:59','2004040401:59:59' ], + ], + 2004 => + [ + [ [2004,4,4,10,0,0],[2004,4,4,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2004,10,31,8,59,59],[2004,10,31,1,59,59], + '2004040410:00:00','2004040403:00:00','2004103108:59:59','2004103101:59:59' ], + [ [2004,10,31,9,0,0],[2004,10,31,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2005,4,3,9,59,59],[2005,4,3,1,59,59], + '2004103109:00:00','2004103101:00:00','2005040309:59:59','2005040301:59:59' ], + ], + 2005 => + [ + [ [2005,4,3,10,0,0],[2005,4,3,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2005,10,30,8,59,59],[2005,10,30,1,59,59], + '2005040310:00:00','2005040303:00:00','2005103008:59:59','2005103001:59:59' ], + [ [2005,10,30,9,0,0],[2005,10,30,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2006,4,2,9,59,59],[2006,4,2,1,59,59], + '2005103009:00:00','2005103001:00:00','2006040209:59:59','2006040201:59:59' ], + ], + 2006 => + [ + [ [2006,4,2,10,0,0],[2006,4,2,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2006,10,29,8,59,59],[2006,10,29,1,59,59], + '2006040210:00:00','2006040203:00:00','2006102908:59:59','2006102901:59:59' ], + [ [2006,10,29,9,0,0],[2006,10,29,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2007,3,11,9,59,59],[2007,3,11,1,59,59], + '2006102909:00:00','2006102901:00:00','2007031109:59:59','2007031101:59:59' ], + ], + 2007 => + [ + [ [2007,3,11,10,0,0],[2007,3,11,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2007,11,4,8,59,59],[2007,11,4,1,59,59], + '2007031110:00:00','2007031103:00:00','2007110408:59:59','2007110401:59:59' ], + [ [2007,11,4,9,0,0],[2007,11,4,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2008,3,9,9,59,59],[2008,3,9,1,59,59], + '2007110409:00:00','2007110401:00:00','2008030909:59:59','2008030901:59:59' ], + ], + 2008 => + [ + [ [2008,3,9,10,0,0],[2008,3,9,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2008,11,2,8,59,59],[2008,11,2,1,59,59], + '2008030910:00:00','2008030903:00:00','2008110208:59:59','2008110201:59:59' ], + [ [2008,11,2,9,0,0],[2008,11,2,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2009,3,8,9,59,59],[2009,3,8,1,59,59], + '2008110209:00:00','2008110201:00:00','2009030809:59:59','2009030801:59:59' ], + ], + 2009 => + [ + [ [2009,3,8,10,0,0],[2009,3,8,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2009,11,1,8,59,59],[2009,11,1,1,59,59], + '2009030810:00:00','2009030803:00:00','2009110108:59:59','2009110101:59:59' ], + [ [2009,11,1,9,0,0],[2009,11,1,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2010,3,14,9,59,59],[2010,3,14,1,59,59], + '2009110109:00:00','2009110101:00:00','2010031409:59:59','2010031401:59:59' ], + ], + 2010 => + [ + [ [2010,3,14,10,0,0],[2010,3,14,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2010,11,7,8,59,59],[2010,11,7,1,59,59], + '2010031410:00:00','2010031403:00:00','2010110708:59:59','2010110701:59:59' ], + [ [2010,11,7,9,0,0],[2010,11,7,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2011,3,13,9,59,59],[2011,3,13,1,59,59], + '2010110709:00:00','2010110701:00:00','2011031309:59:59','2011031301:59:59' ], + ], + 2011 => + [ + [ [2011,3,13,10,0,0],[2011,3,13,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2011,11,6,8,59,59],[2011,11,6,1,59,59], + '2011031310:00:00','2011031303:00:00','2011110608:59:59','2011110601:59:59' ], + [ [2011,11,6,9,0,0],[2011,11,6,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2012,3,11,9,59,59],[2012,3,11,1,59,59], + '2011110609:00:00','2011110601:00:00','2012031109:59:59','2012031101:59:59' ], + ], + 2012 => + [ + [ [2012,3,11,10,0,0],[2012,3,11,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2012,11,4,8,59,59],[2012,11,4,1,59,59], + '2012031110:00:00','2012031103:00:00','2012110408:59:59','2012110401:59:59' ], + [ [2012,11,4,9,0,0],[2012,11,4,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2013,3,10,9,59,59],[2013,3,10,1,59,59], + '2012110409:00:00','2012110401:00:00','2013031009:59:59','2013031001:59:59' ], + ], + 2013 => + [ + [ [2013,3,10,10,0,0],[2013,3,10,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2013,11,3,8,59,59],[2013,11,3,1,59,59], + '2013031010:00:00','2013031003:00:00','2013110308:59:59','2013110301:59:59' ], + [ [2013,11,3,9,0,0],[2013,11,3,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2014,3,9,9,59,59],[2014,3,9,1,59,59], + '2013110309:00:00','2013110301:00:00','2014030909:59:59','2014030901:59:59' ], + ], + 2014 => + [ + [ [2014,3,9,10,0,0],[2014,3,9,3,0,0],'-07:00:00',[-7,0,0], + 'PDT',1,[2014,11,2,8,59,59],[2014,11,2,1,59,59], + '2014030910:00:00','2014030903:00:00','2014110208:59:59','2014110201:59:59' ], + [ [2014,11,2,9,0,0],[2014,11,2,1,0,0],'-08:00:00',[-8,0,0], + 'PST',0,[2015,3,8,9,59,59],[2015,3,8,1,59,59], + '2014110209:00:00','2014110201:00:00','2015030809:59:59','2015030801:59:59' ], + ], + 2015 => + [ + [ [2015,3,8,10,0,0],[2015,3,8,3,0,0],'-07:00:00',[-7,0,0], + 'MST',0,[9999,12,31,0,0,0],[9999,12,30,17,0,0], + '2015030810:00:00','2015030803:00:00','9999123100:00:00','9999123017:00:00' ], ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amfort01.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amfort01.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amfort01.pm 1970-01-01 00:00:00.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amfort01.pm 2015-11-25 16:33:41.000000000 +0000 @@ -0,0 +1,235 @@ +package # +Date::Manip::TZ::amfort01; +# Copyright (c) 2008-2015 Sullivan Beck. All rights reserved. +# This program is free software; you can redistribute it and/or modify it +# under the same terms as Perl itself. + +# This file was automatically generated. Any changes to this file will +# be lost the next time 'tzdata' is run. +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g + +# This module contains data from the zoneinfo time zone database. The original +# data was obtained from the URL: +# ftp://ftp.iana.org/tz + +use strict; +use warnings; +require 5.010000; + +our (%Dates,%LastRule); +END { + undef %Dates; + undef %LastRule; +} + +our ($VERSION); +$VERSION='6.52'; +END { undef $VERSION; } + +%Dates = ( + 1 => + [ + [ [1,1,2,0,0,0],[1,1,1,21,26,0],'-02:34:00',[-2,-34,0], + 'LMT',0,[1914,1,1,2,33,59],[1913,12,31,23,59,59], + '0001010200:00:00','0001010121:26:00','1914010102:33:59','1913123123:59:59' ], + ], + 1914 => + [ + [ [1914,1,1,2,34,0],[1913,12,31,23,34,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1931,10,3,13,59,59],[1931,10,3,10,59,59], + '1914010102:34:00','1913123123:34:00','1931100313:59:59','1931100310:59:59' ], + ], + 1931 => + [ + [ [1931,10,3,14,0,0],[1931,10,3,12,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1932,4,1,1,59,59],[1932,3,31,23,59,59], + '1931100314:00:00','1931100312:00:00','1932040101:59:59','1932033123:59:59' ], + ], + 1932 => + [ + [ [1932,4,1,2,0,0],[1932,3,31,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1932,10,3,2,59,59],[1932,10,2,23,59,59], + '1932040102:00:00','1932033123:00:00','1932100302:59:59','1932100223:59:59' ], + [ [1932,10,3,3,0,0],[1932,10,3,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1933,4,1,1,59,59],[1933,3,31,23,59,59], + '1932100303:00:00','1932100301:00:00','1933040101:59:59','1933033123:59:59' ], + ], + 1933 => + [ + [ [1933,4,1,2,0,0],[1933,3,31,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1949,12,1,2,59,59],[1949,11,30,23,59,59], + '1933040102:00:00','1933033123:00:00','1949120102:59:59','1949113023:59:59' ], + ], + 1949 => + [ + [ [1949,12,1,3,0,0],[1949,12,1,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1950,4,16,2,59,59],[1950,4,16,0,59,59], + '1949120103:00:00','1949120101:00:00','1950041602:59:59','1950041600:59:59' ], + ], + 1950 => + [ + [ [1950,4,16,3,0,0],[1950,4,16,0,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1950,12,1,2,59,59],[1950,11,30,23,59,59], + '1950041603:00:00','1950041600:00:00','1950120102:59:59','1950113023:59:59' ], + [ [1950,12,1,3,0,0],[1950,12,1,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1951,4,1,1,59,59],[1951,3,31,23,59,59], + '1950120103:00:00','1950120101:00:00','1951040101:59:59','1951033123:59:59' ], + ], + 1951 => + [ + [ [1951,4,1,2,0,0],[1951,3,31,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1951,12,1,2,59,59],[1951,11,30,23,59,59], + '1951040102:00:00','1951033123:00:00','1951120102:59:59','1951113023:59:59' ], + [ [1951,12,1,3,0,0],[1951,12,1,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1952,4,1,1,59,59],[1952,3,31,23,59,59], + '1951120103:00:00','1951120101:00:00','1952040101:59:59','1952033123:59:59' ], + ], + 1952 => + [ + [ [1952,4,1,2,0,0],[1952,3,31,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1952,12,1,2,59,59],[1952,11,30,23,59,59], + '1952040102:00:00','1952033123:00:00','1952120102:59:59','1952113023:59:59' ], + [ [1952,12,1,3,0,0],[1952,12,1,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1953,3,1,1,59,59],[1953,2,28,23,59,59], + '1952120103:00:00','1952120101:00:00','1953030101:59:59','1953022823:59:59' ], + ], + 1953 => + [ + [ [1953,3,1,2,0,0],[1953,2,28,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1963,12,9,2,59,59],[1963,12,8,23,59,59], + '1953030102:00:00','1953022823:00:00','1963120902:59:59','1963120823:59:59' ], + ], + 1963 => + [ + [ [1963,12,9,3,0,0],[1963,12,9,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1964,3,1,1,59,59],[1964,2,29,23,59,59], + '1963120903:00:00','1963120901:00:00','1964030101:59:59','1964022923:59:59' ], + ], + 1964 => + [ + [ [1964,3,1,2,0,0],[1964,2,29,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1965,1,31,2,59,59],[1965,1,30,23,59,59], + '1964030102:00:00','1964022923:00:00','1965013102:59:59','1965013023:59:59' ], + ], + 1965 => + [ + [ [1965,1,31,3,0,0],[1965,1,31,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1965,3,31,1,59,59],[1965,3,30,23,59,59], + '1965013103:00:00','1965013101:00:00','1965033101:59:59','1965033023:59:59' ], + [ [1965,3,31,2,0,0],[1965,3,30,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1965,12,1,2,59,59],[1965,11,30,23,59,59], + '1965033102:00:00','1965033023:00:00','1965120102:59:59','1965113023:59:59' ], + [ [1965,12,1,3,0,0],[1965,12,1,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1966,3,1,1,59,59],[1966,2,28,23,59,59], + '1965120103:00:00','1965120101:00:00','1966030101:59:59','1966022823:59:59' ], + ], + 1966 => + [ + [ [1966,3,1,2,0,0],[1966,2,28,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1966,11,1,2,59,59],[1966,10,31,23,59,59], + '1966030102:00:00','1966022823:00:00','1966110102:59:59','1966103123:59:59' ], + [ [1966,11,1,3,0,0],[1966,11,1,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1967,3,1,1,59,59],[1967,2,28,23,59,59], + '1966110103:00:00','1966110101:00:00','1967030101:59:59','1967022823:59:59' ], + ], + 1967 => + [ + [ [1967,3,1,2,0,0],[1967,2,28,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1967,11,1,2,59,59],[1967,10,31,23,59,59], + '1967030102:00:00','1967022823:00:00','1967110102:59:59','1967103123:59:59' ], + [ [1967,11,1,3,0,0],[1967,11,1,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1968,3,1,1,59,59],[1968,2,29,23,59,59], + '1967110103:00:00','1967110101:00:00','1968030101:59:59','1968022923:59:59' ], + ], + 1968 => + [ + [ [1968,3,1,2,0,0],[1968,2,29,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1985,11,2,2,59,59],[1985,11,1,23,59,59], + '1968030102:00:00','1968022923:00:00','1985110202:59:59','1985110123:59:59' ], + ], + 1985 => + [ + [ [1985,11,2,3,0,0],[1985,11,2,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1986,3,15,1,59,59],[1986,3,14,23,59,59], + '1985110203:00:00','1985110201:00:00','1986031501:59:59','1986031423:59:59' ], + ], + 1986 => + [ + [ [1986,3,15,2,0,0],[1986,3,14,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1986,10,25,2,59,59],[1986,10,24,23,59,59], + '1986031502:00:00','1986031423:00:00','1986102502:59:59','1986102423:59:59' ], + [ [1986,10,25,3,0,0],[1986,10,25,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1987,2,14,1,59,59],[1987,2,13,23,59,59], + '1986102503:00:00','1986102501:00:00','1987021401:59:59','1987021323:59:59' ], + ], + 1987 => + [ + [ [1987,2,14,2,0,0],[1987,2,13,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1987,10,25,2,59,59],[1987,10,24,23,59,59], + '1987021402:00:00','1987021323:00:00','1987102502:59:59','1987102423:59:59' ], + [ [1987,10,25,3,0,0],[1987,10,25,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1988,2,7,1,59,59],[1988,2,6,23,59,59], + '1987102503:00:00','1987102501:00:00','1988020701:59:59','1988020623:59:59' ], + ], + 1988 => + [ + [ [1988,2,7,2,0,0],[1988,2,6,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1988,10,16,2,59,59],[1988,10,15,23,59,59], + '1988020702:00:00','1988020623:00:00','1988101602:59:59','1988101523:59:59' ], + [ [1988,10,16,3,0,0],[1988,10,16,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1989,1,29,1,59,59],[1989,1,28,23,59,59], + '1988101603:00:00','1988101601:00:00','1989012901:59:59','1989012823:59:59' ], + ], + 1989 => + [ + [ [1989,1,29,2,0,0],[1989,1,28,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1989,10,15,2,59,59],[1989,10,14,23,59,59], + '1989012902:00:00','1989012823:00:00','1989101502:59:59','1989101423:59:59' ], + [ [1989,10,15,3,0,0],[1989,10,15,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[1990,2,11,1,59,59],[1990,2,10,23,59,59], + '1989101503:00:00','1989101501:00:00','1990021101:59:59','1990021023:59:59' ], + ], + 1990 => + [ + [ [1990,2,11,2,0,0],[1990,2,10,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[1999,10,3,2,59,59],[1999,10,2,23,59,59], + '1990021102:00:00','1990021023:00:00','1999100302:59:59','1999100223:59:59' ], + ], + 1999 => + [ + [ [1999,10,3,3,0,0],[1999,10,3,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[2000,2,27,1,59,59],[2000,2,26,23,59,59], + '1999100303:00:00','1999100301:00:00','2000022701:59:59','2000022623:59:59' ], + ], + 2000 => + [ + [ [2000,2,27,2,0,0],[2000,2,26,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[2000,10,8,2,59,59],[2000,10,7,23,59,59], + '2000022702:00:00','2000022623:00:00','2000100802:59:59','2000100723:59:59' ], + [ [2000,10,8,3,0,0],[2000,10,8,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[2000,10,22,1,59,59],[2000,10,21,23,59,59], + '2000100803:00:00','2000100801:00:00','2000102201:59:59','2000102123:59:59' ], + [ [2000,10,22,2,0,0],[2000,10,21,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[2001,10,14,2,59,59],[2001,10,13,23,59,59], + '2000102202:00:00','2000102123:00:00','2001101402:59:59','2001101323:59:59' ], + ], + 2001 => + [ + [ [2001,10,14,3,0,0],[2001,10,14,1,0,0],'-02:00:00',[-2,0,0], + 'BRST',1,[2002,2,17,1,59,59],[2002,2,16,23,59,59], + '2001101403:00:00','2001101401:00:00','2002021701:59:59','2002021623:59:59' ], + ], + 2002 => + [ + [ [2002,2,17,2,0,0],[2002,2,16,23,0,0],'-03:00:00',[-3,0,0], + 'BRT',0,[9999,12,31,0,0,0],[9999,12,30,21,0,0], + '2002021702:00:00','2002021623:00:00','9999123100:00:00','9999123021:00:00' ], + ], +); + +%LastRule = ( +); + +1; diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amglac00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amglac00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amglac00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amglac00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amgodt00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amgodt00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amgodt00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amgodt00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amgoos00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amgoos00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amgoos00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amgoos00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amgran00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amgran00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amgran00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amgran00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amguat00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amguat00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amguat00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amguat00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amguay00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amguay00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amguay00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amguay00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amguya00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amguya00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amguya00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amguya00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amhali00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amhali00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amhali00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amhali00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amhava00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amhava00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amhava00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amhava00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amherm00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amherm00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amherm00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amherm00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amindi00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amindi00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amindi00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amindi00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aminuv00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aminuv00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aminuv00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aminuv00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amiqal00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amiqal00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amiqal00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amiqal00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amjama00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amjama00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amjama00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amjama00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amjuju00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amjuju00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amjuju00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amjuju00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amjune00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amjune00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amjune00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amjune00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amknox00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amknox00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amknox00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amknox00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amla_p00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amla_p00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amla_p00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amla_p00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amla_r00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amla_r00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amla_r00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amla_r00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amlima00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amlima00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amlima00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amlima00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amlos_00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amlos_00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amlos_00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amlos_00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amloui00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amloui00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amloui00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amloui00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammace00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammace00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammace00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammace00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammana00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammana00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammana00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammana00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammana01.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammana01.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammana01.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammana01.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammare00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammare00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammare00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammare00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammart00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammart00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammart00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammart00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammata00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammata00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammata00.pm 2015-09-01 12:27:12.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammata00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:12 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammaza00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammaza00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammaza00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammaza00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammend00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammend00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammend00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammend00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammeno00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammeno00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammeno00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammeno00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammeri00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammeri00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammeri00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammeri00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammetl00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammetl00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammetl00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammetl00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammexi00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammexi00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammexi00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammexi00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammiqu00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammiqu00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammiqu00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammiqu00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammonc00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammonc00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammonc00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammonc00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammont00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammont00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammont00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammont00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammont01.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammont01.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammont01.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammont01.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammont02.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammont02.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ammont02.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ammont02.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amnass00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amnass00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amnass00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amnass00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amnew_00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amnew_00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amnew_00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amnew_00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amnew_01.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amnew_01.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amnew_01.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amnew_01.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amnipi00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amnipi00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amnipi00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amnipi00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amnome00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amnome00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amnome00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amnome00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amnoro00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amnoro00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amnoro00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amnoro00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amojin00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amojin00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amojin00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amojin00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ampana00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ampana00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ampana00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ampana00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ampang00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ampang00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ampang00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ampang00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ampara00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ampara00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ampara00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ampara00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ampete00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ampete00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ampete00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ampete00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amphoe00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amphoe00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amphoe00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amphoe00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amport00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amport00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amport00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amport00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amport01.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amport01.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amport01.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amport01.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amport02.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amport02.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amport02.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amport02.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ampuer00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ampuer00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ampuer00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ampuer00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amrain00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amrain00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amrain00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amrain00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amrank00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amrank00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amrank00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amrank00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amreci00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amreci00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amreci00.pm 2015-09-01 12:27:12.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amreci00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:12 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amregi00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amregi00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amregi00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amregi00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amreso00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amreso00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amreso00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amreso00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amrio_00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amrio_00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amrio_00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amrio_00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amrio_01.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amrio_01.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amrio_01.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amrio_01.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsalt00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsalt00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsalt00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsalt00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsan_00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsan_00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsan_00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsan_00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsan_01.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsan_01.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsan_01.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsan_01.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsant00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsant00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsant00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsant00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsant01.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsant01.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsant01.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsant01.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsant02.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsant02.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsant02.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsant02.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsant03.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsant03.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsant03.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsant03.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsao_00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsao_00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsao_00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsao_00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amscor00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amscor00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amscor00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amscor00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsitk00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsitk00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amsitk00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amsitk00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amst_j00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amst_j00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amst_j00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amst_j00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amswif00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amswif00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amswif00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amswif00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amtegu00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amtegu00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amtegu00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amtegu00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amtell00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amtell00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amtell00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amtell00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amthul00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amthul00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amthul00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amthul00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amthun00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amthun00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amthun00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amthun00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amtiju00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amtiju00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amtiju00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amtiju00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amtoro00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amtoro00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amtoro00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amtoro00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amtucu00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amtucu00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amtucu00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amtucu00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amushu00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amushu00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amushu00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amushu00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amvanc00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amvanc00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amvanc00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amvanc00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amveva00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amveva00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amveva00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amveva00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amvinc00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amvinc00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amvinc00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amvinc00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amwhit00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amwhit00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amwhit00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amwhit00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amwina00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amwina00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amwina00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amwina00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amwinn00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amwinn00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amwinn00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amwinn00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amyaku00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amyaku00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amyaku00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amyaku00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/amyell00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/amyell00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/amyell00.pm 2015-09-01 12:27:12.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/amyell00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ancase00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ancase00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ancase00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ancase00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/andavi00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/andavi00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/andavi00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/andavi00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/andumo00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/andumo00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/andumo00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/andumo00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/anmacq00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/anmacq00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/anmacq00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/anmacq00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/anmaws00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/anmaws00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/anmaws00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/anmaws00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/anpalm00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/anpalm00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/anpalm00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/anpalm00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/anroth00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/anroth00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/anroth00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/anroth00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ansyow00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ansyow00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ansyow00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ansyow00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/antrol00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/antrol00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/antrol00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/antrol00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/anvost00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/anvost00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/anvost00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/anvost00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asalma00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asalma00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asalma00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asalma00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asamma00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asamma00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asamma00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asamma00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asanad00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asanad00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asanad00.pm 2015-09-01 12:27:12.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asanad00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:12 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asaqta00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asaqta00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asaqta00.pm 2015-09-01 12:27:12.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asaqta00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:12 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asaqto00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asaqto00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asaqto00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asaqto00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asashg00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asashg00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asashg00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asashg00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asbagh00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asbagh00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asbagh00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asbagh00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asbaku00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asbaku00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asbaku00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asbaku00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asbang00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asbang00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asbang00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asbang00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asbeir00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asbeir00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asbeir00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asbeir00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asbish00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asbish00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asbish00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asbish00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asbrun00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asbrun00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asbrun00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asbrun00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aschit00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aschit00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aschit00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aschit00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aschoi00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aschoi00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aschoi00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aschoi00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ascolo00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ascolo00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ascolo00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ascolo00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asdama00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asdama00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asdama00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asdama00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asdhak00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asdhak00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asdhak00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asdhak00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asdili00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asdili00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asdili00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asdili00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asduba00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asduba00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asduba00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asduba00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asdush00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asdush00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asdush00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asdush00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asgaza00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asgaza00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asgaza00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asgaza00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ashebr00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ashebr00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ashebr00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ashebr00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asho_c00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asho_c00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asho_c00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asho_c00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ashong00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ashong00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ashong00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ashong00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ashovd00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ashovd00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ashovd00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ashovd00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asirku00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asirku00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asirku00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asirku00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asjaka00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asjaka00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asjaka00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asjaka00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asjaya00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asjaya00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asjaya00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asjaya00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asjeru00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asjeru00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asjeru00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asjeru00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/askabu00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/askabu00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/askabu00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/askabu00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/askamc00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/askamc00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/askamc00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/askamc00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/askara00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/askara00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/askara00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/askara00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/askath00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/askath00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/askath00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/askath00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/askhan00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/askhan00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/askhan00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/askhan00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/askolk00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/askolk00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/askolk00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/askolk00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/askras00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/askras00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/askras00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/askras00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/askual00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/askual00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/askual00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/askual00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/askuch00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/askuch00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/askuch00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/askuch00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asmaca00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asmaca00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asmaca00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asmaca00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asmaga00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asmaga00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asmaga00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asmaga00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asmaka00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asmaka00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asmaka00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asmaka00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asmani00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asmani00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asmani00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asmani00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asnico00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asnico00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asnico00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asnico00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asnovo00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asnovo00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asnovo00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asnovo00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asnovo01.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asnovo01.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asnovo01.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asnovo01.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asomsk00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asomsk00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asomsk00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asomsk00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asoral00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asoral00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asoral00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asoral00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aspont00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aspont00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aspont00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aspont00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aspyon00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aspyon00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aspyon00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aspyon00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asqata00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asqata00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asqata00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asqata00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asqyzy00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asqyzy00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asqyzy00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asqyzy00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asrang00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asrang00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asrang00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asrang00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asriya00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asriya00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asriya00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asriya00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/assakh00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/assakh00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/assakh00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/assakh00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/assama00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/assama00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/assama00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/assama00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asseou00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asseou00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asseou00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asseou00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asshan00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asshan00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asshan00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asshan00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/assing00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/assing00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/assing00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/assing00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/assred00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/assred00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/assred00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/assred00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/astaip00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/astaip00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/astaip00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/astaip00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/astash00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/astash00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/astash00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/astash00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/astbil00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/astbil00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/astbil00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/astbil00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/astehr00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/astehr00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/astehr00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/astehr00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asthim00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asthim00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asthim00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asthim00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/astoky00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/astoky00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/astoky00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/astoky00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asulaa00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asulaa00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asulaa00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asulaa00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asurum00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asurum00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asurum00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asurum00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asustm00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asustm00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asustm00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asustm00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asvlad00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asvlad00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asvlad00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asvlad00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asyaku00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asyaku00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asyaku00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asyaku00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asyeka00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asyeka00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asyeka00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asyeka00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/asyere00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/asyere00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/asyere00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/asyere00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/atazor00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/atazor00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/atazor00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/atazor00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/atberm00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/atberm00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/atberm00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/atberm00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/atcana00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/atcana00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/atcana00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/atcana00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/atcape00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/atcape00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/atcape00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/atcape00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/atfaro00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/atfaro00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/atfaro00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/atfaro00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/atmade00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/atmade00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/atmade00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/atmade00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/atreyk00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/atreyk00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/atreyk00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/atreyk00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/atsout00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/atsout00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/atsout00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/atsout00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/atstan00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/atstan00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/atstan00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/atstan00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/auadel00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/auadel00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/auadel00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/auadel00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aubris00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aubris00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aubris00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aubris00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aubrok00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aubrok00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aubrok00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aubrok00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aucurr00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aucurr00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aucurr00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aucurr00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/audarw00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/audarw00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/audarw00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/audarw00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aueucl00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aueucl00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aueucl00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aueucl00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/auhoba00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/auhoba00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/auhoba00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/auhoba00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aulind00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aulind00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aulind00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aulind00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aulord00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aulord00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aulord00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aulord00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aumelb00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aumelb00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aumelb00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aumelb00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/aupert00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/aupert00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/aupert00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/aupert00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ausydn00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ausydn00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ausydn00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ausydn00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/b00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/b00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/b00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/b00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/c00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/c00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/c00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/c00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/cet00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/cet00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/cet00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/cet00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/d00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/d00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/d00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/d00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/e00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/e00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/e00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/e00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eet00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eet00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eet00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eet00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmt00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmt00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmt00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmt00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm01.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm01.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm01.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm01.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm02.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm02.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm02.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm02.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm03.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm03.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm03.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm03.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm04.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm04.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm04.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm04.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm05.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm05.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm05.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm05.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm06.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm06.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm06.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm06.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm07.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm07.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm07.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm07.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm08.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm08.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm08.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm08.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm09.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm09.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm09.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm09.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm10.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm10.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm10.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm10.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm11.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm11.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm11.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm11.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm12.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm12.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm12.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm12.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm13.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm13.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtm13.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtm13.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp01.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp01.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp01.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp01.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp02.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp02.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp02.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp02.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp03.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp03.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp03.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp03.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp04.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp04.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp04.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp04.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp05.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp05.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp05.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp05.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp06.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp06.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp06.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp06.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp07.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp07.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp07.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp07.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp08.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp08.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp08.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp08.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp09.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp09.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp09.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp09.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp10.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp10.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp10.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp10.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp11.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp11.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/etgmtp11.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/etgmtp11.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euamst00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euamst00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euamst00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euamst00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euando00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euando00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euando00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euando00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euathe00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euathe00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euathe00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euathe00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eubelg00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eubelg00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eubelg00.pm 2015-09-01 12:27:12.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eubelg00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:12 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euberl00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euberl00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euberl00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euberl00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eubrus00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eubrus00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eubrus00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eubrus00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eubuch00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eubuch00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eubuch00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eubuch00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eubuda00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eubuda00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eubuda00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eubuda00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euchis00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euchis00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euchis00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euchis00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eucope00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eucope00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eucope00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eucope00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eudubl00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eudubl00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eudubl00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eudubl00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eugibr00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eugibr00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eugibr00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eugibr00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euhels00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euhels00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euhels00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euhels00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euista00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euista00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euista00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euista00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( @@ -605,11 +605,11 @@ 2015 => [ [ [2015,3,29,1,0,0],[2015,3,29,4,0,0],'+03:00:00',[3,0,0], - 'EEST',1,[2015,10,25,0,59,59],[2015,10,25,3,59,59], - '2015032901:00:00','2015032904:00:00','2015102500:59:59','2015102503:59:59' ], - [ [2015,10,25,1,0,0],[2015,10,25,3,0,0],'+02:00:00',[2,0,0], + 'EEST',1,[2015,11,8,0,59,59],[2015,11,8,3,59,59], + '2015032901:00:00','2015032904:00:00','2015110800:59:59','2015110803:59:59' ], + [ [2015,11,8,1,0,0],[2015,11,8,3,0,0],'+02:00:00',[2,0,0], 'EET',0,[2016,3,27,0,59,59],[2016,3,27,2,59,59], - '2015102501:00:00','2015102503:00:00','2016032700:59:59','2016032702:59:59' ], + '2015110801:00:00','2015110803:00:00','2016032700:59:59','2016032702:59:59' ], ], 2016 => [ diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eukali00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eukali00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eukali00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eukali00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eukiev00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eukiev00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eukiev00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eukiev00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eulisb00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eulisb00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eulisb00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eulisb00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eulond00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eulond00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eulond00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eulond00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euluxe00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euluxe00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euluxe00.pm 2015-09-01 12:27:12.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euluxe00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:12 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eumadr00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eumadr00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eumadr00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eumadr00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eumalt00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eumalt00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eumalt00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eumalt00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eumins00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eumins00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eumins00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eumins00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eumona00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eumona00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eumona00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eumona00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eumosc00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eumosc00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eumosc00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eumosc00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euoslo00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euoslo00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euoslo00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euoslo00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eupari00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eupari00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eupari00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eupari00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euprag00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euprag00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euprag00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euprag00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euriga00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euriga00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euriga00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euriga00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eurome00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eurome00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eurome00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eurome00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eusama00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eusama00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eusama00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eusama00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eusimf00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eusimf00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eusimf00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eusimf00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eusofi00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eusofi00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eusofi00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eusofi00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eustoc00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eustoc00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eustoc00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eustoc00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eutall00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eutall00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eutall00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eutall00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/eutira00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/eutira00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/eutira00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/eutira00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euuzhg00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euuzhg00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euuzhg00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euuzhg00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euvien00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euvien00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euvien00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euvien00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euviln00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euviln00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euviln00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euviln00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euvolg00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euvolg00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euvolg00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euvolg00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euwars00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euwars00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euwars00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euwars00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euzapo00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euzapo00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euzapo00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euzapo00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/euzuri00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/euzuri00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/euzuri00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/euzuri00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/f00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/f00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/f00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/f00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/g00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/g00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/g00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/g00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/h00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/h00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/h00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/h00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/i00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/i00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/i00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/i00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/inchag00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/inchag00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/inchag00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/inchag00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/inchri00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/inchri00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/inchri00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/inchri00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/incoco00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/incoco00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/incoco00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/incoco00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/inkerg00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/inkerg00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/inkerg00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/inkerg00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/inmahe00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/inmahe00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/inmahe00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/inmahe00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/inmald00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/inmald00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/inmald00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/inmald00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/inmaur00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/inmaur00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/inmaur00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/inmaur00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/inreun00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/inreun00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/inreun00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/inreun00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/k00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/k00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/k00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/k00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/l00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/l00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/l00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/l00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/m00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/m00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/m00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/m00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/met00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/met00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/met00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/met00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/n00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/n00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/n00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/n00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/o00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/o00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/o00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/o00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/p00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/p00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/p00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/p00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/paapia00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/paapia00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/paapia00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/paapia00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/paauck00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/paauck00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/paauck00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/paauck00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/paboug00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/paboug00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/paboug00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/paboug00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pachat00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pachat00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pachat00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pachat00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pachuu00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pachuu00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pachuu00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pachuu00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/paeast00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/paeast00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/paeast00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/paeast00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/paefat00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/paefat00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/paefat00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/paefat00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/paende00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/paende00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/paende00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/paende00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pafaka00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pafaka00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pafaka00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pafaka00.pm 2015-11-25 16:33:48.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:48 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pafiji00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pafiji00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pafiji00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pafiji00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( @@ -119,23 +119,23 @@ 'FJT',0,[2015,10,31,13,59,59],[2015,11,1,1,59,59], '2015011714:00:00','2015011802:00:00','2015103113:59:59','2015110101:59:59' ], [ [2015,10,31,14,0,0],[2015,11,1,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2016,1,23,13,59,59],[2016,1,24,2,59,59], - '2015103114:00:00','2015110103:00:00','2016012313:59:59','2016012402:59:59' ], + 'FJST',1,[2016,1,16,13,59,59],[2016,1,17,2,59,59], + '2015103114:00:00','2015110103:00:00','2016011613:59:59','2016011702:59:59' ], ], 2016 => [ - [ [2016,1,23,14,0,0],[2016,1,24,2,0,0],'+12:00:00',[12,0,0], + [ [2016,1,16,14,0,0],[2016,1,17,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2016,11,5,13,59,59],[2016,11,6,1,59,59], - '2016012314:00:00','2016012402:00:00','2016110513:59:59','2016110601:59:59' ], + '2016011614:00:00','2016011702:00:00','2016110513:59:59','2016110601:59:59' ], [ [2016,11,5,14,0,0],[2016,11,6,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2017,1,21,13,59,59],[2017,1,22,2,59,59], - '2016110514:00:00','2016110603:00:00','2017012113:59:59','2017012202:59:59' ], + 'FJST',1,[2017,1,14,13,59,59],[2017,1,15,2,59,59], + '2016110514:00:00','2016110603:00:00','2017011413:59:59','2017011502:59:59' ], ], 2017 => [ - [ [2017,1,21,14,0,0],[2017,1,22,2,0,0],'+12:00:00',[12,0,0], + [ [2017,1,14,14,0,0],[2017,1,15,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2017,11,4,13,59,59],[2017,11,5,1,59,59], - '2017012114:00:00','2017012202:00:00','2017110413:59:59','2017110501:59:59' ], + '2017011414:00:00','2017011502:00:00','2017110413:59:59','2017110501:59:59' ], [ [2017,11,4,14,0,0],[2017,11,5,3,0,0],'+13:00:00',[13,0,0], 'FJST',1,[2018,1,20,13,59,59],[2018,1,21,2,59,59], '2017110414:00:00','2017110503:00:00','2018012013:59:59','2018012102:59:59' ], @@ -164,32 +164,32 @@ 'FJT',0,[2020,10,31,13,59,59],[2020,11,1,1,59,59], '2020011814:00:00','2020011902:00:00','2020103113:59:59','2020110101:59:59' ], [ [2020,10,31,14,0,0],[2020,11,1,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2021,1,23,13,59,59],[2021,1,24,2,59,59], - '2020103114:00:00','2020110103:00:00','2021012313:59:59','2021012402:59:59' ], + 'FJST',1,[2021,1,16,13,59,59],[2021,1,17,2,59,59], + '2020103114:00:00','2020110103:00:00','2021011613:59:59','2021011702:59:59' ], ], 2021 => [ - [ [2021,1,23,14,0,0],[2021,1,24,2,0,0],'+12:00:00',[12,0,0], + [ [2021,1,16,14,0,0],[2021,1,17,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2021,11,6,13,59,59],[2021,11,7,1,59,59], - '2021012314:00:00','2021012402:00:00','2021110613:59:59','2021110701:59:59' ], + '2021011614:00:00','2021011702:00:00','2021110613:59:59','2021110701:59:59' ], [ [2021,11,6,14,0,0],[2021,11,7,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2022,1,22,13,59,59],[2022,1,23,2,59,59], - '2021110614:00:00','2021110703:00:00','2022012213:59:59','2022012302:59:59' ], + 'FJST',1,[2022,1,15,13,59,59],[2022,1,16,2,59,59], + '2021110614:00:00','2021110703:00:00','2022011513:59:59','2022011602:59:59' ], ], 2022 => [ - [ [2022,1,22,14,0,0],[2022,1,23,2,0,0],'+12:00:00',[12,0,0], + [ [2022,1,15,14,0,0],[2022,1,16,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2022,11,5,13,59,59],[2022,11,6,1,59,59], - '2022012214:00:00','2022012302:00:00','2022110513:59:59','2022110601:59:59' ], + '2022011514:00:00','2022011602:00:00','2022110513:59:59','2022110601:59:59' ], [ [2022,11,5,14,0,0],[2022,11,6,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2023,1,21,13,59,59],[2023,1,22,2,59,59], - '2022110514:00:00','2022110603:00:00','2023012113:59:59','2023012202:59:59' ], + 'FJST',1,[2023,1,14,13,59,59],[2023,1,15,2,59,59], + '2022110514:00:00','2022110603:00:00','2023011413:59:59','2023011502:59:59' ], ], 2023 => [ - [ [2023,1,21,14,0,0],[2023,1,22,2,0,0],'+12:00:00',[12,0,0], + [ [2023,1,14,14,0,0],[2023,1,15,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2023,11,4,13,59,59],[2023,11,5,1,59,59], - '2023012114:00:00','2023012202:00:00','2023110413:59:59','2023110501:59:59' ], + '2023011414:00:00','2023011502:00:00','2023110413:59:59','2023110501:59:59' ], [ [2023,11,4,14,0,0],[2023,11,5,3,0,0],'+13:00:00',[13,0,0], 'FJST',1,[2024,1,20,13,59,59],[2024,1,21,2,59,59], '2023110414:00:00','2023110503:00:00','2024012013:59:59','2024012102:59:59' ], @@ -218,23 +218,23 @@ 'FJT',0,[2026,10,31,13,59,59],[2026,11,1,1,59,59], '2026011714:00:00','2026011802:00:00','2026103113:59:59','2026110101:59:59' ], [ [2026,10,31,14,0,0],[2026,11,1,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2027,1,23,13,59,59],[2027,1,24,2,59,59], - '2026103114:00:00','2026110103:00:00','2027012313:59:59','2027012402:59:59' ], + 'FJST',1,[2027,1,16,13,59,59],[2027,1,17,2,59,59], + '2026103114:00:00','2026110103:00:00','2027011613:59:59','2027011702:59:59' ], ], 2027 => [ - [ [2027,1,23,14,0,0],[2027,1,24,2,0,0],'+12:00:00',[12,0,0], + [ [2027,1,16,14,0,0],[2027,1,17,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2027,11,6,13,59,59],[2027,11,7,1,59,59], - '2027012314:00:00','2027012402:00:00','2027110613:59:59','2027110701:59:59' ], + '2027011614:00:00','2027011702:00:00','2027110613:59:59','2027110701:59:59' ], [ [2027,11,6,14,0,0],[2027,11,7,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2028,1,22,13,59,59],[2028,1,23,2,59,59], - '2027110614:00:00','2027110703:00:00','2028012213:59:59','2028012302:59:59' ], + 'FJST',1,[2028,1,15,13,59,59],[2028,1,16,2,59,59], + '2027110614:00:00','2027110703:00:00','2028011513:59:59','2028011602:59:59' ], ], 2028 => [ - [ [2028,1,22,14,0,0],[2028,1,23,2,0,0],'+12:00:00',[12,0,0], + [ [2028,1,15,14,0,0],[2028,1,16,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2028,11,4,13,59,59],[2028,11,5,1,59,59], - '2028012214:00:00','2028012302:00:00','2028110413:59:59','2028110501:59:59' ], + '2028011514:00:00','2028011602:00:00','2028110413:59:59','2028110501:59:59' ], [ [2028,11,4,14,0,0],[2028,11,5,3,0,0],'+13:00:00',[13,0,0], 'FJST',1,[2029,1,20,13,59,59],[2029,1,21,2,59,59], '2028110414:00:00','2028110503:00:00','2029012013:59:59','2029012102:59:59' ], @@ -272,23 +272,23 @@ 'FJT',0,[2032,11,6,13,59,59],[2032,11,7,1,59,59], '2032011714:00:00','2032011802:00:00','2032110613:59:59','2032110701:59:59' ], [ [2032,11,6,14,0,0],[2032,11,7,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2033,1,22,13,59,59],[2033,1,23,2,59,59], - '2032110614:00:00','2032110703:00:00','2033012213:59:59','2033012302:59:59' ], + 'FJST',1,[2033,1,15,13,59,59],[2033,1,16,2,59,59], + '2032110614:00:00','2032110703:00:00','2033011513:59:59','2033011602:59:59' ], ], 2033 => [ - [ [2033,1,22,14,0,0],[2033,1,23,2,0,0],'+12:00:00',[12,0,0], + [ [2033,1,15,14,0,0],[2033,1,16,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2033,11,5,13,59,59],[2033,11,6,1,59,59], - '2033012214:00:00','2033012302:00:00','2033110513:59:59','2033110601:59:59' ], + '2033011514:00:00','2033011602:00:00','2033110513:59:59','2033110601:59:59' ], [ [2033,11,5,14,0,0],[2033,11,6,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2034,1,21,13,59,59],[2034,1,22,2,59,59], - '2033110514:00:00','2033110603:00:00','2034012113:59:59','2034012202:59:59' ], + 'FJST',1,[2034,1,14,13,59,59],[2034,1,15,2,59,59], + '2033110514:00:00','2033110603:00:00','2034011413:59:59','2034011502:59:59' ], ], 2034 => [ - [ [2034,1,21,14,0,0],[2034,1,22,2,0,0],'+12:00:00',[12,0,0], + [ [2034,1,14,14,0,0],[2034,1,15,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2034,11,4,13,59,59],[2034,11,5,1,59,59], - '2034012114:00:00','2034012202:00:00','2034110413:59:59','2034110501:59:59' ], + '2034011414:00:00','2034011502:00:00','2034110413:59:59','2034110501:59:59' ], [ [2034,11,4,14,0,0],[2034,11,5,3,0,0],'+13:00:00',[13,0,0], 'FJST',1,[2035,1,20,13,59,59],[2035,1,21,2,59,59], '2034110414:00:00','2034110503:00:00','2035012013:59:59','2035012102:59:59' ], @@ -317,32 +317,32 @@ 'FJT',0,[2037,10,31,13,59,59],[2037,11,1,1,59,59], '2037011714:00:00','2037011802:00:00','2037103113:59:59','2037110101:59:59' ], [ [2037,10,31,14,0,0],[2037,11,1,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2038,1,23,13,59,59],[2038,1,24,2,59,59], - '2037103114:00:00','2037110103:00:00','2038012313:59:59','2038012402:59:59' ], + 'FJST',1,[2038,1,16,13,59,59],[2038,1,17,2,59,59], + '2037103114:00:00','2037110103:00:00','2038011613:59:59','2038011702:59:59' ], ], 2038 => [ - [ [2038,1,23,14,0,0],[2038,1,24,2,0,0],'+12:00:00',[12,0,0], + [ [2038,1,16,14,0,0],[2038,1,17,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2038,11,6,13,59,59],[2038,11,7,1,59,59], - '2038012314:00:00','2038012402:00:00','2038110613:59:59','2038110701:59:59' ], + '2038011614:00:00','2038011702:00:00','2038110613:59:59','2038110701:59:59' ], [ [2038,11,6,14,0,0],[2038,11,7,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2039,1,22,13,59,59],[2039,1,23,2,59,59], - '2038110614:00:00','2038110703:00:00','2039012213:59:59','2039012302:59:59' ], + 'FJST',1,[2039,1,15,13,59,59],[2039,1,16,2,59,59], + '2038110614:00:00','2038110703:00:00','2039011513:59:59','2039011602:59:59' ], ], 2039 => [ - [ [2039,1,22,14,0,0],[2039,1,23,2,0,0],'+12:00:00',[12,0,0], + [ [2039,1,15,14,0,0],[2039,1,16,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2039,11,5,13,59,59],[2039,11,6,1,59,59], - '2039012214:00:00','2039012302:00:00','2039110513:59:59','2039110601:59:59' ], + '2039011514:00:00','2039011602:00:00','2039110513:59:59','2039110601:59:59' ], [ [2039,11,5,14,0,0],[2039,11,6,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2040,1,21,13,59,59],[2040,1,22,2,59,59], - '2039110514:00:00','2039110603:00:00','2040012113:59:59','2040012202:59:59' ], + 'FJST',1,[2040,1,14,13,59,59],[2040,1,15,2,59,59], + '2039110514:00:00','2039110603:00:00','2040011413:59:59','2040011502:59:59' ], ], 2040 => [ - [ [2040,1,21,14,0,0],[2040,1,22,2,0,0],'+12:00:00',[12,0,0], + [ [2040,1,14,14,0,0],[2040,1,15,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2040,11,3,13,59,59],[2040,11,4,1,59,59], - '2040012114:00:00','2040012202:00:00','2040110313:59:59','2040110401:59:59' ], + '2040011414:00:00','2040011502:00:00','2040110313:59:59','2040110401:59:59' ], [ [2040,11,3,14,0,0],[2040,11,4,3,0,0],'+13:00:00',[13,0,0], 'FJST',1,[2041,1,19,13,59,59],[2041,1,20,2,59,59], '2040110314:00:00','2040110403:00:00','2041011913:59:59','2041012002:59:59' ], @@ -371,23 +371,23 @@ 'FJT',0,[2043,10,31,13,59,59],[2043,11,1,1,59,59], '2043011714:00:00','2043011802:00:00','2043103113:59:59','2043110101:59:59' ], [ [2043,10,31,14,0,0],[2043,11,1,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2044,1,23,13,59,59],[2044,1,24,2,59,59], - '2043103114:00:00','2043110103:00:00','2044012313:59:59','2044012402:59:59' ], + 'FJST',1,[2044,1,16,13,59,59],[2044,1,17,2,59,59], + '2043103114:00:00','2043110103:00:00','2044011613:59:59','2044011702:59:59' ], ], 2044 => [ - [ [2044,1,23,14,0,0],[2044,1,24,2,0,0],'+12:00:00',[12,0,0], + [ [2044,1,16,14,0,0],[2044,1,17,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2044,11,5,13,59,59],[2044,11,6,1,59,59], - '2044012314:00:00','2044012402:00:00','2044110513:59:59','2044110601:59:59' ], + '2044011614:00:00','2044011702:00:00','2044110513:59:59','2044110601:59:59' ], [ [2044,11,5,14,0,0],[2044,11,6,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2045,1,21,13,59,59],[2045,1,22,2,59,59], - '2044110514:00:00','2044110603:00:00','2045012113:59:59','2045012202:59:59' ], + 'FJST',1,[2045,1,14,13,59,59],[2045,1,15,2,59,59], + '2044110514:00:00','2044110603:00:00','2045011413:59:59','2045011502:59:59' ], ], 2045 => [ - [ [2045,1,21,14,0,0],[2045,1,22,2,0,0],'+12:00:00',[12,0,0], + [ [2045,1,14,14,0,0],[2045,1,15,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2045,11,4,13,59,59],[2045,11,5,1,59,59], - '2045012114:00:00','2045012202:00:00','2045110413:59:59','2045110501:59:59' ], + '2045011414:00:00','2045011502:00:00','2045110413:59:59','2045110501:59:59' ], [ [2045,11,4,14,0,0],[2045,11,5,3,0,0],'+13:00:00',[13,0,0], 'FJST',1,[2046,1,20,13,59,59],[2046,1,21,2,59,59], '2045110414:00:00','2045110503:00:00','2046012013:59:59','2046012102:59:59' ], @@ -416,32 +416,32 @@ 'FJT',0,[2048,10,31,13,59,59],[2048,11,1,1,59,59], '2048011814:00:00','2048011902:00:00','2048103113:59:59','2048110101:59:59' ], [ [2048,10,31,14,0,0],[2048,11,1,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2049,1,23,13,59,59],[2049,1,24,2,59,59], - '2048103114:00:00','2048110103:00:00','2049012313:59:59','2049012402:59:59' ], + 'FJST',1,[2049,1,16,13,59,59],[2049,1,17,2,59,59], + '2048103114:00:00','2048110103:00:00','2049011613:59:59','2049011702:59:59' ], ], 2049 => [ - [ [2049,1,23,14,0,0],[2049,1,24,2,0,0],'+12:00:00',[12,0,0], + [ [2049,1,16,14,0,0],[2049,1,17,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2049,11,6,13,59,59],[2049,11,7,1,59,59], - '2049012314:00:00','2049012402:00:00','2049110613:59:59','2049110701:59:59' ], + '2049011614:00:00','2049011702:00:00','2049110613:59:59','2049110701:59:59' ], [ [2049,11,6,14,0,0],[2049,11,7,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2050,1,22,13,59,59],[2050,1,23,2,59,59], - '2049110614:00:00','2049110703:00:00','2050012213:59:59','2050012302:59:59' ], + 'FJST',1,[2050,1,15,13,59,59],[2050,1,16,2,59,59], + '2049110614:00:00','2049110703:00:00','2050011513:59:59','2050011602:59:59' ], ], 2050 => [ - [ [2050,1,22,14,0,0],[2050,1,23,2,0,0],'+12:00:00',[12,0,0], + [ [2050,1,15,14,0,0],[2050,1,16,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2050,11,5,13,59,59],[2050,11,6,1,59,59], - '2050012214:00:00','2050012302:00:00','2050110513:59:59','2050110601:59:59' ], + '2050011514:00:00','2050011602:00:00','2050110513:59:59','2050110601:59:59' ], [ [2050,11,5,14,0,0],[2050,11,6,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2051,1,21,13,59,59],[2051,1,22,2,59,59], - '2050110514:00:00','2050110603:00:00','2051012113:59:59','2051012202:59:59' ], + 'FJST',1,[2051,1,14,13,59,59],[2051,1,15,2,59,59], + '2050110514:00:00','2050110603:00:00','2051011413:59:59','2051011502:59:59' ], ], 2051 => [ - [ [2051,1,21,14,0,0],[2051,1,22,2,0,0],'+12:00:00',[12,0,0], + [ [2051,1,14,14,0,0],[2051,1,15,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2051,11,4,13,59,59],[2051,11,5,1,59,59], - '2051012114:00:00','2051012202:00:00','2051110413:59:59','2051110501:59:59' ], + '2051011414:00:00','2051011502:00:00','2051110413:59:59','2051110501:59:59' ], [ [2051,11,4,14,0,0],[2051,11,5,3,0,0],'+13:00:00',[13,0,0], 'FJST',1,[2052,1,20,13,59,59],[2052,1,21,2,59,59], '2051110414:00:00','2051110503:00:00','2052012013:59:59','2052012102:59:59' ], @@ -470,23 +470,23 @@ 'FJT',0,[2054,10,31,13,59,59],[2054,11,1,1,59,59], '2054011714:00:00','2054011802:00:00','2054103113:59:59','2054110101:59:59' ], [ [2054,10,31,14,0,0],[2054,11,1,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2055,1,23,13,59,59],[2055,1,24,2,59,59], - '2054103114:00:00','2054110103:00:00','2055012313:59:59','2055012402:59:59' ], + 'FJST',1,[2055,1,16,13,59,59],[2055,1,17,2,59,59], + '2054103114:00:00','2054110103:00:00','2055011613:59:59','2055011702:59:59' ], ], 2055 => [ - [ [2055,1,23,14,0,0],[2055,1,24,2,0,0],'+12:00:00',[12,0,0], + [ [2055,1,16,14,0,0],[2055,1,17,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2055,11,6,13,59,59],[2055,11,7,1,59,59], - '2055012314:00:00','2055012402:00:00','2055110613:59:59','2055110701:59:59' ], + '2055011614:00:00','2055011702:00:00','2055110613:59:59','2055110701:59:59' ], [ [2055,11,6,14,0,0],[2055,11,7,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2056,1,22,13,59,59],[2056,1,23,2,59,59], - '2055110614:00:00','2055110703:00:00','2056012213:59:59','2056012302:59:59' ], + 'FJST',1,[2056,1,15,13,59,59],[2056,1,16,2,59,59], + '2055110614:00:00','2055110703:00:00','2056011513:59:59','2056011602:59:59' ], ], 2056 => [ - [ [2056,1,22,14,0,0],[2056,1,23,2,0,0],'+12:00:00',[12,0,0], + [ [2056,1,15,14,0,0],[2056,1,16,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2056,11,4,13,59,59],[2056,11,5,1,59,59], - '2056012214:00:00','2056012302:00:00','2056110413:59:59','2056110501:59:59' ], + '2056011514:00:00','2056011602:00:00','2056110413:59:59','2056110501:59:59' ], [ [2056,11,4,14,0,0],[2056,11,5,3,0,0],'+13:00:00',[13,0,0], 'FJST',1,[2057,1,20,13,59,59],[2057,1,21,2,59,59], '2056110414:00:00','2056110503:00:00','2057012013:59:59','2057012102:59:59' ], @@ -524,23 +524,23 @@ 'FJT',0,[2060,11,6,13,59,59],[2060,11,7,1,59,59], '2060011714:00:00','2060011802:00:00','2060110613:59:59','2060110701:59:59' ], [ [2060,11,6,14,0,0],[2060,11,7,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2061,1,22,13,59,59],[2061,1,23,2,59,59], - '2060110614:00:00','2060110703:00:00','2061012213:59:59','2061012302:59:59' ], + 'FJST',1,[2061,1,15,13,59,59],[2061,1,16,2,59,59], + '2060110614:00:00','2060110703:00:00','2061011513:59:59','2061011602:59:59' ], ], 2061 => [ - [ [2061,1,22,14,0,0],[2061,1,23,2,0,0],'+12:00:00',[12,0,0], + [ [2061,1,15,14,0,0],[2061,1,16,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2061,11,5,13,59,59],[2061,11,6,1,59,59], - '2061012214:00:00','2061012302:00:00','2061110513:59:59','2061110601:59:59' ], + '2061011514:00:00','2061011602:00:00','2061110513:59:59','2061110601:59:59' ], [ [2061,11,5,14,0,0],[2061,11,6,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2062,1,21,13,59,59],[2062,1,22,2,59,59], - '2061110514:00:00','2061110603:00:00','2062012113:59:59','2062012202:59:59' ], + 'FJST',1,[2062,1,14,13,59,59],[2062,1,15,2,59,59], + '2061110514:00:00','2061110603:00:00','2062011413:59:59','2062011502:59:59' ], ], 2062 => [ - [ [2062,1,21,14,0,0],[2062,1,22,2,0,0],'+12:00:00',[12,0,0], + [ [2062,1,14,14,0,0],[2062,1,15,2,0,0],'+12:00:00',[12,0,0], 'FJT',0,[2062,11,4,13,59,59],[2062,11,5,1,59,59], - '2062012114:00:00','2062012202:00:00','2062110413:59:59','2062110501:59:59' ], + '2062011414:00:00','2062011502:00:00','2062110413:59:59','2062110501:59:59' ], [ [2062,11,4,14,0,0],[2062,11,5,3,0,0],'+13:00:00',[13,0,0], 'FJST',1,[2063,1,20,13,59,59],[2063,1,21,2,59,59], '2062110414:00:00','2062110503:00:00','2063012013:59:59','2063012102:59:59' ], @@ -569,8 +569,8 @@ 'FJT',0,[2065,10,31,13,59,59],[2065,11,1,1,59,59], '2065011714:00:00','2065011802:00:00','2065103113:59:59','2065110101:59:59' ], [ [2065,10,31,14,0,0],[2065,11,1,3,0,0],'+13:00:00',[13,0,0], - 'FJST',1,[2066,1,23,13,59,59],[2066,1,24,2,59,59], - '2065103114:00:00','2065110103:00:00','2066012313:59:59','2066012402:59:59' ], + 'FJST',1,[2066,1,16,13,59,59],[2066,1,17,2,59,59], + '2065103114:00:00','2065110103:00:00','2066011613:59:59','2066011702:59:59' ], ], ); @@ -583,7 +583,7 @@ '01' => { 'flag' => 'ge', 'dow' => '7', - 'num' => '18', + 'num' => '15', 'type' => 'w', 'time' => '03:00:00', 'isdst' => '0', diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pafuna00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pafuna00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pafuna00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pafuna00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pagala00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pagala00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pagala00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pagala00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pagamb00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pagamb00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pagamb00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pagamb00.pm 2015-11-25 16:33:44.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:44 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/paguad00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/paguad00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/paguad00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/paguad00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/paguam00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/paguam00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/paguam00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/paguam00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pahono00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pahono00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pahono00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pahono00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pakiri00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pakiri00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pakiri00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pakiri00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pakosr00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pakosr00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pakosr00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pakosr00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pakwaj00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pakwaj00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pakwaj00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pakwaj00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pamaju00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pamaju00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pamaju00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pamaju00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pamarq00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pamarq00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pamarq00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pamarq00.pm 2015-11-25 16:33:46.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:46 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/panaur00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/panaur00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/panaur00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/panaur00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/paniue00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/paniue00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/paniue00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/paniue00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/panorf00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/panorf00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/panorf00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/panorf00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( @@ -44,8 +44,26 @@ 1950 => [ [ [1950,12,31,12,48,0],[1951,1,1,0,18,0],'+11:30:00',[11,30,0], - 'NFT',0,[9999,12,31,0,0,0],[9999,12,31,11,30,0], - '1950123112:48:00','1951010100:18:00','9999123100:00:00','9999123111:30:00' ], + 'NFT',0,[1974,10,26,14,29,59],[1974,10,27,1,59,59], + '1950123112:48:00','1951010100:18:00','1974102614:29:59','1974102701:59:59' ], + ], + 1974 => + [ + [ [1974,10,26,14,30,0],[1974,10,27,3,0,0],'+12:30:00',[12,30,0], + 'NFST',1,[1975,3,1,13,29,59],[1975,3,2,1,59,59], + '1974102614:30:00','1974102703:00:00','1975030113:29:59','1975030201:59:59' ], + ], + 1975 => + [ + [ [1975,3,1,13,30,0],[1975,3,2,1,0,0],'+11:30:00',[11,30,0], + 'NFT',0,[2015,10,3,14,29,59],[2015,10,4,1,59,59], + '1975030113:30:00','1975030201:00:00','2015100314:29:59','2015100401:59:59' ], + ], + 2015 => + [ + [ [2015,10,3,14,30,0],[2015,10,4,1,30,0],'+11:00:00',[11,0,0], + 'NFT',0,[9999,12,31,0,0,0],[9999,12,31,11,0,0], + '2015100314:30:00','2015100401:30:00','9999123100:00:00','9999123111:00:00' ], ], ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/panoum00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/panoum00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/panoum00.pm 2015-09-01 12:27:05.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/panoum00.pm 2015-11-25 16:33:39.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:05 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:39 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/papago00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/papago00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/papago00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/papago00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/papala00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/papala00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/papala00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/papala00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/papitc00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/papitc00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/papitc00.pm 2015-09-01 12:27:07.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/papitc00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:07 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/papohn00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/papohn00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/papohn00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/papohn00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/paport00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/paport00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/paport00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/paport00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pararo00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pararo00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pararo00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pararo00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/patahi00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/patahi00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/patahi00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/patahi00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/patara00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/patara00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/patara00.pm 2015-09-01 12:27:09.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/patara00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:09 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/patong00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/patong00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/patong00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/patong00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pawake00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pawake00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pawake00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pawake00.pm 2015-11-25 16:33:37.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:37 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/pawall00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/pawall00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/pawall00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/pawall00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/q00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/q00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/q00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/q00.pm 2015-11-25 16:33:42.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:42 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/r00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/r00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/r00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/r00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/s00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/s00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/s00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/s00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/t00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/t00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/t00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/t00.pm 2015-11-25 16:33:38.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:38 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/u00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/u00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/u00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/u00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/ut00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/ut00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/ut00.pm 2015-09-01 12:27:11.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/ut00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:11 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/utc00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/utc00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/utc00.pm 2015-09-01 12:27:01.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/utc00.pm 2015-11-25 16:33:45.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:01 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:45 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/v00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/v00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/v00.pm 2015-09-01 12:27:04.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/v00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:04 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/w00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/w00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/w00.pm 2015-09-01 12:27:06.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/w00.pm 2015-11-25 16:33:41.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:06 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:41 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/wet00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/wet00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/wet00.pm 2015-09-01 12:27:03.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/wet00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:03 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/x00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/x00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/x00.pm 2015-09-01 12:27:02.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/x00.pm 2015-11-25 16:33:47.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:02 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:47 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/y00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/y00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/y00.pm 2015-09-01 12:27:08.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/y00.pm 2015-11-25 16:33:40.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:08 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:40 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ/z00.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ/z00.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ/z00.pm 2015-09-01 12:27:10.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ/z00.pm 2015-11-25 16:33:43.000000000 +0000 @@ -6,9 +6,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:27:10 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:33:43 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -25,7 +25,7 @@ } our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } %Dates = ( diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ_Base.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ_Base.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ_Base.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ_Base.pm 2015-09-01 12:56:55.000000000 +0000 @@ -12,7 +12,7 @@ use IO::File; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } ######################################################################## diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZdata.pm libdate-manip-perl-6.52/lib/Date/Manip/TZdata.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZdata.pm 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZdata.pm 2015-09-01 12:56:55.000000000 +0000 @@ -13,7 +13,7 @@ use warnings; our $VERSION; -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } ############################################################################### diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/TZ.pm libdate-manip-perl-6.52/lib/Date/Manip/TZ.pm --- libdate-manip-perl-6.51/lib/Date/Manip/TZ.pm 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/TZ.pm 2015-09-01 12:56:55.000000000 +0000 @@ -25,7 +25,7 @@ use Data::Dumper; our $VERSION; -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } # To get rid of a 'used only once' warnings. diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Zones.pm libdate-manip-perl-6.52/lib/Date/Manip/Zones.pm --- libdate-manip-perl-6.51/lib/Date/Manip/Zones.pm 2015-09-01 12:33:26.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Zones.pm 2015-11-25 16:48:26.000000000 +0000 @@ -5,9 +5,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:33:25 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:48:25 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -18,7 +18,7 @@ require 5.010000; our ($VERSION); -$VERSION='6.51'; +$VERSION='6.52'; END { undef $VERSION; } our ($TzdataVersion,$TzcodeVersion, @@ -37,8 +37,8 @@ undef %Offmod; } -$TzdataVersion = 'tzdata2015f'; -$TzcodeVersion = 'tzcode2015f'; +$TzdataVersion = 'tzdata2015g'; +$TzcodeVersion = 'tzcode2015g'; $FirstDate = '0001010200:00:00'; $LastDate = '9999123100:00:00'; $LastYear = '2065'; @@ -109,7 +109,8 @@ 'america/edmonton' => 'amedmo00', 'america/eirunepe' => 'ameiru00', 'america/el_salvador' => 'amel_s00', - 'america/fortaleza' => 'amfort00', + 'america/fort_nelson' => 'amfort00', + 'america/fortaleza' => 'amfort01', 'america/glace_bay' => 'amglac00', 'america/godthab' => 'amgodt00', 'america/goose_bay' => 'amgoos00', @@ -507,6 +508,7 @@ 'america/edmonton' => 'America/Edmonton', 'america/eirunepe' => 'America/Eirunepe', 'america/el_salvador' => 'America/El_Salvador', + 'america/fort_nelson' => 'America/Fort_Nelson', 'america/fortaleza' => 'America/Fortaleza', 'america/glace_bay' => 'America/Glace_Bay', 'america/godthab' => 'America/Godthab', @@ -906,6 +908,7 @@ 'america/edmonton' => 'america/edmonton', 'america/eirunepe' => 'america/eirunepe', 'america/el_salvador' => 'america/el_salvador', + 'america/fort_nelson' => 'america/fort_nelson', 'america/fortaleza' => 'america/fortaleza', 'america/glace_bay' => 'america/glace_bay', 'america/godthab' => 'america/godthab', @@ -2586,7 +2589,8 @@ 'america/santa_isabel', 'america/tijuana', 'europe/moscow', - 'america/north_dakota/beulah' ], + 'america/north_dakota/beulah', + 'america/fort_nelson' ], 'must' => [ 'indian/mauritius' ], 'mut' => [ 'indian/mauritius' ], 'mvt' => [ 'indian/maldives' ], @@ -2612,6 +2616,7 @@ 'negt' => [ 'america/paramaribo' ], 'nest' => [ 'europe/amsterdam' ], 'net' => [ 'europe/amsterdam' ], + 'nfst' => [ 'pacific/norfolk' ], 'nft' => [ 'pacific/norfolk' ], 'nmt' => [ 'pacific/norfolk' ], 'novst' => [ 'asia/novosibirsk', @@ -2655,7 +2660,8 @@ 'america/dawson_creek', 'america/boise', 'america/metlakatla', - 'america/sitka' ], + 'america/sitka', + 'america/fort_nelson' ], 'pest' => [ 'america/lima' ], 'pet' => [ 'america/lima' ], 'petst' => [ 'asia/kamchatka' ], @@ -2691,7 +2697,8 @@ 'america/tijuana', 'america/vancouver', 'america/metlakatla', - 'america/sitka' ], + 'america/sitka', + 'america/fort_nelson' ], 'pst' => [ 'america/los_angeles', 'america/vancouver', 'america/santa_isabel', @@ -2708,7 +2715,8 @@ 'america/boise', 'america/metlakatla', 'america/sitka', - 'america/creston' ], + 'america/creston', + 'america/fort_nelson' ], 'pwt' => [ 'pacific/palau', 'america/los_angeles', 'america/dawson_creek', @@ -2717,7 +2725,8 @@ 'america/tijuana', 'america/vancouver', 'america/metlakatla', - 'america/sitka' ], + 'america/sitka', + 'america/fort_nelson' ], 'pyst' => [ 'america/asuncion' ], 'pyt' => [ 'america/asuncion' ], 'q' => [ 'q' ], @@ -3314,42 +3323,43 @@ '-07:52:58' => 'off390', '-08:00:00' => 'off391', '-08:00:56' => 'off392', - '-08:12:28' => 'off393', - '-08:30:00' => 'off394', - '-08:40:20' => 'off395', - '-08:46:18' => 'off396', - '-08:57:41' => 'off397', - '-08:59:48' => 'off398', - '-09:00:00' => 'off399', - '-09:00:12' => 'off400', - '-09:01:13' => 'off401', - '-09:17:40' => 'off402', - '-09:18:00' => 'off403', - '-09:18:55' => 'off404', - '-09:30:00' => 'off405', - '-09:58:16' => 'off406', - '-09:59:36' => 'off407', - '-10:00:00' => 'off408', - '-10:29:20' => 'off409', - '-10:30:00' => 'off410', - '-10:31:26' => 'off411', - '-10:39:04' => 'off412', - '-10:40:00' => 'off413', - '-11:00:00' => 'off414', - '-11:01:38' => 'off415', - '-11:19:40' => 'off416', - '-11:20:00' => 'off417', - '-11:22:48' => 'off418', - '-11:24:20' => 'off419', - '-11:24:56' => 'off420', - '-11:26:56' => 'off421', - '-11:30:00' => 'off422', - '-11:46:38' => 'off423', - '-12:00:00' => 'off424', - '-13:00:00' => 'off425', - '-14:00:00' => 'off426', - '-14:21:00' => 'off427', - '-15:56:00' => 'off428', + '-08:10:47' => 'off393', + '-08:12:28' => 'off394', + '-08:30:00' => 'off395', + '-08:40:20' => 'off396', + '-08:46:18' => 'off397', + '-08:57:41' => 'off398', + '-08:59:48' => 'off399', + '-09:00:00' => 'off400', + '-09:00:12' => 'off401', + '-09:01:13' => 'off402', + '-09:17:40' => 'off403', + '-09:18:00' => 'off404', + '-09:18:55' => 'off405', + '-09:30:00' => 'off406', + '-09:58:16' => 'off407', + '-09:59:36' => 'off408', + '-10:00:00' => 'off409', + '-10:29:20' => 'off410', + '-10:30:00' => 'off411', + '-10:31:26' => 'off412', + '-10:39:04' => 'off413', + '-10:40:00' => 'off414', + '-11:00:00' => 'off415', + '-11:01:38' => 'off416', + '-11:19:40' => 'off417', + '-11:20:00' => 'off418', + '-11:22:48' => 'off419', + '-11:24:20' => 'off420', + '-11:24:56' => 'off421', + '-11:26:56' => 'off422', + '-11:30:00' => 'off423', + '-11:46:38' => 'off424', + '-12:00:00' => 'off425', + '-13:00:00' => 'off426', + '-14:00:00' => 'off427', + '-14:21:00' => 'off428', + '-15:56:00' => 'off429', ); diff -Nru libdate-manip-perl-6.51/lib/Date/Manip/Zones.pod libdate-manip-perl-6.52/lib/Date/Manip/Zones.pod --- libdate-manip-perl-6.51/lib/Date/Manip/Zones.pod 2015-09-01 12:33:26.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip/Zones.pod 2015-11-25 16:48:26.000000000 +0000 @@ -5,9 +5,9 @@ # This file was automatically generated. Any changes to this file will # be lost the next time 'tzdata' is run. -# Generated on: Tue Sep 1 08:33:25 EDT 2015 -# Data version: tzdata2015f -# Code version: tzcode2015f +# Generated on: Wed Nov 25 11:48:25 EST 2015 +# Data version: tzdata2015g +# Code version: tzcode2015g # This module contains data from the zoneinfo time zone database. The original # data was obtained from the URL: @@ -113,7 +113,8 @@ America/Edmonton amedmo00 America/Eirunepe ameiru00 America/El_Salvador amel_s00 - America/Fortaleza amfort00 + America/Fort_Nelson amfort00 + America/Fortaleza amfort01 America/Glace_Bay amglac00 America/Godthab amgodt00 America/Goose_Bay amgoos00 @@ -1031,6 +1032,7 @@ America/Boise America/Metlakatla America/Sitka + America/Fort_Nelson PST8PPT America/Los_Angeles America/Dawson_Creek America/Juneau @@ -1039,6 +1041,7 @@ America/Vancouver America/Metlakatla America/Sitka + America/Fort_Nelson PYT4PYST America/Asuncion QYZT-6QYZST Asia/Qyzylorda SAKT-10SAKST Asia/Sakhalin @@ -1340,6 +1343,7 @@ 0 -08:40:20 Pacific/Pitcairn 0 -08:30:00 Pacific/Pitcairn 0 -08:12:28 America/Vancouver + 0 -08:10:47 America/Fort_Nelson 0 -08:00:56 America/Dawson_Creek 0 -08:00:00 America/Los_Angeles America/Vancouver @@ -1360,6 +1364,7 @@ America/Mazatlan America/Boise America/Creston + America/Fort_Nelson 0 -07:52:58 America/Los_Angeles 0 -07:48:04 America/Tijuana 0 -07:46:04 America/Creston @@ -1386,6 +1391,7 @@ America/Yellowknife America/Dawson_Creek America/Inuvik + America/Fort_Nelson Etc/GMT-7 G America/North_Dakota/Beulah @@ -2275,21 +2281,22 @@ Pacific/Efate Pacific/Guadalcanal Pacific/Noumea + Asia/Srednekolymsk + Pacific/Bougainville + Pacific/Norfolk Asia/Sakhalin + Asia/Ust-Nera Asia/Vladivostok Asia/Kamchatka Asia/Magadan Asia/Anadyr + Asia/Khandyga + Pacific/Kwajalein + Pacific/Majuro Etc/GMT+11 X Antarctica/Macquarie - Pacific/Kwajalein - Pacific/Majuro Antarctica/Casey - Asia/Ust-Nera - Asia/Khandyga - Asia/Srednekolymsk - Pacific/Bougainville 0 +11:05:48 Pacific/Noumea 0 +11:06:28 Pacific/Wake 0 +11:07:40 Pacific/Nauru @@ -2356,15 +2363,16 @@ America/Yakutat America/Anchorage America/Nome + America/Sitka America/Dawson America/Whitehorse - America/Sitka 1 -07:00:00 America/Los_Angeles America/Vancouver America/Santa_Isabel America/Tijuana America/Dawson America/Whitehorse + America/Fort_Nelson America/Juneau America/Dawson_Creek America/Boise @@ -2397,21 +2405,21 @@ America/Rainy_River America/Mexico_City America/Rankin_Inlet - Pacific/Easter + America/Resolute America/Matamoros America/Monterrey America/North_Dakota/Center America/Merida - America/Cancun America/North_Dakota/New_Salem America/Bahia_Banderas America/North_Dakota/Beulah + Pacific/Easter + America/Cancun America/Indiana/Petersburg America/Indiana/Vincennes America/Indiana/Winamac America/Guatemala America/Managua - America/Resolute America/Tegucigalpa America/Kentucky/Monticello America/Cambridge_Bay @@ -2443,11 +2451,12 @@ America/Indiana/Vevay America/Indiana/Vincennes America/Indiana/Winamac - America/Grand_Turk + America/Port-au-Prince America/Pangnirtung America/Kentucky/Monticello America/Indiana/Petersburg - America/Port-au-Prince + America/Cayman + America/Grand_Turk America/Cancun America/Eirunepe America/Lima @@ -2459,7 +2468,6 @@ America/Rankin_Inlet America/Resolute America/Santiago - America/Cayman 1 -03:32:36 America/La_Paz 1 -03:00:00 America/Halifax America/Glace_Bay @@ -2751,6 +2759,7 @@ Asia/Ust-Nera Asia/Srednekolymsk 1 +12:30:00 Pacific/Auckland + Pacific/Norfolk 1 +13:00:00 Pacific/Auckland Pacific/Fiji Asia/Kamchatka @@ -3657,6 +3666,7 @@ America/Tijuana Europe/Moscow America/North_Dakota/Beulah + America/Fort_Nelson MUST Indian/Mauritius MUT Indian/Mauritius MVT Indian/Maldives @@ -3682,6 +3692,7 @@ NEGT America/Paramaribo NEST Europe/Amsterdam NET Europe/Amsterdam + NFST Pacific/Norfolk NFT Pacific/Norfolk NMT Pacific/Norfolk NOVST Asia/Novosibirsk @@ -3726,6 +3737,7 @@ America/Boise America/Metlakatla America/Sitka + America/Fort_Nelson PEST America/Lima PET America/Lima PETST Asia/Kamchatka @@ -3762,6 +3774,7 @@ America/Vancouver America/Metlakatla America/Sitka + America/Fort_Nelson PST America/Los_Angeles America/Vancouver America/Santa_Isabel @@ -3779,6 +3792,7 @@ America/Metlakatla America/Sitka America/Creston + America/Fort_Nelson PWT Pacific/Palau America/Los_Angeles America/Dawson_Creek @@ -3788,6 +3802,7 @@ America/Vancouver America/Metlakatla America/Sitka + America/Fort_Nelson PYST America/Asuncion PYT America/Asuncion Q Q diff -Nru libdate-manip-perl-6.51/lib/Date/Manip.pm libdate-manip-perl-6.52/lib/Date/Manip.pm --- libdate-manip-perl-6.51/lib/Date/Manip.pm 2015-06-01 13:36:15.000000000 +0000 +++ libdate-manip-perl-6.52/lib/Date/Manip.pm 2015-09-01 12:56:55.000000000 +0000 @@ -11,7 +11,7 @@ use Exporter; our $VERSION; -$VERSION='6.51'; +$VERSION='6.52'; our (@ISA,@EXPORT); diff -Nru libdate-manip-perl-6.51/Makefile.PL libdate-manip-perl-6.52/Makefile.PL --- libdate-manip-perl-6.51/Makefile.PL 2015-09-01 12:49:41.000000000 +0000 +++ libdate-manip-perl-6.52/Makefile.PL 2015-12-01 18:57:30.000000000 +0000 @@ -51,7 +51,7 @@ WriteMakefile( NAME => "Date::Manip", - VERSION => "6.51", + VERSION => "6.52", ABSTRACT => "Date manipulation routines", LICENSE => "perl", ($EU_MM_V >= 6.48 @@ -67,20 +67,3460 @@ ($EU_MM_V >= 6.64 ? (TEST_REQUIRES => \%test_prereq) : ()), - ($EU_MM_V > 6.45 + ? (META_ADD => { + provides => { + 'Date::Manip' => { + file => 'Manip.pm', + version => '6.52', + }, + 'Date::Manip::Base' => { + file => 'Base.pm', + version => '6.52', + }, + 'Date::Manip::DM5' => { + file => 'DM5.pm', + version => '6.52', + }, + 'Date::Manip::DM5abbrevs' => { + file => 'DM5abbrevs.pm', + version => '6.52', + }, + 'Date::Manip::DM6' => { + file => 'DM6.pm', + version => '6.52', + }, + 'Date::Manip::Date' => { + file => 'Date.pm', + version => '6.52', + }, + 'Date::Manip::Delta' => { + file => 'Delta.pm', + version => '6.52', + }, + 'Date::Manip::Lang::catalan' => { + file => 'catalan.pm', + version => '6.52', + }, + 'Date::Manip::Lang::danish' => { + file => 'danish.pm', + version => '6.52', + }, + 'Date::Manip::Lang::dutch' => { + file => 'dutch.pm', + version => '6.52', + }, + 'Date::Manip::Lang::english' => { + file => 'english.pm', + version => '6.52', + }, + 'Date::Manip::Lang::finnish' => { + file => 'finnish.pm', + version => '6.52', + }, + 'Date::Manip::Lang::french' => { + file => 'french.pm', + version => '6.52', + }, + 'Date::Manip::Lang::german' => { + file => 'german.pm', + version => '6.52', + }, + 'Date::Manip::Lang::index' => { + file => 'index.pm', + version => '6.52', + }, + 'Date::Manip::Lang::italian' => { + file => 'italian.pm', + version => '6.52', + }, + 'Date::Manip::Lang::norwegian' => { + file => 'norwegian.pm', + version => '6.52', + }, + 'Date::Manip::Lang::polish' => { + file => 'polish.pm', + version => '6.52', + }, + 'Date::Manip::Lang::portugue' => { + file => 'portugue.pm', + version => '6.52', + }, + 'Date::Manip::Lang::romanian' => { + file => 'romanian.pm', + version => '6.52', + }, + 'Date::Manip::Lang::russian' => { + file => 'russian.pm', + version => '6.52', + }, + 'Date::Manip::Lang::spanish' => { + file => 'spanish.pm', + version => '6.52', + }, + 'Date::Manip::Lang::swedish' => { + file => 'swedish.pm', + version => '6.52', + }, + 'Date::Manip::Lang::turkish' => { + file => 'turkish.pm', + version => '6.52', + }, + 'Date::Manip::Obj' => { + file => 'Obj.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off000' => { + file => 'off000.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off001' => { + file => 'off001.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off002' => { + file => 'off002.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off003' => { + file => 'off003.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off004' => { + file => 'off004.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off005' => { + file => 'off005.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off006' => { + file => 'off006.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off007' => { + file => 'off007.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off008' => { + file => 'off008.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off009' => { + file => 'off009.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off010' => { + file => 'off010.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off011' => { + file => 'off011.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off012' => { + file => 'off012.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off013' => { + file => 'off013.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off014' => { + file => 'off014.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off015' => { + file => 'off015.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off016' => { + file => 'off016.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off017' => { + file => 'off017.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off018' => { + file => 'off018.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off019' => { + file => 'off019.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off020' => { + file => 'off020.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off021' => { + file => 'off021.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off022' => { + file => 'off022.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off023' => { + file => 'off023.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off024' => { + file => 'off024.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off025' => { + file => 'off025.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off026' => { + file => 'off026.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off027' => { + file => 'off027.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off028' => { + file => 'off028.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off029' => { + file => 'off029.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off030' => { + file => 'off030.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off031' => { + file => 'off031.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off032' => { + file => 'off032.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off033' => { + file => 'off033.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off034' => { + file => 'off034.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off035' => { + file => 'off035.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off036' => { + file => 'off036.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off037' => { + file => 'off037.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off038' => { + file => 'off038.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off039' => { + file => 'off039.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off040' => { + file => 'off040.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off041' => { + file => 'off041.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off042' => { + file => 'off042.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off043' => { + file => 'off043.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off044' => { + file => 'off044.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off045' => { + file => 'off045.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off046' => { + file => 'off046.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off047' => { + file => 'off047.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off048' => { + file => 'off048.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off049' => { + file => 'off049.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off050' => { + file => 'off050.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off051' => { + file => 'off051.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off052' => { + file => 'off052.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off053' => { + file => 'off053.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off054' => { + file => 'off054.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off055' => { + file => 'off055.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off056' => { + file => 'off056.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off057' => { + file => 'off057.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off058' => { + file => 'off058.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off059' => { + file => 'off059.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off060' => { + file => 'off060.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off061' => { + file => 'off061.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off062' => { + file => 'off062.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off063' => { + file => 'off063.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off064' => { + file => 'off064.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off065' => { + file => 'off065.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off066' => { + file => 'off066.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off067' => { + file => 'off067.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off068' => { + file => 'off068.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off069' => { + file => 'off069.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off070' => { + file => 'off070.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off071' => { + file => 'off071.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off072' => { + file => 'off072.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off073' => { + file => 'off073.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off074' => { + file => 'off074.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off075' => { + file => 'off075.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off076' => { + file => 'off076.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off077' => { + file => 'off077.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off078' => { + file => 'off078.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off079' => { + file => 'off079.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off080' => { + file => 'off080.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off081' => { + file => 'off081.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off082' => { + file => 'off082.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off083' => { + file => 'off083.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off084' => { + file => 'off084.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off085' => { + file => 'off085.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off086' => { + file => 'off086.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off087' => { + file => 'off087.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off088' => { + file => 'off088.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off089' => { + file => 'off089.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off090' => { + file => 'off090.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off091' => { + file => 'off091.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off092' => { + file => 'off092.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off093' => { + file => 'off093.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off094' => { + file => 'off094.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off095' => { + file => 'off095.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off096' => { + file => 'off096.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off097' => { + file => 'off097.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off098' => { + file => 'off098.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off099' => { + file => 'off099.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off100' => { + file => 'off100.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off101' => { + file => 'off101.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off102' => { + file => 'off102.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off103' => { + file => 'off103.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off104' => { + file => 'off104.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off105' => { + file => 'off105.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off106' => { + file => 'off106.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off107' => { + file => 'off107.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off108' => { + file => 'off108.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off109' => { + file => 'off109.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off110' => { + file => 'off110.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off111' => { + file => 'off111.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off112' => { + file => 'off112.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off113' => { + file => 'off113.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off114' => { + file => 'off114.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off115' => { + file => 'off115.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off116' => { + file => 'off116.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off117' => { + file => 'off117.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off118' => { + file => 'off118.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off119' => { + file => 'off119.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off120' => { + file => 'off120.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off121' => { + file => 'off121.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off122' => { + file => 'off122.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off123' => { + file => 'off123.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off124' => { + file => 'off124.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off125' => { + file => 'off125.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off126' => { + file => 'off126.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off127' => { + file => 'off127.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off128' => { + file => 'off128.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off129' => { + file => 'off129.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off130' => { + file => 'off130.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off131' => { + file => 'off131.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off132' => { + file => 'off132.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off133' => { + file => 'off133.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off134' => { + file => 'off134.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off135' => { + file => 'off135.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off136' => { + file => 'off136.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off137' => { + file => 'off137.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off138' => { + file => 'off138.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off139' => { + file => 'off139.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off140' => { + file => 'off140.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off141' => { + file => 'off141.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off142' => { + file => 'off142.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off143' => { + file => 'off143.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off144' => { + file => 'off144.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off145' => { + file => 'off145.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off146' => { + file => 'off146.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off147' => { + file => 'off147.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off148' => { + file => 'off148.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off149' => { + file => 'off149.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off150' => { + file => 'off150.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off151' => { + file => 'off151.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off152' => { + file => 'off152.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off153' => { + file => 'off153.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off154' => { + file => 'off154.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off155' => { + file => 'off155.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off156' => { + file => 'off156.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off157' => { + file => 'off157.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off158' => { + file => 'off158.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off159' => { + file => 'off159.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off160' => { + file => 'off160.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off161' => { + file => 'off161.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off162' => { + file => 'off162.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off163' => { + file => 'off163.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off164' => { + file => 'off164.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off165' => { + file => 'off165.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off166' => { + file => 'off166.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off167' => { + file => 'off167.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off168' => { + file => 'off168.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off169' => { + file => 'off169.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off170' => { + file => 'off170.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off171' => { + file => 'off171.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off172' => { + file => 'off172.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off173' => { + file => 'off173.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off174' => { + file => 'off174.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off175' => { + file => 'off175.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off176' => { + file => 'off176.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off177' => { + file => 'off177.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off178' => { + file => 'off178.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off179' => { + file => 'off179.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off180' => { + file => 'off180.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off181' => { + file => 'off181.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off182' => { + file => 'off182.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off183' => { + file => 'off183.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off184' => { + file => 'off184.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off185' => { + file => 'off185.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off186' => { + file => 'off186.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off187' => { + file => 'off187.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off188' => { + file => 'off188.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off189' => { + file => 'off189.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off190' => { + file => 'off190.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off191' => { + file => 'off191.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off192' => { + file => 'off192.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off193' => { + file => 'off193.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off194' => { + file => 'off194.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off195' => { + file => 'off195.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off196' => { + file => 'off196.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off197' => { + file => 'off197.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off198' => { + file => 'off198.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off199' => { + file => 'off199.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off200' => { + file => 'off200.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off201' => { + file => 'off201.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off202' => { + file => 'off202.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off203' => { + file => 'off203.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off204' => { + file => 'off204.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off205' => { + file => 'off205.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off206' => { + file => 'off206.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off207' => { + file => 'off207.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off208' => { + file => 'off208.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off209' => { + file => 'off209.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off210' => { + file => 'off210.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off211' => { + file => 'off211.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off212' => { + file => 'off212.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off213' => { + file => 'off213.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off214' => { + file => 'off214.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off215' => { + file => 'off215.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off216' => { + file => 'off216.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off217' => { + file => 'off217.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off218' => { + file => 'off218.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off219' => { + file => 'off219.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off220' => { + file => 'off220.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off221' => { + file => 'off221.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off222' => { + file => 'off222.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off223' => { + file => 'off223.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off224' => { + file => 'off224.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off225' => { + file => 'off225.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off226' => { + file => 'off226.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off227' => { + file => 'off227.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off228' => { + file => 'off228.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off229' => { + file => 'off229.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off230' => { + file => 'off230.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off231' => { + file => 'off231.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off232' => { + file => 'off232.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off233' => { + file => 'off233.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off234' => { + file => 'off234.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off235' => { + file => 'off235.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off236' => { + file => 'off236.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off237' => { + file => 'off237.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off238' => { + file => 'off238.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off239' => { + file => 'off239.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off240' => { + file => 'off240.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off241' => { + file => 'off241.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off242' => { + file => 'off242.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off243' => { + file => 'off243.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off244' => { + file => 'off244.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off245' => { + file => 'off245.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off246' => { + file => 'off246.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off247' => { + file => 'off247.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off248' => { + file => 'off248.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off249' => { + file => 'off249.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off250' => { + file => 'off250.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off251' => { + file => 'off251.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off252' => { + file => 'off252.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off253' => { + file => 'off253.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off254' => { + file => 'off254.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off255' => { + file => 'off255.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off256' => { + file => 'off256.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off257' => { + file => 'off257.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off258' => { + file => 'off258.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off259' => { + file => 'off259.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off260' => { + file => 'off260.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off261' => { + file => 'off261.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off262' => { + file => 'off262.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off263' => { + file => 'off263.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off264' => { + file => 'off264.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off265' => { + file => 'off265.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off266' => { + file => 'off266.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off267' => { + file => 'off267.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off268' => { + file => 'off268.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off269' => { + file => 'off269.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off270' => { + file => 'off270.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off271' => { + file => 'off271.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off272' => { + file => 'off272.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off273' => { + file => 'off273.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off274' => { + file => 'off274.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off275' => { + file => 'off275.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off276' => { + file => 'off276.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off277' => { + file => 'off277.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off278' => { + file => 'off278.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off279' => { + file => 'off279.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off280' => { + file => 'off280.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off281' => { + file => 'off281.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off282' => { + file => 'off282.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off283' => { + file => 'off283.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off284' => { + file => 'off284.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off285' => { + file => 'off285.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off286' => { + file => 'off286.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off287' => { + file => 'off287.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off288' => { + file => 'off288.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off289' => { + file => 'off289.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off290' => { + file => 'off290.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off291' => { + file => 'off291.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off292' => { + file => 'off292.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off293' => { + file => 'off293.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off294' => { + file => 'off294.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off295' => { + file => 'off295.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off296' => { + file => 'off296.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off297' => { + file => 'off297.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off298' => { + file => 'off298.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off299' => { + file => 'off299.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off300' => { + file => 'off300.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off301' => { + file => 'off301.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off302' => { + file => 'off302.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off303' => { + file => 'off303.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off304' => { + file => 'off304.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off305' => { + file => 'off305.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off306' => { + file => 'off306.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off307' => { + file => 'off307.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off308' => { + file => 'off308.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off309' => { + file => 'off309.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off310' => { + file => 'off310.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off311' => { + file => 'off311.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off312' => { + file => 'off312.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off313' => { + file => 'off313.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off314' => { + file => 'off314.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off315' => { + file => 'off315.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off316' => { + file => 'off316.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off317' => { + file => 'off317.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off318' => { + file => 'off318.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off319' => { + file => 'off319.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off320' => { + file => 'off320.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off321' => { + file => 'off321.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off322' => { + file => 'off322.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off323' => { + file => 'off323.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off324' => { + file => 'off324.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off325' => { + file => 'off325.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off326' => { + file => 'off326.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off327' => { + file => 'off327.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off328' => { + file => 'off328.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off329' => { + file => 'off329.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off330' => { + file => 'off330.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off331' => { + file => 'off331.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off332' => { + file => 'off332.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off333' => { + file => 'off333.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off334' => { + file => 'off334.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off335' => { + file => 'off335.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off336' => { + file => 'off336.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off337' => { + file => 'off337.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off338' => { + file => 'off338.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off339' => { + file => 'off339.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off340' => { + file => 'off340.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off341' => { + file => 'off341.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off342' => { + file => 'off342.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off343' => { + file => 'off343.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off344' => { + file => 'off344.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off345' => { + file => 'off345.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off346' => { + file => 'off346.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off347' => { + file => 'off347.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off348' => { + file => 'off348.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off349' => { + file => 'off349.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off350' => { + file => 'off350.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off351' => { + file => 'off351.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off352' => { + file => 'off352.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off353' => { + file => 'off353.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off354' => { + file => 'off354.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off355' => { + file => 'off355.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off356' => { + file => 'off356.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off357' => { + file => 'off357.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off358' => { + file => 'off358.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off359' => { + file => 'off359.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off360' => { + file => 'off360.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off361' => { + file => 'off361.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off362' => { + file => 'off362.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off363' => { + file => 'off363.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off364' => { + file => 'off364.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off365' => { + file => 'off365.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off366' => { + file => 'off366.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off367' => { + file => 'off367.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off368' => { + file => 'off368.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off369' => { + file => 'off369.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off370' => { + file => 'off370.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off371' => { + file => 'off371.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off372' => { + file => 'off372.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off373' => { + file => 'off373.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off374' => { + file => 'off374.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off375' => { + file => 'off375.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off376' => { + file => 'off376.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off377' => { + file => 'off377.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off378' => { + file => 'off378.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off379' => { + file => 'off379.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off380' => { + file => 'off380.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off381' => { + file => 'off381.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off382' => { + file => 'off382.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off383' => { + file => 'off383.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off384' => { + file => 'off384.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off385' => { + file => 'off385.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off386' => { + file => 'off386.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off387' => { + file => 'off387.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off388' => { + file => 'off388.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off389' => { + file => 'off389.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off390' => { + file => 'off390.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off391' => { + file => 'off391.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off392' => { + file => 'off392.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off393' => { + file => 'off393.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off394' => { + file => 'off394.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off395' => { + file => 'off395.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off396' => { + file => 'off396.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off397' => { + file => 'off397.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off398' => { + file => 'off398.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off399' => { + file => 'off399.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off400' => { + file => 'off400.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off401' => { + file => 'off401.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off402' => { + file => 'off402.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off403' => { + file => 'off403.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off404' => { + file => 'off404.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off405' => { + file => 'off405.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off406' => { + file => 'off406.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off407' => { + file => 'off407.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off408' => { + file => 'off408.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off409' => { + file => 'off409.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off410' => { + file => 'off410.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off411' => { + file => 'off411.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off412' => { + file => 'off412.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off413' => { + file => 'off413.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off414' => { + file => 'off414.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off415' => { + file => 'off415.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off416' => { + file => 'off416.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off417' => { + file => 'off417.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off418' => { + file => 'off418.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off419' => { + file => 'off419.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off420' => { + file => 'off420.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off421' => { + file => 'off421.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off422' => { + file => 'off422.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off423' => { + file => 'off423.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off424' => { + file => 'off424.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off425' => { + file => 'off425.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off426' => { + file => 'off426.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off427' => { + file => 'off427.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off428' => { + file => 'off428.pm', + version => '6.52', + }, + 'Date::Manip::Offset::off429' => { + file => 'off429.pm', + version => '6.52', + }, + 'Date::Manip::Recur' => { + file => 'Recur.pm', + version => '6.52', + }, + 'Date::Manip::TZ' => { + file => 'TZ.pm', + version => '6.52', + }, + 'Date::Manip::TZ::a00' => { + file => 'a00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afabid00' => { + file => 'afabid00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afaccr00' => { + file => 'afaccr00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afalgi00' => { + file => 'afalgi00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afbiss00' => { + file => 'afbiss00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afcair00' => { + file => 'afcair00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afcasa00' => { + file => 'afcasa00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afceut00' => { + file => 'afceut00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afel_a00' => { + file => 'afel_a00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afjoha00' => { + file => 'afjoha00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afkhar00' => { + file => 'afkhar00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aflago00' => { + file => 'aflago00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afmapu00' => { + file => 'afmapu00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afmonr00' => { + file => 'afmonr00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afnair00' => { + file => 'afnair00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afndja00' => { + file => 'afndja00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aftrip00' => { + file => 'aftrip00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aftuni00' => { + file => 'aftuni00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::afwind00' => { + file => 'afwind00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amadak00' => { + file => 'amadak00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amanch00' => { + file => 'amanch00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amarag00' => { + file => 'amarag00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amasun00' => { + file => 'amasun00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amatik00' => { + file => 'amatik00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ambahi00' => { + file => 'ambahi00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ambahi01' => { + file => 'ambahi01.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ambarb00' => { + file => 'ambarb00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ambele00' => { + file => 'ambele00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ambeli00' => { + file => 'ambeli00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ambeul00' => { + file => 'ambeul00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amblan00' => { + file => 'amblan00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amboa_00' => { + file => 'amboa_00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ambogo00' => { + file => 'ambogo00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ambois00' => { + file => 'ambois00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ambuen00' => { + file => 'ambuen00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amcamb00' => { + file => 'amcamb00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amcamp00' => { + file => 'amcamp00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amcanc00' => { + file => 'amcanc00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amcara00' => { + file => 'amcara00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amcata00' => { + file => 'amcata00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amcaye00' => { + file => 'amcaye00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amcaym00' => { + file => 'amcaym00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amcent00' => { + file => 'amcent00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amchic00' => { + file => 'amchic00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amchih00' => { + file => 'amchih00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amcord00' => { + file => 'amcord00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amcost00' => { + file => 'amcost00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amcres00' => { + file => 'amcres00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amcuia00' => { + file => 'amcuia00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amcura00' => { + file => 'amcura00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amdanm00' => { + file => 'amdanm00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amdaws00' => { + file => 'amdaws00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amdaws01' => { + file => 'amdaws01.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amdenv00' => { + file => 'amdenv00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amdetr00' => { + file => 'amdetr00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amedmo00' => { + file => 'amedmo00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ameiru00' => { + file => 'ameiru00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amel_s00' => { + file => 'amel_s00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amfort00' => { + file => 'amfort00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amfort01' => { + file => 'amfort01.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amglac00' => { + file => 'amglac00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amgodt00' => { + file => 'amgodt00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amgoos00' => { + file => 'amgoos00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amgran00' => { + file => 'amgran00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amguat00' => { + file => 'amguat00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amguay00' => { + file => 'amguay00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amguya00' => { + file => 'amguya00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amhali00' => { + file => 'amhali00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amhava00' => { + file => 'amhava00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amherm00' => { + file => 'amherm00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amindi00' => { + file => 'amindi00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aminuv00' => { + file => 'aminuv00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amiqal00' => { + file => 'amiqal00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amjama00' => { + file => 'amjama00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amjuju00' => { + file => 'amjuju00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amjune00' => { + file => 'amjune00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amknox00' => { + file => 'amknox00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amla_p00' => { + file => 'amla_p00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amla_r00' => { + file => 'amla_r00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amlima00' => { + file => 'amlima00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amlos_00' => { + file => 'amlos_00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amloui00' => { + file => 'amloui00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammace00' => { + file => 'ammace00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammana00' => { + file => 'ammana00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammana01' => { + file => 'ammana01.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammare00' => { + file => 'ammare00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammart00' => { + file => 'ammart00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammata00' => { + file => 'ammata00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammaza00' => { + file => 'ammaza00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammend00' => { + file => 'ammend00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammeno00' => { + file => 'ammeno00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammeri00' => { + file => 'ammeri00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammetl00' => { + file => 'ammetl00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammexi00' => { + file => 'ammexi00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammiqu00' => { + file => 'ammiqu00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammonc00' => { + file => 'ammonc00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammont00' => { + file => 'ammont00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammont01' => { + file => 'ammont01.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ammont02' => { + file => 'ammont02.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amnass00' => { + file => 'amnass00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amnew_00' => { + file => 'amnew_00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amnew_01' => { + file => 'amnew_01.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amnipi00' => { + file => 'amnipi00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amnome00' => { + file => 'amnome00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amnoro00' => { + file => 'amnoro00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amojin00' => { + file => 'amojin00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ampana00' => { + file => 'ampana00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ampang00' => { + file => 'ampang00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ampara00' => { + file => 'ampara00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ampete00' => { + file => 'ampete00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amphoe00' => { + file => 'amphoe00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amport00' => { + file => 'amport00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amport01' => { + file => 'amport01.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amport02' => { + file => 'amport02.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ampuer00' => { + file => 'ampuer00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amrain00' => { + file => 'amrain00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amrank00' => { + file => 'amrank00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amreci00' => { + file => 'amreci00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amregi00' => { + file => 'amregi00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amreso00' => { + file => 'amreso00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amrio_00' => { + file => 'amrio_00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amrio_01' => { + file => 'amrio_01.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amsalt00' => { + file => 'amsalt00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amsan_00' => { + file => 'amsan_00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amsan_01' => { + file => 'amsan_01.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amsant00' => { + file => 'amsant00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amsant01' => { + file => 'amsant01.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amsant02' => { + file => 'amsant02.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amsant03' => { + file => 'amsant03.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amsao_00' => { + file => 'amsao_00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amscor00' => { + file => 'amscor00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amsitk00' => { + file => 'amsitk00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amst_j00' => { + file => 'amst_j00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amswif00' => { + file => 'amswif00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amtegu00' => { + file => 'amtegu00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amtell00' => { + file => 'amtell00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amthul00' => { + file => 'amthul00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amthun00' => { + file => 'amthun00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amtiju00' => { + file => 'amtiju00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amtoro00' => { + file => 'amtoro00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amtucu00' => { + file => 'amtucu00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amushu00' => { + file => 'amushu00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amvanc00' => { + file => 'amvanc00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amveva00' => { + file => 'amveva00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amvinc00' => { + file => 'amvinc00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amwhit00' => { + file => 'amwhit00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amwina00' => { + file => 'amwina00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amwinn00' => { + file => 'amwinn00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amyaku00' => { + file => 'amyaku00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::amyell00' => { + file => 'amyell00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ancase00' => { + file => 'ancase00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::andavi00' => { + file => 'andavi00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::andumo00' => { + file => 'andumo00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::anmacq00' => { + file => 'anmacq00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::anmaws00' => { + file => 'anmaws00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::anpalm00' => { + file => 'anpalm00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::anroth00' => { + file => 'anroth00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ansyow00' => { + file => 'ansyow00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::antrol00' => { + file => 'antrol00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::anvost00' => { + file => 'anvost00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asalma00' => { + file => 'asalma00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asamma00' => { + file => 'asamma00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asanad00' => { + file => 'asanad00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asaqta00' => { + file => 'asaqta00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asaqto00' => { + file => 'asaqto00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asashg00' => { + file => 'asashg00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asbagh00' => { + file => 'asbagh00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asbaku00' => { + file => 'asbaku00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asbang00' => { + file => 'asbang00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asbeir00' => { + file => 'asbeir00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asbish00' => { + file => 'asbish00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asbrun00' => { + file => 'asbrun00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aschit00' => { + file => 'aschit00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aschoi00' => { + file => 'aschoi00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ascolo00' => { + file => 'ascolo00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asdama00' => { + file => 'asdama00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asdhak00' => { + file => 'asdhak00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asdili00' => { + file => 'asdili00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asduba00' => { + file => 'asduba00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asdush00' => { + file => 'asdush00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asgaza00' => { + file => 'asgaza00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ashebr00' => { + file => 'ashebr00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asho_c00' => { + file => 'asho_c00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ashong00' => { + file => 'ashong00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ashovd00' => { + file => 'ashovd00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asirku00' => { + file => 'asirku00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asjaka00' => { + file => 'asjaka00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asjaya00' => { + file => 'asjaya00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asjeru00' => { + file => 'asjeru00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::askabu00' => { + file => 'askabu00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::askamc00' => { + file => 'askamc00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::askara00' => { + file => 'askara00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::askath00' => { + file => 'askath00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::askhan00' => { + file => 'askhan00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::askolk00' => { + file => 'askolk00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::askras00' => { + file => 'askras00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::askual00' => { + file => 'askual00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::askuch00' => { + file => 'askuch00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asmaca00' => { + file => 'asmaca00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asmaga00' => { + file => 'asmaga00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asmaka00' => { + file => 'asmaka00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asmani00' => { + file => 'asmani00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asnico00' => { + file => 'asnico00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asnovo00' => { + file => 'asnovo00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asnovo01' => { + file => 'asnovo01.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asomsk00' => { + file => 'asomsk00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asoral00' => { + file => 'asoral00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aspont00' => { + file => 'aspont00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aspyon00' => { + file => 'aspyon00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asqata00' => { + file => 'asqata00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asqyzy00' => { + file => 'asqyzy00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asrang00' => { + file => 'asrang00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asriya00' => { + file => 'asriya00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::assakh00' => { + file => 'assakh00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::assama00' => { + file => 'assama00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asseou00' => { + file => 'asseou00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asshan00' => { + file => 'asshan00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::assing00' => { + file => 'assing00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::assred00' => { + file => 'assred00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::astaip00' => { + file => 'astaip00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::astash00' => { + file => 'astash00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::astbil00' => { + file => 'astbil00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::astehr00' => { + file => 'astehr00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asthim00' => { + file => 'asthim00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::astoky00' => { + file => 'astoky00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asulaa00' => { + file => 'asulaa00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asurum00' => { + file => 'asurum00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asustm00' => { + file => 'asustm00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asvlad00' => { + file => 'asvlad00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asyaku00' => { + file => 'asyaku00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asyeka00' => { + file => 'asyeka00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::asyere00' => { + file => 'asyere00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::atazor00' => { + file => 'atazor00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::atberm00' => { + file => 'atberm00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::atcana00' => { + file => 'atcana00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::atcape00' => { + file => 'atcape00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::atfaro00' => { + file => 'atfaro00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::atmade00' => { + file => 'atmade00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::atreyk00' => { + file => 'atreyk00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::atsout00' => { + file => 'atsout00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::atstan00' => { + file => 'atstan00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::auadel00' => { + file => 'auadel00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aubris00' => { + file => 'aubris00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aubrok00' => { + file => 'aubrok00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aucurr00' => { + file => 'aucurr00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::audarw00' => { + file => 'audarw00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aueucl00' => { + file => 'aueucl00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::auhoba00' => { + file => 'auhoba00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aulind00' => { + file => 'aulind00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aulord00' => { + file => 'aulord00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aumelb00' => { + file => 'aumelb00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::aupert00' => { + file => 'aupert00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ausydn00' => { + file => 'ausydn00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::b00' => { + file => 'b00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::c00' => { + file => 'c00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::cet00' => { + file => 'cet00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::d00' => { + file => 'd00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::e00' => { + file => 'e00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eet00' => { + file => 'eet00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmt00' => { + file => 'etgmt00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm00' => { + file => 'etgmtm00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm01' => { + file => 'etgmtm01.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm02' => { + file => 'etgmtm02.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm03' => { + file => 'etgmtm03.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm04' => { + file => 'etgmtm04.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm05' => { + file => 'etgmtm05.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm06' => { + file => 'etgmtm06.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm07' => { + file => 'etgmtm07.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm08' => { + file => 'etgmtm08.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm09' => { + file => 'etgmtm09.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm10' => { + file => 'etgmtm10.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm11' => { + file => 'etgmtm11.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm12' => { + file => 'etgmtm12.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtm13' => { + file => 'etgmtm13.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtp00' => { + file => 'etgmtp00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtp01' => { + file => 'etgmtp01.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtp02' => { + file => 'etgmtp02.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtp03' => { + file => 'etgmtp03.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtp04' => { + file => 'etgmtp04.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtp05' => { + file => 'etgmtp05.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtp06' => { + file => 'etgmtp06.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtp07' => { + file => 'etgmtp07.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtp08' => { + file => 'etgmtp08.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtp09' => { + file => 'etgmtp09.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtp10' => { + file => 'etgmtp10.pm', + version => '6.52', + }, + 'Date::Manip::TZ::etgmtp11' => { + file => 'etgmtp11.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euamst00' => { + file => 'euamst00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euando00' => { + file => 'euando00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euathe00' => { + file => 'euathe00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eubelg00' => { + file => 'eubelg00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euberl00' => { + file => 'euberl00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eubrus00' => { + file => 'eubrus00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eubuch00' => { + file => 'eubuch00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eubuda00' => { + file => 'eubuda00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euchis00' => { + file => 'euchis00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eucope00' => { + file => 'eucope00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eudubl00' => { + file => 'eudubl00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eugibr00' => { + file => 'eugibr00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euhels00' => { + file => 'euhels00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euista00' => { + file => 'euista00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eukali00' => { + file => 'eukali00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eukiev00' => { + file => 'eukiev00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eulisb00' => { + file => 'eulisb00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eulond00' => { + file => 'eulond00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euluxe00' => { + file => 'euluxe00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eumadr00' => { + file => 'eumadr00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eumalt00' => { + file => 'eumalt00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eumins00' => { + file => 'eumins00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eumona00' => { + file => 'eumona00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eumosc00' => { + file => 'eumosc00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euoslo00' => { + file => 'euoslo00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eupari00' => { + file => 'eupari00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euprag00' => { + file => 'euprag00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euriga00' => { + file => 'euriga00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eurome00' => { + file => 'eurome00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eusama00' => { + file => 'eusama00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eusimf00' => { + file => 'eusimf00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eusofi00' => { + file => 'eusofi00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eustoc00' => { + file => 'eustoc00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eutall00' => { + file => 'eutall00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::eutira00' => { + file => 'eutira00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euuzhg00' => { + file => 'euuzhg00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euvien00' => { + file => 'euvien00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euviln00' => { + file => 'euviln00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euvolg00' => { + file => 'euvolg00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euwars00' => { + file => 'euwars00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euzapo00' => { + file => 'euzapo00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::euzuri00' => { + file => 'euzuri00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::f00' => { + file => 'f00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::g00' => { + file => 'g00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::h00' => { + file => 'h00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::i00' => { + file => 'i00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::inchag00' => { + file => 'inchag00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::inchri00' => { + file => 'inchri00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::incoco00' => { + file => 'incoco00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::inkerg00' => { + file => 'inkerg00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::inmahe00' => { + file => 'inmahe00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::inmald00' => { + file => 'inmald00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::inmaur00' => { + file => 'inmaur00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::inreun00' => { + file => 'inreun00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::k00' => { + file => 'k00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::l00' => { + file => 'l00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::m00' => { + file => 'm00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::met00' => { + file => 'met00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::n00' => { + file => 'n00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::o00' => { + file => 'o00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::p00' => { + file => 'p00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::paapia00' => { + file => 'paapia00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::paauck00' => { + file => 'paauck00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::paboug00' => { + file => 'paboug00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pachat00' => { + file => 'pachat00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pachuu00' => { + file => 'pachuu00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::paeast00' => { + file => 'paeast00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::paefat00' => { + file => 'paefat00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::paende00' => { + file => 'paende00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pafaka00' => { + file => 'pafaka00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pafiji00' => { + file => 'pafiji00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pafuna00' => { + file => 'pafuna00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pagala00' => { + file => 'pagala00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pagamb00' => { + file => 'pagamb00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::paguad00' => { + file => 'paguad00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::paguam00' => { + file => 'paguam00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pahono00' => { + file => 'pahono00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pakiri00' => { + file => 'pakiri00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pakosr00' => { + file => 'pakosr00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pakwaj00' => { + file => 'pakwaj00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pamaju00' => { + file => 'pamaju00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pamarq00' => { + file => 'pamarq00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::panaur00' => { + file => 'panaur00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::paniue00' => { + file => 'paniue00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::panorf00' => { + file => 'panorf00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::panoum00' => { + file => 'panoum00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::papago00' => { + file => 'papago00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::papala00' => { + file => 'papala00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::papitc00' => { + file => 'papitc00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::papohn00' => { + file => 'papohn00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::paport00' => { + file => 'paport00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pararo00' => { + file => 'pararo00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::patahi00' => { + file => 'patahi00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::patara00' => { + file => 'patara00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::patong00' => { + file => 'patong00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pawake00' => { + file => 'pawake00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::pawall00' => { + file => 'pawall00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::q00' => { + file => 'q00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::r00' => { + file => 'r00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::s00' => { + file => 's00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::t00' => { + file => 't00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::u00' => { + file => 'u00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::ut00' => { + file => 'ut00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::utc00' => { + file => 'utc00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::v00' => { + file => 'v00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::w00' => { + file => 'w00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::wet00' => { + file => 'wet00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::x00' => { + file => 'x00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::y00' => { + file => 'y00.pm', + version => '6.52', + }, + 'Date::Manip::TZ::z00' => { + file => 'z00.pm', + version => '6.52', + }, + 'Date::Manip::TZ_Base' => { + file => 'TZ_Base.pm', + version => '6.52', + }, + 'Date::Manip::TZdata' => { + file => 'TZdata.pm', + version => '6.52', + }, + 'Date::Manip::Zones' => { + file => 'Zones.pm', + version => '6.52', + }, + + }, + } + ) + : ()), + + ($EU_MM_V > 6.46 ? (META_MERGE => { - resources => { - repository => { - type => "git", - web => "https://github.com/SBECK-github/Date-Manip", - url => "git://github.com/SBECK-github/Date-Manip.git", - } - } - }) + 'meta-spec' => { + version => 2, + }, + resources => { + repository => { + type => 'git', + web => 'https://github.com/SBECK-github/Date-Manip', + url => 'git://github.com/SBECK-github/Date-Manip.git', + }, + }, + } + ) : ()), + EXE_FILES => [ 'examples/dm_date', 'examples/dm_zdump', + ], + + ); diff -Nru libdate-manip-perl-6.51/MANIFEST libdate-manip-perl-6.52/MANIFEST --- libdate-manip-perl-6.51/MANIFEST 2015-09-01 12:49:42.000000000 +0000 +++ libdate-manip-perl-6.52/MANIFEST 2015-12-01 18:57:35.000000000 +0000 @@ -1,5 +1,4 @@ .travis.yml -Build.PL Changes examples/dm_date examples/dm_zdump @@ -525,6 +524,7 @@ lib/Date/Manip/Offset/off426.pm lib/Date/Manip/Offset/off427.pm lib/Date/Manip/Offset/off428.pm +lib/Date/Manip/Offset/off429.pm lib/Date/Manip/Problems.pod lib/Date/Manip/Recur.pm lib/Date/Manip/Recur.pod @@ -589,6 +589,7 @@ lib/Date/Manip/TZ/ameiru00.pm lib/Date/Manip/TZ/amel_s00.pm lib/Date/Manip/TZ/amfort00.pm +lib/Date/Manip/TZ/amfort01.pm lib/Date/Manip/TZ/amglac00.pm lib/Date/Manip/TZ/amgodt00.pm lib/Date/Manip/TZ/amgoos00.pm @@ -934,7 +935,6 @@ LICENSE Makefile.PL MANIFEST This list of files -META.json README README.first t/.ppo.yaml @@ -995,6 +995,7 @@ t/date.list_holidays.1.t t/date.list_holidays.2.t t/date.list_holidays.3.t +t/date.list_holidays.4.t t/date.nearest_business_day.t t/date.next.t t/date.next_business_day.t @@ -1106,6 +1107,10 @@ t/Manip.cnf.part1 t/Manip.cnf.part2 t/Manip5.cnf +t/New_Years.1.cnf +t/New_Years.2.cnf +t/New_Years.3.cnf +t/New_Years.4.cnf t/OldEvents.cnf t/orig.convtz.t t/orig.date_isholiday.t @@ -1129,6 +1134,7 @@ t/recur.dates.0.t t/recur.dates.1.t t/recur.dates.2.t +t/recur.dates.3.t t/recur.frequency.t t/recur.init_args.t t/recur.is.t @@ -1147,5 +1153,5 @@ t/tz.zone.t t/tzdata._ruleinfo.t t/tzdata._zoneinfo.t -t/xtra.now.tx -META.yml +META.yml Module YAML meta-data (added by MakeMaker) +META.json Module JSON meta-data (added by MakeMaker) diff -Nru libdate-manip-perl-6.51/META.json libdate-manip-perl-6.52/META.json --- libdate-manip-perl-6.51/META.json 2015-09-01 12:49:42.000000000 +0000 +++ libdate-manip-perl-6.52/META.json 2015-12-01 18:57:35.000000000 +0000 @@ -1,10 +1,10 @@ { "abstract" : "Date manipulation routines", "author" : [ - "Sullivan Beck " + "Sullivan Beck (sbeck@cpan.org)" ], "dynamic_config" : 1, - "generated_by" : "Module::Build version 0.4205", + "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150005", "license" : [ "perl_5" ], @@ -13,15 +13,21 @@ "version" : "2" }, "name" : "Date-Manip", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, "prereqs" : { "build" : { "requires" : { - "Module::Build" : "0.21" + "ExtUtils::MakeMaker" : "0" } }, "configure" : { "requires" : { - "Module::Build" : "0.21" + "ExtUtils::MakeMaker" : "6.30" } }, "runtime" : { @@ -47,135 +53,3438 @@ }, "provides" : { "Date::Manip" : { - "file" : "lib/Date/Manip.pm", - "version" : "6.51" + "file" : "Manip.pm", + "version" : "6.52" }, "Date::Manip::Base" : { - "file" : "lib/Date/Manip/Base.pm", - "version" : "6.51" + "file" : "Base.pm", + "version" : "6.52" }, "Date::Manip::DM5" : { - "file" : "lib/Date/Manip/DM5.pm", - "version" : "6.51" + "file" : "DM5.pm", + "version" : "6.52" }, "Date::Manip::DM5abbrevs" : { - "file" : "lib/Date/Manip/DM5abbrevs.pm", - "version" : "6.51" + "file" : "DM5abbrevs.pm", + "version" : "6.52" }, "Date::Manip::DM6" : { - "file" : "lib/Date/Manip/DM6.pm", - "version" : "6.51" + "file" : "DM6.pm", + "version" : "6.52" }, "Date::Manip::Date" : { - "file" : "lib/Date/Manip/Date.pm", - "version" : "6.51" + "file" : "Date.pm", + "version" : "6.52" }, "Date::Manip::Delta" : { - "file" : "lib/Date/Manip/Delta.pm", - "version" : "6.51" + "file" : "Delta.pm", + "version" : "6.52" }, "Date::Manip::Lang::catalan" : { - "file" : "lib/Date/Manip/Lang/catalan.pm", - "version" : "6.51" + "file" : "catalan.pm", + "version" : "6.52" }, "Date::Manip::Lang::danish" : { - "file" : "lib/Date/Manip/Lang/danish.pm", - "version" : "6.51" + "file" : "danish.pm", + "version" : "6.52" }, "Date::Manip::Lang::dutch" : { - "file" : "lib/Date/Manip/Lang/dutch.pm", - "version" : "6.51" + "file" : "dutch.pm", + "version" : "6.52" }, "Date::Manip::Lang::english" : { - "file" : "lib/Date/Manip/Lang/english.pm", - "version" : "6.51" + "file" : "english.pm", + "version" : "6.52" }, "Date::Manip::Lang::finnish" : { - "file" : "lib/Date/Manip/Lang/finnish.pm", - "version" : "6.51" + "file" : "finnish.pm", + "version" : "6.52" }, "Date::Manip::Lang::french" : { - "file" : "lib/Date/Manip/Lang/french.pm", - "version" : "6.51" + "file" : "french.pm", + "version" : "6.52" }, "Date::Manip::Lang::german" : { - "file" : "lib/Date/Manip/Lang/german.pm", - "version" : "6.51" + "file" : "german.pm", + "version" : "6.52" }, "Date::Manip::Lang::index" : { - "file" : "lib/Date/Manip/Lang/index.pm", - "version" : "6.51" + "file" : "index.pm", + "version" : "6.52" }, "Date::Manip::Lang::italian" : { - "file" : "lib/Date/Manip/Lang/italian.pm", - "version" : "6.51" + "file" : "italian.pm", + "version" : "6.52" }, "Date::Manip::Lang::norwegian" : { - "file" : "lib/Date/Manip/Lang/norwegian.pm", - "version" : "6.51" + "file" : "norwegian.pm", + "version" : "6.52" }, "Date::Manip::Lang::polish" : { - "file" : "lib/Date/Manip/Lang/polish.pm", - "version" : "6.51" + "file" : "polish.pm", + "version" : "6.52" }, "Date::Manip::Lang::portugue" : { - "file" : "lib/Date/Manip/Lang/portugue.pm", - "version" : "6.51" + "file" : "portugue.pm", + "version" : "6.52" }, "Date::Manip::Lang::romanian" : { - "file" : "lib/Date/Manip/Lang/romanian.pm", - "version" : "6.51" + "file" : "romanian.pm", + "version" : "6.52" }, "Date::Manip::Lang::russian" : { - "file" : "lib/Date/Manip/Lang/russian.pm", - "version" : "6.51" + "file" : "russian.pm", + "version" : "6.52" }, "Date::Manip::Lang::spanish" : { - "file" : "lib/Date/Manip/Lang/spanish.pm", - "version" : "6.51" + "file" : "spanish.pm", + "version" : "6.52" }, "Date::Manip::Lang::swedish" : { - "file" : "lib/Date/Manip/Lang/swedish.pm", - "version" : "6.51" + "file" : "swedish.pm", + "version" : "6.52" }, "Date::Manip::Lang::turkish" : { - "file" : "lib/Date/Manip/Lang/turkish.pm", - "version" : "6.51" + "file" : "turkish.pm", + "version" : "6.52" }, "Date::Manip::Obj" : { - "file" : "lib/Date/Manip/Obj.pm", - "version" : "6.51" + "file" : "Obj.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off000" : { + "file" : "off000.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off001" : { + "file" : "off001.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off002" : { + "file" : "off002.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off003" : { + "file" : "off003.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off004" : { + "file" : "off004.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off005" : { + "file" : "off005.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off006" : { + "file" : "off006.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off007" : { + "file" : "off007.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off008" : { + "file" : "off008.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off009" : { + "file" : "off009.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off010" : { + "file" : "off010.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off011" : { + "file" : "off011.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off012" : { + "file" : "off012.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off013" : { + "file" : "off013.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off014" : { + "file" : "off014.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off015" : { + "file" : "off015.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off016" : { + "file" : "off016.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off017" : { + "file" : "off017.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off018" : { + "file" : "off018.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off019" : { + "file" : "off019.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off020" : { + "file" : "off020.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off021" : { + "file" : "off021.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off022" : { + "file" : "off022.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off023" : { + "file" : "off023.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off024" : { + "file" : "off024.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off025" : { + "file" : "off025.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off026" : { + "file" : "off026.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off027" : { + "file" : "off027.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off028" : { + "file" : "off028.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off029" : { + "file" : "off029.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off030" : { + "file" : "off030.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off031" : { + "file" : "off031.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off032" : { + "file" : "off032.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off033" : { + "file" : "off033.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off034" : { + "file" : "off034.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off035" : { + "file" : "off035.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off036" : { + "file" : "off036.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off037" : { + "file" : "off037.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off038" : { + "file" : "off038.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off039" : { + "file" : "off039.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off040" : { + "file" : "off040.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off041" : { + "file" : "off041.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off042" : { + "file" : "off042.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off043" : { + "file" : "off043.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off044" : { + "file" : "off044.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off045" : { + "file" : "off045.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off046" : { + "file" : "off046.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off047" : { + "file" : "off047.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off048" : { + "file" : "off048.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off049" : { + "file" : "off049.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off050" : { + "file" : "off050.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off051" : { + "file" : "off051.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off052" : { + "file" : "off052.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off053" : { + "file" : "off053.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off054" : { + "file" : "off054.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off055" : { + "file" : "off055.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off056" : { + "file" : "off056.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off057" : { + "file" : "off057.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off058" : { + "file" : "off058.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off059" : { + "file" : "off059.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off060" : { + "file" : "off060.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off061" : { + "file" : "off061.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off062" : { + "file" : "off062.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off063" : { + "file" : "off063.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off064" : { + "file" : "off064.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off065" : { + "file" : "off065.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off066" : { + "file" : "off066.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off067" : { + "file" : "off067.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off068" : { + "file" : "off068.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off069" : { + "file" : "off069.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off070" : { + "file" : "off070.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off071" : { + "file" : "off071.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off072" : { + "file" : "off072.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off073" : { + "file" : "off073.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off074" : { + "file" : "off074.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off075" : { + "file" : "off075.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off076" : { + "file" : "off076.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off077" : { + "file" : "off077.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off078" : { + "file" : "off078.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off079" : { + "file" : "off079.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off080" : { + "file" : "off080.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off081" : { + "file" : "off081.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off082" : { + "file" : "off082.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off083" : { + "file" : "off083.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off084" : { + "file" : "off084.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off085" : { + "file" : "off085.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off086" : { + "file" : "off086.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off087" : { + "file" : "off087.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off088" : { + "file" : "off088.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off089" : { + "file" : "off089.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off090" : { + "file" : "off090.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off091" : { + "file" : "off091.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off092" : { + "file" : "off092.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off093" : { + "file" : "off093.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off094" : { + "file" : "off094.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off095" : { + "file" : "off095.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off096" : { + "file" : "off096.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off097" : { + "file" : "off097.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off098" : { + "file" : "off098.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off099" : { + "file" : "off099.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off100" : { + "file" : "off100.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off101" : { + "file" : "off101.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off102" : { + "file" : "off102.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off103" : { + "file" : "off103.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off104" : { + "file" : "off104.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off105" : { + "file" : "off105.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off106" : { + "file" : "off106.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off107" : { + "file" : "off107.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off108" : { + "file" : "off108.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off109" : { + "file" : "off109.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off110" : { + "file" : "off110.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off111" : { + "file" : "off111.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off112" : { + "file" : "off112.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off113" : { + "file" : "off113.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off114" : { + "file" : "off114.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off115" : { + "file" : "off115.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off116" : { + "file" : "off116.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off117" : { + "file" : "off117.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off118" : { + "file" : "off118.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off119" : { + "file" : "off119.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off120" : { + "file" : "off120.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off121" : { + "file" : "off121.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off122" : { + "file" : "off122.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off123" : { + "file" : "off123.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off124" : { + "file" : "off124.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off125" : { + "file" : "off125.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off126" : { + "file" : "off126.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off127" : { + "file" : "off127.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off128" : { + "file" : "off128.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off129" : { + "file" : "off129.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off130" : { + "file" : "off130.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off131" : { + "file" : "off131.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off132" : { + "file" : "off132.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off133" : { + "file" : "off133.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off134" : { + "file" : "off134.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off135" : { + "file" : "off135.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off136" : { + "file" : "off136.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off137" : { + "file" : "off137.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off138" : { + "file" : "off138.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off139" : { + "file" : "off139.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off140" : { + "file" : "off140.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off141" : { + "file" : "off141.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off142" : { + "file" : "off142.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off143" : { + "file" : "off143.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off144" : { + "file" : "off144.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off145" : { + "file" : "off145.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off146" : { + "file" : "off146.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off147" : { + "file" : "off147.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off148" : { + "file" : "off148.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off149" : { + "file" : "off149.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off150" : { + "file" : "off150.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off151" : { + "file" : "off151.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off152" : { + "file" : "off152.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off153" : { + "file" : "off153.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off154" : { + "file" : "off154.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off155" : { + "file" : "off155.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off156" : { + "file" : "off156.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off157" : { + "file" : "off157.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off158" : { + "file" : "off158.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off159" : { + "file" : "off159.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off160" : { + "file" : "off160.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off161" : { + "file" : "off161.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off162" : { + "file" : "off162.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off163" : { + "file" : "off163.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off164" : { + "file" : "off164.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off165" : { + "file" : "off165.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off166" : { + "file" : "off166.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off167" : { + "file" : "off167.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off168" : { + "file" : "off168.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off169" : { + "file" : "off169.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off170" : { + "file" : "off170.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off171" : { + "file" : "off171.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off172" : { + "file" : "off172.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off173" : { + "file" : "off173.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off174" : { + "file" : "off174.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off175" : { + "file" : "off175.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off176" : { + "file" : "off176.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off177" : { + "file" : "off177.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off178" : { + "file" : "off178.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off179" : { + "file" : "off179.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off180" : { + "file" : "off180.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off181" : { + "file" : "off181.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off182" : { + "file" : "off182.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off183" : { + "file" : "off183.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off184" : { + "file" : "off184.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off185" : { + "file" : "off185.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off186" : { + "file" : "off186.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off187" : { + "file" : "off187.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off188" : { + "file" : "off188.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off189" : { + "file" : "off189.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off190" : { + "file" : "off190.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off191" : { + "file" : "off191.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off192" : { + "file" : "off192.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off193" : { + "file" : "off193.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off194" : { + "file" : "off194.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off195" : { + "file" : "off195.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off196" : { + "file" : "off196.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off197" : { + "file" : "off197.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off198" : { + "file" : "off198.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off199" : { + "file" : "off199.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off200" : { + "file" : "off200.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off201" : { + "file" : "off201.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off202" : { + "file" : "off202.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off203" : { + "file" : "off203.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off204" : { + "file" : "off204.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off205" : { + "file" : "off205.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off206" : { + "file" : "off206.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off207" : { + "file" : "off207.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off208" : { + "file" : "off208.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off209" : { + "file" : "off209.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off210" : { + "file" : "off210.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off211" : { + "file" : "off211.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off212" : { + "file" : "off212.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off213" : { + "file" : "off213.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off214" : { + "file" : "off214.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off215" : { + "file" : "off215.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off216" : { + "file" : "off216.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off217" : { + "file" : "off217.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off218" : { + "file" : "off218.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off219" : { + "file" : "off219.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off220" : { + "file" : "off220.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off221" : { + "file" : "off221.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off222" : { + "file" : "off222.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off223" : { + "file" : "off223.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off224" : { + "file" : "off224.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off225" : { + "file" : "off225.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off226" : { + "file" : "off226.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off227" : { + "file" : "off227.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off228" : { + "file" : "off228.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off229" : { + "file" : "off229.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off230" : { + "file" : "off230.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off231" : { + "file" : "off231.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off232" : { + "file" : "off232.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off233" : { + "file" : "off233.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off234" : { + "file" : "off234.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off235" : { + "file" : "off235.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off236" : { + "file" : "off236.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off237" : { + "file" : "off237.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off238" : { + "file" : "off238.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off239" : { + "file" : "off239.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off240" : { + "file" : "off240.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off241" : { + "file" : "off241.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off242" : { + "file" : "off242.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off243" : { + "file" : "off243.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off244" : { + "file" : "off244.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off245" : { + "file" : "off245.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off246" : { + "file" : "off246.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off247" : { + "file" : "off247.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off248" : { + "file" : "off248.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off249" : { + "file" : "off249.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off250" : { + "file" : "off250.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off251" : { + "file" : "off251.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off252" : { + "file" : "off252.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off253" : { + "file" : "off253.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off254" : { + "file" : "off254.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off255" : { + "file" : "off255.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off256" : { + "file" : "off256.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off257" : { + "file" : "off257.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off258" : { + "file" : "off258.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off259" : { + "file" : "off259.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off260" : { + "file" : "off260.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off261" : { + "file" : "off261.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off262" : { + "file" : "off262.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off263" : { + "file" : "off263.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off264" : { + "file" : "off264.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off265" : { + "file" : "off265.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off266" : { + "file" : "off266.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off267" : { + "file" : "off267.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off268" : { + "file" : "off268.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off269" : { + "file" : "off269.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off270" : { + "file" : "off270.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off271" : { + "file" : "off271.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off272" : { + "file" : "off272.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off273" : { + "file" : "off273.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off274" : { + "file" : "off274.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off275" : { + "file" : "off275.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off276" : { + "file" : "off276.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off277" : { + "file" : "off277.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off278" : { + "file" : "off278.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off279" : { + "file" : "off279.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off280" : { + "file" : "off280.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off281" : { + "file" : "off281.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off282" : { + "file" : "off282.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off283" : { + "file" : "off283.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off284" : { + "file" : "off284.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off285" : { + "file" : "off285.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off286" : { + "file" : "off286.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off287" : { + "file" : "off287.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off288" : { + "file" : "off288.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off289" : { + "file" : "off289.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off290" : { + "file" : "off290.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off291" : { + "file" : "off291.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off292" : { + "file" : "off292.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off293" : { + "file" : "off293.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off294" : { + "file" : "off294.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off295" : { + "file" : "off295.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off296" : { + "file" : "off296.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off297" : { + "file" : "off297.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off298" : { + "file" : "off298.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off299" : { + "file" : "off299.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off300" : { + "file" : "off300.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off301" : { + "file" : "off301.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off302" : { + "file" : "off302.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off303" : { + "file" : "off303.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off304" : { + "file" : "off304.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off305" : { + "file" : "off305.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off306" : { + "file" : "off306.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off307" : { + "file" : "off307.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off308" : { + "file" : "off308.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off309" : { + "file" : "off309.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off310" : { + "file" : "off310.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off311" : { + "file" : "off311.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off312" : { + "file" : "off312.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off313" : { + "file" : "off313.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off314" : { + "file" : "off314.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off315" : { + "file" : "off315.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off316" : { + "file" : "off316.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off317" : { + "file" : "off317.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off318" : { + "file" : "off318.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off319" : { + "file" : "off319.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off320" : { + "file" : "off320.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off321" : { + "file" : "off321.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off322" : { + "file" : "off322.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off323" : { + "file" : "off323.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off324" : { + "file" : "off324.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off325" : { + "file" : "off325.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off326" : { + "file" : "off326.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off327" : { + "file" : "off327.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off328" : { + "file" : "off328.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off329" : { + "file" : "off329.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off330" : { + "file" : "off330.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off331" : { + "file" : "off331.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off332" : { + "file" : "off332.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off333" : { + "file" : "off333.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off334" : { + "file" : "off334.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off335" : { + "file" : "off335.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off336" : { + "file" : "off336.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off337" : { + "file" : "off337.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off338" : { + "file" : "off338.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off339" : { + "file" : "off339.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off340" : { + "file" : "off340.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off341" : { + "file" : "off341.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off342" : { + "file" : "off342.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off343" : { + "file" : "off343.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off344" : { + "file" : "off344.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off345" : { + "file" : "off345.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off346" : { + "file" : "off346.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off347" : { + "file" : "off347.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off348" : { + "file" : "off348.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off349" : { + "file" : "off349.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off350" : { + "file" : "off350.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off351" : { + "file" : "off351.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off352" : { + "file" : "off352.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off353" : { + "file" : "off353.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off354" : { + "file" : "off354.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off355" : { + "file" : "off355.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off356" : { + "file" : "off356.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off357" : { + "file" : "off357.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off358" : { + "file" : "off358.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off359" : { + "file" : "off359.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off360" : { + "file" : "off360.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off361" : { + "file" : "off361.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off362" : { + "file" : "off362.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off363" : { + "file" : "off363.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off364" : { + "file" : "off364.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off365" : { + "file" : "off365.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off366" : { + "file" : "off366.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off367" : { + "file" : "off367.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off368" : { + "file" : "off368.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off369" : { + "file" : "off369.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off370" : { + "file" : "off370.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off371" : { + "file" : "off371.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off372" : { + "file" : "off372.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off373" : { + "file" : "off373.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off374" : { + "file" : "off374.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off375" : { + "file" : "off375.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off376" : { + "file" : "off376.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off377" : { + "file" : "off377.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off378" : { + "file" : "off378.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off379" : { + "file" : "off379.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off380" : { + "file" : "off380.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off381" : { + "file" : "off381.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off382" : { + "file" : "off382.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off383" : { + "file" : "off383.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off384" : { + "file" : "off384.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off385" : { + "file" : "off385.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off386" : { + "file" : "off386.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off387" : { + "file" : "off387.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off388" : { + "file" : "off388.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off389" : { + "file" : "off389.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off390" : { + "file" : "off390.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off391" : { + "file" : "off391.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off392" : { + "file" : "off392.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off393" : { + "file" : "off393.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off394" : { + "file" : "off394.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off395" : { + "file" : "off395.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off396" : { + "file" : "off396.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off397" : { + "file" : "off397.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off398" : { + "file" : "off398.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off399" : { + "file" : "off399.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off400" : { + "file" : "off400.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off401" : { + "file" : "off401.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off402" : { + "file" : "off402.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off403" : { + "file" : "off403.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off404" : { + "file" : "off404.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off405" : { + "file" : "off405.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off406" : { + "file" : "off406.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off407" : { + "file" : "off407.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off408" : { + "file" : "off408.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off409" : { + "file" : "off409.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off410" : { + "file" : "off410.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off411" : { + "file" : "off411.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off412" : { + "file" : "off412.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off413" : { + "file" : "off413.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off414" : { + "file" : "off414.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off415" : { + "file" : "off415.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off416" : { + "file" : "off416.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off417" : { + "file" : "off417.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off418" : { + "file" : "off418.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off419" : { + "file" : "off419.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off420" : { + "file" : "off420.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off421" : { + "file" : "off421.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off422" : { + "file" : "off422.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off423" : { + "file" : "off423.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off424" : { + "file" : "off424.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off425" : { + "file" : "off425.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off426" : { + "file" : "off426.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off427" : { + "file" : "off427.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off428" : { + "file" : "off428.pm", + "version" : "6.52" + }, + "Date::Manip::Offset::off429" : { + "file" : "off429.pm", + "version" : "6.52" }, "Date::Manip::Recur" : { - "file" : "lib/Date/Manip/Recur.pm", - "version" : "6.51" + "file" : "Recur.pm", + "version" : "6.52" }, "Date::Manip::TZ" : { - "file" : "lib/Date/Manip/TZ.pm", - "version" : "6.51" + "file" : "TZ.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::a00" : { + "file" : "a00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afabid00" : { + "file" : "afabid00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afaccr00" : { + "file" : "afaccr00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afalgi00" : { + "file" : "afalgi00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afbiss00" : { + "file" : "afbiss00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afcair00" : { + "file" : "afcair00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afcasa00" : { + "file" : "afcasa00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afceut00" : { + "file" : "afceut00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afel_a00" : { + "file" : "afel_a00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afjoha00" : { + "file" : "afjoha00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afkhar00" : { + "file" : "afkhar00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aflago00" : { + "file" : "aflago00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afmapu00" : { + "file" : "afmapu00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afmonr00" : { + "file" : "afmonr00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afnair00" : { + "file" : "afnair00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afndja00" : { + "file" : "afndja00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aftrip00" : { + "file" : "aftrip00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aftuni00" : { + "file" : "aftuni00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::afwind00" : { + "file" : "afwind00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amadak00" : { + "file" : "amadak00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amanch00" : { + "file" : "amanch00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amarag00" : { + "file" : "amarag00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amasun00" : { + "file" : "amasun00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amatik00" : { + "file" : "amatik00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ambahi00" : { + "file" : "ambahi00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ambahi01" : { + "file" : "ambahi01.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ambarb00" : { + "file" : "ambarb00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ambele00" : { + "file" : "ambele00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ambeli00" : { + "file" : "ambeli00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ambeul00" : { + "file" : "ambeul00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amblan00" : { + "file" : "amblan00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amboa_00" : { + "file" : "amboa_00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ambogo00" : { + "file" : "ambogo00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ambois00" : { + "file" : "ambois00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ambuen00" : { + "file" : "ambuen00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amcamb00" : { + "file" : "amcamb00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amcamp00" : { + "file" : "amcamp00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amcanc00" : { + "file" : "amcanc00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amcara00" : { + "file" : "amcara00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amcata00" : { + "file" : "amcata00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amcaye00" : { + "file" : "amcaye00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amcaym00" : { + "file" : "amcaym00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amcent00" : { + "file" : "amcent00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amchic00" : { + "file" : "amchic00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amchih00" : { + "file" : "amchih00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amcord00" : { + "file" : "amcord00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amcost00" : { + "file" : "amcost00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amcres00" : { + "file" : "amcres00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amcuia00" : { + "file" : "amcuia00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amcura00" : { + "file" : "amcura00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amdanm00" : { + "file" : "amdanm00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amdaws00" : { + "file" : "amdaws00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amdaws01" : { + "file" : "amdaws01.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amdenv00" : { + "file" : "amdenv00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amdetr00" : { + "file" : "amdetr00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amedmo00" : { + "file" : "amedmo00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ameiru00" : { + "file" : "ameiru00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amel_s00" : { + "file" : "amel_s00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amfort00" : { + "file" : "amfort00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amfort01" : { + "file" : "amfort01.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amglac00" : { + "file" : "amglac00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amgodt00" : { + "file" : "amgodt00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amgoos00" : { + "file" : "amgoos00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amgran00" : { + "file" : "amgran00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amguat00" : { + "file" : "amguat00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amguay00" : { + "file" : "amguay00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amguya00" : { + "file" : "amguya00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amhali00" : { + "file" : "amhali00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amhava00" : { + "file" : "amhava00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amherm00" : { + "file" : "amherm00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amindi00" : { + "file" : "amindi00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aminuv00" : { + "file" : "aminuv00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amiqal00" : { + "file" : "amiqal00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amjama00" : { + "file" : "amjama00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amjuju00" : { + "file" : "amjuju00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amjune00" : { + "file" : "amjune00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amknox00" : { + "file" : "amknox00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amla_p00" : { + "file" : "amla_p00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amla_r00" : { + "file" : "amla_r00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amlima00" : { + "file" : "amlima00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amlos_00" : { + "file" : "amlos_00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amloui00" : { + "file" : "amloui00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammace00" : { + "file" : "ammace00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammana00" : { + "file" : "ammana00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammana01" : { + "file" : "ammana01.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammare00" : { + "file" : "ammare00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammart00" : { + "file" : "ammart00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammata00" : { + "file" : "ammata00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammaza00" : { + "file" : "ammaza00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammend00" : { + "file" : "ammend00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammeno00" : { + "file" : "ammeno00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammeri00" : { + "file" : "ammeri00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammetl00" : { + "file" : "ammetl00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammexi00" : { + "file" : "ammexi00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammiqu00" : { + "file" : "ammiqu00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammonc00" : { + "file" : "ammonc00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammont00" : { + "file" : "ammont00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammont01" : { + "file" : "ammont01.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ammont02" : { + "file" : "ammont02.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amnass00" : { + "file" : "amnass00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amnew_00" : { + "file" : "amnew_00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amnew_01" : { + "file" : "amnew_01.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amnipi00" : { + "file" : "amnipi00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amnome00" : { + "file" : "amnome00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amnoro00" : { + "file" : "amnoro00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amojin00" : { + "file" : "amojin00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ampana00" : { + "file" : "ampana00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ampang00" : { + "file" : "ampang00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ampara00" : { + "file" : "ampara00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ampete00" : { + "file" : "ampete00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amphoe00" : { + "file" : "amphoe00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amport00" : { + "file" : "amport00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amport01" : { + "file" : "amport01.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amport02" : { + "file" : "amport02.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ampuer00" : { + "file" : "ampuer00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amrain00" : { + "file" : "amrain00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amrank00" : { + "file" : "amrank00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amreci00" : { + "file" : "amreci00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amregi00" : { + "file" : "amregi00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amreso00" : { + "file" : "amreso00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amrio_00" : { + "file" : "amrio_00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amrio_01" : { + "file" : "amrio_01.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amsalt00" : { + "file" : "amsalt00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amsan_00" : { + "file" : "amsan_00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amsan_01" : { + "file" : "amsan_01.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amsant00" : { + "file" : "amsant00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amsant01" : { + "file" : "amsant01.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amsant02" : { + "file" : "amsant02.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amsant03" : { + "file" : "amsant03.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amsao_00" : { + "file" : "amsao_00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amscor00" : { + "file" : "amscor00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amsitk00" : { + "file" : "amsitk00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amst_j00" : { + "file" : "amst_j00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amswif00" : { + "file" : "amswif00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amtegu00" : { + "file" : "amtegu00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amtell00" : { + "file" : "amtell00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amthul00" : { + "file" : "amthul00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amthun00" : { + "file" : "amthun00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amtiju00" : { + "file" : "amtiju00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amtoro00" : { + "file" : "amtoro00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amtucu00" : { + "file" : "amtucu00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amushu00" : { + "file" : "amushu00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amvanc00" : { + "file" : "amvanc00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amveva00" : { + "file" : "amveva00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amvinc00" : { + "file" : "amvinc00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amwhit00" : { + "file" : "amwhit00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amwina00" : { + "file" : "amwina00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amwinn00" : { + "file" : "amwinn00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amyaku00" : { + "file" : "amyaku00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::amyell00" : { + "file" : "amyell00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ancase00" : { + "file" : "ancase00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::andavi00" : { + "file" : "andavi00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::andumo00" : { + "file" : "andumo00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::anmacq00" : { + "file" : "anmacq00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::anmaws00" : { + "file" : "anmaws00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::anpalm00" : { + "file" : "anpalm00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::anroth00" : { + "file" : "anroth00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ansyow00" : { + "file" : "ansyow00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::antrol00" : { + "file" : "antrol00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::anvost00" : { + "file" : "anvost00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asalma00" : { + "file" : "asalma00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asamma00" : { + "file" : "asamma00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asanad00" : { + "file" : "asanad00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asaqta00" : { + "file" : "asaqta00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asaqto00" : { + "file" : "asaqto00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asashg00" : { + "file" : "asashg00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asbagh00" : { + "file" : "asbagh00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asbaku00" : { + "file" : "asbaku00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asbang00" : { + "file" : "asbang00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asbeir00" : { + "file" : "asbeir00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asbish00" : { + "file" : "asbish00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asbrun00" : { + "file" : "asbrun00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aschit00" : { + "file" : "aschit00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aschoi00" : { + "file" : "aschoi00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ascolo00" : { + "file" : "ascolo00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asdama00" : { + "file" : "asdama00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asdhak00" : { + "file" : "asdhak00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asdili00" : { + "file" : "asdili00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asduba00" : { + "file" : "asduba00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asdush00" : { + "file" : "asdush00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asgaza00" : { + "file" : "asgaza00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ashebr00" : { + "file" : "ashebr00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asho_c00" : { + "file" : "asho_c00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ashong00" : { + "file" : "ashong00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ashovd00" : { + "file" : "ashovd00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asirku00" : { + "file" : "asirku00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asjaka00" : { + "file" : "asjaka00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asjaya00" : { + "file" : "asjaya00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asjeru00" : { + "file" : "asjeru00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::askabu00" : { + "file" : "askabu00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::askamc00" : { + "file" : "askamc00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::askara00" : { + "file" : "askara00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::askath00" : { + "file" : "askath00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::askhan00" : { + "file" : "askhan00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::askolk00" : { + "file" : "askolk00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::askras00" : { + "file" : "askras00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::askual00" : { + "file" : "askual00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::askuch00" : { + "file" : "askuch00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asmaca00" : { + "file" : "asmaca00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asmaga00" : { + "file" : "asmaga00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asmaka00" : { + "file" : "asmaka00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asmani00" : { + "file" : "asmani00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asnico00" : { + "file" : "asnico00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asnovo00" : { + "file" : "asnovo00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asnovo01" : { + "file" : "asnovo01.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asomsk00" : { + "file" : "asomsk00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asoral00" : { + "file" : "asoral00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aspont00" : { + "file" : "aspont00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aspyon00" : { + "file" : "aspyon00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asqata00" : { + "file" : "asqata00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asqyzy00" : { + "file" : "asqyzy00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asrang00" : { + "file" : "asrang00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asriya00" : { + "file" : "asriya00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::assakh00" : { + "file" : "assakh00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::assama00" : { + "file" : "assama00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asseou00" : { + "file" : "asseou00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asshan00" : { + "file" : "asshan00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::assing00" : { + "file" : "assing00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::assred00" : { + "file" : "assred00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::astaip00" : { + "file" : "astaip00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::astash00" : { + "file" : "astash00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::astbil00" : { + "file" : "astbil00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::astehr00" : { + "file" : "astehr00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asthim00" : { + "file" : "asthim00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::astoky00" : { + "file" : "astoky00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asulaa00" : { + "file" : "asulaa00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asurum00" : { + "file" : "asurum00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asustm00" : { + "file" : "asustm00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asvlad00" : { + "file" : "asvlad00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asyaku00" : { + "file" : "asyaku00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asyeka00" : { + "file" : "asyeka00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::asyere00" : { + "file" : "asyere00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::atazor00" : { + "file" : "atazor00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::atberm00" : { + "file" : "atberm00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::atcana00" : { + "file" : "atcana00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::atcape00" : { + "file" : "atcape00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::atfaro00" : { + "file" : "atfaro00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::atmade00" : { + "file" : "atmade00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::atreyk00" : { + "file" : "atreyk00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::atsout00" : { + "file" : "atsout00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::atstan00" : { + "file" : "atstan00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::auadel00" : { + "file" : "auadel00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aubris00" : { + "file" : "aubris00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aubrok00" : { + "file" : "aubrok00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aucurr00" : { + "file" : "aucurr00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::audarw00" : { + "file" : "audarw00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aueucl00" : { + "file" : "aueucl00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::auhoba00" : { + "file" : "auhoba00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aulind00" : { + "file" : "aulind00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aulord00" : { + "file" : "aulord00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aumelb00" : { + "file" : "aumelb00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::aupert00" : { + "file" : "aupert00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ausydn00" : { + "file" : "ausydn00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::b00" : { + "file" : "b00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::c00" : { + "file" : "c00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::cet00" : { + "file" : "cet00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::d00" : { + "file" : "d00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::e00" : { + "file" : "e00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eet00" : { + "file" : "eet00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmt00" : { + "file" : "etgmt00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm00" : { + "file" : "etgmtm00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm01" : { + "file" : "etgmtm01.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm02" : { + "file" : "etgmtm02.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm03" : { + "file" : "etgmtm03.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm04" : { + "file" : "etgmtm04.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm05" : { + "file" : "etgmtm05.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm06" : { + "file" : "etgmtm06.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm07" : { + "file" : "etgmtm07.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm08" : { + "file" : "etgmtm08.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm09" : { + "file" : "etgmtm09.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm10" : { + "file" : "etgmtm10.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm11" : { + "file" : "etgmtm11.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm12" : { + "file" : "etgmtm12.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtm13" : { + "file" : "etgmtm13.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtp00" : { + "file" : "etgmtp00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtp01" : { + "file" : "etgmtp01.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtp02" : { + "file" : "etgmtp02.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtp03" : { + "file" : "etgmtp03.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtp04" : { + "file" : "etgmtp04.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtp05" : { + "file" : "etgmtp05.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtp06" : { + "file" : "etgmtp06.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtp07" : { + "file" : "etgmtp07.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtp08" : { + "file" : "etgmtp08.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtp09" : { + "file" : "etgmtp09.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtp10" : { + "file" : "etgmtp10.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::etgmtp11" : { + "file" : "etgmtp11.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euamst00" : { + "file" : "euamst00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euando00" : { + "file" : "euando00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euathe00" : { + "file" : "euathe00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eubelg00" : { + "file" : "eubelg00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euberl00" : { + "file" : "euberl00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eubrus00" : { + "file" : "eubrus00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eubuch00" : { + "file" : "eubuch00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eubuda00" : { + "file" : "eubuda00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euchis00" : { + "file" : "euchis00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eucope00" : { + "file" : "eucope00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eudubl00" : { + "file" : "eudubl00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eugibr00" : { + "file" : "eugibr00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euhels00" : { + "file" : "euhels00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euista00" : { + "file" : "euista00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eukali00" : { + "file" : "eukali00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eukiev00" : { + "file" : "eukiev00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eulisb00" : { + "file" : "eulisb00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eulond00" : { + "file" : "eulond00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euluxe00" : { + "file" : "euluxe00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eumadr00" : { + "file" : "eumadr00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eumalt00" : { + "file" : "eumalt00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eumins00" : { + "file" : "eumins00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eumona00" : { + "file" : "eumona00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eumosc00" : { + "file" : "eumosc00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euoslo00" : { + "file" : "euoslo00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eupari00" : { + "file" : "eupari00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euprag00" : { + "file" : "euprag00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euriga00" : { + "file" : "euriga00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eurome00" : { + "file" : "eurome00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eusama00" : { + "file" : "eusama00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eusimf00" : { + "file" : "eusimf00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eusofi00" : { + "file" : "eusofi00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eustoc00" : { + "file" : "eustoc00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eutall00" : { + "file" : "eutall00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::eutira00" : { + "file" : "eutira00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euuzhg00" : { + "file" : "euuzhg00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euvien00" : { + "file" : "euvien00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euviln00" : { + "file" : "euviln00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euvolg00" : { + "file" : "euvolg00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euwars00" : { + "file" : "euwars00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euzapo00" : { + "file" : "euzapo00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::euzuri00" : { + "file" : "euzuri00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::f00" : { + "file" : "f00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::g00" : { + "file" : "g00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::h00" : { + "file" : "h00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::i00" : { + "file" : "i00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::inchag00" : { + "file" : "inchag00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::inchri00" : { + "file" : "inchri00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::incoco00" : { + "file" : "incoco00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::inkerg00" : { + "file" : "inkerg00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::inmahe00" : { + "file" : "inmahe00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::inmald00" : { + "file" : "inmald00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::inmaur00" : { + "file" : "inmaur00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::inreun00" : { + "file" : "inreun00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::k00" : { + "file" : "k00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::l00" : { + "file" : "l00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::m00" : { + "file" : "m00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::met00" : { + "file" : "met00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::n00" : { + "file" : "n00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::o00" : { + "file" : "o00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::p00" : { + "file" : "p00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::paapia00" : { + "file" : "paapia00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::paauck00" : { + "file" : "paauck00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::paboug00" : { + "file" : "paboug00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pachat00" : { + "file" : "pachat00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pachuu00" : { + "file" : "pachuu00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::paeast00" : { + "file" : "paeast00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::paefat00" : { + "file" : "paefat00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::paende00" : { + "file" : "paende00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pafaka00" : { + "file" : "pafaka00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pafiji00" : { + "file" : "pafiji00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pafuna00" : { + "file" : "pafuna00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pagala00" : { + "file" : "pagala00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pagamb00" : { + "file" : "pagamb00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::paguad00" : { + "file" : "paguad00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::paguam00" : { + "file" : "paguam00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pahono00" : { + "file" : "pahono00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pakiri00" : { + "file" : "pakiri00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pakosr00" : { + "file" : "pakosr00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pakwaj00" : { + "file" : "pakwaj00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pamaju00" : { + "file" : "pamaju00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pamarq00" : { + "file" : "pamarq00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::panaur00" : { + "file" : "panaur00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::paniue00" : { + "file" : "paniue00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::panorf00" : { + "file" : "panorf00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::panoum00" : { + "file" : "panoum00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::papago00" : { + "file" : "papago00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::papala00" : { + "file" : "papala00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::papitc00" : { + "file" : "papitc00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::papohn00" : { + "file" : "papohn00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::paport00" : { + "file" : "paport00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pararo00" : { + "file" : "pararo00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::patahi00" : { + "file" : "patahi00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::patara00" : { + "file" : "patara00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::patong00" : { + "file" : "patong00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pawake00" : { + "file" : "pawake00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::pawall00" : { + "file" : "pawall00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::q00" : { + "file" : "q00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::r00" : { + "file" : "r00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::s00" : { + "file" : "s00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::t00" : { + "file" : "t00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::u00" : { + "file" : "u00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::ut00" : { + "file" : "ut00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::utc00" : { + "file" : "utc00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::v00" : { + "file" : "v00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::w00" : { + "file" : "w00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::wet00" : { + "file" : "wet00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::x00" : { + "file" : "x00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::y00" : { + "file" : "y00.pm", + "version" : "6.52" + }, + "Date::Manip::TZ::z00" : { + "file" : "z00.pm", + "version" : "6.52" }, "Date::Manip::TZ_Base" : { - "file" : "lib/Date/Manip/TZ_Base.pm", - "version" : "6.51" + "file" : "TZ_Base.pm", + "version" : "6.52" }, "Date::Manip::TZdata" : { - "file" : "lib/Date/Manip/TZdata.pm", - "version" : "6.51" + "file" : "TZdata.pm", + "version" : "6.52" }, "Date::Manip::Zones" : { - "file" : "lib/Date/Manip/Zones.pm", - "version" : "6.51" + "file" : "Zones.pm", + "version" : "6.52" } }, "release_status" : "stable", "resources" : { - "license" : [ - "http://dev.perl.org/licenses/" - ], "repository" : { - "url" : "https://github.com/SBECK-github/Date-Manip" + "type" : "git", + "url" : "git://github.com/SBECK-github/Date-Manip.git", + "web" : "https://github.com/SBECK-github/Date-Manip" } }, - "version" : "6.51", + "version" : "6.52", "x_serialization_backend" : "JSON::PP version 2.27203" } diff -Nru libdate-manip-perl-6.51/META.yml libdate-manip-perl-6.52/META.yml --- libdate-manip-perl-6.51/META.yml 2015-09-01 12:49:42.000000000 +0000 +++ libdate-manip-perl-6.52/META.yml 2015-12-01 18:57:32.000000000 +0000 @@ -1,111 +1,2593 @@ --- abstract: 'Date manipulation routines' author: - - 'Sullivan Beck ' + - 'Sullivan Beck (sbeck@cpan.org)' build_requires: - Module::Build: '0.21' + ExtUtils::MakeMaker: '0' Test::Inter: '0' Test::More: '0' configure_requires: - Module::Build: '0.21' + ExtUtils::MakeMaker: '6.30' dynamic_config: 1 -generated_by: 'Module::Build version 0.4205, CPAN::Meta::Converter version 2.150005' +generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150005' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: '1.4' name: Date-Manip +no_index: + directory: + - t + - inc provides: Date::Manip: - file: lib/Date/Manip.pm - version: '6.51' + file: Manip.pm + version: '6.52' Date::Manip::Base: - file: lib/Date/Manip/Base.pm - version: '6.51' + file: Base.pm + version: '6.52' Date::Manip::DM5: - file: lib/Date/Manip/DM5.pm - version: '6.51' + file: DM5.pm + version: '6.52' Date::Manip::DM5abbrevs: - file: lib/Date/Manip/DM5abbrevs.pm - version: '6.51' + file: DM5abbrevs.pm + version: '6.52' Date::Manip::DM6: - file: lib/Date/Manip/DM6.pm - version: '6.51' + file: DM6.pm + version: '6.52' Date::Manip::Date: - file: lib/Date/Manip/Date.pm - version: '6.51' + file: Date.pm + version: '6.52' Date::Manip::Delta: - file: lib/Date/Manip/Delta.pm - version: '6.51' + file: Delta.pm + version: '6.52' Date::Manip::Lang::catalan: - file: lib/Date/Manip/Lang/catalan.pm - version: '6.51' + file: catalan.pm + version: '6.52' Date::Manip::Lang::danish: - file: lib/Date/Manip/Lang/danish.pm - version: '6.51' + file: danish.pm + version: '6.52' Date::Manip::Lang::dutch: - file: lib/Date/Manip/Lang/dutch.pm - version: '6.51' + file: dutch.pm + version: '6.52' Date::Manip::Lang::english: - file: lib/Date/Manip/Lang/english.pm - version: '6.51' + file: english.pm + version: '6.52' Date::Manip::Lang::finnish: - file: lib/Date/Manip/Lang/finnish.pm - version: '6.51' + file: finnish.pm + version: '6.52' Date::Manip::Lang::french: - file: lib/Date/Manip/Lang/french.pm - version: '6.51' + file: french.pm + version: '6.52' Date::Manip::Lang::german: - file: lib/Date/Manip/Lang/german.pm - version: '6.51' + file: german.pm + version: '6.52' Date::Manip::Lang::index: - file: lib/Date/Manip/Lang/index.pm - version: '6.51' + file: index.pm + version: '6.52' Date::Manip::Lang::italian: - file: lib/Date/Manip/Lang/italian.pm - version: '6.51' + file: italian.pm + version: '6.52' Date::Manip::Lang::norwegian: - file: lib/Date/Manip/Lang/norwegian.pm - version: '6.51' + file: norwegian.pm + version: '6.52' Date::Manip::Lang::polish: - file: lib/Date/Manip/Lang/polish.pm - version: '6.51' + file: polish.pm + version: '6.52' Date::Manip::Lang::portugue: - file: lib/Date/Manip/Lang/portugue.pm - version: '6.51' + file: portugue.pm + version: '6.52' Date::Manip::Lang::romanian: - file: lib/Date/Manip/Lang/romanian.pm - version: '6.51' + file: romanian.pm + version: '6.52' Date::Manip::Lang::russian: - file: lib/Date/Manip/Lang/russian.pm - version: '6.51' + file: russian.pm + version: '6.52' Date::Manip::Lang::spanish: - file: lib/Date/Manip/Lang/spanish.pm - version: '6.51' + file: spanish.pm + version: '6.52' Date::Manip::Lang::swedish: - file: lib/Date/Manip/Lang/swedish.pm - version: '6.51' + file: swedish.pm + version: '6.52' Date::Manip::Lang::turkish: - file: lib/Date/Manip/Lang/turkish.pm - version: '6.51' + file: turkish.pm + version: '6.52' Date::Manip::Obj: - file: lib/Date/Manip/Obj.pm - version: '6.51' + file: Obj.pm + version: '6.52' + Date::Manip::Offset::off000: + file: off000.pm + version: '6.52' + Date::Manip::Offset::off001: + file: off001.pm + version: '6.52' + Date::Manip::Offset::off002: + file: off002.pm + version: '6.52' + Date::Manip::Offset::off003: + file: off003.pm + version: '6.52' + Date::Manip::Offset::off004: + file: off004.pm + version: '6.52' + Date::Manip::Offset::off005: + file: off005.pm + version: '6.52' + Date::Manip::Offset::off006: + file: off006.pm + version: '6.52' + Date::Manip::Offset::off007: + file: off007.pm + version: '6.52' + Date::Manip::Offset::off008: + file: off008.pm + version: '6.52' + Date::Manip::Offset::off009: + file: off009.pm + version: '6.52' + Date::Manip::Offset::off010: + file: off010.pm + version: '6.52' + Date::Manip::Offset::off011: + file: off011.pm + version: '6.52' + Date::Manip::Offset::off012: + file: off012.pm + version: '6.52' + Date::Manip::Offset::off013: + file: off013.pm + version: '6.52' + Date::Manip::Offset::off014: + file: off014.pm + version: '6.52' + Date::Manip::Offset::off015: + file: off015.pm + version: '6.52' + Date::Manip::Offset::off016: + file: off016.pm + version: '6.52' + Date::Manip::Offset::off017: + file: off017.pm + version: '6.52' + Date::Manip::Offset::off018: + file: off018.pm + version: '6.52' + Date::Manip::Offset::off019: + file: off019.pm + version: '6.52' + Date::Manip::Offset::off020: + file: off020.pm + version: '6.52' + Date::Manip::Offset::off021: + file: off021.pm + version: '6.52' + Date::Manip::Offset::off022: + file: off022.pm + version: '6.52' + Date::Manip::Offset::off023: + file: off023.pm + version: '6.52' + Date::Manip::Offset::off024: + file: off024.pm + version: '6.52' + Date::Manip::Offset::off025: + file: off025.pm + version: '6.52' + Date::Manip::Offset::off026: + file: off026.pm + version: '6.52' + Date::Manip::Offset::off027: + file: off027.pm + version: '6.52' + Date::Manip::Offset::off028: + file: off028.pm + version: '6.52' + Date::Manip::Offset::off029: + file: off029.pm + version: '6.52' + Date::Manip::Offset::off030: + file: off030.pm + version: '6.52' + Date::Manip::Offset::off031: + file: off031.pm + version: '6.52' + Date::Manip::Offset::off032: + file: off032.pm + version: '6.52' + Date::Manip::Offset::off033: + file: off033.pm + version: '6.52' + Date::Manip::Offset::off034: + file: off034.pm + version: '6.52' + Date::Manip::Offset::off035: + file: off035.pm + version: '6.52' + Date::Manip::Offset::off036: + file: off036.pm + version: '6.52' + Date::Manip::Offset::off037: + file: off037.pm + version: '6.52' + Date::Manip::Offset::off038: + file: off038.pm + version: '6.52' + Date::Manip::Offset::off039: + file: off039.pm + version: '6.52' + Date::Manip::Offset::off040: + file: off040.pm + version: '6.52' + Date::Manip::Offset::off041: + file: off041.pm + version: '6.52' + Date::Manip::Offset::off042: + file: off042.pm + version: '6.52' + Date::Manip::Offset::off043: + file: off043.pm + version: '6.52' + Date::Manip::Offset::off044: + file: off044.pm + version: '6.52' + Date::Manip::Offset::off045: + file: off045.pm + version: '6.52' + Date::Manip::Offset::off046: + file: off046.pm + version: '6.52' + Date::Manip::Offset::off047: + file: off047.pm + version: '6.52' + Date::Manip::Offset::off048: + file: off048.pm + version: '6.52' + Date::Manip::Offset::off049: + file: off049.pm + version: '6.52' + Date::Manip::Offset::off050: + file: off050.pm + version: '6.52' + Date::Manip::Offset::off051: + file: off051.pm + version: '6.52' + Date::Manip::Offset::off052: + file: off052.pm + version: '6.52' + Date::Manip::Offset::off053: + file: off053.pm + version: '6.52' + Date::Manip::Offset::off054: + file: off054.pm + version: '6.52' + Date::Manip::Offset::off055: + file: off055.pm + version: '6.52' + Date::Manip::Offset::off056: + file: off056.pm + version: '6.52' + Date::Manip::Offset::off057: + file: off057.pm + version: '6.52' + Date::Manip::Offset::off058: + file: off058.pm + version: '6.52' + Date::Manip::Offset::off059: + file: off059.pm + version: '6.52' + Date::Manip::Offset::off060: + file: off060.pm + version: '6.52' + Date::Manip::Offset::off061: + file: off061.pm + version: '6.52' + Date::Manip::Offset::off062: + file: off062.pm + version: '6.52' + Date::Manip::Offset::off063: + file: off063.pm + version: '6.52' + Date::Manip::Offset::off064: + file: off064.pm + version: '6.52' + Date::Manip::Offset::off065: + file: off065.pm + version: '6.52' + Date::Manip::Offset::off066: + file: off066.pm + version: '6.52' + Date::Manip::Offset::off067: + file: off067.pm + version: '6.52' + Date::Manip::Offset::off068: + file: off068.pm + version: '6.52' + Date::Manip::Offset::off069: + file: off069.pm + version: '6.52' + Date::Manip::Offset::off070: + file: off070.pm + version: '6.52' + Date::Manip::Offset::off071: + file: off071.pm + version: '6.52' + Date::Manip::Offset::off072: + file: off072.pm + version: '6.52' + Date::Manip::Offset::off073: + file: off073.pm + version: '6.52' + Date::Manip::Offset::off074: + file: off074.pm + version: '6.52' + Date::Manip::Offset::off075: + file: off075.pm + version: '6.52' + Date::Manip::Offset::off076: + file: off076.pm + version: '6.52' + Date::Manip::Offset::off077: + file: off077.pm + version: '6.52' + Date::Manip::Offset::off078: + file: off078.pm + version: '6.52' + Date::Manip::Offset::off079: + file: off079.pm + version: '6.52' + Date::Manip::Offset::off080: + file: off080.pm + version: '6.52' + Date::Manip::Offset::off081: + file: off081.pm + version: '6.52' + Date::Manip::Offset::off082: + file: off082.pm + version: '6.52' + Date::Manip::Offset::off083: + file: off083.pm + version: '6.52' + Date::Manip::Offset::off084: + file: off084.pm + version: '6.52' + Date::Manip::Offset::off085: + file: off085.pm + version: '6.52' + Date::Manip::Offset::off086: + file: off086.pm + version: '6.52' + Date::Manip::Offset::off087: + file: off087.pm + version: '6.52' + Date::Manip::Offset::off088: + file: off088.pm + version: '6.52' + Date::Manip::Offset::off089: + file: off089.pm + version: '6.52' + Date::Manip::Offset::off090: + file: off090.pm + version: '6.52' + Date::Manip::Offset::off091: + file: off091.pm + version: '6.52' + Date::Manip::Offset::off092: + file: off092.pm + version: '6.52' + Date::Manip::Offset::off093: + file: off093.pm + version: '6.52' + Date::Manip::Offset::off094: + file: off094.pm + version: '6.52' + Date::Manip::Offset::off095: + file: off095.pm + version: '6.52' + Date::Manip::Offset::off096: + file: off096.pm + version: '6.52' + Date::Manip::Offset::off097: + file: off097.pm + version: '6.52' + Date::Manip::Offset::off098: + file: off098.pm + version: '6.52' + Date::Manip::Offset::off099: + file: off099.pm + version: '6.52' + Date::Manip::Offset::off100: + file: off100.pm + version: '6.52' + Date::Manip::Offset::off101: + file: off101.pm + version: '6.52' + Date::Manip::Offset::off102: + file: off102.pm + version: '6.52' + Date::Manip::Offset::off103: + file: off103.pm + version: '6.52' + Date::Manip::Offset::off104: + file: off104.pm + version: '6.52' + Date::Manip::Offset::off105: + file: off105.pm + version: '6.52' + Date::Manip::Offset::off106: + file: off106.pm + version: '6.52' + Date::Manip::Offset::off107: + file: off107.pm + version: '6.52' + Date::Manip::Offset::off108: + file: off108.pm + version: '6.52' + Date::Manip::Offset::off109: + file: off109.pm + version: '6.52' + Date::Manip::Offset::off110: + file: off110.pm + version: '6.52' + Date::Manip::Offset::off111: + file: off111.pm + version: '6.52' + Date::Manip::Offset::off112: + file: off112.pm + version: '6.52' + Date::Manip::Offset::off113: + file: off113.pm + version: '6.52' + Date::Manip::Offset::off114: + file: off114.pm + version: '6.52' + Date::Manip::Offset::off115: + file: off115.pm + version: '6.52' + Date::Manip::Offset::off116: + file: off116.pm + version: '6.52' + Date::Manip::Offset::off117: + file: off117.pm + version: '6.52' + Date::Manip::Offset::off118: + file: off118.pm + version: '6.52' + Date::Manip::Offset::off119: + file: off119.pm + version: '6.52' + Date::Manip::Offset::off120: + file: off120.pm + version: '6.52' + Date::Manip::Offset::off121: + file: off121.pm + version: '6.52' + Date::Manip::Offset::off122: + file: off122.pm + version: '6.52' + Date::Manip::Offset::off123: + file: off123.pm + version: '6.52' + Date::Manip::Offset::off124: + file: off124.pm + version: '6.52' + Date::Manip::Offset::off125: + file: off125.pm + version: '6.52' + Date::Manip::Offset::off126: + file: off126.pm + version: '6.52' + Date::Manip::Offset::off127: + file: off127.pm + version: '6.52' + Date::Manip::Offset::off128: + file: off128.pm + version: '6.52' + Date::Manip::Offset::off129: + file: off129.pm + version: '6.52' + Date::Manip::Offset::off130: + file: off130.pm + version: '6.52' + Date::Manip::Offset::off131: + file: off131.pm + version: '6.52' + Date::Manip::Offset::off132: + file: off132.pm + version: '6.52' + Date::Manip::Offset::off133: + file: off133.pm + version: '6.52' + Date::Manip::Offset::off134: + file: off134.pm + version: '6.52' + Date::Manip::Offset::off135: + file: off135.pm + version: '6.52' + Date::Manip::Offset::off136: + file: off136.pm + version: '6.52' + Date::Manip::Offset::off137: + file: off137.pm + version: '6.52' + Date::Manip::Offset::off138: + file: off138.pm + version: '6.52' + Date::Manip::Offset::off139: + file: off139.pm + version: '6.52' + Date::Manip::Offset::off140: + file: off140.pm + version: '6.52' + Date::Manip::Offset::off141: + file: off141.pm + version: '6.52' + Date::Manip::Offset::off142: + file: off142.pm + version: '6.52' + Date::Manip::Offset::off143: + file: off143.pm + version: '6.52' + Date::Manip::Offset::off144: + file: off144.pm + version: '6.52' + Date::Manip::Offset::off145: + file: off145.pm + version: '6.52' + Date::Manip::Offset::off146: + file: off146.pm + version: '6.52' + Date::Manip::Offset::off147: + file: off147.pm + version: '6.52' + Date::Manip::Offset::off148: + file: off148.pm + version: '6.52' + Date::Manip::Offset::off149: + file: off149.pm + version: '6.52' + Date::Manip::Offset::off150: + file: off150.pm + version: '6.52' + Date::Manip::Offset::off151: + file: off151.pm + version: '6.52' + Date::Manip::Offset::off152: + file: off152.pm + version: '6.52' + Date::Manip::Offset::off153: + file: off153.pm + version: '6.52' + Date::Manip::Offset::off154: + file: off154.pm + version: '6.52' + Date::Manip::Offset::off155: + file: off155.pm + version: '6.52' + Date::Manip::Offset::off156: + file: off156.pm + version: '6.52' + Date::Manip::Offset::off157: + file: off157.pm + version: '6.52' + Date::Manip::Offset::off158: + file: off158.pm + version: '6.52' + Date::Manip::Offset::off159: + file: off159.pm + version: '6.52' + Date::Manip::Offset::off160: + file: off160.pm + version: '6.52' + Date::Manip::Offset::off161: + file: off161.pm + version: '6.52' + Date::Manip::Offset::off162: + file: off162.pm + version: '6.52' + Date::Manip::Offset::off163: + file: off163.pm + version: '6.52' + Date::Manip::Offset::off164: + file: off164.pm + version: '6.52' + Date::Manip::Offset::off165: + file: off165.pm + version: '6.52' + Date::Manip::Offset::off166: + file: off166.pm + version: '6.52' + Date::Manip::Offset::off167: + file: off167.pm + version: '6.52' + Date::Manip::Offset::off168: + file: off168.pm + version: '6.52' + Date::Manip::Offset::off169: + file: off169.pm + version: '6.52' + Date::Manip::Offset::off170: + file: off170.pm + version: '6.52' + Date::Manip::Offset::off171: + file: off171.pm + version: '6.52' + Date::Manip::Offset::off172: + file: off172.pm + version: '6.52' + Date::Manip::Offset::off173: + file: off173.pm + version: '6.52' + Date::Manip::Offset::off174: + file: off174.pm + version: '6.52' + Date::Manip::Offset::off175: + file: off175.pm + version: '6.52' + Date::Manip::Offset::off176: + file: off176.pm + version: '6.52' + Date::Manip::Offset::off177: + file: off177.pm + version: '6.52' + Date::Manip::Offset::off178: + file: off178.pm + version: '6.52' + Date::Manip::Offset::off179: + file: off179.pm + version: '6.52' + Date::Manip::Offset::off180: + file: off180.pm + version: '6.52' + Date::Manip::Offset::off181: + file: off181.pm + version: '6.52' + Date::Manip::Offset::off182: + file: off182.pm + version: '6.52' + Date::Manip::Offset::off183: + file: off183.pm + version: '6.52' + Date::Manip::Offset::off184: + file: off184.pm + version: '6.52' + Date::Manip::Offset::off185: + file: off185.pm + version: '6.52' + Date::Manip::Offset::off186: + file: off186.pm + version: '6.52' + Date::Manip::Offset::off187: + file: off187.pm + version: '6.52' + Date::Manip::Offset::off188: + file: off188.pm + version: '6.52' + Date::Manip::Offset::off189: + file: off189.pm + version: '6.52' + Date::Manip::Offset::off190: + file: off190.pm + version: '6.52' + Date::Manip::Offset::off191: + file: off191.pm + version: '6.52' + Date::Manip::Offset::off192: + file: off192.pm + version: '6.52' + Date::Manip::Offset::off193: + file: off193.pm + version: '6.52' + Date::Manip::Offset::off194: + file: off194.pm + version: '6.52' + Date::Manip::Offset::off195: + file: off195.pm + version: '6.52' + Date::Manip::Offset::off196: + file: off196.pm + version: '6.52' + Date::Manip::Offset::off197: + file: off197.pm + version: '6.52' + Date::Manip::Offset::off198: + file: off198.pm + version: '6.52' + Date::Manip::Offset::off199: + file: off199.pm + version: '6.52' + Date::Manip::Offset::off200: + file: off200.pm + version: '6.52' + Date::Manip::Offset::off201: + file: off201.pm + version: '6.52' + Date::Manip::Offset::off202: + file: off202.pm + version: '6.52' + Date::Manip::Offset::off203: + file: off203.pm + version: '6.52' + Date::Manip::Offset::off204: + file: off204.pm + version: '6.52' + Date::Manip::Offset::off205: + file: off205.pm + version: '6.52' + Date::Manip::Offset::off206: + file: off206.pm + version: '6.52' + Date::Manip::Offset::off207: + file: off207.pm + version: '6.52' + Date::Manip::Offset::off208: + file: off208.pm + version: '6.52' + Date::Manip::Offset::off209: + file: off209.pm + version: '6.52' + Date::Manip::Offset::off210: + file: off210.pm + version: '6.52' + Date::Manip::Offset::off211: + file: off211.pm + version: '6.52' + Date::Manip::Offset::off212: + file: off212.pm + version: '6.52' + Date::Manip::Offset::off213: + file: off213.pm + version: '6.52' + Date::Manip::Offset::off214: + file: off214.pm + version: '6.52' + Date::Manip::Offset::off215: + file: off215.pm + version: '6.52' + Date::Manip::Offset::off216: + file: off216.pm + version: '6.52' + Date::Manip::Offset::off217: + file: off217.pm + version: '6.52' + Date::Manip::Offset::off218: + file: off218.pm + version: '6.52' + Date::Manip::Offset::off219: + file: off219.pm + version: '6.52' + Date::Manip::Offset::off220: + file: off220.pm + version: '6.52' + Date::Manip::Offset::off221: + file: off221.pm + version: '6.52' + Date::Manip::Offset::off222: + file: off222.pm + version: '6.52' + Date::Manip::Offset::off223: + file: off223.pm + version: '6.52' + Date::Manip::Offset::off224: + file: off224.pm + version: '6.52' + Date::Manip::Offset::off225: + file: off225.pm + version: '6.52' + Date::Manip::Offset::off226: + file: off226.pm + version: '6.52' + Date::Manip::Offset::off227: + file: off227.pm + version: '6.52' + Date::Manip::Offset::off228: + file: off228.pm + version: '6.52' + Date::Manip::Offset::off229: + file: off229.pm + version: '6.52' + Date::Manip::Offset::off230: + file: off230.pm + version: '6.52' + Date::Manip::Offset::off231: + file: off231.pm + version: '6.52' + Date::Manip::Offset::off232: + file: off232.pm + version: '6.52' + Date::Manip::Offset::off233: + file: off233.pm + version: '6.52' + Date::Manip::Offset::off234: + file: off234.pm + version: '6.52' + Date::Manip::Offset::off235: + file: off235.pm + version: '6.52' + Date::Manip::Offset::off236: + file: off236.pm + version: '6.52' + Date::Manip::Offset::off237: + file: off237.pm + version: '6.52' + Date::Manip::Offset::off238: + file: off238.pm + version: '6.52' + Date::Manip::Offset::off239: + file: off239.pm + version: '6.52' + Date::Manip::Offset::off240: + file: off240.pm + version: '6.52' + Date::Manip::Offset::off241: + file: off241.pm + version: '6.52' + Date::Manip::Offset::off242: + file: off242.pm + version: '6.52' + Date::Manip::Offset::off243: + file: off243.pm + version: '6.52' + Date::Manip::Offset::off244: + file: off244.pm + version: '6.52' + Date::Manip::Offset::off245: + file: off245.pm + version: '6.52' + Date::Manip::Offset::off246: + file: off246.pm + version: '6.52' + Date::Manip::Offset::off247: + file: off247.pm + version: '6.52' + Date::Manip::Offset::off248: + file: off248.pm + version: '6.52' + Date::Manip::Offset::off249: + file: off249.pm + version: '6.52' + Date::Manip::Offset::off250: + file: off250.pm + version: '6.52' + Date::Manip::Offset::off251: + file: off251.pm + version: '6.52' + Date::Manip::Offset::off252: + file: off252.pm + version: '6.52' + Date::Manip::Offset::off253: + file: off253.pm + version: '6.52' + Date::Manip::Offset::off254: + file: off254.pm + version: '6.52' + Date::Manip::Offset::off255: + file: off255.pm + version: '6.52' + Date::Manip::Offset::off256: + file: off256.pm + version: '6.52' + Date::Manip::Offset::off257: + file: off257.pm + version: '6.52' + Date::Manip::Offset::off258: + file: off258.pm + version: '6.52' + Date::Manip::Offset::off259: + file: off259.pm + version: '6.52' + Date::Manip::Offset::off260: + file: off260.pm + version: '6.52' + Date::Manip::Offset::off261: + file: off261.pm + version: '6.52' + Date::Manip::Offset::off262: + file: off262.pm + version: '6.52' + Date::Manip::Offset::off263: + file: off263.pm + version: '6.52' + Date::Manip::Offset::off264: + file: off264.pm + version: '6.52' + Date::Manip::Offset::off265: + file: off265.pm + version: '6.52' + Date::Manip::Offset::off266: + file: off266.pm + version: '6.52' + Date::Manip::Offset::off267: + file: off267.pm + version: '6.52' + Date::Manip::Offset::off268: + file: off268.pm + version: '6.52' + Date::Manip::Offset::off269: + file: off269.pm + version: '6.52' + Date::Manip::Offset::off270: + file: off270.pm + version: '6.52' + Date::Manip::Offset::off271: + file: off271.pm + version: '6.52' + Date::Manip::Offset::off272: + file: off272.pm + version: '6.52' + Date::Manip::Offset::off273: + file: off273.pm + version: '6.52' + Date::Manip::Offset::off274: + file: off274.pm + version: '6.52' + Date::Manip::Offset::off275: + file: off275.pm + version: '6.52' + Date::Manip::Offset::off276: + file: off276.pm + version: '6.52' + Date::Manip::Offset::off277: + file: off277.pm + version: '6.52' + Date::Manip::Offset::off278: + file: off278.pm + version: '6.52' + Date::Manip::Offset::off279: + file: off279.pm + version: '6.52' + Date::Manip::Offset::off280: + file: off280.pm + version: '6.52' + Date::Manip::Offset::off281: + file: off281.pm + version: '6.52' + Date::Manip::Offset::off282: + file: off282.pm + version: '6.52' + Date::Manip::Offset::off283: + file: off283.pm + version: '6.52' + Date::Manip::Offset::off284: + file: off284.pm + version: '6.52' + Date::Manip::Offset::off285: + file: off285.pm + version: '6.52' + Date::Manip::Offset::off286: + file: off286.pm + version: '6.52' + Date::Manip::Offset::off287: + file: off287.pm + version: '6.52' + Date::Manip::Offset::off288: + file: off288.pm + version: '6.52' + Date::Manip::Offset::off289: + file: off289.pm + version: '6.52' + Date::Manip::Offset::off290: + file: off290.pm + version: '6.52' + Date::Manip::Offset::off291: + file: off291.pm + version: '6.52' + Date::Manip::Offset::off292: + file: off292.pm + version: '6.52' + Date::Manip::Offset::off293: + file: off293.pm + version: '6.52' + Date::Manip::Offset::off294: + file: off294.pm + version: '6.52' + Date::Manip::Offset::off295: + file: off295.pm + version: '6.52' + Date::Manip::Offset::off296: + file: off296.pm + version: '6.52' + Date::Manip::Offset::off297: + file: off297.pm + version: '6.52' + Date::Manip::Offset::off298: + file: off298.pm + version: '6.52' + Date::Manip::Offset::off299: + file: off299.pm + version: '6.52' + Date::Manip::Offset::off300: + file: off300.pm + version: '6.52' + Date::Manip::Offset::off301: + file: off301.pm + version: '6.52' + Date::Manip::Offset::off302: + file: off302.pm + version: '6.52' + Date::Manip::Offset::off303: + file: off303.pm + version: '6.52' + Date::Manip::Offset::off304: + file: off304.pm + version: '6.52' + Date::Manip::Offset::off305: + file: off305.pm + version: '6.52' + Date::Manip::Offset::off306: + file: off306.pm + version: '6.52' + Date::Manip::Offset::off307: + file: off307.pm + version: '6.52' + Date::Manip::Offset::off308: + file: off308.pm + version: '6.52' + Date::Manip::Offset::off309: + file: off309.pm + version: '6.52' + Date::Manip::Offset::off310: + file: off310.pm + version: '6.52' + Date::Manip::Offset::off311: + file: off311.pm + version: '6.52' + Date::Manip::Offset::off312: + file: off312.pm + version: '6.52' + Date::Manip::Offset::off313: + file: off313.pm + version: '6.52' + Date::Manip::Offset::off314: + file: off314.pm + version: '6.52' + Date::Manip::Offset::off315: + file: off315.pm + version: '6.52' + Date::Manip::Offset::off316: + file: off316.pm + version: '6.52' + Date::Manip::Offset::off317: + file: off317.pm + version: '6.52' + Date::Manip::Offset::off318: + file: off318.pm + version: '6.52' + Date::Manip::Offset::off319: + file: off319.pm + version: '6.52' + Date::Manip::Offset::off320: + file: off320.pm + version: '6.52' + Date::Manip::Offset::off321: + file: off321.pm + version: '6.52' + Date::Manip::Offset::off322: + file: off322.pm + version: '6.52' + Date::Manip::Offset::off323: + file: off323.pm + version: '6.52' + Date::Manip::Offset::off324: + file: off324.pm + version: '6.52' + Date::Manip::Offset::off325: + file: off325.pm + version: '6.52' + Date::Manip::Offset::off326: + file: off326.pm + version: '6.52' + Date::Manip::Offset::off327: + file: off327.pm + version: '6.52' + Date::Manip::Offset::off328: + file: off328.pm + version: '6.52' + Date::Manip::Offset::off329: + file: off329.pm + version: '6.52' + Date::Manip::Offset::off330: + file: off330.pm + version: '6.52' + Date::Manip::Offset::off331: + file: off331.pm + version: '6.52' + Date::Manip::Offset::off332: + file: off332.pm + version: '6.52' + Date::Manip::Offset::off333: + file: off333.pm + version: '6.52' + Date::Manip::Offset::off334: + file: off334.pm + version: '6.52' + Date::Manip::Offset::off335: + file: off335.pm + version: '6.52' + Date::Manip::Offset::off336: + file: off336.pm + version: '6.52' + Date::Manip::Offset::off337: + file: off337.pm + version: '6.52' + Date::Manip::Offset::off338: + file: off338.pm + version: '6.52' + Date::Manip::Offset::off339: + file: off339.pm + version: '6.52' + Date::Manip::Offset::off340: + file: off340.pm + version: '6.52' + Date::Manip::Offset::off341: + file: off341.pm + version: '6.52' + Date::Manip::Offset::off342: + file: off342.pm + version: '6.52' + Date::Manip::Offset::off343: + file: off343.pm + version: '6.52' + Date::Manip::Offset::off344: + file: off344.pm + version: '6.52' + Date::Manip::Offset::off345: + file: off345.pm + version: '6.52' + Date::Manip::Offset::off346: + file: off346.pm + version: '6.52' + Date::Manip::Offset::off347: + file: off347.pm + version: '6.52' + Date::Manip::Offset::off348: + file: off348.pm + version: '6.52' + Date::Manip::Offset::off349: + file: off349.pm + version: '6.52' + Date::Manip::Offset::off350: + file: off350.pm + version: '6.52' + Date::Manip::Offset::off351: + file: off351.pm + version: '6.52' + Date::Manip::Offset::off352: + file: off352.pm + version: '6.52' + Date::Manip::Offset::off353: + file: off353.pm + version: '6.52' + Date::Manip::Offset::off354: + file: off354.pm + version: '6.52' + Date::Manip::Offset::off355: + file: off355.pm + version: '6.52' + Date::Manip::Offset::off356: + file: off356.pm + version: '6.52' + Date::Manip::Offset::off357: + file: off357.pm + version: '6.52' + Date::Manip::Offset::off358: + file: off358.pm + version: '6.52' + Date::Manip::Offset::off359: + file: off359.pm + version: '6.52' + Date::Manip::Offset::off360: + file: off360.pm + version: '6.52' + Date::Manip::Offset::off361: + file: off361.pm + version: '6.52' + Date::Manip::Offset::off362: + file: off362.pm + version: '6.52' + Date::Manip::Offset::off363: + file: off363.pm + version: '6.52' + Date::Manip::Offset::off364: + file: off364.pm + version: '6.52' + Date::Manip::Offset::off365: + file: off365.pm + version: '6.52' + Date::Manip::Offset::off366: + file: off366.pm + version: '6.52' + Date::Manip::Offset::off367: + file: off367.pm + version: '6.52' + Date::Manip::Offset::off368: + file: off368.pm + version: '6.52' + Date::Manip::Offset::off369: + file: off369.pm + version: '6.52' + Date::Manip::Offset::off370: + file: off370.pm + version: '6.52' + Date::Manip::Offset::off371: + file: off371.pm + version: '6.52' + Date::Manip::Offset::off372: + file: off372.pm + version: '6.52' + Date::Manip::Offset::off373: + file: off373.pm + version: '6.52' + Date::Manip::Offset::off374: + file: off374.pm + version: '6.52' + Date::Manip::Offset::off375: + file: off375.pm + version: '6.52' + Date::Manip::Offset::off376: + file: off376.pm + version: '6.52' + Date::Manip::Offset::off377: + file: off377.pm + version: '6.52' + Date::Manip::Offset::off378: + file: off378.pm + version: '6.52' + Date::Manip::Offset::off379: + file: off379.pm + version: '6.52' + Date::Manip::Offset::off380: + file: off380.pm + version: '6.52' + Date::Manip::Offset::off381: + file: off381.pm + version: '6.52' + Date::Manip::Offset::off382: + file: off382.pm + version: '6.52' + Date::Manip::Offset::off383: + file: off383.pm + version: '6.52' + Date::Manip::Offset::off384: + file: off384.pm + version: '6.52' + Date::Manip::Offset::off385: + file: off385.pm + version: '6.52' + Date::Manip::Offset::off386: + file: off386.pm + version: '6.52' + Date::Manip::Offset::off387: + file: off387.pm + version: '6.52' + Date::Manip::Offset::off388: + file: off388.pm + version: '6.52' + Date::Manip::Offset::off389: + file: off389.pm + version: '6.52' + Date::Manip::Offset::off390: + file: off390.pm + version: '6.52' + Date::Manip::Offset::off391: + file: off391.pm + version: '6.52' + Date::Manip::Offset::off392: + file: off392.pm + version: '6.52' + Date::Manip::Offset::off393: + file: off393.pm + version: '6.52' + Date::Manip::Offset::off394: + file: off394.pm + version: '6.52' + Date::Manip::Offset::off395: + file: off395.pm + version: '6.52' + Date::Manip::Offset::off396: + file: off396.pm + version: '6.52' + Date::Manip::Offset::off397: + file: off397.pm + version: '6.52' + Date::Manip::Offset::off398: + file: off398.pm + version: '6.52' + Date::Manip::Offset::off399: + file: off399.pm + version: '6.52' + Date::Manip::Offset::off400: + file: off400.pm + version: '6.52' + Date::Manip::Offset::off401: + file: off401.pm + version: '6.52' + Date::Manip::Offset::off402: + file: off402.pm + version: '6.52' + Date::Manip::Offset::off403: + file: off403.pm + version: '6.52' + Date::Manip::Offset::off404: + file: off404.pm + version: '6.52' + Date::Manip::Offset::off405: + file: off405.pm + version: '6.52' + Date::Manip::Offset::off406: + file: off406.pm + version: '6.52' + Date::Manip::Offset::off407: + file: off407.pm + version: '6.52' + Date::Manip::Offset::off408: + file: off408.pm + version: '6.52' + Date::Manip::Offset::off409: + file: off409.pm + version: '6.52' + Date::Manip::Offset::off410: + file: off410.pm + version: '6.52' + Date::Manip::Offset::off411: + file: off411.pm + version: '6.52' + Date::Manip::Offset::off412: + file: off412.pm + version: '6.52' + Date::Manip::Offset::off413: + file: off413.pm + version: '6.52' + Date::Manip::Offset::off414: + file: off414.pm + version: '6.52' + Date::Manip::Offset::off415: + file: off415.pm + version: '6.52' + Date::Manip::Offset::off416: + file: off416.pm + version: '6.52' + Date::Manip::Offset::off417: + file: off417.pm + version: '6.52' + Date::Manip::Offset::off418: + file: off418.pm + version: '6.52' + Date::Manip::Offset::off419: + file: off419.pm + version: '6.52' + Date::Manip::Offset::off420: + file: off420.pm + version: '6.52' + Date::Manip::Offset::off421: + file: off421.pm + version: '6.52' + Date::Manip::Offset::off422: + file: off422.pm + version: '6.52' + Date::Manip::Offset::off423: + file: off423.pm + version: '6.52' + Date::Manip::Offset::off424: + file: off424.pm + version: '6.52' + Date::Manip::Offset::off425: + file: off425.pm + version: '6.52' + Date::Manip::Offset::off426: + file: off426.pm + version: '6.52' + Date::Manip::Offset::off427: + file: off427.pm + version: '6.52' + Date::Manip::Offset::off428: + file: off428.pm + version: '6.52' + Date::Manip::Offset::off429: + file: off429.pm + version: '6.52' Date::Manip::Recur: - file: lib/Date/Manip/Recur.pm - version: '6.51' + file: Recur.pm + version: '6.52' Date::Manip::TZ: - file: lib/Date/Manip/TZ.pm - version: '6.51' + file: TZ.pm + version: '6.52' + Date::Manip::TZ::a00: + file: a00.pm + version: '6.52' + Date::Manip::TZ::afabid00: + file: afabid00.pm + version: '6.52' + Date::Manip::TZ::afaccr00: + file: afaccr00.pm + version: '6.52' + Date::Manip::TZ::afalgi00: + file: afalgi00.pm + version: '6.52' + Date::Manip::TZ::afbiss00: + file: afbiss00.pm + version: '6.52' + Date::Manip::TZ::afcair00: + file: afcair00.pm + version: '6.52' + Date::Manip::TZ::afcasa00: + file: afcasa00.pm + version: '6.52' + Date::Manip::TZ::afceut00: + file: afceut00.pm + version: '6.52' + Date::Manip::TZ::afel_a00: + file: afel_a00.pm + version: '6.52' + Date::Manip::TZ::afjoha00: + file: afjoha00.pm + version: '6.52' + Date::Manip::TZ::afkhar00: + file: afkhar00.pm + version: '6.52' + Date::Manip::TZ::aflago00: + file: aflago00.pm + version: '6.52' + Date::Manip::TZ::afmapu00: + file: afmapu00.pm + version: '6.52' + Date::Manip::TZ::afmonr00: + file: afmonr00.pm + version: '6.52' + Date::Manip::TZ::afnair00: + file: afnair00.pm + version: '6.52' + Date::Manip::TZ::afndja00: + file: afndja00.pm + version: '6.52' + Date::Manip::TZ::aftrip00: + file: aftrip00.pm + version: '6.52' + Date::Manip::TZ::aftuni00: + file: aftuni00.pm + version: '6.52' + Date::Manip::TZ::afwind00: + file: afwind00.pm + version: '6.52' + Date::Manip::TZ::amadak00: + file: amadak00.pm + version: '6.52' + Date::Manip::TZ::amanch00: + file: amanch00.pm + version: '6.52' + Date::Manip::TZ::amarag00: + file: amarag00.pm + version: '6.52' + Date::Manip::TZ::amasun00: + file: amasun00.pm + version: '6.52' + Date::Manip::TZ::amatik00: + file: amatik00.pm + version: '6.52' + Date::Manip::TZ::ambahi00: + file: ambahi00.pm + version: '6.52' + Date::Manip::TZ::ambahi01: + file: ambahi01.pm + version: '6.52' + Date::Manip::TZ::ambarb00: + file: ambarb00.pm + version: '6.52' + Date::Manip::TZ::ambele00: + file: ambele00.pm + version: '6.52' + Date::Manip::TZ::ambeli00: + file: ambeli00.pm + version: '6.52' + Date::Manip::TZ::ambeul00: + file: ambeul00.pm + version: '6.52' + Date::Manip::TZ::amblan00: + file: amblan00.pm + version: '6.52' + Date::Manip::TZ::amboa_00: + file: amboa_00.pm + version: '6.52' + Date::Manip::TZ::ambogo00: + file: ambogo00.pm + version: '6.52' + Date::Manip::TZ::ambois00: + file: ambois00.pm + version: '6.52' + Date::Manip::TZ::ambuen00: + file: ambuen00.pm + version: '6.52' + Date::Manip::TZ::amcamb00: + file: amcamb00.pm + version: '6.52' + Date::Manip::TZ::amcamp00: + file: amcamp00.pm + version: '6.52' + Date::Manip::TZ::amcanc00: + file: amcanc00.pm + version: '6.52' + Date::Manip::TZ::amcara00: + file: amcara00.pm + version: '6.52' + Date::Manip::TZ::amcata00: + file: amcata00.pm + version: '6.52' + Date::Manip::TZ::amcaye00: + file: amcaye00.pm + version: '6.52' + Date::Manip::TZ::amcaym00: + file: amcaym00.pm + version: '6.52' + Date::Manip::TZ::amcent00: + file: amcent00.pm + version: '6.52' + Date::Manip::TZ::amchic00: + file: amchic00.pm + version: '6.52' + Date::Manip::TZ::amchih00: + file: amchih00.pm + version: '6.52' + Date::Manip::TZ::amcord00: + file: amcord00.pm + version: '6.52' + Date::Manip::TZ::amcost00: + file: amcost00.pm + version: '6.52' + Date::Manip::TZ::amcres00: + file: amcres00.pm + version: '6.52' + Date::Manip::TZ::amcuia00: + file: amcuia00.pm + version: '6.52' + Date::Manip::TZ::amcura00: + file: amcura00.pm + version: '6.52' + Date::Manip::TZ::amdanm00: + file: amdanm00.pm + version: '6.52' + Date::Manip::TZ::amdaws00: + file: amdaws00.pm + version: '6.52' + Date::Manip::TZ::amdaws01: + file: amdaws01.pm + version: '6.52' + Date::Manip::TZ::amdenv00: + file: amdenv00.pm + version: '6.52' + Date::Manip::TZ::amdetr00: + file: amdetr00.pm + version: '6.52' + Date::Manip::TZ::amedmo00: + file: amedmo00.pm + version: '6.52' + Date::Manip::TZ::ameiru00: + file: ameiru00.pm + version: '6.52' + Date::Manip::TZ::amel_s00: + file: amel_s00.pm + version: '6.52' + Date::Manip::TZ::amfort00: + file: amfort00.pm + version: '6.52' + Date::Manip::TZ::amfort01: + file: amfort01.pm + version: '6.52' + Date::Manip::TZ::amglac00: + file: amglac00.pm + version: '6.52' + Date::Manip::TZ::amgodt00: + file: amgodt00.pm + version: '6.52' + Date::Manip::TZ::amgoos00: + file: amgoos00.pm + version: '6.52' + Date::Manip::TZ::amgran00: + file: amgran00.pm + version: '6.52' + Date::Manip::TZ::amguat00: + file: amguat00.pm + version: '6.52' + Date::Manip::TZ::amguay00: + file: amguay00.pm + version: '6.52' + Date::Manip::TZ::amguya00: + file: amguya00.pm + version: '6.52' + Date::Manip::TZ::amhali00: + file: amhali00.pm + version: '6.52' + Date::Manip::TZ::amhava00: + file: amhava00.pm + version: '6.52' + Date::Manip::TZ::amherm00: + file: amherm00.pm + version: '6.52' + Date::Manip::TZ::amindi00: + file: amindi00.pm + version: '6.52' + Date::Manip::TZ::aminuv00: + file: aminuv00.pm + version: '6.52' + Date::Manip::TZ::amiqal00: + file: amiqal00.pm + version: '6.52' + Date::Manip::TZ::amjama00: + file: amjama00.pm + version: '6.52' + Date::Manip::TZ::amjuju00: + file: amjuju00.pm + version: '6.52' + Date::Manip::TZ::amjune00: + file: amjune00.pm + version: '6.52' + Date::Manip::TZ::amknox00: + file: amknox00.pm + version: '6.52' + Date::Manip::TZ::amla_p00: + file: amla_p00.pm + version: '6.52' + Date::Manip::TZ::amla_r00: + file: amla_r00.pm + version: '6.52' + Date::Manip::TZ::amlima00: + file: amlima00.pm + version: '6.52' + Date::Manip::TZ::amlos_00: + file: amlos_00.pm + version: '6.52' + Date::Manip::TZ::amloui00: + file: amloui00.pm + version: '6.52' + Date::Manip::TZ::ammace00: + file: ammace00.pm + version: '6.52' + Date::Manip::TZ::ammana00: + file: ammana00.pm + version: '6.52' + Date::Manip::TZ::ammana01: + file: ammana01.pm + version: '6.52' + Date::Manip::TZ::ammare00: + file: ammare00.pm + version: '6.52' + Date::Manip::TZ::ammart00: + file: ammart00.pm + version: '6.52' + Date::Manip::TZ::ammata00: + file: ammata00.pm + version: '6.52' + Date::Manip::TZ::ammaza00: + file: ammaza00.pm + version: '6.52' + Date::Manip::TZ::ammend00: + file: ammend00.pm + version: '6.52' + Date::Manip::TZ::ammeno00: + file: ammeno00.pm + version: '6.52' + Date::Manip::TZ::ammeri00: + file: ammeri00.pm + version: '6.52' + Date::Manip::TZ::ammetl00: + file: ammetl00.pm + version: '6.52' + Date::Manip::TZ::ammexi00: + file: ammexi00.pm + version: '6.52' + Date::Manip::TZ::ammiqu00: + file: ammiqu00.pm + version: '6.52' + Date::Manip::TZ::ammonc00: + file: ammonc00.pm + version: '6.52' + Date::Manip::TZ::ammont00: + file: ammont00.pm + version: '6.52' + Date::Manip::TZ::ammont01: + file: ammont01.pm + version: '6.52' + Date::Manip::TZ::ammont02: + file: ammont02.pm + version: '6.52' + Date::Manip::TZ::amnass00: + file: amnass00.pm + version: '6.52' + Date::Manip::TZ::amnew_00: + file: amnew_00.pm + version: '6.52' + Date::Manip::TZ::amnew_01: + file: amnew_01.pm + version: '6.52' + Date::Manip::TZ::amnipi00: + file: amnipi00.pm + version: '6.52' + Date::Manip::TZ::amnome00: + file: amnome00.pm + version: '6.52' + Date::Manip::TZ::amnoro00: + file: amnoro00.pm + version: '6.52' + Date::Manip::TZ::amojin00: + file: amojin00.pm + version: '6.52' + Date::Manip::TZ::ampana00: + file: ampana00.pm + version: '6.52' + Date::Manip::TZ::ampang00: + file: ampang00.pm + version: '6.52' + Date::Manip::TZ::ampara00: + file: ampara00.pm + version: '6.52' + Date::Manip::TZ::ampete00: + file: ampete00.pm + version: '6.52' + Date::Manip::TZ::amphoe00: + file: amphoe00.pm + version: '6.52' + Date::Manip::TZ::amport00: + file: amport00.pm + version: '6.52' + Date::Manip::TZ::amport01: + file: amport01.pm + version: '6.52' + Date::Manip::TZ::amport02: + file: amport02.pm + version: '6.52' + Date::Manip::TZ::ampuer00: + file: ampuer00.pm + version: '6.52' + Date::Manip::TZ::amrain00: + file: amrain00.pm + version: '6.52' + Date::Manip::TZ::amrank00: + file: amrank00.pm + version: '6.52' + Date::Manip::TZ::amreci00: + file: amreci00.pm + version: '6.52' + Date::Manip::TZ::amregi00: + file: amregi00.pm + version: '6.52' + Date::Manip::TZ::amreso00: + file: amreso00.pm + version: '6.52' + Date::Manip::TZ::amrio_00: + file: amrio_00.pm + version: '6.52' + Date::Manip::TZ::amrio_01: + file: amrio_01.pm + version: '6.52' + Date::Manip::TZ::amsalt00: + file: amsalt00.pm + version: '6.52' + Date::Manip::TZ::amsan_00: + file: amsan_00.pm + version: '6.52' + Date::Manip::TZ::amsan_01: + file: amsan_01.pm + version: '6.52' + Date::Manip::TZ::amsant00: + file: amsant00.pm + version: '6.52' + Date::Manip::TZ::amsant01: + file: amsant01.pm + version: '6.52' + Date::Manip::TZ::amsant02: + file: amsant02.pm + version: '6.52' + Date::Manip::TZ::amsant03: + file: amsant03.pm + version: '6.52' + Date::Manip::TZ::amsao_00: + file: amsao_00.pm + version: '6.52' + Date::Manip::TZ::amscor00: + file: amscor00.pm + version: '6.52' + Date::Manip::TZ::amsitk00: + file: amsitk00.pm + version: '6.52' + Date::Manip::TZ::amst_j00: + file: amst_j00.pm + version: '6.52' + Date::Manip::TZ::amswif00: + file: amswif00.pm + version: '6.52' + Date::Manip::TZ::amtegu00: + file: amtegu00.pm + version: '6.52' + Date::Manip::TZ::amtell00: + file: amtell00.pm + version: '6.52' + Date::Manip::TZ::amthul00: + file: amthul00.pm + version: '6.52' + Date::Manip::TZ::amthun00: + file: amthun00.pm + version: '6.52' + Date::Manip::TZ::amtiju00: + file: amtiju00.pm + version: '6.52' + Date::Manip::TZ::amtoro00: + file: amtoro00.pm + version: '6.52' + Date::Manip::TZ::amtucu00: + file: amtucu00.pm + version: '6.52' + Date::Manip::TZ::amushu00: + file: amushu00.pm + version: '6.52' + Date::Manip::TZ::amvanc00: + file: amvanc00.pm + version: '6.52' + Date::Manip::TZ::amveva00: + file: amveva00.pm + version: '6.52' + Date::Manip::TZ::amvinc00: + file: amvinc00.pm + version: '6.52' + Date::Manip::TZ::amwhit00: + file: amwhit00.pm + version: '6.52' + Date::Manip::TZ::amwina00: + file: amwina00.pm + version: '6.52' + Date::Manip::TZ::amwinn00: + file: amwinn00.pm + version: '6.52' + Date::Manip::TZ::amyaku00: + file: amyaku00.pm + version: '6.52' + Date::Manip::TZ::amyell00: + file: amyell00.pm + version: '6.52' + Date::Manip::TZ::ancase00: + file: ancase00.pm + version: '6.52' + Date::Manip::TZ::andavi00: + file: andavi00.pm + version: '6.52' + Date::Manip::TZ::andumo00: + file: andumo00.pm + version: '6.52' + Date::Manip::TZ::anmacq00: + file: anmacq00.pm + version: '6.52' + Date::Manip::TZ::anmaws00: + file: anmaws00.pm + version: '6.52' + Date::Manip::TZ::anpalm00: + file: anpalm00.pm + version: '6.52' + Date::Manip::TZ::anroth00: + file: anroth00.pm + version: '6.52' + Date::Manip::TZ::ansyow00: + file: ansyow00.pm + version: '6.52' + Date::Manip::TZ::antrol00: + file: antrol00.pm + version: '6.52' + Date::Manip::TZ::anvost00: + file: anvost00.pm + version: '6.52' + Date::Manip::TZ::asalma00: + file: asalma00.pm + version: '6.52' + Date::Manip::TZ::asamma00: + file: asamma00.pm + version: '6.52' + Date::Manip::TZ::asanad00: + file: asanad00.pm + version: '6.52' + Date::Manip::TZ::asaqta00: + file: asaqta00.pm + version: '6.52' + Date::Manip::TZ::asaqto00: + file: asaqto00.pm + version: '6.52' + Date::Manip::TZ::asashg00: + file: asashg00.pm + version: '6.52' + Date::Manip::TZ::asbagh00: + file: asbagh00.pm + version: '6.52' + Date::Manip::TZ::asbaku00: + file: asbaku00.pm + version: '6.52' + Date::Manip::TZ::asbang00: + file: asbang00.pm + version: '6.52' + Date::Manip::TZ::asbeir00: + file: asbeir00.pm + version: '6.52' + Date::Manip::TZ::asbish00: + file: asbish00.pm + version: '6.52' + Date::Manip::TZ::asbrun00: + file: asbrun00.pm + version: '6.52' + Date::Manip::TZ::aschit00: + file: aschit00.pm + version: '6.52' + Date::Manip::TZ::aschoi00: + file: aschoi00.pm + version: '6.52' + Date::Manip::TZ::ascolo00: + file: ascolo00.pm + version: '6.52' + Date::Manip::TZ::asdama00: + file: asdama00.pm + version: '6.52' + Date::Manip::TZ::asdhak00: + file: asdhak00.pm + version: '6.52' + Date::Manip::TZ::asdili00: + file: asdili00.pm + version: '6.52' + Date::Manip::TZ::asduba00: + file: asduba00.pm + version: '6.52' + Date::Manip::TZ::asdush00: + file: asdush00.pm + version: '6.52' + Date::Manip::TZ::asgaza00: + file: asgaza00.pm + version: '6.52' + Date::Manip::TZ::ashebr00: + file: ashebr00.pm + version: '6.52' + Date::Manip::TZ::asho_c00: + file: asho_c00.pm + version: '6.52' + Date::Manip::TZ::ashong00: + file: ashong00.pm + version: '6.52' + Date::Manip::TZ::ashovd00: + file: ashovd00.pm + version: '6.52' + Date::Manip::TZ::asirku00: + file: asirku00.pm + version: '6.52' + Date::Manip::TZ::asjaka00: + file: asjaka00.pm + version: '6.52' + Date::Manip::TZ::asjaya00: + file: asjaya00.pm + version: '6.52' + Date::Manip::TZ::asjeru00: + file: asjeru00.pm + version: '6.52' + Date::Manip::TZ::askabu00: + file: askabu00.pm + version: '6.52' + Date::Manip::TZ::askamc00: + file: askamc00.pm + version: '6.52' + Date::Manip::TZ::askara00: + file: askara00.pm + version: '6.52' + Date::Manip::TZ::askath00: + file: askath00.pm + version: '6.52' + Date::Manip::TZ::askhan00: + file: askhan00.pm + version: '6.52' + Date::Manip::TZ::askolk00: + file: askolk00.pm + version: '6.52' + Date::Manip::TZ::askras00: + file: askras00.pm + version: '6.52' + Date::Manip::TZ::askual00: + file: askual00.pm + version: '6.52' + Date::Manip::TZ::askuch00: + file: askuch00.pm + version: '6.52' + Date::Manip::TZ::asmaca00: + file: asmaca00.pm + version: '6.52' + Date::Manip::TZ::asmaga00: + file: asmaga00.pm + version: '6.52' + Date::Manip::TZ::asmaka00: + file: asmaka00.pm + version: '6.52' + Date::Manip::TZ::asmani00: + file: asmani00.pm + version: '6.52' + Date::Manip::TZ::asnico00: + file: asnico00.pm + version: '6.52' + Date::Manip::TZ::asnovo00: + file: asnovo00.pm + version: '6.52' + Date::Manip::TZ::asnovo01: + file: asnovo01.pm + version: '6.52' + Date::Manip::TZ::asomsk00: + file: asomsk00.pm + version: '6.52' + Date::Manip::TZ::asoral00: + file: asoral00.pm + version: '6.52' + Date::Manip::TZ::aspont00: + file: aspont00.pm + version: '6.52' + Date::Manip::TZ::aspyon00: + file: aspyon00.pm + version: '6.52' + Date::Manip::TZ::asqata00: + file: asqata00.pm + version: '6.52' + Date::Manip::TZ::asqyzy00: + file: asqyzy00.pm + version: '6.52' + Date::Manip::TZ::asrang00: + file: asrang00.pm + version: '6.52' + Date::Manip::TZ::asriya00: + file: asriya00.pm + version: '6.52' + Date::Manip::TZ::assakh00: + file: assakh00.pm + version: '6.52' + Date::Manip::TZ::assama00: + file: assama00.pm + version: '6.52' + Date::Manip::TZ::asseou00: + file: asseou00.pm + version: '6.52' + Date::Manip::TZ::asshan00: + file: asshan00.pm + version: '6.52' + Date::Manip::TZ::assing00: + file: assing00.pm + version: '6.52' + Date::Manip::TZ::assred00: + file: assred00.pm + version: '6.52' + Date::Manip::TZ::astaip00: + file: astaip00.pm + version: '6.52' + Date::Manip::TZ::astash00: + file: astash00.pm + version: '6.52' + Date::Manip::TZ::astbil00: + file: astbil00.pm + version: '6.52' + Date::Manip::TZ::astehr00: + file: astehr00.pm + version: '6.52' + Date::Manip::TZ::asthim00: + file: asthim00.pm + version: '6.52' + Date::Manip::TZ::astoky00: + file: astoky00.pm + version: '6.52' + Date::Manip::TZ::asulaa00: + file: asulaa00.pm + version: '6.52' + Date::Manip::TZ::asurum00: + file: asurum00.pm + version: '6.52' + Date::Manip::TZ::asustm00: + file: asustm00.pm + version: '6.52' + Date::Manip::TZ::asvlad00: + file: asvlad00.pm + version: '6.52' + Date::Manip::TZ::asyaku00: + file: asyaku00.pm + version: '6.52' + Date::Manip::TZ::asyeka00: + file: asyeka00.pm + version: '6.52' + Date::Manip::TZ::asyere00: + file: asyere00.pm + version: '6.52' + Date::Manip::TZ::atazor00: + file: atazor00.pm + version: '6.52' + Date::Manip::TZ::atberm00: + file: atberm00.pm + version: '6.52' + Date::Manip::TZ::atcana00: + file: atcana00.pm + version: '6.52' + Date::Manip::TZ::atcape00: + file: atcape00.pm + version: '6.52' + Date::Manip::TZ::atfaro00: + file: atfaro00.pm + version: '6.52' + Date::Manip::TZ::atmade00: + file: atmade00.pm + version: '6.52' + Date::Manip::TZ::atreyk00: + file: atreyk00.pm + version: '6.52' + Date::Manip::TZ::atsout00: + file: atsout00.pm + version: '6.52' + Date::Manip::TZ::atstan00: + file: atstan00.pm + version: '6.52' + Date::Manip::TZ::auadel00: + file: auadel00.pm + version: '6.52' + Date::Manip::TZ::aubris00: + file: aubris00.pm + version: '6.52' + Date::Manip::TZ::aubrok00: + file: aubrok00.pm + version: '6.52' + Date::Manip::TZ::aucurr00: + file: aucurr00.pm + version: '6.52' + Date::Manip::TZ::audarw00: + file: audarw00.pm + version: '6.52' + Date::Manip::TZ::aueucl00: + file: aueucl00.pm + version: '6.52' + Date::Manip::TZ::auhoba00: + file: auhoba00.pm + version: '6.52' + Date::Manip::TZ::aulind00: + file: aulind00.pm + version: '6.52' + Date::Manip::TZ::aulord00: + file: aulord00.pm + version: '6.52' + Date::Manip::TZ::aumelb00: + file: aumelb00.pm + version: '6.52' + Date::Manip::TZ::aupert00: + file: aupert00.pm + version: '6.52' + Date::Manip::TZ::ausydn00: + file: ausydn00.pm + version: '6.52' + Date::Manip::TZ::b00: + file: b00.pm + version: '6.52' + Date::Manip::TZ::c00: + file: c00.pm + version: '6.52' + Date::Manip::TZ::cet00: + file: cet00.pm + version: '6.52' + Date::Manip::TZ::d00: + file: d00.pm + version: '6.52' + Date::Manip::TZ::e00: + file: e00.pm + version: '6.52' + Date::Manip::TZ::eet00: + file: eet00.pm + version: '6.52' + Date::Manip::TZ::etgmt00: + file: etgmt00.pm + version: '6.52' + Date::Manip::TZ::etgmtm00: + file: etgmtm00.pm + version: '6.52' + Date::Manip::TZ::etgmtm01: + file: etgmtm01.pm + version: '6.52' + Date::Manip::TZ::etgmtm02: + file: etgmtm02.pm + version: '6.52' + Date::Manip::TZ::etgmtm03: + file: etgmtm03.pm + version: '6.52' + Date::Manip::TZ::etgmtm04: + file: etgmtm04.pm + version: '6.52' + Date::Manip::TZ::etgmtm05: + file: etgmtm05.pm + version: '6.52' + Date::Manip::TZ::etgmtm06: + file: etgmtm06.pm + version: '6.52' + Date::Manip::TZ::etgmtm07: + file: etgmtm07.pm + version: '6.52' + Date::Manip::TZ::etgmtm08: + file: etgmtm08.pm + version: '6.52' + Date::Manip::TZ::etgmtm09: + file: etgmtm09.pm + version: '6.52' + Date::Manip::TZ::etgmtm10: + file: etgmtm10.pm + version: '6.52' + Date::Manip::TZ::etgmtm11: + file: etgmtm11.pm + version: '6.52' + Date::Manip::TZ::etgmtm12: + file: etgmtm12.pm + version: '6.52' + Date::Manip::TZ::etgmtm13: + file: etgmtm13.pm + version: '6.52' + Date::Manip::TZ::etgmtp00: + file: etgmtp00.pm + version: '6.52' + Date::Manip::TZ::etgmtp01: + file: etgmtp01.pm + version: '6.52' + Date::Manip::TZ::etgmtp02: + file: etgmtp02.pm + version: '6.52' + Date::Manip::TZ::etgmtp03: + file: etgmtp03.pm + version: '6.52' + Date::Manip::TZ::etgmtp04: + file: etgmtp04.pm + version: '6.52' + Date::Manip::TZ::etgmtp05: + file: etgmtp05.pm + version: '6.52' + Date::Manip::TZ::etgmtp06: + file: etgmtp06.pm + version: '6.52' + Date::Manip::TZ::etgmtp07: + file: etgmtp07.pm + version: '6.52' + Date::Manip::TZ::etgmtp08: + file: etgmtp08.pm + version: '6.52' + Date::Manip::TZ::etgmtp09: + file: etgmtp09.pm + version: '6.52' + Date::Manip::TZ::etgmtp10: + file: etgmtp10.pm + version: '6.52' + Date::Manip::TZ::etgmtp11: + file: etgmtp11.pm + version: '6.52' + Date::Manip::TZ::euamst00: + file: euamst00.pm + version: '6.52' + Date::Manip::TZ::euando00: + file: euando00.pm + version: '6.52' + Date::Manip::TZ::euathe00: + file: euathe00.pm + version: '6.52' + Date::Manip::TZ::eubelg00: + file: eubelg00.pm + version: '6.52' + Date::Manip::TZ::euberl00: + file: euberl00.pm + version: '6.52' + Date::Manip::TZ::eubrus00: + file: eubrus00.pm + version: '6.52' + Date::Manip::TZ::eubuch00: + file: eubuch00.pm + version: '6.52' + Date::Manip::TZ::eubuda00: + file: eubuda00.pm + version: '6.52' + Date::Manip::TZ::euchis00: + file: euchis00.pm + version: '6.52' + Date::Manip::TZ::eucope00: + file: eucope00.pm + version: '6.52' + Date::Manip::TZ::eudubl00: + file: eudubl00.pm + version: '6.52' + Date::Manip::TZ::eugibr00: + file: eugibr00.pm + version: '6.52' + Date::Manip::TZ::euhels00: + file: euhels00.pm + version: '6.52' + Date::Manip::TZ::euista00: + file: euista00.pm + version: '6.52' + Date::Manip::TZ::eukali00: + file: eukali00.pm + version: '6.52' + Date::Manip::TZ::eukiev00: + file: eukiev00.pm + version: '6.52' + Date::Manip::TZ::eulisb00: + file: eulisb00.pm + version: '6.52' + Date::Manip::TZ::eulond00: + file: eulond00.pm + version: '6.52' + Date::Manip::TZ::euluxe00: + file: euluxe00.pm + version: '6.52' + Date::Manip::TZ::eumadr00: + file: eumadr00.pm + version: '6.52' + Date::Manip::TZ::eumalt00: + file: eumalt00.pm + version: '6.52' + Date::Manip::TZ::eumins00: + file: eumins00.pm + version: '6.52' + Date::Manip::TZ::eumona00: + file: eumona00.pm + version: '6.52' + Date::Manip::TZ::eumosc00: + file: eumosc00.pm + version: '6.52' + Date::Manip::TZ::euoslo00: + file: euoslo00.pm + version: '6.52' + Date::Manip::TZ::eupari00: + file: eupari00.pm + version: '6.52' + Date::Manip::TZ::euprag00: + file: euprag00.pm + version: '6.52' + Date::Manip::TZ::euriga00: + file: euriga00.pm + version: '6.52' + Date::Manip::TZ::eurome00: + file: eurome00.pm + version: '6.52' + Date::Manip::TZ::eusama00: + file: eusama00.pm + version: '6.52' + Date::Manip::TZ::eusimf00: + file: eusimf00.pm + version: '6.52' + Date::Manip::TZ::eusofi00: + file: eusofi00.pm + version: '6.52' + Date::Manip::TZ::eustoc00: + file: eustoc00.pm + version: '6.52' + Date::Manip::TZ::eutall00: + file: eutall00.pm + version: '6.52' + Date::Manip::TZ::eutira00: + file: eutira00.pm + version: '6.52' + Date::Manip::TZ::euuzhg00: + file: euuzhg00.pm + version: '6.52' + Date::Manip::TZ::euvien00: + file: euvien00.pm + version: '6.52' + Date::Manip::TZ::euviln00: + file: euviln00.pm + version: '6.52' + Date::Manip::TZ::euvolg00: + file: euvolg00.pm + version: '6.52' + Date::Manip::TZ::euwars00: + file: euwars00.pm + version: '6.52' + Date::Manip::TZ::euzapo00: + file: euzapo00.pm + version: '6.52' + Date::Manip::TZ::euzuri00: + file: euzuri00.pm + version: '6.52' + Date::Manip::TZ::f00: + file: f00.pm + version: '6.52' + Date::Manip::TZ::g00: + file: g00.pm + version: '6.52' + Date::Manip::TZ::h00: + file: h00.pm + version: '6.52' + Date::Manip::TZ::i00: + file: i00.pm + version: '6.52' + Date::Manip::TZ::inchag00: + file: inchag00.pm + version: '6.52' + Date::Manip::TZ::inchri00: + file: inchri00.pm + version: '6.52' + Date::Manip::TZ::incoco00: + file: incoco00.pm + version: '6.52' + Date::Manip::TZ::inkerg00: + file: inkerg00.pm + version: '6.52' + Date::Manip::TZ::inmahe00: + file: inmahe00.pm + version: '6.52' + Date::Manip::TZ::inmald00: + file: inmald00.pm + version: '6.52' + Date::Manip::TZ::inmaur00: + file: inmaur00.pm + version: '6.52' + Date::Manip::TZ::inreun00: + file: inreun00.pm + version: '6.52' + Date::Manip::TZ::k00: + file: k00.pm + version: '6.52' + Date::Manip::TZ::l00: + file: l00.pm + version: '6.52' + Date::Manip::TZ::m00: + file: m00.pm + version: '6.52' + Date::Manip::TZ::met00: + file: met00.pm + version: '6.52' + Date::Manip::TZ::n00: + file: n00.pm + version: '6.52' + Date::Manip::TZ::o00: + file: o00.pm + version: '6.52' + Date::Manip::TZ::p00: + file: p00.pm + version: '6.52' + Date::Manip::TZ::paapia00: + file: paapia00.pm + version: '6.52' + Date::Manip::TZ::paauck00: + file: paauck00.pm + version: '6.52' + Date::Manip::TZ::paboug00: + file: paboug00.pm + version: '6.52' + Date::Manip::TZ::pachat00: + file: pachat00.pm + version: '6.52' + Date::Manip::TZ::pachuu00: + file: pachuu00.pm + version: '6.52' + Date::Manip::TZ::paeast00: + file: paeast00.pm + version: '6.52' + Date::Manip::TZ::paefat00: + file: paefat00.pm + version: '6.52' + Date::Manip::TZ::paende00: + file: paende00.pm + version: '6.52' + Date::Manip::TZ::pafaka00: + file: pafaka00.pm + version: '6.52' + Date::Manip::TZ::pafiji00: + file: pafiji00.pm + version: '6.52' + Date::Manip::TZ::pafuna00: + file: pafuna00.pm + version: '6.52' + Date::Manip::TZ::pagala00: + file: pagala00.pm + version: '6.52' + Date::Manip::TZ::pagamb00: + file: pagamb00.pm + version: '6.52' + Date::Manip::TZ::paguad00: + file: paguad00.pm + version: '6.52' + Date::Manip::TZ::paguam00: + file: paguam00.pm + version: '6.52' + Date::Manip::TZ::pahono00: + file: pahono00.pm + version: '6.52' + Date::Manip::TZ::pakiri00: + file: pakiri00.pm + version: '6.52' + Date::Manip::TZ::pakosr00: + file: pakosr00.pm + version: '6.52' + Date::Manip::TZ::pakwaj00: + file: pakwaj00.pm + version: '6.52' + Date::Manip::TZ::pamaju00: + file: pamaju00.pm + version: '6.52' + Date::Manip::TZ::pamarq00: + file: pamarq00.pm + version: '6.52' + Date::Manip::TZ::panaur00: + file: panaur00.pm + version: '6.52' + Date::Manip::TZ::paniue00: + file: paniue00.pm + version: '6.52' + Date::Manip::TZ::panorf00: + file: panorf00.pm + version: '6.52' + Date::Manip::TZ::panoum00: + file: panoum00.pm + version: '6.52' + Date::Manip::TZ::papago00: + file: papago00.pm + version: '6.52' + Date::Manip::TZ::papala00: + file: papala00.pm + version: '6.52' + Date::Manip::TZ::papitc00: + file: papitc00.pm + version: '6.52' + Date::Manip::TZ::papohn00: + file: papohn00.pm + version: '6.52' + Date::Manip::TZ::paport00: + file: paport00.pm + version: '6.52' + Date::Manip::TZ::pararo00: + file: pararo00.pm + version: '6.52' + Date::Manip::TZ::patahi00: + file: patahi00.pm + version: '6.52' + Date::Manip::TZ::patara00: + file: patara00.pm + version: '6.52' + Date::Manip::TZ::patong00: + file: patong00.pm + version: '6.52' + Date::Manip::TZ::pawake00: + file: pawake00.pm + version: '6.52' + Date::Manip::TZ::pawall00: + file: pawall00.pm + version: '6.52' + Date::Manip::TZ::q00: + file: q00.pm + version: '6.52' + Date::Manip::TZ::r00: + file: r00.pm + version: '6.52' + Date::Manip::TZ::s00: + file: s00.pm + version: '6.52' + Date::Manip::TZ::t00: + file: t00.pm + version: '6.52' + Date::Manip::TZ::u00: + file: u00.pm + version: '6.52' + Date::Manip::TZ::ut00: + file: ut00.pm + version: '6.52' + Date::Manip::TZ::utc00: + file: utc00.pm + version: '6.52' + Date::Manip::TZ::v00: + file: v00.pm + version: '6.52' + Date::Manip::TZ::w00: + file: w00.pm + version: '6.52' + Date::Manip::TZ::wet00: + file: wet00.pm + version: '6.52' + Date::Manip::TZ::x00: + file: x00.pm + version: '6.52' + Date::Manip::TZ::y00: + file: y00.pm + version: '6.52' + Date::Manip::TZ::z00: + file: z00.pm + version: '6.52' Date::Manip::TZ_Base: - file: lib/Date/Manip/TZ_Base.pm - version: '6.51' + file: TZ_Base.pm + version: '6.52' Date::Manip::TZdata: - file: lib/Date/Manip/TZdata.pm - version: '6.51' + file: TZdata.pm + version: '6.52' Date::Manip::Zones: - file: lib/Date/Manip/Zones.pm - version: '6.51' + file: Zones.pm + version: '6.52' requires: Carp: '0' Cwd: '0' @@ -118,7 +2600,6 @@ perl: '5.006' utf8: '0' resources: - license: http://dev.perl.org/licenses/ - repository: https://github.com/SBECK-github/Date-Manip -version: '6.51' + repository: git://github.com/SBECK-github/Date-Manip.git +version: '6.52' x_serialization_backend: 'CPAN::Meta::YAML version 0.012' diff -Nru libdate-manip-perl-6.51/t/base.calc_date_date.t libdate-manip-perl-6.52/t/base.calc_date_date.t --- libdate-manip-perl-6.51/t/base.calc_date_date.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.calc_date_date.t 2015-12-01 14:26:33.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc_date_date'; +$t = new Test::Inter 'base :: calc_date_date'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.calc_date_days.t libdate-manip-perl-6.52/t/base.calc_date_days.t --- libdate-manip-perl-6.51/t/base.calc_date_days.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.calc_date_days.t 2015-12-01 14:26:41.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc_date_days'; +$t = new Test::Inter 'base :: calc_date_days'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.calc_date_delta.t libdate-manip-perl-6.52/t/base.calc_date_delta.t --- libdate-manip-perl-6.51/t/base.calc_date_delta.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.calc_date_delta.t 2015-12-01 14:26:45.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc_date_delta'; +$t = new Test::Inter 'base :: calc_date_delta'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.calc_date_time.t libdate-manip-perl-6.52/t/base.calc_date_time.t --- libdate-manip-perl-6.51/t/base.calc_date_time.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.calc_date_time.t 2015-12-01 14:26:48.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc_date_time'; +$t = new Test::Inter 'base :: calc_date_time'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base._calc_date_ymwd.t libdate-manip-perl-6.52/t/base._calc_date_ymwd.t --- libdate-manip-perl-6.51/t/base._calc_date_ymwd.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base._calc_date_ymwd.t 2015-12-01 14:25:42.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter '_calc_date_ymwd'; +$t = new Test::Inter 'base :: _calc_date_ymwd'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.calc_time_time.t libdate-manip-perl-6.52/t/base.calc_time_time.t --- libdate-manip-perl-6.51/t/base.calc_time_time.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.calc_time_time.t 2015-12-01 14:26:52.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc_time_time'; +$t = new Test::Inter 'base :: calc_time_time'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.check.t libdate-manip-perl-6.52/t/base.check.t --- libdate-manip-perl-6.51/t/base.check.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.check.t 2015-12-01 14:26:56.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'check'; +$t = new Test::Inter 'base :: check'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.cmp.t libdate-manip-perl-6.52/t/base.cmp.t --- libdate-manip-perl-6.51/t/base.cmp.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.cmp.t 2015-12-01 14:26:59.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'cmp'; +$t = new Test::Inter 'base :: cmp'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base._config.t libdate-manip-perl-6.52/t/base._config.t --- libdate-manip-perl-6.51/t/base._config.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base._config.t 2015-12-01 14:25:48.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter '_config'; +$t = new Test::Inter 'base :: _config'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base._critical_date.t libdate-manip-perl-6.52/t/base._critical_date.t --- libdate-manip-perl-6.51/t/base._critical_date.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base._critical_date.t 2015-12-01 14:25:54.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter '_critical_date'; +$t = new Test::Inter 'base :: _critical_date'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.day_of_week.t libdate-manip-perl-6.52/t/base.day_of_week.t --- libdate-manip-perl-6.51/t/base.day_of_week.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.day_of_week.t 2015-12-01 14:27:02.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'day_of_week'; +$t = new Test::Inter 'base :: day_of_week'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.day_of_year.0.t libdate-manip-perl-6.52/t/base.day_of_year.0.t --- libdate-manip-perl-6.51/t/base.day_of_year.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.day_of_year.0.t 2015-12-01 14:27:05.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'day_of_year (Y/M/D)'; +$t = new Test::Inter 'base :: day_of_year (Y/M/D)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.day_of_year.1.t libdate-manip-perl-6.52/t/base.day_of_year.1.t --- libdate-manip-perl-6.51/t/base.day_of_year.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.day_of_year.1.t 2015-12-01 14:27:09.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'day_of_year (Y/M/D/H/Mn/S)'; +$t = new Test::Inter 'base :: day_of_year (Y/M/D/H/Mn/S)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.days_in_month.t libdate-manip-perl-6.52/t/base.days_in_month.t --- libdate-manip-perl-6.51/t/base.days_in_month.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.days_in_month.t 2015-12-01 14:27:14.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'days_in_month'; +$t = new Test::Inter 'base :: days_in_month'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.days_in_year.t libdate-manip-perl-6.52/t/base.days_in_year.t --- libdate-manip-perl-6.51/t/base.days_in_year.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.days_in_year.t 2015-12-01 14:27:17.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'days_in_year'; +$t = new Test::Inter 'base :: days_in_year'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.days_since_1bc.t libdate-manip-perl-6.52/t/base.days_since_1bc.t --- libdate-manip-perl-6.51/t/base.days_since_1bc.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.days_since_1bc.t 2015-12-01 14:27:20.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'days_since_1BC'; +$t = new Test::Inter 'base :: days_since_1BC'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base._fix_year.50.t libdate-manip-perl-6.52/t/base._fix_year.50.t --- libdate-manip-perl-6.51/t/base._fix_year.50.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base._fix_year.50.t 2015-12-01 14:25:34.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter '_fix_year (50)'; +$t = new Test::Inter 'base :: _fix_year (50)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base._fix_year.c1890.t libdate-manip-perl-6.52/t/base._fix_year.c1890.t --- libdate-manip-perl-6.51/t/base._fix_year.c1890.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base._fix_year.c1890.t 2015-12-01 14:26:24.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter '_fix_year (C1890)'; +$t = new Test::Inter 'base :: _fix_year (C1890)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base._fix_year.c18.t libdate-manip-perl-6.52/t/base._fix_year.c18.t --- libdate-manip-perl-6.51/t/base._fix_year.c18.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base._fix_year.c18.t 2015-12-01 14:26:11.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter '_fix_year (C18)'; +$t = new Test::Inter 'base :: _fix_year (C18)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base._fix_year.c.t libdate-manip-perl-6.52/t/base._fix_year.c.t --- libdate-manip-perl-6.51/t/base._fix_year.c.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base._fix_year.c.t 2015-12-01 14:26:05.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter '_fix_year (C)'; +$t = new Test::Inter 'base :: _fix_year (C)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.join.t libdate-manip-perl-6.52/t/base.join.t --- libdate-manip-perl-6.51/t/base.join.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.join.t 2015-12-01 14:27:23.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'join'; +$t = new Test::Inter 'base :: join'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.leapyear.t libdate-manip-perl-6.52/t/base.leapyear.t --- libdate-manip-perl-6.51/t/base.leapyear.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.leapyear.t 2015-12-01 14:27:25.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'leapyear'; +$t = new Test::Inter 'base :: leapyear'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.nth_day_of_week.t libdate-manip-perl-6.52/t/base.nth_day_of_week.t --- libdate-manip-perl-6.51/t/base.nth_day_of_week.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.nth_day_of_week.t 2015-12-01 14:27:27.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'nth_day_of_week'; +$t = new Test::Inter 'base :: nth_day_of_week'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.secs_since_1970.t libdate-manip-perl-6.52/t/base.secs_since_1970.t --- libdate-manip-perl-6.51/t/base.secs_since_1970.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.secs_since_1970.t 2015-12-01 14:27:30.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'secs_since_1970'; +$t = new Test::Inter 'base :: secs_since_1970'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.split.t libdate-manip-perl-6.52/t/base.split.t --- libdate-manip-perl-6.51/t/base.split.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.split.t 2015-12-01 14:27:33.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'split'; +$t = new Test::Inter 'base :: split'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.week1_day1.t libdate-manip-perl-6.52/t/base.week1_day1.t --- libdate-manip-perl-6.51/t/base.week1_day1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.week1_day1.t 2015-12-01 14:27:36.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'week1_day1'; +$t = new Test::Inter 'base :: week1_day1'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.week_of_year.0.t libdate-manip-perl-6.52/t/base.week_of_year.0.t --- libdate-manip-perl-6.51/t/base.week_of_year.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.week_of_year.0.t 2015-12-01 14:27:38.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'week_of_year (Y,W)'; +$t = new Test::Inter 'base :: week_of_year (Y,W)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.week_of_year.1.t libdate-manip-perl-6.52/t/base.week_of_year.1.t --- libdate-manip-perl-6.51/t/base.week_of_year.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.week_of_year.1.t 2015-12-01 14:27:41.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'week_of_year (Y,M,D)'; +$t = new Test::Inter 'base :: week_of_year (Y,M,D)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/base.weeks_in_year.t libdate-manip-perl-6.52/t/base.weeks_in_year.t --- libdate-manip-perl-6.51/t/base.weeks_in_year.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/base.weeks_in_year.t 2015-12-01 14:27:43.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'weeks_in_year'; +$t = new Test::Inter 'base :: weeks_in_year'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.data_date_bsemi.t libdate-manip-perl-6.52/t/date.calc.data_date_bsemi.t --- libdate-manip-perl-6.51/t/date.calc.data_date_bsemi.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.data_date_bsemi.t 2015-12-01 14:28:10.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,date,bsemi,08:00-17:00)'; +$t = new Test::Inter 'date :: calc (date,date,bsemi,08:00-17:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_date_approx.t libdate-manip-perl-6.52/t/date.calc.date_date_approx.t --- libdate-manip-perl-6.51/t/date.calc.date_date_approx.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_date_approx.t 2015-12-01 14:28:13.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,date,approx)'; +$t = new Test::Inter 'date :: calc (date,date,approx)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_date_bapprox.t libdate-manip-perl-6.52/t/date.calc.date_date_bapprox.t --- libdate-manip-perl-6.51/t/date.calc.date_date_bapprox.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_date_bapprox.t 2015-12-01 14:28:16.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,date,bapprox)'; +$t = new Test::Inter 'date :: calc (date,date,bapprox)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_date_business.t libdate-manip-perl-6.52/t/date.calc.date_date_business.t --- libdate-manip-perl-6.51/t/date.calc.date_date_business.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_date_business.t 2015-12-01 14:28:18.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,date,business,08:00-17:00)'; +$t = new Test::Inter 'date :: calc (date,date,business,08:00-17:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_date_exact.t libdate-manip-perl-6.52/t/date.calc.date_date_exact.t --- libdate-manip-perl-6.51/t/date.calc.date_date_exact.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_date_exact.t 2015-12-01 14:28:21.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,date,exact)'; +$t = new Test::Inter 'date :: calc (date,date,exact)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_date_semi.t libdate-manip-perl-6.52/t/date.calc.date_date_semi.t --- libdate-manip-perl-6.51/t/date.calc.date_date_semi.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_date_semi.t 2015-12-01 14:28:23.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,date,semi)'; +$t = new Test::Inter 'date :: calc (date,date,semi)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_delta_approx.t libdate-manip-perl-6.52/t/date.calc.date_delta_approx.t --- libdate-manip-perl-6.51/t/date.calc.date_delta_approx.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_delta_approx.t 2015-12-01 14:28:28.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,delta)'; +$t = new Test::Inter 'date :: calc (date,delta)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_delta_business.0.t libdate-manip-perl-6.52/t/date.calc.date_delta_business.0.t --- libdate-manip-perl-6.51/t/date.calc.date_delta_business.0.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_delta_business.0.t 2015-12-01 14:28:30.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,delta,business 08:00-17:00)'; +$t = new Test::Inter 'date :: calc (date,delta,business 08:00-17:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_delta_business.1.t libdate-manip-perl-6.52/t/date.calc.date_delta_business.1.t --- libdate-manip-perl-6.51/t/date.calc.date_delta_business.1.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_delta_business.1.t 2015-12-01 14:28:33.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,delta,business 08:30-17:00)'; +$t = new Test::Inter 'date :: calc (date,delta,business 08:30-17:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_delta_business.2.t libdate-manip-perl-6.52/t/date.calc.date_delta_business.2.t --- libdate-manip-perl-6.51/t/date.calc.date_delta_business.2.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_delta_business.2.t 2015-12-01 14:28:35.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,delta,business 09:00-17:30)'; +$t = new Test::Inter 'date :: calc (date,delta,business 09:00-17:30)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_delta_business.3.t libdate-manip-perl-6.52/t/date.calc.date_delta_business.3.t --- libdate-manip-perl-6.51/t/date.calc.date_delta_business.3.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_delta_business.3.t 2015-12-01 14:28:38.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,delta,business 05:00-16:30)'; +$t = new Test::Inter 'date :: calc (date,delta,business 05:00-16:30)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_delta_business.4.t libdate-manip-perl-6.52/t/date.calc.date_delta_business.4.t --- libdate-manip-perl-6.51/t/date.calc.date_delta_business.4.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_delta_business.4.t 2015-12-01 14:28:41.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,delta,business 09:00-16:30)'; +$t = new Test::Inter 'date :: calc (date,delta,business 09:00-16:30)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_delta_business.french.t libdate-manip-perl-6.52/t/date.calc.date_delta_business.french.t --- libdate-manip-perl-6.51/t/date.calc.date_delta_business.french.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_delta_business.french.t 2015-12-01 14:28:43.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,delta,business,french)'; +$t = new Test::Inter 'date :: calc (date,delta,business,french)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_delta_exact.t libdate-manip-perl-6.52/t/date.calc.date_delta_exact.t --- libdate-manip-perl-6.51/t/date.calc.date_delta_exact.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_delta_exact.t 2015-12-01 14:28:45.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,exact delta)'; +$t = new Test::Inter 'date :: calc (date,exact delta)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.calc.date_delta.romanian.t libdate-manip-perl-6.52/t/date.calc.date_delta.romanian.t --- libdate-manip-perl-6.51/t/date.calc.date_delta.romanian.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.calc.date_delta.romanian.t 2015-12-01 14:28:25.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (date,delta,romanian)'; +$t = new Test::Inter 'date :: calc (date,delta,romanian)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.cmp.t libdate-manip-perl-6.52/t/date.cmp.t --- libdate-manip-perl-6.51/t/date.cmp.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.cmp.t 2015-12-01 14:28:48.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'cmp'; +$t = new Test::Inter 'date :: cmp'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.convert.t libdate-manip-perl-6.52/t/date.convert.t --- libdate-manip-perl-6.51/t/date.convert.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.convert.t 2015-12-01 14:28:50.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'convert'; +$t = new Test::Inter 'date :: convert'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.holiday.0.t libdate-manip-perl-6.52/t/date.holiday.0.t --- libdate-manip-perl-6.51/t/date.holiday.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.holiday.0.t 2015-12-01 14:28:53.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'holiday'; +$t = new Test::Inter 'date :: holiday'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.holiday.1.t libdate-manip-perl-6.52/t/date.holiday.1.t --- libdate-manip-perl-6.51/t/date.holiday.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.holiday.1.t 2015-12-01 14:28:56.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'holiday (split)'; +$t = new Test::Inter 'date :: holiday (split)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.init_args.t libdate-manip-perl-6.52/t/date.init_args.t --- libdate-manip-perl-6.51/t/date.init_args.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.init_args.t 2015-12-01 14:29:02.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter '_init_args'; +$t = new Test::Inter 'date :: _init_args'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.is_business_day.t libdate-manip-perl-6.52/t/date.is_business_day.t --- libdate-manip-perl-6.51/t/date.is_business_day.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.is_business_day.t 2015-12-01 14:29:13.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'is_business_day'; +$t = new Test::Inter 'date :: is_business_day'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.is.t libdate-manip-perl-6.52/t/date.is.t --- libdate-manip-perl-6.51/t/date.is.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.is.t 2015-12-01 14:29:06.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'is'; +$t = new Test::Inter 'date :: is'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.list_events.0.t libdate-manip-perl-6.52/t/date.list_events.0.t --- libdate-manip-perl-6.51/t/date.list_events.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.list_events.0.t 2015-12-01 14:29:16.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'list_events'; +$t = new Test::Inter 'date :: list_events'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.list_events.1.t libdate-manip-perl-6.52/t/date.list_events.1.t --- libdate-manip-perl-6.51/t/date.list_events.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.list_events.1.t 2015-12-01 14:29:19.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'list_events(format=dates)'; +$t = new Test::Inter 'date :: list_events(format=dates)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.list_holidays.0.t libdate-manip-perl-6.52/t/date.list_holidays.0.t --- libdate-manip-perl-6.51/t/date.list_holidays.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.list_holidays.0.t 2015-12-01 14:29:21.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'list_holidays (simple)'; +$t = new Test::Inter 'date :: list_holidays (simple)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.list_holidays.1.t libdate-manip-perl-6.52/t/date.list_holidays.1.t --- libdate-manip-perl-6.51/t/date.list_holidays.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.list_holidays.1.t 2015-12-01 14:59:43.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'list_holidays (New Years)'; +$t = new Test::Inter 'date :: list_holidays (New Years)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.list_holidays.2.t libdate-manip-perl-6.52/t/date.list_holidays.2.t --- libdate-manip-perl-6.51/t/date.list_holidays.2.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.list_holidays.2.t 2015-12-01 14:29:26.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'list_holidays (New Years 2)'; +$t = new Test::Inter 'date :: list_holidays (New Years 2)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.list_holidays.3.t libdate-manip-perl-6.52/t/date.list_holidays.3.t --- libdate-manip-perl-6.51/t/date.list_holidays.3.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.list_holidays.3.t 2015-12-01 14:29:29.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'list_holidays (multiple)'; +$t = new Test::Inter 'date :: list_holidays (multiple)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.list_holidays.4.t libdate-manip-perl-6.52/t/date.list_holidays.4.t --- libdate-manip-perl-6.51/t/date.list_holidays.4.t 1970-01-01 00:00:00.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.list_holidays.4.t 2015-12-01 17:26:33.000000000 +0000 @@ -0,0 +1,137 @@ +#!/usr/bin/perl -w + +use Test::Inter; +$t = new Test::Inter 'date :: list_holidays (new years)'; +$testdir = ''; +$testdir = $t->testdir(); + +use Date::Manip; +if (DateManipVersion() >= 6.00) { + $t->feature("DM6",1); +} + +$t->skip_all('Date::Manip 6.xx required','DM6'); + + +sub test { + (@test)=@_; + + if ($test[0] eq 'configfile') { + $obj->config('EraseHolidays',1, + 'ConfigFile',"$testdir/$test[1]"); + return (); + } + + @ret = (); + ($y0,$y1) = @test; + foreach my $y ($y0..$y1) { + @date = $obj->list_holidays($y); + foreach my $date (@date) { + my $d = $date->value(); + push(@ret,$d); + } + } + return @ret; +} + +$obj = new Date::Manip::Date; + +$obj->config("forcedate","2000-01-01-00:00:00,America/New_York"); + +$tests=" + +configfile New_Years.1.cnf => + +2000 2015 => + 2000010100:00:00 + 2001010100:00:00 + 2002010100:00:00 + 2003010100:00:00 + 2004010100:00:00 + 2005010100:00:00 + 2006010100:00:00 + 2007010100:00:00 + 2008010100:00:00 + 2009010100:00:00 + 2010010100:00:00 + 2011010100:00:00 + 2012010100:00:00 + 2013010100:00:00 + 2014010100:00:00 + 2015010100:00:00 + +configfile New_Years.2.cnf => + +2000 2015 => + 2001010100:00:00 + 2002010100:00:00 + 2003010100:00:00 + 2004010100:00:00 + 2004123100:00:00 + 2006010200:00:00 + 2007010100:00:00 + 2008010100:00:00 + 2009010100:00:00 + 2010010100:00:00 + 2010123100:00:00 + 2012010200:00:00 + 2013010100:00:00 + 2014010100:00:00 + 2015010100:00:00 + +configfile New_Years.3.cnf => + +2000 2015 => + 2000010100:00:00 + 2001010100:00:00 + 2002010100:00:00 + 2003010100:00:00 + 2004010100:00:00 + 2005010100:00:00 + 2006010200:00:00 + 2007010100:00:00 + 2008010100:00:00 + 2009010100:00:00 + 2010010100:00:00 + 2011010100:00:00 + 2012010200:00:00 + 2013010100:00:00 + 2014010100:00:00 + 2015010100:00:00 + +configfile New_Years.4.cnf => + +2000 2015 => + 2000010100:00:00 + 2001010100:00:00 + 2002010100:00:00 + 2003010100:00:00 + 2004010100:00:00 + 2005010100:00:00 + 2006010200:00:00 + 2007010100:00:00 + 2008010100:00:00 + 2009010100:00:00 + 2010010100:00:00 + 2011010100:00:00 + 2012010200:00:00 + 2013010100:00:00 + 2014010100:00:00 + 2015010100:00:00 + +"; + +$t->tests(func => \&test, + tests => $tests); +$t->done_testing(); + +#Local Variables: +#mode: cperl +#indent-tabs-mode: nil +#cperl-indent-level: 3 +#cperl-continued-statement-offset: 2 +#cperl-continued-brace-offset: 0 +#cperl-brace-offset: 0 +#cperl-brace-imaginary-offset: 0 +#cperl-label-offset: 0 +#End: diff -Nru libdate-manip-perl-6.51/t/date.nearest_business_day.t libdate-manip-perl-6.52/t/date.nearest_business_day.t --- libdate-manip-perl-6.51/t/date.nearest_business_day.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.nearest_business_day.t 2015-12-01 14:29:33.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'nearest_business_day'; +$t = new Test::Inter 'date :: nearest_business_day'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.next_business_day.t libdate-manip-perl-6.52/t/date.next_business_day.t --- libdate-manip-perl-6.51/t/date.next_business_day.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.next_business_day.t 2015-12-01 14:29:47.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'next_business_day'; +$t = new Test::Inter 'date :: next_business_day'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.next.t libdate-manip-perl-6.52/t/date.next.t --- libdate-manip-perl-6.51/t/date.next.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.next.t 2015-12-01 14:29:36.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'next'; +$t = new Test::Inter 'date :: next'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.catalan.t libdate-manip-perl-6.52/t/date.parse.catalan.t --- libdate-manip-perl-6.51/t/date.parse.catalan.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.catalan.t 2015-12-01 18:57:06.000000000 +0000 @@ -2,7 +2,7 @@ use utf8; use Test::Inter; -$t = new Test::Inter 'parse (Catalan)'; +$t = new Test::Inter 'date :: parse (Catalan)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.common.t libdate-manip-perl-6.52/t/date.parse.common.t --- libdate-manip-perl-6.51/t/date.parse.common.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.common.t 2015-12-01 14:29:54.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (common)'; +$t = new Test::Inter 'date :: parse (common)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.danish.t libdate-manip-perl-6.52/t/date.parse.danish.t --- libdate-manip-perl-6.51/t/date.parse.danish.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.danish.t 2015-12-01 14:29:57.000000000 +0000 @@ -2,7 +2,7 @@ use utf8; use Test::Inter; -$t = new Test::Inter 'parse (Danish)'; +$t = new Test::Inter 'date :: parse (Danish)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse_date.common.t libdate-manip-perl-6.52/t/date.parse_date.common.t --- libdate-manip-perl-6.51/t/date.parse_date.common.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse_date.common.t 2015-12-01 14:31:08.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse_date (common)'; +$t = new Test::Inter 'date :: parse_date (common)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse_date.iso.t libdate-manip-perl-6.52/t/date.parse_date.iso.t --- libdate-manip-perl-6.51/t/date.parse_date.iso.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse_date.iso.t 2015-12-01 14:31:10.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse_date (ISO 8601)'; +$t = new Test::Inter 'date :: parse_date (ISO 8601)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse_date.misc.0.t libdate-manip-perl-6.52/t/date.parse_date.misc.0.t --- libdate-manip-perl-6.51/t/date.parse_date.misc.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse_date.misc.0.t 2015-12-01 14:31:13.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse_date (misc)'; +$t = new Test::Inter 'date :: parse_date (misc)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse_date.misc.1.t libdate-manip-perl-6.52/t/date.parse_date.misc.1.t --- libdate-manip-perl-6.51/t/date.parse_date.misc.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse_date.misc.1.t 2015-12-01 14:31:15.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse_date (misc,DefaultTime=curr)'; +$t = new Test::Inter 'date :: parse_date (misc,DefaultTime=curr)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse_date.mmmyyyy.first.t libdate-manip-perl-6.52/t/date.parse_date.mmmyyyy.first.t --- libdate-manip-perl-6.51/t/date.parse_date.mmmyyyy.first.t 2015-06-01 13:31:50.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse_date.mmmyyyy.first.t 2015-12-01 14:31:17.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse_date (format_mmmyyyy=first)'; +$t = new Test::Inter 'date :: parse_date (format_mmmyyyy=first)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse_date.mmmyyyy.last.t libdate-manip-perl-6.52/t/date.parse_date.mmmyyyy.last.t --- libdate-manip-perl-6.51/t/date.parse_date.mmmyyyy.last.t 2015-06-01 13:31:50.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse_date.mmmyyyy.last.t 2015-12-01 14:31:20.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse_date (format_mmmyyyy=last)'; +$t = new Test::Inter 'date :: parse_date (format_mmmyyyy=last)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse_date.mmmyyyy.t libdate-manip-perl-6.52/t/date.parse_date.mmmyyyy.t --- libdate-manip-perl-6.51/t/date.parse_date.mmmyyyy.t 2015-06-01 13:31:50.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse_date.mmmyyyy.t 2015-12-01 14:31:24.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse_date (no format_mmmyyyy)'; +$t = new Test::Inter 'date :: parse_date (no format_mmmyyyy)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.delta.t libdate-manip-perl-6.52/t/date.parse.delta.t --- libdate-manip-perl-6.51/t/date.parse.delta.t 2014-11-21 17:40:00.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.delta.t 2015-12-01 14:30:00.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (delta)'; +$t = new Test::Inter 'date :: parse (delta)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.dst.t libdate-manip-perl-6.52/t/date.parse.dst.t --- libdate-manip-perl-6.51/t/date.parse.dst.t 2015-03-06 18:08:13.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.dst.t 2015-12-01 14:30:03.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (DST changes)'; +$t = new Test::Inter 'date :: parse (DST changes)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.dutch.t libdate-manip-perl-6.52/t/date.parse.dutch.t --- libdate-manip-perl-6.51/t/date.parse.dutch.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.dutch.t 2015-12-01 14:30:06.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (Dutch)'; +$t = new Test::Inter 'date :: parse (Dutch)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.english.t libdate-manip-perl-6.52/t/date.parse.english.t --- libdate-manip-perl-6.51/t/date.parse.english.t 2014-11-21 17:40:00.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.english.t 2015-12-01 14:30:08.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (English)'; +$t = new Test::Inter 'date :: parse (English)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse_format.0.t libdate-manip-perl-6.52/t/date.parse_format.0.t --- libdate-manip-perl-6.51/t/date.parse_format.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse_format.0.t 2015-12-01 14:31:26.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse_format'; +$t = new Test::Inter 'date :: parse_format'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse_format.1.t libdate-manip-perl-6.52/t/date.parse_format.1.t --- libdate-manip-perl-6.51/t/date.parse_format.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse_format.1.t 2015-12-01 14:31:29.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse_format'; +$t = new Test::Inter 'date :: parse_format'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.french.t libdate-manip-perl-6.52/t/date.parse.french.t --- libdate-manip-perl-6.51/t/date.parse.french.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.french.t 2015-12-01 14:30:10.000000000 +0000 @@ -2,7 +2,7 @@ use utf8; use Test::Inter; -$t = new Test::Inter 'parse (French)'; +$t = new Test::Inter 'date :: parse (French)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.holidays.t libdate-manip-perl-6.52/t/date.parse.holidays.t --- libdate-manip-perl-6.51/t/date.parse.holidays.t 2014-11-21 17:40:00.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.holidays.t 2015-12-01 14:30:13.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (holidays)'; +$t = new Test::Inter 'date :: parse (holidays)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.invalid.t libdate-manip-perl-6.52/t/date.parse.invalid.t --- libdate-manip-perl-6.51/t/date.parse.invalid.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.invalid.t 2015-12-01 14:30:16.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (invalid)'; +$t = new Test::Inter 'date :: parse (invalid)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.iso.t libdate-manip-perl-6.52/t/date.parse.iso.t --- libdate-manip-perl-6.51/t/date.parse.iso.t 2015-03-06 18:08:13.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.iso.t 2015-12-01 14:30:18.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (ISO 8601)'; +$t = new Test::Inter 'date :: parse (ISO 8601)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.italian.t libdate-manip-perl-6.52/t/date.parse.italian.t --- libdate-manip-perl-6.51/t/date.parse.italian.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.italian.t 2015-12-01 14:30:21.000000000 +0000 @@ -2,7 +2,7 @@ use utf8; use Test::Inter; -$t = new Test::Inter 'parse (Italian)'; +$t = new Test::Inter 'date :: parse (Italian)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.misc.0.t libdate-manip-perl-6.52/t/date.parse.misc.0.t --- libdate-manip-perl-6.51/t/date.parse.misc.0.t 2015-03-06 18:08:13.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.misc.0.t 2015-12-01 14:30:23.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (misc)'; +$t = new Test::Inter 'date :: parse (misc)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.misc.1.t libdate-manip-perl-6.52/t/date.parse.misc.1.t --- libdate-manip-perl-6.51/t/date.parse.misc.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.misc.1.t 2015-12-01 14:30:26.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (misc,DefaultTime=curr)'; +$t = new Test::Inter 'date :: parse (misc,DefaultTime=curr)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.mmmyyyy.first.t libdate-manip-perl-6.52/t/date.parse.mmmyyyy.first.t --- libdate-manip-perl-6.51/t/date.parse.mmmyyyy.first.t 2015-06-01 13:31:50.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.mmmyyyy.first.t 2015-12-01 14:30:28.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (format_mmmyyyy=first)'; +$t = new Test::Inter 'date :: parse (format_mmmyyyy=first)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.mmmyyyy.last.t libdate-manip-perl-6.52/t/date.parse.mmmyyyy.last.t --- libdate-manip-perl-6.51/t/date.parse.mmmyyyy.last.t 2015-06-01 13:31:50.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.mmmyyyy.last.t 2015-12-01 14:30:30.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (format_mmmyyyy=last)'; +$t = new Test::Inter 'date :: parse (format_mmmyyyy=last)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.mmmyyyy.t libdate-manip-perl-6.52/t/date.parse.mmmyyyy.t --- libdate-manip-perl-6.51/t/date.parse.mmmyyyy.t 2015-06-01 13:31:50.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.mmmyyyy.t 2015-12-01 14:30:33.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (no format_mmmyyyy)'; +$t = new Test::Inter 'date :: parse (no format_mmmyyyy)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.period.t libdate-manip-perl-6.52/t/date.parse.period.t --- libdate-manip-perl-6.51/t/date.parse.period.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.period.t 2015-12-01 14:30:36.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (period)'; +$t = new Test::Inter 'date :: parse (period)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.polish.t libdate-manip-perl-6.52/t/date.parse.polish.t --- libdate-manip-perl-6.51/t/date.parse.polish.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.polish.t 2015-12-01 14:30:38.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (Polish)'; +$t = new Test::Inter 'date :: parse (Polish)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.portuguese.t libdate-manip-perl-6.52/t/date.parse.portuguese.t --- libdate-manip-perl-6.51/t/date.parse.portuguese.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.portuguese.t 2015-12-01 14:30:41.000000000 +0000 @@ -2,7 +2,7 @@ use utf8; use Test::Inter; -$t = new Test::Inter 'parse (Portuguese)'; +$t = new Test::Inter 'date :: parse (Portuguese)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.romanian.t libdate-manip-perl-6.52/t/date.parse.romanian.t --- libdate-manip-perl-6.51/t/date.parse.romanian.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.romanian.t 2015-12-01 14:30:43.000000000 +0000 @@ -2,7 +2,7 @@ use utf8; use Test::Inter; -$t = new Test::Inter 'parse (Romanian)'; +$t = new Test::Inter 'date :: parse (Romanian)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.russian.cp1251.t libdate-manip-perl-6.52/t/date.parse.russian.cp1251.t --- libdate-manip-perl-6.51/t/date.parse.russian.cp1251.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.russian.cp1251.t 2015-12-01 14:30:49.000000000 +0000 @@ -5,7 +5,7 @@ binmode(STDOUT,':utf8'); binmode(STDERR,':utf8'); -$t = new Test::Inter 'parse (Russian, cp1251)'; +$t = new Test::Inter 'date :: parse (Russian, cp1251)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.russian.koi8-r.t libdate-manip-perl-6.52/t/date.parse.russian.koi8-r.t --- libdate-manip-perl-6.51/t/date.parse.russian.koi8-r.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.russian.koi8-r.t 2015-12-01 14:30:52.000000000 +0000 @@ -2,7 +2,7 @@ use Test::More; use Test::Inter; -$t = new Test::Inter 'parse (Russian, koi8-r)'; +$t = new Test::Inter 'date :: parse (Russian, koi8-r)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.russian.t libdate-manip-perl-6.52/t/date.parse.russian.t --- libdate-manip-perl-6.51/t/date.parse.russian.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.russian.t 2015-12-01 14:30:55.000000000 +0000 @@ -2,7 +2,7 @@ use utf8; use Test::Inter; -$t = new Test::Inter 'parse (Russian)'; +$t = new Test::Inter 'date :: parse (Russian)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.spanish.t libdate-manip-perl-6.52/t/date.parse.spanish.t --- libdate-manip-perl-6.51/t/date.parse.spanish.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.spanish.t 2015-12-01 14:30:58.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (Spanish)'; +$t = new Test::Inter 'date :: parse (Spanish)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.swedish.t libdate-manip-perl-6.52/t/date.parse.swedish.t --- libdate-manip-perl-6.51/t/date.parse.swedish.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.swedish.t 2015-12-01 14:31:00.000000000 +0000 @@ -2,7 +2,7 @@ use utf8; use Test::Inter; -$t = new Test::Inter 'parse (Swedish)'; +$t = new Test::Inter 'date :: parse (Swedish)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse_time.t libdate-manip-perl-6.52/t/date.parse_time.t --- libdate-manip-perl-6.51/t/date.parse_time.t 2014-11-21 17:40:00.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse_time.t 2015-12-01 14:31:31.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse_time'; +$t = new Test::Inter 'date :: parse_time'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.timezone.t libdate-manip-perl-6.52/t/date.parse.timezone.t --- libdate-manip-perl-6.51/t/date.parse.timezone.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.timezone.t 2015-12-01 14:31:03.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (with timezone)'; +$t = new Test::Inter 'date :: parse (with timezone)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.parse.turkish.t libdate-manip-perl-6.52/t/date.parse.turkish.t --- libdate-manip-perl-6.51/t/date.parse.turkish.t 2015-03-06 18:08:13.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.parse.turkish.t 2015-12-01 14:31:05.000000000 +0000 @@ -2,7 +2,7 @@ use utf8; use Test::Inter; -$t = new Test::Inter 'parse (Turkish)'; +$t = new Test::Inter 'date :: parse (Turkish)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.prev_business_day.t libdate-manip-perl-6.52/t/date.prev_business_day.t --- libdate-manip-perl-6.51/t/date.prev_business_day.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.prev_business_day.t 2015-12-01 14:31:36.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'prev_business_day'; +$t = new Test::Inter 'date :: prev_business_day'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.prev.t libdate-manip-perl-6.52/t/date.prev.t --- libdate-manip-perl-6.51/t/date.prev.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.prev.t 2015-12-01 14:31:33.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'prev'; +$t = new Test::Inter 'date :: prev'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.printf.0.t libdate-manip-perl-6.52/t/date.printf.0.t --- libdate-manip-perl-6.51/t/date.printf.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.printf.0.t 2015-12-01 14:31:38.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'printf'; +$t = new Test::Inter 'date :: printf'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.printf.1.t libdate-manip-perl-6.52/t/date.printf.1.t --- libdate-manip-perl-6.51/t/date.printf.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.printf.1.t 2015-12-01 14:31:41.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'printf (nonUS)'; +$t = new Test::Inter 'date :: printf (nonUS)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.secs_since_1970_GMT.0.t libdate-manip-perl-6.52/t/date.secs_since_1970_GMT.0.t --- libdate-manip-perl-6.51/t/date.secs_since_1970_GMT.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.secs_since_1970_GMT.0.t 2015-12-01 14:31:43.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'secs_since_1970_GMT(secs->date)'; +$t = new Test::Inter 'date :: secs_since_1970_GMT(secs->date)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.secs_since_1970_GMT.1.t libdate-manip-perl-6.52/t/date.secs_since_1970_GMT.1.t --- libdate-manip-perl-6.51/t/date.secs_since_1970_GMT.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.secs_since_1970_GMT.1.t 2015-12-01 14:31:46.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'secs_since_1970_GMT(date->secs)'; +$t = new Test::Inter 'date :: secs_since_1970_GMT(date->secs)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.set.0.t libdate-manip-perl-6.52/t/date.set.0.t --- libdate-manip-perl-6.51/t/date.set.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.set.0.t 2015-12-01 14:31:49.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'set (Printable=0)'; +$t = new Test::Inter 'date :: set (Printable=0)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.set.1.t libdate-manip-perl-6.52/t/date.set.1.t --- libdate-manip-perl-6.51/t/date.set.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.set.1.t 2015-12-01 14:31:51.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'set (Printable=1)'; +$t = new Test::Inter 'date :: set (Printable=1)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.set.2.t libdate-manip-perl-6.52/t/date.set.2.t --- libdate-manip-perl-6.51/t/date.set.2.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.set.2.t 2015-12-01 14:31:54.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'set (Printable=2)'; +$t = new Test::Inter 'date :: set (Printable=2)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.set.3.t libdate-manip-perl-6.52/t/date.set.3.t --- libdate-manip-perl-6.51/t/date.set.3.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.set.3.t 2015-12-01 14:31:56.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'set (Printable=0)'; +$t = new Test::Inter 'date :: set (Printable=0)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.week_of_year.0.t libdate-manip-perl-6.52/t/date.week_of_year.0.t --- libdate-manip-perl-6.51/t/date.week_of_year.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.week_of_year.0.t 2015-12-01 14:32:04.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'week_of_year'; +$t = new Test::Inter 'date :: week_of_year'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/date.week_of_year.1.t libdate-manip-perl-6.52/t/date.week_of_year.1.t --- libdate-manip-perl-6.51/t/date.week_of_year.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/date.week_of_year.1.t 2015-12-01 14:32:08.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'week_of_year'; +$t = new Test::Inter 'date :: week_of_year'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.calc.delta_delta_approx.t libdate-manip-perl-6.52/t/delta.calc.delta_delta_approx.t --- libdate-manip-perl-6.51/t/delta.calc.delta_delta_approx.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.calc.delta_delta_approx.t 2015-12-01 14:33:06.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (delta,delta,approx)'; +$t = new Test::Inter 'delta :: calc (delta,delta,approx)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.calc.delta_delta_business.0.t libdate-manip-perl-6.52/t/delta.calc.delta_delta_business.0.t --- libdate-manip-perl-6.51/t/delta.calc.delta_delta_business.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.calc.delta_delta_business.0.t 2015-12-01 14:33:08.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (delta,delta,business 08:00-17:00)'; +$t = new Test::Inter 'delta :: calc (delta,delta,business 08:00-17:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.calc.delta_delta_business.1.t libdate-manip-perl-6.52/t/delta.calc.delta_delta_business.1.t --- libdate-manip-perl-6.51/t/delta.calc.delta_delta_business.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.calc.delta_delta_business.1.t 2015-12-01 14:33:13.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (delta,delta,business 08:30-17:00)'; +$t = new Test::Inter 'delta :: calc (delta,delta,business 08:30-17:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.calc.delta_delta_exact.t libdate-manip-perl-6.52/t/delta.calc.delta_delta_exact.t --- libdate-manip-perl-6.51/t/delta.calc.delta_delta_exact.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.calc.delta_delta_exact.t 2015-12-01 14:33:16.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'calc (delta,delta,exact)'; +$t = new Test::Inter 'delta :: calc (delta,delta,exact)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.cmp.t libdate-manip-perl-6.52/t/delta.cmp.t --- libdate-manip-perl-6.51/t/delta.cmp.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.cmp.t 2015-12-01 14:33:18.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'cmp'; +$t = new Test::Inter 'delta :: cmp'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.convert.t libdate-manip-perl-6.52/t/delta.convert.t --- libdate-manip-perl-6.51/t/delta.convert.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.convert.t 2015-12-01 14:33:20.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'convert'; +$t = new Test::Inter 'delta :: convert'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.init_args.t libdate-manip-perl-6.52/t/delta.init_args.t --- libdate-manip-perl-6.51/t/delta.init_args.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.init_args.t 2015-12-01 14:33:25.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter '_init_args'; +$t = new Test::Inter 'delta :: _init_args'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.is.t libdate-manip-perl-6.52/t/delta.is.t --- libdate-manip-perl-6.51/t/delta.is.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.is.t 2015-12-01 14:33:28.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'is'; +$t = new Test::Inter 'delta :: is'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.parse.fract.t libdate-manip-perl-6.52/t/delta.parse.fract.t --- libdate-manip-perl-6.51/t/delta.parse.fract.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.parse.fract.t 2015-12-01 14:33:30.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse (fractional)'; +$t = new Test::Inter 'delta :: parse (fractional)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.parse.t libdate-manip-perl-6.52/t/delta.parse.t --- libdate-manip-perl-6.51/t/delta.parse.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.parse.t 2015-12-01 14:33:33.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'parse'; +$t = new Test::Inter 'delta :: parse'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.printf.t libdate-manip-perl-6.52/t/delta.printf.t --- libdate-manip-perl-6.51/t/delta.printf.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.printf.t 2015-12-01 14:33:35.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'printf'; +$t = new Test::Inter 'delta :: printf'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.set.t libdate-manip-perl-6.52/t/delta.set.t --- libdate-manip-perl-6.51/t/delta.set.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.set.t 2015-12-01 14:33:40.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'set'; +$t = new Test::Inter 'delta :: set'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.type.t libdate-manip-perl-6.52/t/delta.type.t --- libdate-manip-perl-6.51/t/delta.type.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.type.t 2015-12-01 14:33:42.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'type'; +$t = new Test::Inter 'delta :: type'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/delta.value.t libdate-manip-perl-6.52/t/delta.value.t --- libdate-manip-perl-6.51/t/delta.value.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/delta.value.t 2015-12-01 14:33:45.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'value'; +$t = new Test::Inter 'delta :: value'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.convtz.t libdate-manip-perl-6.52/t/dm5.convtz.t --- libdate-manip-perl-6.51/t/dm5.convtz.t 2015-06-04 14:51:53.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.convtz.t 2015-12-01 14:34:14.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'ConvTZ'; +$t = new Test::Inter 'DM5 :: ConvTZ'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_date_0.t libdate-manip-perl-6.52/t/dm5.date_date_0.t --- libdate-manip-perl-6.51/t/dm5.date_date_0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_date_0.t 2015-12-01 14:34:19.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (date,date,exact)'; +$t = new Test::Inter 'DM5 :: DateCalc (date,date,exact)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_date_1.t libdate-manip-perl-6.52/t/dm5.date_date_1.t --- libdate-manip-perl-6.51/t/dm5.date_date_1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_date_1.t 2015-12-01 14:34:21.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (date,date,approx)'; +$t = new Test::Inter 'DM5 :: DateCalc (date,date,approx)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_date_2a.t libdate-manip-perl-6.52/t/dm5.date_date_2a.t --- libdate-manip-perl-6.51/t/dm5.date_date_2a.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_date_2a.t 2015-12-01 14:34:23.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (date,date,business 8:00-5:00)'; +$t = new Test::Inter 'DM5 :: DateCalc (date,date,business 8:00-5:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_date_2b.t libdate-manip-perl-6.52/t/dm5.date_date_2b.t --- libdate-manip-perl-6.51/t/dm5.date_date_2b.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_date_2b.t 2015-12-01 14:34:26.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (date,date,business 8:00-5:00)'; +$t = new Test::Inter 'DM5 :: DateCalc (date,date,business 8:00-5:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_delta_0.t libdate-manip-perl-6.52/t/dm5.date_delta_0.t --- libdate-manip-perl-6.51/t/dm5.date_delta_0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_delta_0.t 2015-12-01 14:34:28.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (date,delta,exact)'; +$t = new Test::Inter 'DM5 :: DateCalc (date,delta,exact)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_delta_1.t libdate-manip-perl-6.52/t/dm5.date_delta_1.t --- libdate-manip-perl-6.51/t/dm5.date_delta_1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_delta_1.t 2015-12-01 14:34:30.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (date,delta,approx)'; +$t = new Test::Inter 'DM5 :: DateCalc (date,delta,approx)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_delta_2a.t libdate-manip-perl-6.52/t/dm5.date_delta_2a.t --- libdate-manip-perl-6.51/t/dm5.date_delta_2a.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_delta_2a.t 2015-12-01 14:34:32.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (date,delta,business 8:00-5:00)'; +$t = new Test::Inter 'DM5 :: DateCalc (date,delta,business 8:00-5:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_delta_2b.t libdate-manip-perl-6.52/t/dm5.date_delta_2b.t --- libdate-manip-perl-6.51/t/dm5.date_delta_2b.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_delta_2b.t 2015-12-01 14:34:35.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (date,delta,business 8:30-5:00)'; +$t = new Test::Inter 'DM5 :: DateCalc (date,delta,business 8:30-5:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_delta_french.t libdate-manip-perl-6.52/t/dm5.date_delta_french.t --- libdate-manip-perl-6.51/t/dm5.date_delta_french.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_delta_french.t 2015-12-01 14:34:37.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (French,date,delta,business 8:00-5:00)'; +$t = new Test::Inter 'DM5 :: DateCalc (French,date,delta,business 8:00-5:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_delta_sign.t libdate-manip-perl-6.52/t/dm5.date_delta_sign.t --- libdate-manip-perl-6.51/t/dm5.date_delta_sign.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_delta_sign.t 2015-12-01 14:34:40.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (date,delta)'; +$t = new Test::Inter 'DM5 :: DateCalc (date,delta)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_french.t libdate-manip-perl-6.52/t/dm5.date_french.t --- libdate-manip-perl-6.51/t/dm5.date_french.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_french.t 2015-12-01 14:34:42.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Date (French)'; +$t = new Test::Inter 'DM5 :: Date (French)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_german.t libdate-manip-perl-6.52/t/dm5.date_german.t --- libdate-manip-perl-6.51/t/dm5.date_german.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_german.t 2015-12-01 14:34:44.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Date (German)'; +$t = new Test::Inter 'DM5 :: Date (German)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_misc_a.t libdate-manip-perl-6.52/t/dm5.date_misc_a.t --- libdate-manip-perl-6.51/t/dm5.date_misc_a.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_misc_a.t 2015-12-01 14:34:46.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Date (Internal=1)'; +$t = new Test::Inter 'DM5 :: Date (Internal=1)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_misc_b.t libdate-manip-perl-6.52/t/dm5.date_misc_b.t --- libdate-manip-perl-6.51/t/dm5.date_misc_b.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_misc_b.t 2015-12-01 14:34:49.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Date (Internal=2)'; +$t = new Test::Inter 'DM5 :: Date (Internal=2)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_romanian.t libdate-manip-perl-6.52/t/dm5.date_romanian.t --- libdate-manip-perl-6.51/t/dm5.date_romanian.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_romanian.t 2015-12-01 14:34:51.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Date (Romanian)'; +$t = new Test::Inter 'DM5 :: Date (Romanian)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date.t libdate-manip-perl-6.52/t/dm5.date.t --- libdate-manip-perl-6.51/t/dm5.date.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date.t 2015-12-01 14:34:17.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Date'; +$t = new Test::Inter 'DM5 :: Date'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_today_0.t libdate-manip-perl-6.52/t/dm5.date_today_0.t --- libdate-manip-perl-6.51/t/dm5.date_today_0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_today_0.t 2015-12-01 14:34:56.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Date (today/now TodayIsMidnight=1)'; +$t = new Test::Inter 'DM5 :: Date (today/now TodayIsMidnight=1)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.date_today_1.t libdate-manip-perl-6.52/t/dm5.date_today_1.t --- libdate-manip-perl-6.51/t/dm5.date_today_1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.date_today_1.t 2015-12-01 14:35:00.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Date (today/now TodayIsMidnight=0)'; +$t = new Test::Inter 'DM5 :: Date (today/now TodayIsMidnight=0)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.delta_a.t libdate-manip-perl-6.52/t/dm5.delta_a.t --- libdate-manip-perl-6.51/t/dm5.delta_a.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.delta_a.t 2015-12-01 14:35:02.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Delta'; +$t = new Test::Inter 'DM5 :: Delta'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.delta_b.t libdate-manip-perl-6.52/t/dm5.delta_b.t --- libdate-manip-perl-6.51/t/dm5.delta_b.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.delta_b.t 2015-12-01 14:35:05.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Delta (signs)'; +$t = new Test::Inter 'DM5 :: Delta (signs)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.delta_delta_0.t libdate-manip-perl-6.52/t/dm5.delta_delta_0.t --- libdate-manip-perl-6.51/t/dm5.delta_delta_0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.delta_delta_0.t 2015-12-01 14:35:08.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (delta,delta,exact)'; +$t = new Test::Inter 'DM5 :: DateCalc (delta,delta,exact)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.delta_delta_1.t libdate-manip-perl-6.52/t/dm5.delta_delta_1.t --- libdate-manip-perl-6.51/t/dm5.delta_delta_1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.delta_delta_1.t 2015-12-01 14:35:10.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (delta,delta,approx)'; +$t = new Test::Inter 'DM5 :: DateCalc (delta,delta,approx)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.delta_delta_2a.t libdate-manip-perl-6.52/t/dm5.delta_delta_2a.t --- libdate-manip-perl-6.51/t/dm5.delta_delta_2a.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.delta_delta_2a.t 2015-12-01 14:35:13.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (delta,delta,business 8:00-5:00)'; +$t = new Test::Inter 'DM5 :: DateCalc (delta,delta,business 8:00-5:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.delta_delta_2b.t libdate-manip-perl-6.52/t/dm5.delta_delta_2b.t --- libdate-manip-perl-6.51/t/dm5.delta_delta_2b.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.delta_delta_2b.t 2015-12-01 14:35:16.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (delta,delta,business 8:30-5:00)'; +$t = new Test::Inter 'DM5 :: DateCalc (delta,delta,business 8:30-5:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.delta_format.t libdate-manip-perl-6.52/t/dm5.delta_format.t --- libdate-manip-perl-6.51/t/dm5.delta_format.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.delta_format.t 2015-12-01 14:35:18.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'FormatDelta'; +$t = new Test::Inter 'DM5 :: FormatDelta'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.delta_romanian.t libdate-manip-perl-6.52/t/dm5.delta_romanian.t --- libdate-manip-perl-6.51/t/dm5.delta_romanian.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.delta_romanian.t 2015-12-01 14:35:20.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (Romanian,delta)'; +$t = new Test::Inter 'DM5 :: DateCalc (Romanian,delta)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.events.t libdate-manip-perl-6.52/t/dm5.events.t --- libdate-manip-perl-6.51/t/dm5.events.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.events.t 2015-12-01 14:35:23.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Event_List'; +$t = new Test::Inter 'DM5 :: Event_List'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.getnext.t libdate-manip-perl-6.52/t/dm5.getnext.t --- libdate-manip-perl-6.51/t/dm5.getnext.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.getnext.t 2015-12-01 14:35:26.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'GetNext'; +$t = new Test::Inter 'DM5 :: GetNext'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.getprev.t libdate-manip-perl-6.52/t/dm5.getprev.t --- libdate-manip-perl-6.51/t/dm5.getprev.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.getprev.t 2015-12-01 14:35:28.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'GetPrev'; +$t = new Test::Inter 'DM5 :: GetPrev'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.normalize_business.t libdate-manip-perl-6.52/t/dm5.normalize_business.t --- libdate-manip-perl-6.51/t/dm5.normalize_business.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.normalize_business.t 2015-12-01 14:35:31.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Normalize (after business day)'; +$t = new Test::Inter 'DM5 :: Normalize (after business day)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.nthday.t libdate-manip-perl-6.52/t/dm5.nthday.t --- libdate-manip-perl-6.51/t/dm5.nthday.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.nthday.t 2015-12-01 14:35:33.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'NthDayOfYear'; +$t = new Test::Inter 'DM5 :: NthDayOfYear'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.recur_0.t libdate-manip-perl-6.52/t/dm5.recur_0.t --- libdate-manip-perl-6.51/t/dm5.recur_0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.recur_0.t 2015-12-01 14:35:35.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'ParseRecur'; +$t = new Test::Inter 'DM5 :: ParseRecur'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.recur_1.t libdate-manip-perl-6.52/t/dm5.recur_1.t --- libdate-manip-perl-6.51/t/dm5.recur_1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.recur_1.t 2015-12-01 14:35:38.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'ParseRecur (English)'; +$t = new Test::Inter 'DM5 :: ParseRecur (English)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.settime.t libdate-manip-perl-6.52/t/dm5.settime.t --- libdate-manip-perl-6.51/t/dm5.settime.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.settime.t 2015-12-01 14:35:41.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'SetTime'; +$t = new Test::Inter 'DM5 :: SetTime'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/dm5.unixdate.t libdate-manip-perl-6.52/t/dm5.unixdate.t --- libdate-manip-perl-6.51/t/dm5.unixdate.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/dm5.unixdate.t 2015-12-01 14:35:43.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'UnixDate'; +$t = new Test::Inter 'DM5 :: UnixDate'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/New_Years.1.cnf libdate-manip-perl-6.52/t/New_Years.1.cnf --- libdate-manip-perl-6.51/t/New_Years.1.cnf 1970-01-01 00:00:00.000000000 +0000 +++ libdate-manip-perl-6.52/t/New_Years.1.cnf 2015-12-01 15:58:29.000000000 +0000 @@ -0,0 +1,4 @@ +*HOLIDAYS + +1*1:0:1:0:0:0 = New Year's Day + diff -Nru libdate-manip-perl-6.51/t/New_Years.2.cnf libdate-manip-perl-6.52/t/New_Years.2.cnf --- libdate-manip-perl-6.51/t/New_Years.2.cnf 1970-01-01 00:00:00.000000000 +0000 +++ libdate-manip-perl-6.52/t/New_Years.2.cnf 2015-12-01 15:49:29.000000000 +0000 @@ -0,0 +1,4 @@ +*HOLIDAYS + +1*1:0:1:0:0:0*DWD = New Year's Day + diff -Nru libdate-manip-perl-6.51/t/New_Years.3.cnf libdate-manip-perl-6.52/t/New_Years.3.cnf --- libdate-manip-perl-6.51/t/New_Years.3.cnf 1970-01-01 00:00:00.000000000 +0000 +++ libdate-manip-perl-6.52/t/New_Years.3.cnf 2015-12-01 15:51:32.000000000 +0000 @@ -0,0 +1,14 @@ +*HOLIDAYS + +# This is a holiday section that fits the Federal Reserve definition: +# holidays on Sunday are observed Monday +# holidays on any other day (including Saturday) are observed on +# that day + +# Saturday +1*1:0:1:0:0:0*NBD,BD1,IBD,FD1 = New Year's Day +# Sunday (observed Monday) +1*1:0:1:0:0:0*NBD,BD1,NBD,FD2 = New Year's Day +# M-F +1*1:0:1:0:0:0*IBD = New Year's Day + diff -Nru libdate-manip-perl-6.51/t/New_Years.4.cnf libdate-manip-perl-6.52/t/New_Years.4.cnf --- libdate-manip-perl-6.51/t/New_Years.4.cnf 1970-01-01 00:00:00.000000000 +0000 +++ libdate-manip-perl-6.52/t/New_Years.4.cnf 2015-12-01 17:35:19.000000000 +0000 @@ -0,0 +1,14 @@ +*HOLIDAYS + +# This is a holiday section that fits the Federal Reserve definition: +# holidays on Sunday are observed Monday +# holidays on any other day (including Saturday) are observed on +# that day + +# Saturday +1*1:0:1:0:0:0*IW6 = New Year's Day +# Sunday (observed Monday) +1*1:0:1:0:0:0*IW7,FD1 = New Year's Day +# M-F +1*1:0:1:0:0:0*IBD = New Year's Day + diff -Nru libdate-manip-perl-6.51/t/orig.convtz.t libdate-manip-perl-6.52/t/orig.convtz.t --- libdate-manip-perl-6.51/t/orig.convtz.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.convtz.t 2015-12-01 14:36:04.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Date_ConvTZ'; +$t = new Test::Inter 'Orig :: Date_ConvTZ'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.datecalc.date_date.t libdate-manip-perl-6.52/t/orig.datecalc.date_date.t --- libdate-manip-perl-6.51/t/orig.datecalc.date_date.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.datecalc.date_date.t 2015-12-01 14:36:09.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (date,date)'; +$t = new Test::Inter 'Orig :: DateCalc (date,date)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.datecalc.date_delta.0.t libdate-manip-perl-6.52/t/orig.datecalc.date_delta.0.t --- libdate-manip-perl-6.51/t/orig.datecalc.date_delta.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.datecalc.date_delta.0.t 2015-12-01 14:36:11.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (date,delta)'; +$t = new Test::Inter 'Orig :: DateCalc (date,delta)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.datecalc.date_delta.1.t libdate-manip-perl-6.52/t/orig.datecalc.date_delta.1.t --- libdate-manip-perl-6.51/t/orig.datecalc.date_delta.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.datecalc.date_delta.1.t 2015-12-01 14:36:13.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'DateCalc (date,delta,business 8:30-5:00)'; +$t = new Test::Inter 'Orig :: DateCalc (date,delta,business 8:30-5:00)'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.date_isholiday.t libdate-manip-perl-6.52/t/orig.date_isholiday.t --- libdate-manip-perl-6.51/t/orig.date_isholiday.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.date_isholiday.t 2015-12-01 14:36:07.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Date_IsHoliday'; +$t = new Test::Inter 'Orig :: Date_IsHoliday'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.delta_format.t libdate-manip-perl-6.52/t/orig.delta_format.t --- libdate-manip-perl-6.51/t/orig.delta_format.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.delta_format.t 2015-12-01 14:36:16.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Delta_Format'; +$t = new Test::Inter 'Orig :: Delta_Format'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.eventslist.t libdate-manip-perl-6.52/t/orig.eventslist.t --- libdate-manip-perl-6.51/t/orig.eventslist.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.eventslist.t 2015-12-01 14:36:18.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Event_List'; +$t = new Test::Inter 'Orig :: Event_List'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.getnext.t libdate-manip-perl-6.52/t/orig.getnext.t --- libdate-manip-perl-6.51/t/orig.getnext.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.getnext.t 2015-12-01 14:36:20.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'GetNext'; +$t = new Test::Inter 'Orig :: GetNext'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.getprev.t libdate-manip-perl-6.52/t/orig.getprev.t --- libdate-manip-perl-6.51/t/orig.getprev.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.getprev.t 2015-12-01 14:36:23.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'GetPrev'; +$t = new Test::Inter 'Orig :: GetPrev'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.nthdayofyear.t libdate-manip-perl-6.52/t/orig.nthdayofyear.t --- libdate-manip-perl-6.51/t/orig.nthdayofyear.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.nthdayofyear.t 2015-12-01 14:36:25.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'Date_NthDayOfYear'; +$t = new Test::Inter 'Orig :: Date_NthDayOfYear'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.parsedatedelta.t libdate-manip-perl-6.52/t/orig.parsedatedelta.t --- libdate-manip-perl-6.51/t/orig.parsedatedelta.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.parsedatedelta.t 2015-12-01 14:36:28.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'ParseDateDelta'; +$t = new Test::Inter 'Orig :: ParseDateDelta'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.parsedateformat.t libdate-manip-perl-6.52/t/orig.parsedateformat.t --- libdate-manip-perl-6.51/t/orig.parsedateformat.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.parsedateformat.t 2015-12-01 14:36:30.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'GetNext'; +$t = new Test::Inter 'Orig :: GetNext'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.parsedatestring.t libdate-manip-perl-6.52/t/orig.parsedatestring.t --- libdate-manip-perl-6.51/t/orig.parsedatestring.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.parsedatestring.t 2015-12-01 14:36:33.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'ParseDateString'; +$t = new Test::Inter 'Orig :: ParseDateString'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.parserecur.t libdate-manip-perl-6.52/t/orig.parserecur.t --- libdate-manip-perl-6.51/t/orig.parserecur.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.parserecur.t 2015-12-01 14:36:35.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'ParseRecur'; +$t = new Test::Inter 'Orig :: ParseRecur'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.settime.t libdate-manip-perl-6.52/t/orig.settime.t --- libdate-manip-perl-6.51/t/orig.settime.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.settime.t 2015-12-01 14:36:38.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'SetTime'; +$t = new Test::Inter 'Orig :: SetTime'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/orig.unixdate.t libdate-manip-perl-6.52/t/orig.unixdate.t --- libdate-manip-perl-6.51/t/orig.unixdate.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/orig.unixdate.t 2015-12-01 14:36:40.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'UnixDate'; +$t = new Test::Inter 'Orig :: UnixDate'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/pod.t libdate-manip-perl-6.52/t/pod.t --- libdate-manip-perl-6.51/t/pod.t 2015-09-01 12:49:23.000000000 +0000 +++ libdate-manip-perl-6.52/t/pod.t 2015-12-01 18:57:13.000000000 +0000 @@ -43,11 +43,19 @@ chomp(@ign); } +my @dirs = (); +if (-f "$testdir/pod.dirs") { + open(IN,"$testdir/pod.dirs"); + @dirs = ; + close(IN); + chomp(@dirs); +} + chdir("..") if ($testdir eq '.'); if (@ign) { - my @file = all_pod_files(); + my @file = all_pod_files(@dirs); FILE: foreach my $file (@file) { @@ -59,7 +67,7 @@ done_testing(); } else { - all_pod_files_ok(); + all_pod_files_ok(@dirs); } diff -Nru libdate-manip-perl-6.51/t/recur.dates.0.t libdate-manip-perl-6.52/t/recur.dates.0.t --- libdate-manip-perl-6.51/t/recur.dates.0.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/recur.dates.0.t 2015-12-01 17:12:40.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'dates'; +$t = new Test::Inter 'recur :: std'; $testdir = ''; $testdir = $t->testdir(); @@ -1303,7 +1303,6 @@ ### Test slow dates with base dates outside the range. 0:2*4--1:2:0:0:0 -__undef__ 2011020100:00:00 2011070100:00:00 2011110100:00:00 @@ -1313,7 +1312,6 @@ 2011102500:00:00 0:2*4--1:2:0:0:0 -__undef__ 2011120100:00:00 2011070100:00:00 2011110100:00:00 @@ -1323,7 +1321,6 @@ 2011102500:00:00 0:2*5--1:2:0:0:0 -__undef__ 2011010100:00:00 2011020100:00:00 2011110100:00:00 diff -Nru libdate-manip-perl-6.51/t/recur.dates.1.t libdate-manip-perl-6.52/t/recur.dates.1.t --- libdate-manip-perl-6.51/t/recur.dates.1.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/recur.dates.1.t 2015-12-01 14:37:47.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'dates (old tests)'; +$t = new Test::Inter 'recur :: modifiers'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/recur.dates.2.t libdate-manip-perl-6.52/t/recur.dates.2.t --- libdate-manip-perl-6.51/t/recur.dates.2.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/recur.dates.2.t 2015-12-01 14:37:54.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'dates'; +$t = new Test::Inter 'recur :: full recur'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/recur.dates.3.t libdate-manip-perl-6.52/t/recur.dates.3.t --- libdate-manip-perl-6.51/t/recur.dates.3.t 1970-01-01 00:00:00.000000000 +0000 +++ libdate-manip-perl-6.52/t/recur.dates.3.t 2015-12-01 16:55:48.000000000 +0000 @@ -0,0 +1,83 @@ +#!/usr/bin/perl -w + +use Test::Inter; +$t = new Test::Inter 'recur :: unmodified date range'; +$testdir = ''; +$testdir = $t->testdir(); + +use Date::Manip; +if (DateManipVersion() >= 6.00) { + $t->feature("DM6",1); +} + +$t->skip_all('Date::Manip 6.xx required','DM6'); + + +sub test { + ($recur,$arg1,$arg2) = @_; + $err = $obj->parse($recur); + if ($err) { + return $obj->err(); + } else { + $start = undef; + $end = undef; + if (defined($arg1)) { + $start = $obj->new_date(); + $start->parse($arg1); + } + if (defined($arg2)) { + $end = $obj->new_date(); + $end->parse($arg2); + } + @dates = $obj->dates($start,$end); + @ret = (); + foreach my $d (@dates) { + $v = $d->value(); + push(@ret,$v); + } + return @ret; + } +} + +$obj = new Date::Manip::Recur; +$obj->config("forcedate","2000-01-21-00:00:00,America/New_York"); + +$tests=" + +1*1:0:1:0:0:0***2004010100:00:00*2007123123:59:59 + => + 2004010100:00:00 + 2005010100:00:00 + 2006010100:00:00 + 2007010100:00:00 + +1*1:0:1:0:0:0*dwd**2004010100:00:00*2007123123:59:59 + => + 2004010100:00:00 + 2004123100:00:00 + 2006010200:00:00 + 2007010100:00:00 + +1*1:0:1:0:0:0*dwd**2005010100:00:00*2005123123:59:59 + => + +1*1:0:1:0:0:0*dwd**2005010100:00:00*2005123123:59:59*1 + => + 2004123100:00:00 + +"; + +$t->tests(func => \&test, + tests => $tests); +$t->done_testing(); + +#Local Variables: +#mode: cperl +#indent-tabs-mode: nil +#cperl-indent-level: 3 +#cperl-continued-statement-offset: 2 +#cperl-continued-brace-offset: 0 +#cperl-brace-offset: 0 +#cperl-brace-imaginary-offset: 0 +#cperl-label-offset: 0 +#End: diff -Nru libdate-manip-perl-6.51/t/recur.frequency.t libdate-manip-perl-6.52/t/recur.frequency.t --- libdate-manip-perl-6.51/t/recur.frequency.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/recur.frequency.t 2015-12-01 14:38:03.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'frequency'; +$t = new Test::Inter 'recur :: frequency'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/recur.init_args.t libdate-manip-perl-6.52/t/recur.init_args.t --- libdate-manip-perl-6.51/t/recur.init_args.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/recur.init_args.t 2015-12-01 14:38:07.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter '_init_args'; +$t = new Test::Inter 'recur :: init_args'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/recur.is.t libdate-manip-perl-6.52/t/recur.is.t --- libdate-manip-perl-6.51/t/recur.is.t 2015-08-19 12:22:29.000000000 +0000 +++ libdate-manip-perl-6.52/t/recur.is.t 2015-12-01 14:38:14.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'is'; +$t = new Test::Inter 'recur :: is'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/recur.nth.t libdate-manip-perl-6.52/t/recur.nth.t --- libdate-manip-perl-6.51/t/recur.nth.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/recur.nth.t 2015-12-01 14:38:25.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'nth/next/prev'; +$t = new Test::Inter 'recur :: nth/next/prev'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/runtests.bat libdate-manip-perl-6.52/t/runtests.bat --- libdate-manip-perl-6.51/t/runtests.bat 2015-09-01 12:49:41.000000000 +0000 +++ libdate-manip-perl-6.52/t/runtests.bat 2015-12-01 18:57:30.000000000 +0000 @@ -55,6 +55,7 @@ perl -I../lib date.list_holidays.1.t 1 perl -I../lib date.list_holidays.2.t 1 perl -I../lib date.list_holidays.3.t 1 +perl -I../lib date.list_holidays.4.t 1 perl -I../lib date.nearest_business_day.t 1 perl -I../lib date.next.t 1 perl -I../lib date.next_business_day.t 1 @@ -177,6 +178,7 @@ perl -I../lib recur.dates.0.t 1 perl -I../lib recur.dates.1.t 1 perl -I../lib recur.dates.2.t 1 +perl -I../lib recur.dates.3.t 1 perl -I../lib recur.frequency.t 1 perl -I../lib recur.init_args.t 1 perl -I../lib recur.is.t 1 diff -Nru libdate-manip-perl-6.51/t/tz.all_periods.t libdate-manip-perl-6.52/t/tz.all_periods.t --- libdate-manip-perl-6.51/t/tz.all_periods.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/tz.all_periods.t 2015-12-01 14:38:44.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'all_periods'; +$t = new Test::Inter 'tz :: all_periods'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/tz.convert_from_gmt.t libdate-manip-perl-6.52/t/tz.convert_from_gmt.t --- libdate-manip-perl-6.51/t/tz.convert_from_gmt.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/tz.convert_from_gmt.t 2015-12-01 14:38:48.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'convert_from_gmt'; +$t = new Test::Inter 'tz :: convert_from_gmt'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/tz.convert.t libdate-manip-perl-6.52/t/tz.convert.t --- libdate-manip-perl-6.51/t/tz.convert.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/tz.convert.t 2015-12-01 14:38:46.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'convert'; +$t = new Test::Inter 'tz :: convert'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/tz.convert_to_gmt.t libdate-manip-perl-6.52/t/tz.convert_to_gmt.t --- libdate-manip-perl-6.51/t/tz.convert_to_gmt.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/tz.convert_to_gmt.t 2015-12-01 14:38:50.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'convert_to_gmt'; +$t = new Test::Inter 'tz :: convert_to_gmt'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/tzdata._ruleinfo.t libdate-manip-perl-6.52/t/tzdata._ruleinfo.t --- libdate-manip-perl-6.51/t/tzdata._ruleinfo.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/tzdata._ruleinfo.t 2015-12-01 14:39:23.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter '_ruleInfo'; +$t = new Test::Inter 'tzdata :: _ruleInfo'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/tzdata._zoneinfo.t libdate-manip-perl-6.52/t/tzdata._zoneinfo.t --- libdate-manip-perl-6.51/t/tzdata._zoneinfo.t 2014-11-21 17:40:00.000000000 +0000 +++ libdate-manip-perl-6.52/t/tzdata._zoneinfo.t 2015-12-01 14:39:26.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter '_zoneInfo'; +$t = new Test::Inter 'tzdata :: _zoneInfo'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/tz.date_period.t libdate-manip-perl-6.52/t/tz.date_period.t --- libdate-manip-perl-6.51/t/tz.date_period.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/tz.date_period.t 2015-12-01 14:38:52.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'date_period'; +$t = new Test::Inter 'tz :: date_period'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/tz.define_abbrev.t libdate-manip-perl-6.52/t/tz.define_abbrev.t --- libdate-manip-perl-6.51/t/tz.define_abbrev.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/tz.define_abbrev.t 2015-12-01 14:38:53.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'define_abbrev'; +$t = new Test::Inter 'tz :: define_abbrev'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/tz.define_alias.t libdate-manip-perl-6.52/t/tz.define_alias.t --- libdate-manip-perl-6.51/t/tz.define_alias.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/tz.define_alias.t 2015-12-01 14:38:56.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'define_alias'; +$t = new Test::Inter 'tz :: define_alias'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/tz.define_offset.t libdate-manip-perl-6.52/t/tz.define_offset.t --- libdate-manip-perl-6.51/t/tz.define_offset.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/tz.define_offset.t 2015-12-01 14:38:58.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'define_offset'; +$t = new Test::Inter 'tz :: define_offset'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/tz.periods.t libdate-manip-perl-6.52/t/tz.periods.t --- libdate-manip-perl-6.51/t/tz.periods.t 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/tz.periods.t 2015-12-01 14:39:03.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'periods'; +$t = new Test::Inter 'tz :: periods'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/tz.zone.t libdate-manip-perl-6.52/t/tz.zone.t --- libdate-manip-perl-6.51/t/tz.zone.t 2015-06-01 13:31:50.000000000 +0000 +++ libdate-manip-perl-6.52/t/tz.zone.t 2015-12-01 14:39:05.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl -w use Test::Inter; -$t = new Test::Inter 'zone'; +$t = new Test::Inter 'tz :: zone'; $testdir = ''; $testdir = $t->testdir(); diff -Nru libdate-manip-perl-6.51/t/xtra.now.tx libdate-manip-perl-6.52/t/xtra.now.tx --- libdate-manip-perl-6.51/t/xtra.now.tx 2014-09-10 19:37:15.000000000 +0000 +++ libdate-manip-perl-6.52/t/xtra.now.tx 1970-01-01 00:00:00.000000000 +0000 @@ -1,130 +0,0 @@ -#!/usr/bin/perl -w - -# This test script runs by hand and shows the difference between -# SetDate and ForceDate options. - -use Date::Manip; - -$date = new Date::Manip::Date; -$dmb = $$date{"objs"}{"base"}; - -sub _print { - my($label,$date) = @_; - my $d = $date->value(); - my ($z) = $dmb->_now("tz"); - - print $label," "x(40-length($label)),"$d $z\n"; -} - -# SetDate - -print "There will be a 5 second pause between inputs...\n\n"; - -$date->config("SetDate","now,America/New_York"); - -$date->parse("now"); -_print("SetDate=now,America/New_York",$date); - -sleep 5; - -$date->parse("now"); -_print("+ 5 seconds",$date); - -print "\n"; - -$date->config("SetDate","zone,America/Chicago"); - -$date->parse("now"); -_print("SetDate=zone,America/Chicago",$date); - -sleep 5; - -$date->parse("now"); -_print("+ 5 seconds",$date); - -print "\n"; - -$date->config("SetDate","2000-01-01-12:00:00"); - -$date->parse("now"); -_print("SetDate=2000-01-01-12:00:00",$date); - -sleep 5; - -$date->parse("now"); -_print("+ 5 seconds",$date); - -print "\n"; - -$date->config("SetDate","2000-01-01-12:00:00,America/Denver"); - -$date->parse("now"); -_print("SetDate=2000-01-01-12:00:00,Denver",$date); - -sleep 5; - -$date->parse("now"); -_print("+ 5 seconds",$date); - -print "\n"; - -# ForceDate - -$date->config("ForceDate","now,America/New_York"); - -$date->parse("now"); -_print("ForceDate=now,America/New_York",$date); - -sleep 5; - -$date->parse("now"); -_print("+ 5 seconds",$date); - -print "\n"; - -$date->config("ForceDate","zone,America/Chicago"); - -$date->parse("now"); -_print("ForceDate=zone,America/Chicago",$date); - -sleep 5; - -$date->parse("now"); -_print("+ 5 seconds",$date); - -print "\n"; - -$date->config("ForceDate","2000-01-01-12:00:00"); - -$date->parse("now"); -_print("ForceDate=2000-01-01-12:00:00",$date); - -sleep 5; - -$date->parse("now"); -_print("+ 5 seconds",$date); - -print "\n"; - -$date->config("ForceDate","2000-01-01-12:00:00,America/Denver"); - -$date->parse("now"); -_print("ForceDate=2000-01-01-12:00:00,Denver",$date); - -sleep 5; - -$date->parse("now"); -_print("+ 5 seconds",$date); - -print "\n"; - -# Local Variables: -# mode: cperl -# indent-tabs-mode: nil -# cperl-indent-level: 3 -# cperl-continued-statement-offset: 2 -# cperl-continued-brace-offset: 0 -# cperl-brace-offset: 0 -# cperl-brace-imaginary-offset: 0 -# cperl-label-offset: 0 -# End: diff -Nru libdate-manip-perl-6.51/.travis.yml libdate-manip-perl-6.52/.travis.yml --- libdate-manip-perl-6.51/.travis.yml 2015-08-19 12:29:25.000000000 +0000 +++ libdate-manip-perl-6.52/.travis.yml 2015-09-22 11:59:45.000000000 +0000 @@ -2,7 +2,6 @@ sudo: false os: - linux - - osx perl: - "5.20" - "5.18"