/usr/share/perl5/Gscan2pdf/Page.pm is in gscan2pdf 2.1.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 | package Gscan2pdf::Page;
use 5.008005;
use strict;
use warnings;
use feature 'switch';
no if $] >= 5.018, warnings => 'experimental::smartmatch';
use Carp;
use Glib qw(TRUE FALSE); # To get TRUE and FALSE
use File::Copy;
use File::Temp; # To create temporary files
use HTML::TokeParser;
use HTML::Entities;
use Image::Magick;
use Encode;
use POSIX qw(locale_h);
use Data::UUID;
use Text::Balanced qw ( extract_bracketed );
use English qw( -no_match_vars ); # for $ERRNO
use Gscan2pdf::Document;
use Gscan2pdf::Translation '__'; # easier to extract strings with xgettext
use Readonly;
Readonly my $CM_PER_INCH => 2.54;
Readonly my $MM_PER_CM => 10;
Readonly my $MM_PER_INCH => $CM_PER_INCH * $MM_PER_CM;
Readonly my $PAGE_TOLERANCE => 0.02;
Readonly my $EMPTY_LIST => -1;
Readonly my $HALF => 0.5;
my $EMPTY = q{};
my $SPACE = q{ };
my $DOUBLE_QUOTES = q{"};
BEGIN {
use Exporter ();
our ( $VERSION, @EXPORT_OK, %EXPORT_TAGS );
$VERSION = '2.1.0';
use base qw(Exporter);
%EXPORT_TAGS = (); # eg: TAG => [ qw!name1 name2! ],
# your exported package globals go here,
# as well as any optionally exported functions
@EXPORT_OK = qw();
}
our @EXPORT_OK;
my ($logger);
my $uuid = Data::UUID->new;
sub new {
my ( $class, %options ) = @_;
my $self = {};
if ( not defined $options{filename} ) {
croak 'Error: filename not supplied';
}
if ( not -f $options{filename} ) { croak 'Error: filename not found' }
if ( not defined $options{format} ) {
croak 'Error: format not supplied';
}
$logger->info(
"New page filename $options{filename}, format $options{format}");
for ( keys %options ) {
$self->{$_} = $options{$_};
}
$self->{uuid} = $uuid->create_str();
# copy or move image to session directory
my %suffix = (
'Portable Network Graphics' => '.png',
'Joint Photographic Experts Group JFIF format' => '.jpg',
'Tagged Image File Format' => '.tif',
'Portable anymap' => '.pnm',
'Portable pixmap format (color)' => '.ppm',
'Portable graymap format (gray scale)' => '.pgm',
'Portable bitmap format (black and white)' => '.pbm',
'CompuServe graphics interchange format' => '.gif',
);
$self->{filename} = File::Temp->new(
DIR => $options{dir},
SUFFIX => $suffix{ $options{format} },
UNLINK => FALSE,
);
if ( defined $options{delete} and $options{delete} ) {
move( $options{filename}, $self->{filename} )
or croak sprintf __('Error importing image %s: %s'),
$options{filename}, $ERRNO;
}
else {
copy( $options{filename}, $self->{filename} )
or croak sprintf __('Error importing image %s: %s'),
$options{filename}, $ERRNO;
}
bless $self, $class;
# Add units if not defined
if ( $suffix{ $options{format} } !~ /^[.]p.m$/xsm ) {
my $image = $self->im_object;
my $units = $image->Get('units');
if ( $units =~ /undefined/xsm ) {
$image->Write(
units => 'PixelsPerInch',
density => $self->resolution,
filename => $self->{filename}
);
}
}
return $self;
}
sub set_logger {
( my $class, $logger ) = @_;
return;
}
sub clone {
my ( $self, $copy_image ) = @_;
my $new = {};
for ( keys %{$self} ) {
$new->{$_} = $self->{$_};
}
$new->{uuid} = $uuid->create_str();
if ($copy_image) {
my $suffix;
if ( $self->{filename} =~ /([.]\w*)$/xsm ) { $suffix = $1 }
$new->{filename} =
File::Temp->new( DIR => $self->{dir}, SUFFIX => $suffix );
$logger->info(
"Cloning $self->{filename} ($self->{uuid}) -> $new->{filename} ($new->{uuid})"
);
# stringify filename to prevent copy from mangling it
copy( "$self->{filename}", "$new->{filename}" )
or croak sprintf __('Error copying image %s: %s'),
$self->{filename}, $ERRNO;
}
bless $new, ref $self;
return $new;
}
# cloning File::Temp objects causes problems
sub freeze {
my ($self) = @_;
my $new = $self->clone;
if ( ref( $new->{filename} ) eq 'File::Temp' ) {
$new->{filename}->unlink_on_destroy(FALSE);
$new->{filename} = $self->{filename}->filename;
}
if ( ref( $new->{dir} ) eq 'File::Temp::Dir' ) {
$new->{dir} = $self->{dir}->dirname;
}
$new->{uuid} = $self->{uuid};
return $new;
}
sub thaw {
my ($self) = @_;
my $new = $self->clone;
my $suffix;
if ( $new->{filename} =~ /[.](\w*)$/xsm ) {
$suffix = $1;
}
my $filename = File::Temp->new( DIR => $new->{dir}, SUFFIX => ".$suffix" );
move( $new->{filename}, $filename );
$new->{filename} = $filename;
$new->{uuid} = $self->{uuid};
return $new;
}
# returns array of boxes with OCR text
sub boxes {
my ($self) = @_;
my $hocr = $self->{hocr};
if ( $hocr =~ /<body>([\s\S]*)<\/body>/xsm ) {
my $boxes = _hocr2boxes($hocr);
_prune_empty_branches($boxes);
return $boxes;
}
return [
{
type => 'page',
bbox => [ 0, 0, $self->{w}, $self->{h} ],
text => _decode_hocr($hocr)
}
];
}
# Unfortunately, there seems to be a case (tested in t/31_ocropus_utf8.t)
# where decode_entities doesn't work cleanly, so encode/decode to finally
# get good UTF-8
sub _decode_hocr {
my ($hocr) = @_;
return decode_utf8( encode_utf8( HTML::Entities::decode_entities($hocr) ) );
}
sub _hocr2boxes {
my ($hocr) = @_;
my $p = HTML::TokeParser->new( \$hocr );
my ( $data, @stack, $boxes );
while ( my $token = $p->get_token ) {
given ( $token->[0] ) {
when ('S') {
my ( $tag, %attrs ) = ( $token->[1], %{ $token->[2] } );
# new data point
$data = {};
if ( defined $attrs{class} and defined $attrs{title} ) {
_parse_tag_data( $attrs{title}, $data );
given ( $attrs{class} ) {
when (/_page$/xsm) {
$data->{type} = 'page';
push @{$boxes}, $data;
}
when (/_carea$/xsm) {
$data->{type} = 'column';
}
when (/_par$/xsm) {
$data->{type} = 'para';
}
when (/_line$/xsm) {
$data->{type} = 'line';
}
when (/_word$/xsm) {
$data->{type} = 'word';
}
}
# pick up previous pointer to add style
if ( not defined $data->{type} ) {
$data = $stack[-1];
}
# put information xocr_word information in parent ocr_word
if ( $data->{type} eq 'word'
and $stack[-1]{type} eq 'word' )
{
for ( keys %{$data} ) {
if ( not defined $stack[-1]{$_} ) {
$stack[-1]{$_} = $data->{$_};
}
elsif ( $_ ne 'type' ) {
$logger->warn("Ignoring $_=$data->{$_}");
}
}
# pick up previous pointer to add any later text
$data = $stack[-1];
}
else {
if ( defined $attrs{id} ) {
$data->{id} = $attrs{id};
}
# if we have previous data, add the new data to the
# contents of the previous data point
if ( defined $stack[-1]
and $data != $stack[-1]
and defined $data->{bbox} )
{
push @{ $stack[-1]{contents} }, $data;
}
}
}
# pick up previous pointer
# so that unknown tags don't break the chain
else {
$data = $stack[-1];
}
if ( defined $data ) {
if ( $tag eq 'strong' ) { push @{ $data->{style} }, 'Bold' }
if ( $tag eq 'em' ) { push @{ $data->{style} }, 'Italic' }
}
# put the new data point on the stack
push @stack, $data;
}
when ('T') {
if ( $token->[1] !~ /^\s*$/xsm ) {
$data->{text} = _decode_hocr( $token->[1] );
chomp $data->{text};
}
}
when ('E') {
# up a level
$data = pop @stack;
}
}
}
return $boxes;
}
sub _parse_tag_data {
my ( $title, $data ) = @_;
if ( $title =~ /\bbbox\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)/xsm ) {
if ( $1 != $3 and $2 != $4 ) { $data->{bbox} = [ $1, $2, $3, $4 ] }
}
if ( $title =~ /\btextangle\s+(\d+)/xsm ) { $data->{textangle} = $1 }
if ( $title =~ /\bx_wconf\s+(-?\d+)/xsm ) { $data->{confidence} = $1 }
if ( $title =~ /\bbaseline\s+((?:-?\d+(?:[.]\d+)?\s+)*-?\d+)/xsm ) {
my @values = split /\s+/sm, $1;
# make sure we at least have 2 coefficients
if ( $#values <= 0 ) { unshift @values, 0; }
$data->{baseline} = \@values;
}
return;
}
sub _prune_empty_branches {
my ($boxes) = @_;
if ( defined $boxes ) {
my $i = 0;
while ( $i <= $#{$boxes} ) {
my $child = $boxes->[$i];
_prune_empty_branches( $child->{contents} );
if ( $#{ $child->{contents} } == $EMPTY_LIST ) {
delete $child->{contents};
}
if ( $#{$boxes} > $EMPTY_LIST
and not( defined $child->{contents} or defined $child->{text} )
)
{
splice @{$boxes}, $i, 1;
}
else {
$i++;
}
}
}
return;
}
sub _pdftotext2boxes {
my ( $self, $html ) = @_;
my $p = HTML::TokeParser->new( \$html );
my ( $data, @stack, $boxes );
while ( my $token = $p->get_token ) {
given ( $token->[0] ) {
when ('S') {
my ( $tag, %attrs ) = ( $token->[1], %{ $token->[2] } );
# new data point
$data = {};
if ( $tag eq 'page' ) {
$data->{type} = $tag;
if ( defined $attrs{width} and defined $attrs{height} ) {
$data->{bbox} = [
0, 0,
scale( $attrs{width}, $self->resolution ),
scale( $attrs{height}, $self->resolution )
];
}
push @{$boxes}, $data;
}
elsif ( $tag eq 'word' ) {
$data->{type} = $tag;
if ( defined $attrs{xmin}
and defined $attrs{ymin}
and defined $attrs{xmax}
and defined $attrs{ymax} )
{
$data->{bbox} = [
scale( $attrs{xmin}, $self->resolution ),
scale( $attrs{ymin}, $self->resolution ),
scale( $attrs{xmax}, $self->resolution ),
scale( $attrs{ymax}, $self->resolution )
];
}
}
# if we have previous data, add the new data to the
# contents of the previous data point
if ( defined $stack[-1]
and $data != $stack[-1]
and defined $data->{bbox} )
{
push @{ $stack[-1]{contents} }, $data;
}
# put the new data point on the stack
if ( defined $data->{bbox} ) { push @stack, $data }
}
when ('T') {
if ( $token->[1] !~ /^\s*$/xsm ) {
$data->{text} = _decode_hocr( $token->[1] );
chomp $data->{text};
}
}
when ('E') {
# up a level
$data = pop @stack;
}
}
}
return $boxes;
}
sub scale {
my ( $f, $resolution ) = @_;
return
int( $f * $resolution / $Gscan2pdf::Document::POINTS_PER_INCH + $HALF );
}
# return hocr output as string
sub string {
my ($self) = @_;
return _boxes2string( $self->boxes );
}
sub _boxes2string {
my ($boxes) = @_;
my $string = $EMPTY;
my $para = FALSE;
for my $box ( @{$boxes} ) {
if ( defined $box->{contents} ) {
$string .= _boxes2string( $box->{contents} );
if ( $box->{type} eq 'line' ) { $string .= $SPACE }
if ( $box->{type} eq 'para' ) {
$string .= "\n\n";
$para = TRUE;
}
else {
$para = FALSE;
}
}
if ( defined $box->{text} ) { $string .= $box->{text} . $SPACE }
}
# squashes whitespace at the end of the string
if ( not $para ) { $string =~ s/\s+\z//xsm }
return $string;
}
sub djvu_text {
my ($self) = @_;
my $boxes = $self->boxes;
if ( defined $boxes and $#{$boxes} > $EMPTY_LIST ) {
my $h =
( $boxes->[0]{type} eq 'page' ) ? $boxes->[0]{bbox}[-1] : $self->{h};
return _boxes2djvu( $boxes, 0, $h );
}
return $EMPTY;
}
sub _boxes2djvu {
my ( $pointer, $indent, $h ) = @_;
my $string = $EMPTY;
# Write the text boxes
for my $box ( @{$pointer} ) {
my ( $x1, $y1, $x2, $y2 ) = @{ $box->{bbox} };
if ( $indent != 0 ) { $string .= "\n" }
for ( 1 .. $indent ) { $string .= $SPACE }
$string .= sprintf "($box->{type} %d %d %d %d", $x1, $h - $y2, $x2,
$h - $y1;
if ( defined $box->{text} ) {
$string .= $SPACE . _escape_text( $box->{text} );
}
if ( defined $box->{contents} ) {
$string .= _boxes2djvu( $box->{contents}, $indent + 2, $h );
}
$string .= ')';
}
if ( $indent == 0 ) { $string .= "\n" }
return $string;
}
sub _boxes2hocr {
my ( $pointer, $indent ) = @_;
my $string = $EMPTY;
if ( not defined $indent ) { $indent = 0 }
if ( $indent == 0 ) {
$string .= <<"EOS";
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name='ocr-system' content='gscan2pdf $Gscan2pdf::Page::VERSION' />
<meta name='ocr-capabilities' content='ocr_page ocr_carea ocr_par ocr_line ocr_word'/>
</head>
<body>
EOS
}
# Write the text boxes
for my $box ( @{$pointer} ) {
my ( $x1, $y1, $x2, $y2 ) = @{ $box->{bbox} };
my $type = 'ocr_' . $box->{type};
my $tag = 'span';
given ( $box->{type} ) {
when ('page') {
$tag = 'div';
}
when (/^(?:carea|column)$/xsm) {
$type = 'ocr_carea';
$tag = 'div';
}
when ('para') {
$type = 'ocr_par';
$tag = 'p';
}
}
$string .=
$SPACE x ( 2 + $indent )
. "<$tag class='$type' title='bbox $x1 $y1 $x2 $y2'>"
. (
defined $box->{text}
? HTML::Entities::encode( $box->{text}, "<>&\"'" )
: $EMPTY
)
. (
defined $box->{contents}
? "\n"
. _boxes2hocr( $box->{contents}, $indent + 1 )
. $SPACE x ( 2 + $indent )
: $EMPTY
) . "</$tag>" . "\n";
}
if ( $indent == 0 ) { $string .= " </body>\n</html>\n" }
return $string;
}
sub _djvu2boxes {
my ( $text, $h ) = @_;
my @boxes;
while ( defined $text and $text !~ /\A\s*\z/xsm ) {
my @result = extract_bracketed( $text, '(")' );
if ( not defined $result[0] ) {
croak "Error parsing brackets in $text";
}
if ( $result[0] =~
/^\s*[(](\w+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(.*)[)]$/xsm )
{
my $box = {};
$box->{type} = $1;
if ( $1 eq 'page' ) { $h = $5 }
$box->{bbox} = [ $2, $h - $5, $4, $h - $3 ];
my $rest = $6;
if ( $rest =~ /\A\s*[(].*[)]\s*\z/xsm ) {
$box->{contents} = _djvu2boxes( $rest, $h );
}
elsif ( $rest =~ /\A\s*"(.*)"\s*\z/xsm ) {
$box->{text} = $1;
}
else {
croak "Error parsing djvu text $rest";
}
push @boxes, $box;
}
else {
croak "Error parsing djvu text $result[0]";
}
$text = $result[1];
}
return \@boxes;
}
sub import_djvutext {
my ( $self, $text ) = @_;
my $boxes = _djvu2boxes($text);
$self->{hocr} = _boxes2hocr($boxes);
return;
}
sub import_pdftotext {
my ( $self, $html ) = @_;
my $boxes = $self->_pdftotext2boxes($html);
$self->{hocr} = _boxes2hocr($boxes);
return;
}
# Escape backslashes and inverted commas
# Surround with inverted commas
sub _escape_text {
my ($txt) = @_;
$txt =~ s/\\/\\\\/gxsm;
$txt =~ s/"/\\\"/gxsm;
return "$DOUBLE_QUOTES$txt$DOUBLE_QUOTES";
}
sub to_png {
my ( $self, $page_sizes ) = @_;
# Write the png
my $png =
File::Temp->new( DIR => $self->{dir}, SUFFIX => '.png', UNLINK => FALSE );
$self->im_object->Write(
units => 'PixelsPerInch',
density => $self->resolution($page_sizes),
filename => $png
);
my $new = Gscan2pdf::Page->new(
filename => $png,
format => 'Portable Network Graphics',
dir => $self->{dir},
resolution => $self->resolution($page_sizes),
);
if ( defined $self->{hocr} ) { $new->{hocr} = $self->{hocr} }
return $new;
}
sub resolution {
my ( $self, $paper_sizes ) = @_;
return $self->{resolution} if defined $self->{resolution};
my $image = $self->im_object;
my $format = $image->Get('format');
setlocale( LC_NUMERIC, 'C' );
if ( defined $self->{size} ) {
my $width = $image->Get('width');
my $height = $image->Get('height');
$logger->debug("PDF size @{$self->{size}}");
$logger->debug("image size $width $height");
my $scale = $Gscan2pdf::Document::POINTS_PER_INCH;
if ( $self->{size}[2] ne 'pts' ) {
croak "Error: unknown units '$self->{size}[2]'";
}
my $xres = $width / $self->{size}[0] * $scale;
my $yres = $height / $self->{size}[1] * $scale;
$logger->debug("resolution $xres $yres");
if ( abs( $xres - $yres ) / $yres < $PAGE_TOLERANCE ) {
$self->{resolution} = ( $xres + $yres ) / 2;
return $self->{resolution};
}
}
# Imagemagick always reports PNMs as 72ppi
# Some versions of imagemagick report colour PNM as Portable pixmap (PPM)
# B&W are Portable anymap
if ( $format !~ /^Portable[ ]...map/xsm ) {
$self->{resolution} = $image->Get('x-resolution');
if ( not defined $self->{resolution} ) {
$self->{resolution} = $image->Get('y-resolution');
}
if ( $self->{resolution} ) {
my $units = $image->Get('units');
if ( $units eq 'pixels / centimeter' ) {
$self->{resolution} *= $CM_PER_INCH;
}
elsif ( $units =~ /undefined/xsm ) {
$logger->warn('Undefined units.');
}
elsif ( $units ne 'pixels / inch' ) {
$logger->warn("Unknown units: '$units'.");
$units = 'undefined';
}
if ( $units =~ /undefined/xsm ) {
$logger->warn(
'The resolution and page size will probably be wrong.');
}
return $self->{resolution};
}
}
# Return the first match based on the format
for ( values %{ $self->matching_paper_sizes($paper_sizes) } ) {
$self->{resolution} = $_;
return $self->{resolution};
}
# Default to 72
$self->{resolution} = $Gscan2pdf::Document::POINTS_PER_INCH;
return $self->{resolution};
}
# Given paper width and height (mm), and hash of paper sizes,
# returns hash of matching resolutions (pixels per inch)
sub matching_paper_sizes {
my ( $self, $paper_sizes ) = @_;
if ( not( defined $self->{height} and defined $self->{width} ) ) {
my $image = $self->im_object;
$self->{width} = $image->Get('width');
$self->{height} = $image->Get('height');
}
my $ratio = $self->{height} / $self->{width};
if ( $ratio < 1 ) { $ratio = 1 / $ratio }
my %matching;
for ( keys %{$paper_sizes} ) {
if ( $paper_sizes->{$_}{x} > 0
and abs( $ratio - $paper_sizes->{$_}{y} / $paper_sizes->{$_}{x} ) <
$PAGE_TOLERANCE )
{
$matching{$_} = (
( $self->{height} > $self->{width} )
? $self->{height}
: $self->{width}
) /
$paper_sizes->{$_}{y} *
$MM_PER_INCH;
}
}
return \%matching;
}
# returns Image::Magick object
sub im_object {
my ($self) = @_;
my $image = Image::Magick->new;
my $x = $image->Read( $self->{filename} );
if ("$x") { $logger->warn($x) }
return $image;
}
1;
__END__
|