use strict;
binmode STDOUT;
while (<>) {
  while (s/([0-9A-Fa-f][0-9A-Fa-f])//) {
    print pack 'C', hex $1;
  }
}

## License: Public Domain.
