Pages:
Author

Topic: Bitcoin puzzle transaction ~32 BTC prize to who solves it - page 76. (Read 215611 times)

hero member
Activity: 862
Merit: 662
i assume any wallet program will just refuse to send a TX due to invalid signature.

Yes that is correct, even if you broadcast it manually the network nodes will not accept your transaction.
jr. member
Activity: 47
Merit: 13
How was the Funds from Puzzle 64 transferred. There mist been a tug of war between the bots fighting each other during that time also. So how was it managed? Does someone know the story of that time. Same must have been for the Forks coin transfer of that puzzle as well. Another Tx another bot war ?

Hello there  Cheesy

I don't remember if there was a bot war for BTC in puzzle #64, but I got the privkey like 12 minutes after the pubkey was exposed (but only with CPU, I don't have GPU  Grin )

Then I just got the fork coins (only BCH, BSV, eCash, BTG, BCD and CDY)  Wink
full member
Activity: 1162
Merit: 237
Shooters Shoot...
Code:
●  12-char prefix
                                       20d45a6a7625355df5e5fc41b358e6f8581991e2
13zb1hQbWVsc1111111111111111111111  => 20d45a6a76253570014f1a30288bd88dc3ff6ffb
13zb1hQbWVsczzzzzzzzzzzzzzzzzzzzzz  => 20d45a6a76253571d7012502fabee39e6bbaf2b4
                                                      1d5b20ad2d2330b10a7bb82b9

FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF / 1D5B20AD2D2330B10A7BB82B9       =   0x8B8758F7C8AD0286
 (every  0x8B8758F7C8AD0286  will find 1 address 12-char prefix)

Did you realize that 0x8B8758F7C8AD0286   is near 1/3 of the 66 bit space?

Code:
>>> 2**65 // 0x8B8758F7C8AD0286
3
>>> 2**65 / 0x8B8758F7C8AD0286
3.6694959191703664

It just interesting

It seems to me that these calculations are very abstract, we are missing several steps for ripemd160. If this were really the case, then any addresses could be taken away without problems. I know you Alberto, we corresponded several times in tg. I am grateful to you in many ways, most likely thanks to you I started this activity. I have no goal of emptying other people’s wallets, but if one is found ownerless or from a puzzle, I will definitely send you a significant reward, rly. But, over time, I realized that this is more of a study, most likely this will never happen, maybe. Once again I apologize, I'm using a translator.

If you are talking addresses or better yet, address prefixes (which both are a reflection of their H160), you don't really need to know all of the steps, really any of them, the H160 or the SHA256, etc. You just have to know what comprises an address, in this case base58. And from there you can get a rough idea of how many specific prefixes will be in a specific, certain sized range.

First, the leading 1, isn't part of the prefix, it is a gimme because all of these type addresses start with 1.

