2014-07-03 12:35:03 +00:00
|
|
|
use Test::More tests => 21;
|
2012-12-23 19:20:17 +00:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
use FindBin;
|
|
|
|
use lib "$FindBin::Bin/../lib";
|
2017-08-18 07:58:50 +00:00
|
|
|
use local::lib "$FindBin::Bin/../local-lib";
|
2012-12-23 19:20:17 +00:00
|
|
|
}
|
|
|
|
|
2014-02-13 00:00:17 +00:00
|
|
|
use List::Util qw(first sum);
|
2012-12-23 19:20:17 +00:00
|
|
|
use Slic3r;
|
2014-02-13 00:00:17 +00:00
|
|
|
use Slic3r::Geometry qw(epsilon);
|
2012-12-23 19:20:17 +00:00
|
|
|
use Slic3r::Test;
|
2014-02-13 15:06:52 +00:00
|
|
|
|
2012-12-23 19:20:17 +00:00
|
|
|
{
|
2017-10-27 16:52:35 +00:00
|
|
|
my $config = Slic3r::Config::new_from_defaults;
|
2012-12-23 19:20:17 +00:00
|
|
|
$config->set('skirts', 0);
|
|
|
|
$config->set('perimeters', 0);
|
2013-07-15 10:14:22 +00:00
|
|
|
$config->set('solid_infill_speed', 99);
|
|
|
|
$config->set('top_solid_infill_speed', 99);
|
2014-03-01 19:34:22 +00:00
|
|
|
$config->set('bridge_speed', 72);
|
2013-07-15 10:14:22 +00:00
|
|
|
$config->set('first_layer_speed', '100%');
|
2017-06-21 14:15:39 +00:00
|
|
|
$config->set('cooling', [ 0 ]);
|
2012-12-23 19:20:17 +00:00
|
|
|
|
|
|
|
my $test = sub {
|
|
|
|
my ($conf) = @_;
|
|
|
|
$conf ||= $config;
|
|
|
|
|
|
|
|
my $print = Slic3r::Test::init_print('20mm_cube', config => $config);
|
|
|
|
|
2014-03-01 19:34:22 +00:00
|
|
|
my %z = (); # Z => 1
|
|
|
|
my %layers_with_solid_infill = (); # Z => $count
|
|
|
|
my %layers_with_bridge_infill = (); # Z => $count
|
2013-08-28 14:51:58 +00:00
|
|
|
Slic3r::GCode::Reader->new->parse(Slic3r::Test::gcode($print), sub {
|
2012-12-23 19:20:17 +00:00
|
|
|
my ($self, $cmd, $args, $info) = @_;
|
|
|
|
|
|
|
|
if ($self->Z > 0) {
|
2014-03-01 19:34:22 +00:00
|
|
|
$z{ $self->Z } = 1;
|
|
|
|
if ($info->{extruding} && $info->{dist_XY} > 0) {
|
|
|
|
my $F = $args->{F} // $self->F;
|
|
|
|
$layers_with_solid_infill{$self->Z} = 1
|
|
|
|
if $F == $config->solid_infill_speed*60;
|
|
|
|
$layers_with_bridge_infill{$self->Z} = 1
|
|
|
|
if $F == $config->bridge_speed*60;
|
|
|
|
}
|
2012-12-23 19:20:17 +00:00
|
|
|
}
|
|
|
|
});
|
2014-03-01 19:34:22 +00:00
|
|
|
my @z = sort { $a <=> $b } keys %z;
|
|
|
|
my @shells = map $layers_with_solid_infill{$_} || $layers_with_bridge_infill{$_}, @z;
|
2013-07-15 10:14:22 +00:00
|
|
|
fail "insufficient number of bottom solid layers"
|
2012-12-23 19:20:17 +00:00
|
|
|
unless !defined(first { !$_ } @shells[0..$config->bottom_solid_layers-1]);
|
2013-07-15 10:14:22 +00:00
|
|
|
fail "excessive number of bottom solid layers"
|
2013-07-15 13:26:56 +00:00
|
|
|
unless scalar(grep $_, @shells[0 .. $#shells/2]) == $config->bottom_solid_layers;
|
2013-07-15 10:14:22 +00:00
|
|
|
fail "insufficient number of top solid layers"
|
2012-12-23 19:20:17 +00:00
|
|
|
unless !defined(first { !$_ } @shells[-$config->top_solid_layers..-1]);
|
2013-07-15 10:14:22 +00:00
|
|
|
fail "excessive number of top solid layers"
|
2013-07-15 13:26:56 +00:00
|
|
|
unless scalar(grep $_, @shells[($#shells/2)..$#shells]) == $config->top_solid_layers;
|
2014-03-01 19:34:22 +00:00
|
|
|
if ($config->top_solid_layers > 0) {
|
|
|
|
fail "unexpected solid infill speed in first solid layer over sparse infill"
|
|
|
|
if $layers_with_solid_infill{ $z[-$config->top_solid_layers] };
|
|
|
|
die "bridge speed not used in first solid layer over sparse infill"
|
|
|
|
if !$layers_with_bridge_infill{ $z[-$config->top_solid_layers] };
|
|
|
|
}
|
2012-12-23 19:20:17 +00:00
|
|
|
1;
|
|
|
|
};
|
|
|
|
|
2014-03-01 19:34:22 +00:00
|
|
|
$config->set('top_solid_layers', 3);
|
|
|
|
$config->set('bottom_solid_layers', 3);
|
2012-12-23 19:20:17 +00:00
|
|
|
ok $test->(), "proper number of shells is applied";
|
2013-03-07 15:24:25 +00:00
|
|
|
|
2013-07-15 10:14:22 +00:00
|
|
|
$config->set('top_solid_layers', 0);
|
|
|
|
$config->set('bottom_solid_layers', 0);
|
|
|
|
ok $test->(), "no shells are applied when both top and bottom are set to zero";
|
|
|
|
|
2015-03-06 20:35:00 +00:00
|
|
|
$config->set('perimeters', 1);
|
|
|
|
$config->set('top_solid_layers', 3);
|
|
|
|
$config->set('bottom_solid_layers', 3);
|
2013-07-15 10:14:22 +00:00
|
|
|
$config->set('fill_density', 0);
|
2012-12-23 19:20:17 +00:00
|
|
|
ok $test->(), "proper number of shells is applied even when fill density is none";
|
|
|
|
}
|
|
|
|
|
2013-06-08 18:01:26 +00:00
|
|
|
# issue #1161
|
|
|
|
{
|
2017-10-27 16:52:35 +00:00
|
|
|
my $config = Slic3r::Config::new_from_defaults;
|
2013-06-08 18:01:26 +00:00
|
|
|
$config->set('layer_height', 0.3);
|
|
|
|
$config->set('first_layer_height', '100%');
|
|
|
|
$config->set('bottom_solid_layers', 0);
|
|
|
|
$config->set('top_solid_layers', 3);
|
2017-06-21 14:15:39 +00:00
|
|
|
$config->set('cooling', [ 0 ]);
|
2014-03-01 19:34:22 +00:00
|
|
|
$config->set('bridge_speed', 99);
|
2013-06-08 18:01:26 +00:00
|
|
|
$config->set('solid_infill_speed', 99);
|
|
|
|
$config->set('top_solid_infill_speed', 99);
|
2013-07-15 10:14:22 +00:00
|
|
|
$config->set('first_layer_speed', '100%');
|
2013-06-08 18:01:26 +00:00
|
|
|
|
|
|
|
my $print = Slic3r::Test::init_print('V', config => $config);
|
|
|
|
my %layers_with_solid_infill = (); # Z => 1
|
2013-08-28 14:51:58 +00:00
|
|
|
Slic3r::GCode::Reader->new->parse(Slic3r::Test::gcode($print), sub {
|
2013-06-08 18:01:26 +00:00
|
|
|
my ($self, $cmd, $args, $info) = @_;
|
|
|
|
|
|
|
|
$layers_with_solid_infill{$self->Z} = 1
|
|
|
|
if $info->{extruding} && ($args->{F} // $self->F) == $config->solid_infill_speed*60;
|
|
|
|
});
|
|
|
|
is scalar(map $layers_with_solid_infill{$_}, grep $_ <= 7.2, keys %layers_with_solid_infill), 3,
|
|
|
|
"correct number of top solid shells is generated in V-shaped object";
|
|
|
|
}
|
|
|
|
|
2013-07-26 18:17:33 +00:00
|
|
|
{
|
2017-10-27 16:52:35 +00:00
|
|
|
my $config = Slic3r::Config::new_from_defaults;
|
2013-07-27 17:41:36 +00:00
|
|
|
# we need to check against one perimeter because this test is calibrated
|
|
|
|
# (shape, extrusion_width) so that perimeters cover the bottom surfaces of
|
|
|
|
# their lower layer - the test checks that shells are not generated on the
|
|
|
|
# above layers (thus 'across' the shadow perimeter)
|
2013-07-28 08:56:41 +00:00
|
|
|
# the test is actually calibrated to leave a narrow bottom region for each
|
|
|
|
# layer - we test that in case of fill_density = 0 such narrow shells are
|
|
|
|
# discarded instead of grown
|
2013-07-27 17:41:36 +00:00
|
|
|
$config->set('perimeters', 1);
|
2013-07-26 18:17:33 +00:00
|
|
|
$config->set('fill_density', 0);
|
2017-06-21 14:15:39 +00:00
|
|
|
$config->set('cooling', [ 0 ]); # prevent speed alteration
|
2013-07-26 18:17:33 +00:00
|
|
|
$config->set('first_layer_speed', '100%'); # prevent speed alteration
|
2013-07-28 08:56:41 +00:00
|
|
|
$config->set('layer_height', 0.4);
|
|
|
|
$config->set('first_layer_height', '100%');
|
2013-08-13 08:46:46 +00:00
|
|
|
$config->set('extrusion_width', 0.55);
|
2013-07-26 18:17:33 +00:00
|
|
|
$config->set('bottom_solid_layers', 3);
|
|
|
|
$config->set('top_solid_layers', 0);
|
2013-07-28 08:56:41 +00:00
|
|
|
$config->set('solid_infill_speed', 99);
|
2013-07-26 18:17:33 +00:00
|
|
|
|
2013-07-27 17:41:36 +00:00
|
|
|
my $print = Slic3r::Test::init_print('V', config => $config);
|
2013-07-26 18:17:33 +00:00
|
|
|
my %layers = (); # Z => 1
|
2013-08-28 14:51:58 +00:00
|
|
|
Slic3r::GCode::Reader->new->parse(Slic3r::Test::gcode($print), sub {
|
2013-07-26 18:17:33 +00:00
|
|
|
my ($self, $cmd, $args, $info) = @_;
|
2013-07-27 17:41:36 +00:00
|
|
|
$layers{$self->Z} = 1
|
|
|
|
if $info->{extruding} && ($args->{F} // $self->F) == $config->solid_infill_speed*60;
|
2013-07-26 18:17:33 +00:00
|
|
|
});
|
2013-07-27 17:41:36 +00:00
|
|
|
is scalar(keys %layers), $config->bottom_solid_layers,
|
2013-07-27 17:43:46 +00:00
|
|
|
"shells are not propagated across perimeters of the neighbor layer";
|
2013-07-26 18:17:33 +00:00
|
|
|
}
|
|
|
|
|
2013-09-17 17:24:16 +00:00
|
|
|
{
|
2017-10-27 16:52:35 +00:00
|
|
|
my $config = Slic3r::Config::new_from_defaults;
|
2013-09-17 17:24:16 +00:00
|
|
|
$config->set('perimeters', 3);
|
2017-06-21 14:15:39 +00:00
|
|
|
$config->set('cooling', [ 0 ]); # prevent speed alteration
|
2013-09-17 17:24:16 +00:00
|
|
|
$config->set('first_layer_speed', '100%'); # prevent speed alteration
|
|
|
|
$config->set('layer_height', 0.4);
|
|
|
|
$config->set('first_layer_height', '100%');
|
|
|
|
$config->set('bottom_solid_layers', 3);
|
|
|
|
$config->set('top_solid_layers', 3);
|
|
|
|
$config->set('solid_infill_speed', 99);
|
|
|
|
$config->set('top_solid_infill_speed', 99);
|
2015-01-13 23:14:56 +00:00
|
|
|
$config->set('bridge_speed', 99);
|
2019-05-14 13:48:00 +00:00
|
|
|
$config->set('filament_diameter', [ 3.0 ]);
|
|
|
|
$config->set('nozzle_diameter', [ 0.5 ]);
|
2019-05-14 13:35:54 +00:00
|
|
|
|
2013-09-17 17:24:16 +00:00
|
|
|
my $print = Slic3r::Test::init_print('sloping_hole', config => $config);
|
|
|
|
my %solid_layers = (); # Z => 1
|
|
|
|
Slic3r::GCode::Reader->new->parse(Slic3r::Test::gcode($print), sub {
|
|
|
|
my ($self, $cmd, $args, $info) = @_;
|
|
|
|
$solid_layers{$self->Z} = 1
|
|
|
|
if $info->{extruding} && ($args->{F} // $self->F) == $config->solid_infill_speed*60;
|
|
|
|
});
|
|
|
|
is scalar(keys %solid_layers), $config->bottom_solid_layers + $config->top_solid_layers,
|
|
|
|
"no superfluous shells are generated";
|
|
|
|
}
|
|
|
|
|
2013-07-28 11:39:15 +00:00
|
|
|
{
|
2017-10-27 16:52:35 +00:00
|
|
|
my $config = Slic3r::Config::new_from_defaults;
|
2014-01-02 16:24:23 +00:00
|
|
|
$config->set('perimeters', 1);
|
|
|
|
$config->set('fill_density', 0);
|
|
|
|
$config->set('top_solid_layers', 0);
|
2013-07-28 11:39:15 +00:00
|
|
|
$config->set('spiral_vase', 1);
|
|
|
|
$config->set('bottom_solid_layers', 0);
|
|
|
|
$config->set('skirts', 0);
|
2013-07-29 15:28:30 +00:00
|
|
|
$config->set('first_layer_height', '100%');
|
2014-02-13 15:06:52 +00:00
|
|
|
$config->set('start_gcode', '');
|
2014-07-03 12:35:03 +00:00
|
|
|
$config->set('temperature', [200]);
|
|
|
|
$config->set('first_layer_temperature', [205]);
|
2013-07-28 11:39:15 +00:00
|
|
|
|
|
|
|
# TODO: this needs to be tested with a model with sloping edges, where starting
|
|
|
|
# points of each layer are not aligned - in that case we would test that no
|
|
|
|
# travel moves are left to move to the new starting point - in a cube, end
|
|
|
|
# points coincide with next layer starting points (provided there's no clipping)
|
2013-07-28 13:02:03 +00:00
|
|
|
my $test = sub {
|
|
|
|
my ($model_name, $description) = @_;
|
|
|
|
my $print = Slic3r::Test::init_print($model_name, config => $config);
|
|
|
|
my $travel_moves_after_first_extrusion = 0;
|
|
|
|
my $started_extruding = 0;
|
2014-07-03 12:35:03 +00:00
|
|
|
my $first_layer_temperature_set = 0;
|
|
|
|
my $temperature_set = 0;
|
2013-07-29 15:28:30 +00:00
|
|
|
my @z_steps = ();
|
2013-08-28 14:51:58 +00:00
|
|
|
Slic3r::GCode::Reader->new->parse(Slic3r::Test::gcode($print), sub {
|
2013-07-28 13:02:03 +00:00
|
|
|
my ($self, $cmd, $args, $info) = @_;
|
|
|
|
|
2014-02-13 15:06:52 +00:00
|
|
|
if ($cmd eq 'G1') {
|
|
|
|
$started_extruding = 1 if $info->{extruding};
|
|
|
|
push @z_steps, $info->{dist_Z}
|
|
|
|
if $started_extruding && $info->{dist_Z} > 0;
|
|
|
|
$travel_moves_after_first_extrusion++
|
2015-07-01 21:00:52 +00:00
|
|
|
if $info->{travel} && $info->{dist_XY} > 0 && $started_extruding && !exists $args->{Z};
|
2014-07-03 12:35:03 +00:00
|
|
|
} elsif ($cmd eq 'M104') {
|
|
|
|
$first_layer_temperature_set = 1 if $args->{S} == 205;
|
|
|
|
$temperature_set = 1 if $args->{S} == 200;
|
2014-02-13 15:06:52 +00:00
|
|
|
}
|
2013-07-28 13:02:03 +00:00
|
|
|
});
|
2014-02-13 15:06:52 +00:00
|
|
|
|
2014-07-03 12:35:03 +00:00
|
|
|
ok $first_layer_temperature_set, 'first layer temperature is preserved';
|
|
|
|
ok $temperature_set, 'temperature is preserved';
|
|
|
|
|
2014-02-13 15:06:52 +00:00
|
|
|
# we allow one travel move after first extrusion: i.e. when moving to the first
|
|
|
|
# spiral point after moving to second layer (bottom layer had loop clipping, so
|
|
|
|
# we're slightly distant from the starting point of the loop)
|
|
|
|
ok $travel_moves_after_first_extrusion <= 1, "no gaps in spiral vase ($description)";
|
|
|
|
ok !(grep { $_ > $config->layer_height + epsilon } @z_steps), "no gaps in Z ($description)";
|
2013-07-28 13:02:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$test->('20mm_cube', 'solid model');
|
2013-07-29 15:28:30 +00:00
|
|
|
|
|
|
|
$config->set('z_offset', -10);
|
|
|
|
$test->('20mm_cube', 'solid model with negative z-offset');
|
2014-02-13 15:06:52 +00:00
|
|
|
|
|
|
|
### Disabled because the current unreliable medial axis code doesn't
|
|
|
|
### always produce valid loops.
|
|
|
|
###$test->('40x10', 'hollow model with negative z-offset');
|
2013-07-28 11:39:15 +00:00
|
|
|
}
|
|
|
|
|
2014-02-13 15:06:52 +00:00
|
|
|
{
|
2017-10-27 16:52:35 +00:00
|
|
|
my $config = Slic3r::Config::new_from_defaults;
|
2014-02-13 00:00:17 +00:00
|
|
|
$config->set('spiral_vase', 1);
|
2014-04-30 10:23:07 +00:00
|
|
|
$config->set('perimeters', 1);
|
|
|
|
$config->set('fill_density', 0);
|
|
|
|
$config->set('top_solid_layers', 0);
|
2014-02-13 00:00:17 +00:00
|
|
|
$config->set('bottom_solid_layers', 0);
|
2014-04-30 10:23:07 +00:00
|
|
|
$config->set('retract_layer_change', [0]);
|
2014-02-13 00:00:17 +00:00
|
|
|
$config->set('skirts', 0);
|
|
|
|
$config->set('first_layer_height', '100%');
|
|
|
|
$config->set('layer_height', 0.4);
|
|
|
|
$config->set('start_gcode', '');
|
2014-04-30 10:23:07 +00:00
|
|
|
$config->validate;
|
2014-02-13 00:00:17 +00:00
|
|
|
|
|
|
|
my $print = Slic3r::Test::init_print('20mm_cube', config => $config);
|
2014-02-13 15:06:52 +00:00
|
|
|
my $z_moves = 0;
|
2014-02-13 00:00:17 +00:00
|
|
|
my @this_layer = (); # [ dist_Z, dist_XY ], ...
|
|
|
|
|
|
|
|
my $bottom_layer_not_flat = 0;
|
|
|
|
my $null_z_moves_not_layer_changes = 0;
|
|
|
|
my $null_z_moves_not_multiples_of_layer_height = 0;
|
|
|
|
my $sum_of_partial_z_equals_to_layer_height = 0;
|
|
|
|
my $all_layer_segments_have_same_slope = 0;
|
|
|
|
my $horizontal_extrusions = 0;
|
2014-04-30 10:23:07 +00:00
|
|
|
|
2014-02-13 00:00:17 +00:00
|
|
|
Slic3r::GCode::Reader->new->parse(Slic3r::Test::gcode($print), sub {
|
|
|
|
my ($self, $cmd, $args, $info) = @_;
|
|
|
|
|
|
|
|
if ($cmd eq 'G1') {
|
2014-02-13 15:06:52 +00:00
|
|
|
if ($z_moves < 2) {
|
|
|
|
# skip everything up to the second Z move
|
|
|
|
# (i.e. start of second layer)
|
|
|
|
if (exists $args->{Z}) {
|
|
|
|
$z_moves++;
|
|
|
|
$bottom_layer_not_flat = 1
|
|
|
|
if $info->{dist_Z} > 0 && $info->{dist_Z} != $config->layer_height;
|
|
|
|
}
|
2014-02-13 00:00:17 +00:00
|
|
|
} elsif ($info->{dist_Z} == 0 && $args->{Z}) {
|
|
|
|
$null_z_moves_not_layer_changes = 1
|
|
|
|
if $info->{dist_XY} != 0;
|
|
|
|
|
|
|
|
# % doesn't work easily with floats
|
|
|
|
$null_z_moves_not_multiples_of_layer_height = 1
|
|
|
|
if abs(($args->{Z} / $config->layer_height) * $config->layer_height - $args->{Z}) > epsilon;
|
|
|
|
|
|
|
|
my $total_dist_XY = sum(map $_->[1], @this_layer);
|
|
|
|
$sum_of_partial_z_equals_to_layer_height = 1
|
|
|
|
if abs(sum(map $_->[0], @this_layer) - $config->layer_height) > epsilon;
|
2014-04-30 10:23:07 +00:00
|
|
|
|
2014-02-13 00:00:17 +00:00
|
|
|
foreach my $segment (@this_layer) {
|
|
|
|
# check that segment's dist_Z is proportioned to its dist_XY
|
|
|
|
$all_layer_segments_have_same_slope = 1
|
2015-07-01 21:00:52 +00:00
|
|
|
if abs($segment->[0]*$total_dist_XY/$config->layer_height - $segment->[1]) > 0.2;
|
2014-02-13 00:00:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@this_layer = ();
|
2014-02-13 15:06:52 +00:00
|
|
|
} elsif ($info->{extruding} && $info->{dist_XY} > 0) {
|
2014-02-13 00:00:17 +00:00
|
|
|
$horizontal_extrusions = 1
|
|
|
|
if $info->{dist_Z} == 0;
|
|
|
|
push @this_layer, [ $info->{dist_Z}, $info->{dist_XY} ];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
ok !$bottom_layer_not_flat, 'bottom layer is flat when using spiral vase';
|
|
|
|
ok !$null_z_moves_not_layer_changes, 'null Z moves are layer changes';
|
|
|
|
ok !$null_z_moves_not_multiples_of_layer_height, 'null Z moves are multiples of layer height';
|
|
|
|
ok !$sum_of_partial_z_equals_to_layer_height, 'sum of partial Z increments equals to a full layer height';
|
|
|
|
ok !$all_layer_segments_have_same_slope, 'all layer segments have the same slope';
|
|
|
|
ok !$horizontal_extrusions, 'no horizontal extrusions';
|
|
|
|
}
|
|
|
|
|
2014-04-30 10:23:07 +00:00
|
|
|
{
|
2017-10-27 16:52:35 +00:00
|
|
|
my $config = Slic3r::Config::new_from_defaults;
|
2014-04-30 10:23:07 +00:00
|
|
|
$config->set('perimeters', 1);
|
|
|
|
$config->set('fill_density', 0);
|
|
|
|
$config->set('top_solid_layers', 0);
|
|
|
|
$config->set('spiral_vase', 1);
|
|
|
|
$config->set('bottom_solid_layers', 0);
|
|
|
|
$config->set('skirts', 0);
|
|
|
|
$config->set('first_layer_height', '100%');
|
|
|
|
$config->set('start_gcode', '');
|
|
|
|
|
|
|
|
my $print = Slic3r::Test::init_print('two_hollow_squares', config => $config);
|
|
|
|
my $diagonal_moves = 0;
|
|
|
|
Slic3r::GCode::Reader->new->parse(Slic3r::Test::gcode($print), sub {
|
|
|
|
my ($self, $cmd, $args, $info) = @_;
|
|
|
|
|
|
|
|
if ($cmd eq 'G1') {
|
|
|
|
if ($info->{extruding} && $info->{dist_XY} > 0) {
|
|
|
|
if ($info->{dist_Z} > 0) {
|
|
|
|
$diagonal_moves++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
is $diagonal_moves, 0, 'no spiral moves on two-island object';
|
|
|
|
}
|
|
|
|
|
2012-12-23 19:20:17 +00:00
|
|
|
__END__
|