View difference between Paste ID: x0cTh33Y and tF9xJYV6
SHOW: | | - or go back to the newest paste.
1-
go to http://zarat.us for fun games
1+
if you still don't see it, http://imgur.com/tJViN
2
3
The code is base-32 digits. Translate them to binary with this code:
4
5
void print_binary(char c)
6
{
7
printf("%d",(c>>5)&1);
8
printf("%d",(c>>4)&1);
9
printf("%d",(c>>3)&1);
10
printf("%d",(c>>2)&1);
11
printf("%d",(c>>1)&1);
12
printf("%d",(c>>0)&1);
13
}
14
15
int main()
16
{
17
18
char *s="69I960EHE0A4A0IVG0EHE02500R4R0G1T30PLJ00V6V0EHE0V1U01V10U5U0VGV0V4R" ;
19
for (;s;s++)
20
{
21
 if (*s>='0' && *s<='9') print_binary(*s-'0');
22
 if (*s>='A' && *s<='Z') print_binary(*s-'A'+10);
23
printf("\n");
24
}
25
}
26
27
replacing 0 with space and 1 with #, you get:
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
 ## ##