Someone correct me if I am wrong, but couldn't we just take range size / 58^number of leading prefixes (minus the starting "1")
If everything is uniformly spread out, over the range/curve (as the experts like to say, but it's not proven, but is a good "guesstimator" of sorts), an 11-char prefix (1 + 11 characters = total of 12 characters), in a 2^65 bit range, there should be around 1.4 of them. 2^65 / 58^11
2^65 / 58^11 = 1.4
2^65 / 58^10 = 85
2^65 / 58^9 = 4,967
2^65 / 58^8 = 288,088

and I guess you could apply a similar logic to H160s as well, but use 16^number of leading H160 prefixes, instead of 58^number of leading prefixes (minus the starting "1")

Anyone?
newbie
Activity: 6
Merit: 0
these last pages read like schizoposting.

anyway
what stops someone from sending invalid / badly signed TXs to the network so the bots are bogged down cracking the #66 with bad pubkeys? how does the network react in this case? does it just drop the bad transaction? or is it just not possible?
i could not find much on the subject of crafting invalid TXs, as i assume any wallet program will just refuse to send a TX due to invalid signature.
newbie
Activity: 9
Merit: 0
Code:
●  12-char prefix
                                       20d45a6a7625355df5e5fc41b358e6f8581991e2
13zb1hQbWVsc1111111111111111111111  => 20d45a6a76253570014f1a30288bd88dc3ff6ffb
13zb1hQbWVsczzzzzzzzzzzzzzzzzzzzzz  => 20d45a6a76253571d7012502fabee39e6bbaf2b4
                                                      1d5b20ad2d2330b10a7bb82b9

FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF / 1D5B20AD2D2330B10A7BB82B9       =   0x8B8758F7C8AD0286
 (every  0x8B8758F7C8AD0286  will find 1 address 12-char prefix)

Did you realize that 0x8B8758F7C8AD0286   is near 1/3 of the 66 bit space?

Code:
>>> 2**65 // 0x8B8758F7C8AD0286
3
>>> 2**65 / 0x8B8758F7C8AD0286
3.6694959191703664

It just interesting

It seems to me that these calculations are very abstract, we are missing several steps for ripemd160. If this were really the case, then any addresses could be taken away without problems. I know you Alberto, we corresponded several times in tg. I am grateful to you in many ways, most likely thanks to you I started this activity. I have no goal of emptying other people’s wallets, but if one is found ownerless or from a puzzle, I will definitely send you a significant reward, rly. But, over time, I realized that this is more of a study, most likely this will never happen, maybe. Once again I apologize, I'm using a translator.
hero member
Activity: 862
Merit: 662
Code:
●  12-char prefix
                                       20d45a6a7625355df5e5fc41b358e6f8581991e2
13zb1hQbWVsc1111111111111111111111  => 20d45a6a76253570014f1a30288bd88dc3ff6ffb
13zb1hQbWVsczzzzzzzzzzzzzzzzzzzzzz  => 20d45a6a76253571d7012502fabee39e6bbaf2b4
                                                      1d5b20ad2d2330b10a7bb82b9

FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF / 1D5B20AD2D2330B10A7BB82B9       =   0x8B8758F7C8AD0286
 (every  0x8B8758F7C8AD0286  will find 1 address 12-char prefix)

Did you realize that 0x8B8758F7C8AD0286   is near 1/3 of the 66 bit space?

Code:
>>> 2**65 // 0x8B8758F7C8AD0286
3
>>> 2**65 / 0x8B8758F7C8AD0286
3.6694959191703664

It just interesting
jr. member
Activity: 82
Merit: 8
Are you sure about this? Where did you get this information from? Will you share the source of this information?

Just simple addition, subtraction, multiplication and division math

Code:
●  7-char prefix
13zb1hQ111111111111111111111111111  => 20d45a6a4b704db750a2c2bd3f07159698d80d6e
13zb1hQzzzzzzzzzzzzzzzzzzzzzzzzzzz  => 20d45a6a9337b05029b466e310ca53586922d363
                                               47c76298d911a425d1c33dc1d04ac5f5

FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF / 47C76298D911A425D1C33DC1D04AC5F5 =  0x39106D151
 (every  0x39106D151  will find 1 address 7-char prefix)


●  8-char prefix
13zb1hQb11111111111111111111111111  => 20d45a6a758414c1779b72697c32ea57a903e293
13zb1hQbzzzzzzzzzzzzzzzzzzzzzzzzzz  => 20d45a6a76c0e5e769b1d1ee8d0e8eb7b1052c9c
                                                13cd125f2165f8510dba46008014a09

FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF / 13CD125F2165F8510DBA46008014A09  =  0xCEDB8B6C6A
 (every  0xCEDB8B6C6A  will find 1 address 8-char prefix)


●  9-char prefix
13zb1hQbW1111111111111111111111111  => 20d45a6a76227d5470a6a22c04a0bc87ad048798
13zb1hQbWzzzzzzzzzzzzzzzzzzzzzzzzz  => 20d45a6a7627f3b1c8afd8c8cb8a0a66056e7ba1
                                                  5765d5809369cc6e94dde5869f409

FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF / 5765D5809369CC6E94DDE5869F409   =   0x2EDDBD96902D
 (every  0x2EDDBD96902D  will find 1 address 9-char prefix)


●  10-char prefix
13zb1hQbWV111111111111111111111111  => 20d45a6a76252067051503284157fc9abd37adf4
13zb1hQbWVzzzzzzzzzzzzzzzzzzzzzzzz  => 20d45a6a762538831cab3d7a68156376d939819c
                                                   181c17963a5226bd66dc1c01d3a8

FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF / 181C17963A5226BD66DC1C01D3A8    =    0xA9E3CF41CAA3C
 (every  0xA9E3CF41CAA3C  will find 1 address 10-char prefix)


●  11-char prefix
13zb1hQbWVs11111111111111111111111  => 20d45a6a7625352fc9f79f5d6b915546d55c908e
13zb1hQbWVszzzzzzzzzzzzzzzzzzzzzzz  => 20d45a6a7625359a344e13210b21d70cd5d82eb0
                                                     6a6a5673c39f9081c6007b9e22

FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF / 6A6A5673C39F9081C6007B9E22      =   0x267D9CF4E7E91B2
 (every  0x267D9CF4E7E91B2  will find 1 address 11-char prefix)



●  12-char prefix
13zb1hQbWVsc1111111111111111111111  => 20d45a6a76253570014f1a30288bd88dc3ff6ffb
13zb1hQbWVsczzzzzzzzzzzzzzzzzzzzzz  => 20d45a6a76253571d7012502fabee39e6bbaf2b4
                                                      1d5b20ad2d2330b10a7bb82b9

FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF / 1D5B20AD2D2330B10A7BB82B9       =   0x8B8758F7C8AD0286
 (every  0x8B8758F7C8AD0286  will find 1 address 12-char prefix)



========= use My GPU - RTX 3090 ======  EXE:  VanitySearch-1.15.4_bitcrack

>>  Search 7-char prefix
   VanitySearch.exe -t 0 -gpu -o 2D3C0C.txt --keyspace 2D3C0C00000000000:+39106D151FF 13zb1hQ
   255  keys were supposed to be found, 267 keys were found

   VanitySearch.exe -t 0 -gpu -o 2E2B98.txt --keyspace 2E2B9800000000000:+39106D151FF 13zb1hQ
   255  keys were supposed to be found, 282 keys were found

   VanitySearch.exe -t 0 -gpu -o 3A82BC.txt --keyspace 3A82BC00000000000:+39106D151FF 13zb1hQ
   255  keys were supposed to be found, 289 keys were found

   VanitySearch.exe -t 0 -gpu -o 354BAC.txt --keyspace 354BAC00000000000:+39106D15100 13zb1hQ
   255  keys were supposed to be found, 256 keys were found

   VanitySearch.exe -t 0 -gpu -o 222222.txt --keyspace 22222200000000000:+EFFFFFFFFFF 13zb1hQ
   1076  keys were supposed to be found, 1012 keys were found

>>  Search 8-char prefix
   VanitySearch.exe -t 0 -gpu -o 2A82BC.txt --keyspace 2A82BC00000000000:+CEDB8B6C6AF 13zb1hQb
   15  keys were supposed to be found, 10 keys were found

   VanitySearch.exe -t 0 -gpu -o 2D13BA.txt --keyspace 2D13BA00000000000:+CEDB8B6C6AF 13zb1hQb
   15  keys were supposed to be found, 10 keys were found


so I say....  (  puzzle 66  range  0x40000000000000000 - 0x20000000000000000  = 0x20000000000000000  )

13zb1hQbWV  10-char prefix match in ripemd160 hash will be  little reference significance
0x20000000000000000 / 0xA9E3CF41CAA3C = 0x3038   ( 10000+  private key has  10 char prefix match compressed address )

13zb1hQbWVs  11-char prefix match
0x20000000000000000 / 0x267D9CF4E7E91B2 = 0xd4     ( 200~250  private key has  11 char prefix match compressed address )

13zb1hQbWVsc  12-char prefix match
0x20000000000000000 / 0x8B8758F7C8AD0286 = 0x3      (   3~4  private key has  12 char prefix match compressed address )



I have two 11-char prefix match address and private in 66 range

13zb1hQbWVsoqtKv6BRRpKZ81caz7KWea5
13zb1hQbWVsSAaNvpKfmc43NsuAj33LyRM




hero member
Activity: 862
Merit: 662
How was the Funds from Puzzle 64 transferred. There mist been a tug of war between the bots fighting each other during that time also. So how was it managed? Does someone know the story of that time. Same must have been for the Forks coin transfer of that puzzle as well. Another Tx another bot war ?

Well that is a good question, but unless someone recorded the mempool TX related to that address at that time there is no way to know for sure because after some time all those TX that didn't win the "bid" fight are promptly discarded from most of the servers that show TX details online.

One example of that is what i write in Is FullRBF allowing double spend? where i show some TX tha are related to one of my addresses and those TX no longer exists because they were FullRBF with new TX.
jr. member
Activity: 36
Merit: 68
How was the Funds from Puzzle 64 transferred. There mist been a tug of war between the bots fighting each other during that time also. So how was it managed? Does someone know the story of that time. Same must have been for the Forks coin transfer of that puzzle as well. Another Tx another bot war ?
member
Activity: 317
Merit: 34
There's simply no feasible way to withdraw the funds on lower end puzzles like #66. It will be snatched up by bots. Not maybe, but it's 100% guaranteed. There will be hundreds of withdrawal transactions with varying fees all battling each other. You will simply be left in the dust.

It's a fundamental flaw in this puzzle that was originally aimed to bring the community together and try to solve the puzzle. The puzzle creator did not think much about the puzzle, and this is proof of it.

The only way the original solver will get the funds of puzzle #66 is if they can prove to be in possession of the private keys directly to the puzzle creator. The puzzle creator then withdraws the funds at a 6BTC fee (they can afford it) to your address.

The goal of the puzzles is to demonstrate the strength of bitcoin and so far it has more than proven that.
I don't think the creator cares about the method by which the private key is obtained, whether it's years of brute force, whether it's discovering a pattern or through social engineering, the owner of the private key is the owner of the coins. If there is more than one transaction with the same private key, the protocol designed to resolve double spending will be applied.
End of story
How much tx you have played, ?
Sure tx you had made is different subject.
newbie
Activity: 41
Merit: 0
There's simply no feasible way to withdraw the funds on lower end puzzles like #66. It will be snatched up by bots. Not maybe, but it's 100% guaranteed. There will be hundreds of withdrawal transactions with varying fees all battling each other. You will simply be left in the dust.

It's a fundamental flaw in this puzzle that was originally aimed to bring the community together and try to solve the puzzle. The puzzle creator did not think much about the puzzle, and this is proof of it.

The only way the original solver will get the funds of puzzle #66 is if they can prove to be in possession of the private keys directly to the puzzle creator. The puzzle creator then withdraws the funds at a 6BTC fee (they can afford it) to your address.

The goal of the puzzles is to demonstrate the strength of bitcoin and so far it has more than proven that.
I don't think the creator cares about the method by which the private key is obtained, whether it's years of brute force, whether it's discovering a pattern or through social engineering, the owner of the private key is the owner of the coins. If there is more than one transaction with the same private key, the protocol designed to resolve double spending will be applied.
End of story
newbie
Activity: 9
Merit: 0
There's simply no feasible way to withdraw the funds on lower end puzzles like #66. It will be snatched up by bots. Not maybe, but it's 100% guaranteed. There will be hundreds of withdrawal transactions with varying fees all battling each other. You will simply be left in the dust.

It's a fundamental flaw in this puzzle that was originally aimed to bring the community together and try to solve the puzzle. The puzzle creator did not think much about the puzzle, and this is proof of it.

The only way the original solver will get the funds of puzzle #66 is if they can prove to be in possession of the private keys directly to the puzzle creator. The puzzle creator then withdraws the funds at a 6BTC fee (they can afford it) to your address.
member
Activity: 165
Merit: 26
WTF? You are showing a pattern in the ASCII values of the characters 0 to 9.

Sure there is a pattern in there, since they are consecutive values starting from '0' to '9'.

So your pattern is just the ASCII offset for character '0', which is 0x30, e.g. '0011 0000' in binary up to '0011 1001'.

Hence your "pattern".
member
Activity: 317
Merit: 34
newbie
Activity: 23
Merit: 0
========================================================================================
I spent over a year searching for #66 and even made a Nvidia Kernel to shuffle using nvcc and OpenSSL-Win64.
I have abandoned the search due to the withdrawal front runners and have been selling all my RTX GPUs anyway.
Let me show you something, if focus only on puzzles divisible by 6:

#Puzzle privkeys in binary
110001                           #6
101001 111011                        #12
110000 100000 001101                    #18
110111 000010 101000 000100               #24
111101 100101 001100 110101 100100             #30
100111 011110 100000 100000 101001 111100           #36
101010 001000 100001 110001 011000 110110 001111       #42
101011 011110 011011 010111 110011 100011 101110 011011     #48
100011 011011 111011 011011 010101 101011 010001 111101 000011    #54
111111 000000 011110 100001 100000 100101 001101 100111 101110 111110     #60
patrn1 patrn2 patrn3 patrn4 patrn5 patrn6 patrn7 patrn8 patrn9 patrn10 patrn11   #66
101100 111000 000000 101110 110010 000100 110110 101001 000100 010111 000111 000111 101000 010110 111111     #90

the above puzzle solutions could all be derived shuffling the below pool of patterns:
"101001", "111011", "110111", "000010", "101000", "000100", "011110", "111100", "101011", "011011", "010111",
"110011", "100011", "111111", "000000", "100001", "100000", "100101", "001101", "100111", "101110", "111110",
"110101", "110001", "111101", "001100", "100100", "101100", "111000", "110010", "110110", "000111", "010110",
"110000", "101010", "001000", "011000", "001111", "010101", "010001", "000011"

however some patterns are missing, below is the full pool of 64 patterns,
we can be confident that #66 can be solved by stringing the correct 11 patterns below together:
also understand that #72 can be solved by stringing the correct 12 patterns below together and #78 can be solved with
the correct 13 patterns etc.

"000001", "000011", "000111", "001000", "010101", "110001", "100110", "111000", "111010", "100000", "100100",
"101001", "111011", "101000", "110000", "001100", "011110", "010011", "101110", "110010", "001101", "101011",
"101101", "000000", "111101", "110111", "010010", "100101", "100111", "110011", "110101", "101010", "001001",
"100010", "101111", "111110", "001010", "100011", "010111", "011000", "011001", "011010", "011011", "011100",
"111111", "000010", "000101", "010001", "010100", "010110", "010000", "011101", "001011", "101100", "011111",
"000100", "110100", "110110", "111001", "001110", "000110", "111100", "001111", "100001"   

Example only:
patrn1 patrn2 patrn3 patrn4 patrn5 patrn6 patrn7 patrn8 patrn9 patrn10 patrn11    13zb1hQbWvsAVRom8TVv262i3JryAo2LqU
110100 101011 001110 010001 111001 010110 110000 110010 111110 001100 100010  (33zeros 33ones) =20d45a6a76278fff811c3fb04e3e9df1fd775808 hash160 test target
solution = 0000000000000000000000000000000000000000000000034ACE4795B0CBE322   

patrn1 can only choose between:      
"110100"
      
patrn2 can only choose between:   
"101011"

patrn3 can only choose between:          
"XXXXXX", "001110", "XXXXXX", "XXXXXX", "XXXXXX"

patrn4 can only choose between:          
"010001", "XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX"

patrn5 can only choose between:          
"XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX", "111001", "XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX",
"XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX", "XXXXXX"
          
patrn6 to patrn11 can only choose between:
"000001", "000011", "000111", "001000", "010101", "110001", "100110", "111000", "111010", "100000", "100100",
"101001", "111011", "101000", "110000", "001100", "011110", "010011", "101110", "110010", "001101", "101011",
"101101", "000000", "111101", "110111", "010010", "100101", "100111", "110011", "110101", "101010", "001001",
"100010", "101111", "111110", "001010", "100011", "010111", "011000", "011001", "011010", "011011", "011100",
"111111", "000010", "000101", "010001", "010100", "010110", "010000", "011101", "001011", "101100", "011111",
"000100", "110100", "110110", "111001", "001110", "000110", "111100", "001111", "100001"   
---------------------------------------------
The actual #66 is probably something like this:

patrn1:
      "110100", "110111", "110101", "110011", "110000", "110010", "111000"   

patrn2
      "101001", "101000", "101110", "101011", "101101", "101010", "101111", "101100", "001110", "110011", "011111",
      "000011", "010001", "000000", "000001", "000110", "000101", "111010"       

patrn3
      "001110", "100110", "010001", "111110", "110011", "011001", "101001", "101110", "010011", "110110", "111001",
      "110111", "111111" 

patrn4
      "110111", "001110", "100110", "011001", "100111", "101011", "111110", "010010", "011000", "000011", "010001",   
      "110101", "000001", "101001", "001001", "001100", "110000", "000110", "101110", "010111", "101010", "010100",
      "011101", "000100", "111010", "000101", "001111", "101101", "011011", "111011", "000000", "111111", "011100"   

patrn5 to patrn11
      "000001", "000011", "000111", "001000", "010101", "110001", "100110", "111000", "111010", "100000", "100100",
      "101001", "111011", "101000", "110000", "001100", "011110", "010011", "101110", "110010", "001101", "101011",
      "101101", "000000", "111101", "110111", "010010", "100101", "100111", "110011", "110101", "101010", "001001",
      "100010", "101111", "111110", "001010", "100011", "010111", "011000", "011001", "011010", "011011", "011100",
      "111111", "000010", "000101", "010001", "010100", "010110", "010000", "011101", "001011", "101100", "011111",
      "000100", "110100", "110110", "111001", "001110", "000110", "111100", "001111", "100001"   

I'll share this as maybe it can help someone:
patrn1 patrn2 patrn3 patrn4 patrn5 patrn6 patrn7 patrn8 patrn9 patrn10 patrn11                  13zb1hQbWVs c2S7ZTZnP2G4undNNpdh5so                      KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3q
110100 101011 001110 010001 111001 010110 110000 110010 111110 001100 100010 33zeros 33ones     13zb1hQbWvs AVRom8TVv262i3JryAo2LqU 34ACE4795B0CBE322    KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qZwtAjExHC7qVuCaDqDK                           
110111 001110 100110 011001 100111 101010 010100 010111 000110 001001 011101 31zeros 35ones       13ZB1HqbWVS FCCWUSWSB43W4vzgHdLhRMS 373A6667A945C625D    KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qa1HV4GqwfMNz9Nqecu2               
110101 011111 010001 001001 010011 001000 011111 100110 000111 000010 011110 33zeros 33ones     13zB1HqBWvs kyLE2wzSqtU8pCr4Z28PXQn 357D125321F98709E    KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qZxy2Pr7XrGPpA5QuczP                               
110111 101011 111110 010010 011000 101011 000011 110101 111010 000100 100111 29zeros 37ones*    13Zb1hQBwVS zcX7L3KsxLMykonkpXui5r7 37AFE498AC3D7A127    KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qa1txcTqpmeSt3KytEyM   
110111 000011 010001 110101 111110 111011 101010 011011 101101 001111 000101 26zeros 40ones     13zb1HqBwvs JPswzHYKoCEvYZV39Tzp2U4 370D1D7EEEA6ED3C5    KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qa13p2GHVdjaxUyF8LEw
110010 111010 110110 110101 011111 111100 000000 101011 111111 000011 111000 27zeros 39ones     13zb1HqBwvS yw8Ys9WxCg8fFVttcJVArXf 32EB6D5FF00AFF0F8    KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qZuYTd3zEiCPVEvjbGDu 
110011 010001 110011 101101 101101 101001 001000 111100 011100 110001 100100 32zeros 34ones     13zb1HqbWvS BE8YL37m85gYB8JXduPzP9Y 33473B6DA48F1CC64    KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qZv2BKmQjbBkqFByafaA
110011 000000 011001 011000 101000 010010 001011 001010 011101 101101 001101 37zeros 29ones     13Zb1HQBWVs 2Z7cwTTHnbt4UC8XmZRuoUP 3301962848B29DB4D    KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qZuf9gNnoF21yZ7vdxpo
110111 000001 101001 001001 001100 011100 100110 010111 111111 000000 101110 33zeros 33ones     13Zb1HqbWVs Rj3qjfV4azxNegobGLE2Wm8 3706924C7265FF02E    KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qa11qRkheWzW1nYQiXmZ
110000 000110 101110 010111 101010 001110 001001 000110 001100 100010 110011 36zeros 30ones*    13Zb1HQbwvs F9H25ugdHKQK2N6NWsv3LJM 301AE5EA38918C8B3    KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qZqnubqDyHhuPVYg8B6H     
110011 000101 010011 101100 001000 111011 111011 100011 111110 000111 010000 31zeros 35ones     13ZB1hqBWvs LGFeQMpAeg9Q3rzM9ok8MGx 33153B08EFB8FE1D0    KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qZum5gwhZVimMiSoVxii
Cheers Wink
======================================================
jr. member
Activity: 82
Merit: 8
Send me PM pls. I can share 1 WVs if u share too. This of course doesn't make sense lol

Already sent you a private message ,  exchange 1  private key of  13zb1hQbWVs*********      ( 0x20000000000000000 ~ 0x40000000000000000   )

The address is  the private key of 13zb1hQbWVsSAaNvpKfmc43NsuAj33LyRM

This is for reference only, I will give up on searching from ranges around 11 char  #66
newbie
Activity: 9
Merit: 0

Does that mean you just pressed CTRL+F and searched for '11', and a pattern like this appeared? Am I right? seems interesting Shocked


Whoever sent the original binary table did not read what I wrote about 8-bit binary Smiley Smiley
D      H        B        8bit-b
0    = 0 = 0000 = 00110000
1    = 1 = 0001 = 00110001
2    = 2 = 0010 = 00110010
3    = 3 = 0011 = 00110011
4    = 4 = 0100 = 00110100
5    = 5 = 0101 = 00110101
6    = 6 = 0110 = 00110110
7    = 7 = 0111 = 00110111
8    = 8 = 1000 = 00111000
9    = 9 = 1001 = 00111001
10  = a = 1010 = 01100001
11  = b = 1011 = 01100010
12  = c = 1100 = 01100011
13  = d = 1101 = 01100100
14  = e = 1110 = 01100101
15  = f =  1111 = 01100110

encode/decode write for 1 min on any code, but need use only low reg for symbols, For example: f= 01100110, but F=01000110
I thought it was funny, it’s somehow easier on the eye. This is a random result of research. To be honest, I see the btc logo repeated often lol)) I hope the translator translated it correctly



