#!/usr/local/bin/perl eval 'exec /usr/local/bin/perl -S $0 ${1+"$@"}' if $running_under_some_shell; # Copyright information: # # Copyright (c) 1995--1996 Philippe Deschamp # # Permission is granted to anyone to make or distribute verbatim # copies of this document as received, in any medium, provided # that the copyright notice and this permission notice are # preserved, thus giving the recipient permission to redistribute # in turn. # # Permission is granted to distribute modified versions of this # document, or of portions of it, under the above conditions, # provided also that they carry prominent notices stating who last # changed them. while (<>) { s/ / /g; s/À/À/g; s/à/à/g; s/¡/¡/g; s/Á/Á/g; s/á/á/g; s/¢/¢/g; s/Â/Â/g; s/â/â/g; s/£/£/g; s/Ã/Ã/g; s/ã/ã/g; s/¤/¤/g; s/Ä/Ä/g; s/ä/ä/g; s/¥/¥/g; s/Å/Å/g; s/å/å/g; s/¦/¦/g; s/Æ/Æ/g; s/æ/æ/g; s/§/§/g; s/Ç/Ç/g; s/ç/ç/g; s/¨/¨/g; s/È/È/g; s/è/è/g; s/©/©/g; s/É/É/g; s/é/é/g; s/ª/ª/g; s/Ê/Ê/g; s/ê/ê/g; s/«/«/g; s/Ë/Ë/g; s/ë/ë/g; s/¬/¬/g; s/Ì/Ì/g; s/ì/ì/g; s/­/­/g; s/Í/Í/g; s/í/í/g; s/®/®/g; s/Î/Î/g; s/î/î/g; s/¯/¯/g; s/Ï/Ï/g; s/ï/ï/g; s/°/°/g; s/Ð/Ð/g; s/ð/ð/g; s/±/±/g; s/Ñ/Ñ/g; s/ñ/ñ/g; s/²/²/g; s/Ò/Ò/g; s/ò/ò/g; s/³/³/g; s/Ó/Ó/g; s/ó/ó/g; s/´/´/g; s/Ô/Ô/g; s/ô/ô/g; s/µ/µ/g; s/Õ/Õ/g; s/õ/õ/g; s/¶/¶/g; s/Ö/Ö/g; s/ö/ö/g; s/·/·/g; s/×/×/g; s/÷/÷/g; s/¸/¸/g; s/Ø/Ø/g; s/ø/ø/g; s/¹/¹/g; s/Ù/Ù/g; s/ù/ù/g; s/º/º/g; s/Ú/Ú/g; s/ú/ú/g; s/»/»/g; s/Û/Û/g; s/û/û/g; s/¼/¼/g; s/Ü/Ü/g; s/ü/ü/g; s/½/½/g; s/Ý/Ý/g; s/ý/ý/g; s/¾/¾/g; s/Þ/Þ/g; s/þ/þ/g; s/¿/¿/g; s/ß/ß/g; s/ÿ/ÿ/g; print; }