#!/usr/bin/perl -w
use strict;
my $c = 0;
print "\"";
while($c<=255){
    print "\\x";
    printf("%02x","$c");
    $c++
}
print "\"";