Quote
Already sent you a private message ,  exchange 1  private key of  13zb1hQbWVs*********      ( 0x20000000000000000 ~ 0x40000000000000000   )
The address is  the private key of 13zb1hQbWVsSAaNvpKfmc43NsuAj33LyRM
This is for reference only, I will give up on searching from ranges around 11 char  #66

I also replied to you in PM.

hero member
Activity: 862
Merit: 662
full member
Activity: 290
Merit: 133
Code:
Puzzle: 1        Zeros: 0        Ones: 1         Percent 0: 0.00%        Percent 1: 100.00%      Decimal: 1 | Binary: 1
Puzzle: 2        Zeros: 0        Ones: 2         Percent 0: 0.00%        Percent 1: 100.00%      Decimal: 3 | Binary: 11
Puzzle: 3        Zeros: 0        Ones: 3         Percent 0: 0.00%        Percent 1: 100.00%      Decimal: 7 | Binary: 111
Puzzle: 4        Zeros: 3        Ones: 1         Percent 0: 75.00%       Percent 1: 25.00%       Decimal: 8 | Binary: 1000
Puzzle: 5        Zeros: 2        Ones: 3         Percent 0: 40.00%       Percent 1: 60.00%       Decimal: 21 | Binary: 10101
Puzzle: 6        Zeros: 3        Ones: 3         Percent 0: 50.00%       Percent 1: 50.00%       Decimal: 49 | Binary: 110001
Puzzle: 7        Zeros: 4        Ones: 3         Percent 0: 57.14%       Percent 1: 42.86%       Decimal: 76 | Binary: 1001100
Puzzle: 8        Zeros: 5        Ones: 3         Percent 0: 62.50%       Percent 1: 37.50%       Decimal: 224 | Binary: 11100000
Puzzle: 9        Zeros: 3        Ones: 6         Percent 0: 33.33%       Percent 1: 66.67%       Decimal: 467 | Binary: 111010011
Puzzle: 10       Zeros: 8        Ones: 2         Percent 0: 80.00%       Percent 1: 20.00%       Decimal: 514 | Binary: 1000000010
Puzzle: 11       Zeros: 7        Ones: 4         Percent 0: 63.64%       Percent 1: 36.36%       Decimal: 1155 | Binary: 10010000011
Puzzle: 12       Zeros: 4        Ones: 8         Percent 0: 33.33%       Percent 1: 66.67%       Decimal: 2683 | Binary: 101001111011
Puzzle: 13       Zeros: 9        Ones: 4         Percent 0: 69.23%       Percent 1: 30.77%       Decimal: 5216 | Binary: 1010001100000
Puzzle: 14       Zeros: 9        Ones: 5         Percent 0: 64.29%       Percent 1: 35.71%       Decimal: 10544 | Binary: 10100100110000
Puzzle: 15       Zeros: 6        Ones: 9         Percent 0: 40.00%       Percent 1: 60.00%       Decimal: 26867 | Binary: 110100011110011
Puzzle: 16       Zeros: 8        Ones: 8         Percent 0: 50.00%       Percent 1: 50.00%       Decimal: 51510 | Binary: 1100100100110110
Puzzle: 17       Zeros: 6        Ones: 11        Percent 0: 35.29%       Percent 1: 64.71%       Decimal: 95823 | Binary: 10111011001001111
Puzzle: 18       Zeros: 12       Ones: 6         Percent 0: 66.67%       Percent 1: 33.33%       Decimal: 198669 | Binary: 110000100000001101
Puzzle: 19       Zeros: 7        Ones: 12        Percent 0: 36.84%       Percent 1: 63.16%       Decimal: 357535 | Binary: 1010111010010011111
Puzzle: 20       Zeros: 10       Ones: 10        Percent 0: 50.00%       Percent 1: 50.00%       Decimal: 863317 | Binary: 11010010110001010101
Puzzle: 21       Zeros: 10       Ones: 11        Percent 0: 47.62%       Percent 1: 52.38%       Decimal: 1811764 | Binary: 110111010010100110100
Puzzle: 22       Zeros: 10       Ones: 12        Percent 0: 45.45%       Percent 1: 54.55%       Decimal: 3007503 | Binary: 1011011110010000001111
Puzzle: 23       Zeros: 11       Ones: 12        Percent 0: 47.83%       Percent 1: 52.17%       Decimal: 5598802 | Binary: 10101010110111001010010
Puzzle: 24       Zeros: 15       Ones: 9         Percent 0: 62.50%       Percent 1: 37.50%       Decimal: 14428676 | Binary: 110111000010101000000100
Puzzle: 25       Zeros: 8        Ones: 17        Percent 0: 32.00%       Percent 1: 68.00%       Decimal: 33185509 | Binary: 1111110100101111011100101
Puzzle: 26       Zeros: 15       Ones: 11        Percent 0: 57.69%       Percent 1: 42.31%       Decimal: 54538862 | Binary: 11010000000011001001101110
Puzzle: 27       Zeros: 13       Ones: 14        Percent 0: 48.15%       Percent 1: 51.85%       Decimal: 111949941 | Binary: 110101011000011100001110101
Puzzle: 28       Zeros: 14       Ones: 14        Percent 0: 50.00%       Percent 1: 50.00%       Decimal: 227634408 | Binary: 1101100100010110110011101000
Puzzle: 29       Zeros: 13       Ones: 16        Percent 0: 44.83%       Percent 1: 55.17%       Decimal: 400708894 | Binary: 10111111000100101010100011110
Puzzle: 30       Zeros: 14       Ones: 16        Percent 0: 46.67%       Percent 1: 53.33%       Decimal: 1033162084 | Binary: 111101100101001100110101100100
Puzzle: 31       Zeros: 10       Ones: 21        Percent 0: 32.26%       Percent 1: 67.74%       Decimal: 2102388551 | Binary: 1111101010011111110011101000111
Puzzle: 32       Zeros: 17       Ones: 15        Percent 0: 53.12%       Percent 1: 46.88%       Decimal: 3093472814 | Binary: 10111000011000101010011000101110
Puzzle: 33       Zeros: 17       Ones: 16        Percent 0: 51.52%       Percent 1: 48.48%       Decimal: 7137437912 | Binary: 110101001011011001010100011011000
Puzzle: 34       Zeros: 18       Ones: 16        Percent 0: 52.94%       Percent 1: 47.06%       Decimal: 14133072157 | Binary: 1101001010011001011001000100011101
Puzzle: 35       Zeros: 20       Ones: 15        Percent 0: 57.14%       Percent 1: 42.86%       Decimal: 20112871792 | Binary: 10010101110110100100001000101110000
Puzzle: 36       Zeros: 19       Ones: 17        Percent 0: 52.78%       Percent 1: 47.22%       Decimal: 42387769980 | Binary: 100111011110100000100000101001111100
Puzzle: 37       Zeros: 15       Ones: 22        Percent 0: 40.54%       Percent 1: 59.46%       Decimal: 100251560595 | Binary: 1011101010111011101010110101010010011
Puzzle: 38       Zeros: 21       Ones: 17        Percent 0: 55.26%       Percent 1: 44.74%       Decimal: 146971536592 | Binary: 10001000111000001011111010110011010000
Puzzle: 39       Zeros: 19       Ones: 20        Percent 0: 48.72%       Percent 1: 51.28%       Decimal: 323724968937 | Binary: 100101101011111100000110000001111101001
Puzzle: 40       Zeros: 18       Ones: 22        Percent 0: 45.00%       Percent 1: 55.00%       Decimal: 1003651412950 | Binary: 1110100110101110010010010011001111010110
Puzzle: 41       Zeros: 20       Ones: 21        Percent 0: 48.78%       Percent 1: 51.22%       Decimal: 1458252205147 | Binary: 10101001110000110100110101100110001011011
Puzzle: 42       Zeros: 23       Ones: 19        Percent 0: 54.76%       Percent 1: 45.24%       Decimal: 2895374552463 | Binary: 101010001000100001110001011000110110001111
Puzzle: 43       Zeros: 19       Ones: 24        Percent 0: 44.19%       Percent 1: 55.81%       Decimal: 7409811047825 | Binary: 1101011110100111011001001111100010110010001
Puzzle: 44       Zeros: 22       Ones: 22        Percent 0: 50.00%       Percent 1: 50.00%       Decimal: 15404761757071 | Binary: 11100000001010110011010110100011010110001111
Puzzle: 45       Zeros: 26       Ones: 19        Percent 0: 57.78%       Percent 1: 42.22%       Decimal: 19996463086597 | Binary: 100100010111111001010000101000011110000000101
Puzzle: 46       Zeros: 27       Ones: 19        Percent 0: 58.70%       Percent 1: 41.30%       Decimal: 51408670348612 | Binary: 1011101100000110000011100010001101010101000100
Puzzle: 47       Zeros: 23       Ones: 24        Percent 0: 48.94%       Percent 1: 51.06%       Decimal: 119666659114170 | Binary: 11011001101011000010000101101010011110010111010
Puzzle: 48       Zeros: 17       Ones: 31        Percent 0: 35.42%       Percent 1: 64.58%       Decimal: 191206974700443 | Binary: 101011011110011011010111110011100011101110011011
Puzzle: 49       Zeros: 24       Ones: 25        Percent 0: 48.98%       Percent 1: 51.02%       Decimal: 409118905032525 | Binary: 1011101000001011101101011000000010101111101001101
Puzzle: 50       Zeros: 26       Ones: 24        Percent 0: 52.00%       Percent 1: 48.00%       Decimal: 611140496167764 | Binary: 10001010111101010000111100001011101001001101010100
Puzzle: 51       Zeros: 32       Ones: 19        Percent 0: 62.75%       Percent 1: 37.25%       Decimal: 2058769515153876 | Binary: 111010100000111000010100001101000000000100111010100
Puzzle: 52       Zeros: 22       Ones: 30        Percent 0: 42.31%       Percent 1: 57.69%       Decimal: 4216495639600700 | Binary: 1110111110101110000101100100110010111001111000111100
Puzzle: 53       Zeros: 29       Ones: 24        Percent 0: 54.72%       Percent 1: 45.28%       Decimal: 6763683971478124 | Binary: 11000000001111000100011100100011111100011001001101100
Puzzle: 54       Zeros: 22       Ones: 32        Percent 0: 40.74%       Percent 1: 59.26%       Decimal: 9974455244496707 | Binary: 100011011011111011011011010101101011010001111101000011
Puzzle: 55       Zeros: 24       Ones: 31        Percent 0: 43.64%       Percent 1: 56.36%       Decimal: 30045390491869460 | Binary: 1101010101111100001111110011011011001111110000100010100
Puzzle: 56       Zeros: 22       Ones: 34        Percent 0: 39.29%       Percent 1: 60.71%       Decimal: 44218742292676575 | Binary: 10011101000110001011011000111010110001001111111111011111
Puzzle: 57       Zeros: 28       Ones: 29        Percent 0: 49.12%       Percent 1: 50.88%       Decimal: 138245758910846492 | Binary: 111101011001001011100100100000111100101011101011000011100
Puzzle: 58       Zeros: 33       Ones: 25        Percent 0: 56.90%       Percent 1: 43.10%       Decimal: 199976667976342049 | Binary: 1011000110011101011011100001010010000110001001101000100001
Puzzle: 59       Zeros: 26       Ones: 33        Percent 0: 44.07%       Percent 1: 55.93%       Decimal: 525070384258266191 | Binary: 11101001001011011001011101110000111110010101011010001001111
Puzzle: 60       Zeros: 28       Ones: 32        Percent 0: 46.67%       Percent 1: 53.33%       Decimal: 1135041350219496382 | Binary: 111111000000011110100001100000100101001101100111101110111110
Puzzle: 61       Zeros: 32       Ones: 29        Percent 0: 52.46%       Percent 1: 47.54%       Decimal: 1425787542618654982 | Binary: 1001111001001011010100011011101000010111101100100100100000110
Puzzle: 62       Zeros: 28       Ones: 34        Percent 0: 45.16%       Percent 1: 54.84%       Decimal: 3908372542507822062 | Binary: 11011000111101010101000001111010110110000100011010101111101110
Puzzle: 63       Zeros: 27       Ones: 36        Percent 0: 42.86%       Percent 1: 57.14%       Decimal: 8993229949524469768 | Binary: 111110011001110010111101111110110101100110011110110100000001000
Puzzle: 64       Zeros: 34       Ones: 30        Percent 0: 53.12%       Percent 1: 46.88%       Decimal: 17799667357578236628 | Binary: 1111011100000101000111110010011110110000100100010001001011010100
Puzzle: 65       Zeros: 36       Ones: 29        Percent 0: 55.38%       Percent 1: 44.62%       Decimal: 30568377312064202855 | Binary: 11010100000111000101100010011010100000101101100100110100001100111

