usb:v0627p0001d0000dc00dsc00dp00ic03isc01ip01in00
  $   H403358_I|Mjq؂ <o f    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access this resource.</p>
<p>Additionally, a 403 Forbidden
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>
  
   355 c    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>
  "   l=J76˷ʘoN=     escape_char  /
comment_char  %
% Irish language locale for Ireland with Euro
% Language: ga
% Territory: IE
% Option: euro
% Date: 2000-08-21
% Users: general
% Charset: ISO-8859-15
% Distribution and use is free, also
% for commercial purposes.

LC_IDENTIFICATION
title      "Irish locale for Ireland with Euro"
source     "Free Software Foundation, Inc."
address    "http:////www.gnu.org//software//libc//"
contact    ""
email      "bug-glibc-locales@gnu.org"
tel        ""
fax        ""
language   "Irish"
territory  "Ireland"
revision   "1.0"
date       "2000-08-21"
%
category  "ga_IE@euro:2000";LC_IDENTIFICATION
category  "ga_IE@euro:2000";LC_CTYPE
category  "ga_IE@euro:2000";LC_COLLATE
category  "ga_IE@euro:2000";LC_TIME
category  "ga_IE@euro:2000";LC_NUMERIC
category  "ga_IE@euro:2000";LC_MONETARY
category  "ga_IE@euro:2000";LC_MESSAGES
category  "ga_IE@euro:2000";LC_PAPER
category  "ga_IE@euro:2000";LC_NAME
category  "ga_IE@euro:2000";LC_ADDRESS
category  "ga_IE@euro:2000";LC_TELEPHONE

END LC_IDENTIFICATION

LC_CTYPE
copy "ga_IE"
END LC_CTYPE

LC_COLLATE
copy "iso14651_t1"
END LC_COLLATE

LC_MONETARY
copy "ga_IE"
END LC_MONETARY

LC_NUMERIC
copy "ga_IE"
END LC_NUMERIC

LC_TIME
copy "ga_IE"
END LC_TIME

LC_MESSAGES
copy "ga_IE"
END LC_MESSAGES

LC_PAPER
copy "ga_IE"
END LC_PAPER

LC_TELEPHONE
copy "ga_IE"
END LC_TELEPHONE

LC_MEASUREMENT
copy "ga_IE"
END LC_MEASUREMENT

LC_NAME
copy "ga_IE"
END LC_NAME

LC_ADDRESS
copy "ga_IE"
END LC_ADDRESS
     	h      	disabled
  
   355 c    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>
     h      0x0008
  /   lY> ٔn.\bѿ.7_ub&=LV[( U    package
    DateTime;

use strict;
use warnings;

use DateTime::LeapSecond;

sub _normalize_tai_seconds {
    return if grep { $_ == INFINITY() || $_ == NEG_INFINITY() } @_[ 1, 2 ];

    # This must be after checking for infinity, because it breaks in
    # presence of use integer !
    use integer;

    my $adj;

    if ( $_[2] < 0 ) {
        $adj = ( $_[2] - 86399 ) / 86400;
    }
    else {
        $adj = $_[2] / 86400;
    }

    $_[1] += $adj;

    $_[2] -= $adj * 86400;
}

sub _normalize_leap_seconds {

    # args: 0 => days, 1 => seconds
    my $delta_days;

    use integer;

    # rough adjust - can adjust many days
    if ( $_[2] < 0 ) {
        $delta_days = ( $_[2] - 86399 ) / 86400;
    }
    else {
        $delta_days = $_[2] / 86400;
    }

    my $new_day = $_[1] + $delta_days;
    my $delta_seconds
        = ( 86400 * $delta_days )
        + DateTime::LeapSecond::leap_seconds($new_day)
        - DateTime::LeapSecond::leap_seconds( $_[1] );

    $_[2] -= $delta_seconds;
    $_[1] = $new_day;

    # fine adjust - up to 1 day
    my $day_length = DateTime::LeapSecond::day_length($new_day);
    if ( $_[2] >= $day_length ) {
        $_[2] -= $day_length;
        $_[1]++;
    }
 