###

Code:
00000000000000000000000000000000000000000000000000000000000000001
00000000000000000000000000000000000000000000000000000000000000011
00000000000000000000000000000000000000000000000000000000000000111
00000000000000000000000000000000000000000000000000000000000001000
00000000000000000000000000000000000000000000000000000000000010101
00000000000000000000000000000000000000000000000000000000000110001
00000000000000000000000000000000000000000000000000000000001001100
00000000000000000000000000000000000000000000000000000000011100000
00000000000000000000000000000000000000000000000000000000111010011
00000000000000000000000000000000000000000000000000000001000000010
00000000000000000000000000000000000000000000000000000010010000011
00000000000000000000000000000000000000000000000000000101001111011
00000000000000000000000000000000000000000000000000001010001100000
00000000000000000000000000000000000000000000000000010100100110000
00000000000000000000000000000000000000000000000000110100011110011
00000000000000000000000000000000000000000000000001100100100110110
00000000000000000000000000000000000000000000000010111011001001111
00000000000000000000000000000000000000000000000110000100000001101
00000000000000000000000000000000000000000000001010111010010011111
00000000000000000000000000000000000000000000011010010110001010101
00000000000000000000000000000000000000000000110111010010100110100
00000000000000000000000000000000000000000001011011110010000001111
00000000000000000000000000000000000000000010101010110111001010010
00000000000000000000000000000000000000000110111000010101000000100
00000000000000000000000000000000000000001111110100101111011100101
00000000000000000000000000000000000000011010000000011001001101110
00000000000000000000000000000000000000110101011000011100001110101
00000000000000000000000000000000000001101100100010110110011101000
00000000000000000000000000000000000010111111000100101010100011110
00000000000000000000000000000000000111101100101001100110101100100
00000000000000000000000000000000001111101010011111110011101000111
00000000000000000000000000000000010111000011000101010011000101110
00000000000000000000000000000000110101001011011001010100011011000
00000000000000000000000000000001101001010011001011001000100011101
00000000000000000000000000000010010101110110100100001000101110000
00000000000000000000000000000100111011110100000100000101001111100
00000000000000000000000000001011101010111011101010110101010010011
00000000000000000000000000010001000111000001011111010110011010000
00000000000000000000000000100101101011111100000110000001111101001
00000000000000000000000001110100110101110010010010011001111010110
00000000000000000000000010101001110000110100110101100110001011011
00000000000000000000000101010001000100001110001011000110110001111
00000000000000000000001101011110100111011001001111100010110010001
00000000000000000000011100000001010110011010110100011010110001111
00000000000000000000100100010111111001010000101000011110000000101
00000000000000000001011101100000110000011100010001101010101000100
00000000000000000011011001101011000010000101101010011110010111010
00000000000000000101011011110011011010111110011100011101110011011
00000000000000001011101000001011101101011000000010101111101001101
00000000000000010001010111101010000111100001011101001001101010100
00000000000000111010100000111000010100001101000000000100111010100
00000000000001110111110101110000101100100110010111001111000111100
00000000000011000000001111000100011100100011111100011001001101100
00000000000100011011011111011011011010101101011010001111101000011
00000000001101010101111100001111110011011011001111110000100010100
00000000010011101000110001011011000111010110001001111111111011111
00000000111101011001001011100100100000111100101011101011000011100
00000001011000110011101011011100001010010000110001001101000100001
00000011101001001011011001011101110000111110010101011010001001111
00000111111000000011110100001100000100101001101100111101110111110
00001001111001001011010100011011101000010111101100100100100000110
00011011000111101010101000001111010110110000100011010101111101110
00111110011001110010111101111110110101100110011110110100000001000
01111011100000101000111110010011110110000100100010001001011010100
11010100000111000101100010011010100000101101100100110100001100111
member
Activity: 272
Merit: 20
the right steps towerds the goal

Does that mean you just pressed CTRL+F and searched for '11', and a pattern like this appeared? Am I right? seems interesting Shocked
Pages:
Jump to: