Bitcoin Forum
October 09, 2024, 05:27:02 PM *
News: Latest Bitcoin Core release: 28.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 [24] 25 26 27 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 ... 114 »
461  Bitcoin / Bitcoin Wallet for Android / Re: Android Password Hacker on: June 07, 2015, 01:29:06 PM
Anyway I didn't see anything specific for this type of wallet, so I thought I would share. Hope this helps someone some day.

FWIW, btcrecover supports Bitcoin Wallet for Android. It supports searching for openssl passwords or scrypt PINs in these formats:
  • Bitcoin Wallet for Android v3.47+ (protobuf with or w/o a PIN, with or w/o openssl)
  • Bitcoin Wallet for Android v2.3 - v3.46 key backup files (openssl starting with "# KEEP YOUR PRIV")
  • Bitcoin Wallet for Android v2.24 and older key backup files (openssl starting with a WIF, same as MutliBit .key files)

how long did it take (excluding the programming)?

Slightly related if you've any interest, performance numbers comparing btcrecover (and JohnTheRipper) for various wallet formats (including the above), running on a 2nd gen. quad-core i5, are available here: http://1drv.ms/1pnpk0m

Thanks I couldn't find it in my searches. But now I know!
462  Bitcoin / Bitcoin Wallet for Android / Android Password Hacker on: June 07, 2015, 04:46:24 AM
I had my phone erased, due to my own mistake. So I needed to get my wallet running again on my phone from a backup I created. Well when I went to import it, I could not for the life of me get the correct password. I tired for over an hour.

So after reading a few of the posts here and some from the bitcoind forum I modified a ruby script created by Revalin to work with openssl and look for the correct header record as specified here: https://raw.githubusercontent.com/schildbach/bitcoin-wallet/master/wallet/README.recover

The ruby code works well enough, it is for the newer (v3.47+) wallets, but can be quickly modified for older ones. It does create some files in the system directory based on the password you put in the script. Likely due to the ">" in the charters var.  I am sure someone more knowledgeable in ruby could fix it up proper. It was my first time I have used that language, and it solved my issue.

Anyway I didn't see anything specific for this type of wallet, so I thought I would share. Hope this helps someone some day.

Code:
#!/usr/bin/ruby -w

# Put your best guess in passphrase
passphrase = "oops"
characters = " !\"\#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"

def test(phrase)
  print phrase, "\t"
  msg=`openssl enc -d -aes-256-cbc -a -in bitcoin-wallet-backup-2014-12-06 -k #{phrase} |tr -cd "[:print:]" | awk '{print $1}'`
  msg = msg.chomp
  if msg == "org.bitcoin.production"
    puts "Found it!  #{phrase}"
    exit 0
  end
end

# transpose adjacent chars
(passphrase.length - 1).times do |i|
  testphrase = passphrase.dup
  testphrase[i] = passphrase[i+1]
  testphrase[i+1] = passphrase[i]
  test testphrase
end

# delete one char
passphrase.length.times do |i|
  testphrase = passphrase.dup
  testphrase = testphrase[0,i] + testphrase[(i+1)..-1]
  test testphrase
end

# substitutute one char
passphrase.length.times do |i|
  characters.chars.each do |c|
    testphrase = passphrase.dup
    testphrase[i] = c
    test testphrase
  end
end

# insert one char
(passphrase.length + 1).times do |i|
  characters.chars.each do |c|
    testphrase = passphrase.dup
    testphrase.insert(i, c)
    test testphrase
  end
end


puts "No luck."
exit 1

463  Bitcoin / Bitcoin Technical Support / Re: Encrypted wallet.dat, lost password, any solutions? on: June 07, 2015, 04:27:21 AM
Here, I whipped up something quick and dirty.  Just fill in your passphrase as close as you can remember, and make sure bitcoind is in the current dir.  It should print lots of "The wallet passphrase entered was incorrect" if it's working.


Code:
#!/usr/bin/ruby -w

passphrase = "oops"
characters = " !\"\#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"

def test(phrase)
  print phrase, "\t"
  msg=`openssl enc -d -aes-256-cbc -a -in bitcoin-wallet-backup-2014-12-06 -k #{phrase} |tr -cd "[:print:]" | awk '{print $1}'`
  msg = msg.chomp
  if msg == "org.bitcoin.production"
    puts "Found it!  #{phrase}"
    exit 0
  end
end

# transpose adjacent chars
(passphrase.length - 1).times do |i|
  testphrase = passphrase.dup
  testphrase[i] = passphrase[i+1]
  testphrase[i+1] = passphrase[i]
  test testphrase
end

# delete one char
passphrase.length.times do |i|
  testphrase = passphrase.dup
  testphrase = testphrase[0,i] + testphrase[(i+1)..-1]
  test testphrase
end

# substitutute one char
passphrase.length.times do |i|
  characters.chars.each do |c|
    testphrase = passphrase.dup
    testphrase[i] = c
    test testphrase
  end
end

# insert one char
(passphrase.length + 1).times do |i|
  characters.chars.each do |c|
    testphrase = passphrase.dup
    testphrase.insert(i, c)
    test testphrase
  end
end


puts "No luck."
exit 1


Good luck!

edit: This also requires a running bitcoind.
1. set "rpcpassword=somerandomcrap" in .bitcoin/bitcoin.conf
2. run "./bitcoind -daemon"
3. run "./bitcoind getinfo" until it starts returning data instead of errors
4. then run the script above.

Just wanted to say thanks for this. I had lost(mistyped) my Android backup wallet password. And I slightly modified this script (as shown). And I as able to get the correct password in a matter of seconds.  First time with ruby, so I cheated with some system calls. But it did the job, albeit it made a few crazy files in the process. Thanks!!
464  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5. Come on in the water's fine! on: June 05, 2015, 11:42:08 PM
Need some help. About a week or more ago my Mac Hobo wallet crashed for some unknown reason. Every time I would launch it after would just cause a crash prior to loading the wallet. Seemed to be failing on the blockchain load. I went as far as to delete everything in the folder. I did back up my wallet file so know thats in a safe spot. Ever since I have tried to resync the block chain a few times. Get a day or two into downloading it. For some reason wallet stops syncing. I close and restart wallet, and then the app crashes again and I have to start downloading blockchain all over again. I have tried resyncing the Mac wallet on 3 different mac machines i own and it doesn't make it through it and i can't get wallet to finish syncing or load properly. I did download the blockchain available download. fresh install folder, replace files in directory, and app crashes before getting into wallet. Then have to start all over again. A bit frustrating since i haven't been able to get into my hobo wallet for over 10 days now trying to resent the wallet.
Some ideas or a fix / update to the mac wallet would be appreciated.

Hard to tell from your post, so if you've already done this, ignore me Tongue

But try to sync with a new wallet, all the way. THEN turn off your client and copy the old wallet.dat in place. If it crashes, then you've got a corrupt wallet.dat file. There are a few ways around that. First one is to start the client with the -salvagewallet flag, which will attempt to bring everything back. If it works, then you'll want to dump the private keys and import them into a new wallet.dat file. Just on general principles.
Well I have tried about every combination I can think of to resync my mac wallet. two different machines. fresh installs without my wallet file. I am able to start syncing and get about 2/3 of the way done, for some reason it stops syncing on both macs, crashes the wallet, then can't restart wallet without crashing. I have also tried downloading available march blockchain from a fresh install and replacing files in library and upon next wallet launch it crashes just like when i tried syncing manually on both machines. I am convinced there is something else wrong outside of my computers. Seems something is wrong with the mac wallet. Any other mac users having trouble. almost two weeks here not being able to load my wallet up. Getting ready to goto a friends house if I can't get this resolved soon, synch up on a windows machine(i dont own one) get to my coins and transfer out to an exchange for sale. I would rather not but unless I can get a working wallet I am not sure what else to do. Any additional ideas appreciated. Maybe someone want to share an updated blochain and tx data file for me to try loading up?

I am not a mac-user so I can't help you there, in windows everything works just fine. But there is a bootstrap blockchain and tx data file that could be of use to you. I tested it for you and it works ok. It's close to 3 months old.

http://www.mediafire.com/download/rzu9hu5w37f7rmb/HoboBlockChain03-01-15.zip


I appreciate the suggestion. I have been trying to use the bootstrap for days now. Gets to 344.5 Mb stops, closes HBN wallet. Go and restart and appears to fail on import.Blockchain still a year left to resync upon a restart. Keeps stopping in same place.
Maybe I am a bit confused about the process of loading the bootstrap. Sorry for my ignorance. This is what I have been doing.
When I delete the entire hobo directory(of course backing up wallet.dat) I start HBN so all the files are recreated. Then I copy the blockchain file and the tx data directory in and replace all files. and restart, the wallet completely fails and won't open. I have also tried renaming the blockchain file to bootstrap.dat and with the copied tx data folder it also fails to open wallet and crashes.. I have also tried from a fresh install of all files only copying the blockchain file, renamed to bootstrap.dat and that seems to start loading the file, but then stops at 344.5 Mb.
Can someone give me some better instructions for loading these files up after a fresh wallet install? Just looking for ideas. I have loaded bootstraps before for other wallets, but never had this much trouble!

Frostbite, mac by defaults limits the number of open files to a very small number. This causes major issues with many wallets, especially fast  block ones. Please see this informational post on a fix.

https://cryptocointalk.com/topic/27625-cant-sync-mac-wallet-for-3-weeks-now/
465  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5. Come on in the water's fine! on: June 05, 2015, 11:38:19 PM
Hello all, long time since I have been here. Sorry about that.

Time tends to get away from me more each day. I think in the last few weeks, I have spent less then 5 hours on the computer, that was not work related.  Between work, family and Ninja training I have been pretty swamped. Also lost my production computer(bad power) last week. And now my dev computer is dying(not sure why).

I'll read through all the messages and posts since I was out. Looks like things are going pretty well just the usual problems.

First off, do not worry about the checkpoint too old message. I have been only setting check points manually as we are getting more secure each day. I have a new version ready on github that will remove this message along with other things.

Secondly I'll be releasing 1.5.1 here tonight or Saturday. This will mostly be a Windows and Self Compiler version only. Unless we can get someone to do the mac update. It will include the checkpoint message fix, as noted above, as well as the split/combine update as seen in the previous github.

Also just for the record my plans with HBN haven't changed. Just right now we are in cruise control, so lets just enjoy the ride.

Thanks all!





466  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5. Come on in the water's fine! on: April 22, 2015, 01:24:54 AM
Put a commit on github today.
https://github.com/Tranz5/HoboNickels/commit/f46fa0c32d33ffd6194cc5f2c994a2d62081a7d4
Code:
 Update split/combine threshold
Up the max to 100/200 as startup, and added rpc commands, which allow
the default max, or wallet balance divided by 250

I am going to look at a few of the bugs with s4c, and see if I can get those fixed up. If I can do that in a reasonable timeframe. I'll officially release 1.5.1.0. If not I'll compile this small change and release 1.5.0.1
467  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Places to trade HBN on: April 19, 2015, 10:12:58 PM

Well, sorry to see one go, but glad to have another replace it. I'll work on getting the links updated here soon. Thanks for the update.
468  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5. Come on in the water's fine! on: April 19, 2015, 10:12:12 PM
Concerning the CCE explorer at: hbn.cryptocoinexplorer.com

The new database loader has been patched into all the explorers and restart tests were done over the last few days.

...

There are so many options being added to CCE 4 that most likely it will be offered in a tiered format. From very basic free explorers (text like with only a couple, if any, API commands) with advertisement type funding to a top tier with things like blockchain downloads updated weekly, coin client downloads, user accounts, advanced API features for statistics and "lite" clients , user and developer explorer customizations, coin website hosting and much more. Much of this is covered in https://bitcointalk.org/index.php?topic=922521.0
Once a larger chunk of the new features is finalized, I will  post them in the CCE 4.0 thread. Please offer any ideas for features you might want in that thread.

...

I like some of the additional features. Those sound very cool.
469  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5. Come on in the water's fine! on: April 19, 2015, 10:10:44 PM
Seeing high CPU utilization while staking...80+ % on a core2 laptop. If I combine smaller blocks into fewer larger blocks will this bring down cpu usage? What else can I do?

You can also set the "Affinity" and only allow the process to use 1 cpu.
470  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5. Come on in the water's fine! on: April 19, 2015, 10:08:21 PM
Is it normal while staking to have upwards of 700k weight?

I'd like to reiterate I am still wondering about this. I am over 1 Million weight and have quite a few blocks of 500+ sitting at 30+ days age. Wondering if this is normal or not? Should I be coming into blocks of 1000+?

That is a bit odd, you should be staking those 500 pretty darn quick. My oldest is 14 days, and that is 160 in size.  My weight is 170k.

Are you getting many orphans? Are you getting some good stakes? Which client are you using?



170 when I repaired just now. Not too many I suppose. Most of mine anywhere from 1-20 chunks with some bigger ones in there. At this point I just want to have it combine into blocks that stake ~100 hbn at a time. Using client v1.5.0.0-gd677d58e-V1.5. I can screenshot it if you would like. I mine on 2 computers, 1 is 24/7 with 1 cpu, other is like 8 hours a day on 6 cpus.

New message on my client today. WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers.

If you have a lot of little blocks, those could be getting in the way of the bigger blocks. I think combining the little blocks is a good idea.

That message should go away now, on your next restart.

Thanks. I do have something like 4250+ in the coin control menu. I assume that's a bit too many blocks of HBN.

I was looking at all of the updates for 1.5 and came across coinstake updates. Would this help solve my problem? If i read this correctly it can automatically group blocks together after a successful staking.
-splitthreshold=<n>    " + _("Set stake split threshold within range (default 5),(max 20))")
-combinethreshold=<n>  " + _("Set stake combine threshold within range (default 5),(max 20))")

Is that max set in stone? I feel like if my blocks could automatically lump into 200+ blocks I would be fine. How does one go about using startup switches like this?

To use a startup swtich you can just create a .bat file and run the following.

Code:
start HoboNickels.exe -splitthreshold=99 -combinethreshold=100

You can also put them in your .conf file.

I will be updating the code and releasing a new version that will allow for higher threshold checks, similar to bottlecaps. I may get to it tonight, or at least this week.
471  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5. Come on in the water's fine! on: April 08, 2015, 05:44:42 AM
A few days ago I got an error when trying to boot up my wallet and had to download the block chain again from scratch, took about three days. The wallet ran fine for a few days and had an error again but forgot to record the error but I once again DL the block chain again using the block chain data zip file from the website and now I am getting checkpoint too old contact the developer? I am using the 1.5v of the HBN wallet.

Supporter of HBN since its birth via a blundertoe Crypto Cosmic Interstellar Collision. She is still staking HBNs, yay! Yet a restart or even a complete blockchain download does not fix.



 If you are on the same chain as http://hbn.cryptocoinexplorer.com/ no worries.

The last checkpoint was issued just a few hours ago.
Code:
01:43:14
getcheckpoint


01:43:14
{
"synccheckpoint" : "dad6a798d7a96bf2189c1a900b716f9dc96da557967bed8b21ccd337fbef66f8",
"height" : 1962556,
"timestamp" : "2015-04-08 01:04:13 UTC",
"policy" : "strict"
}
472  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5. Come on in the water's fine! on: April 08, 2015, 01:11:06 AM
Is it normal while staking to have upwards of 700k weight?

I'd like to reiterate I am still wondering about this. I am over 1 Million weight and have quite a few blocks of 500+ sitting at 30+ days age. Wondering if this is normal or not? Should I be coming into blocks of 1000+?

That is a bit odd, you should be staking those 500 pretty darn quick. My oldest is 14 days, and that is 160 in size.  My weight is 170k.

Are you getting many orphans? Are you getting some good stakes? Which client are you using?



170 when I repaired just now. Not too many I suppose. Most of mine anywhere from 1-20 chunks with some bigger ones in there. At this point I just want to have it combine into blocks that stake ~100 hbn at a time. Using client v1.5.0.0-gd677d58e-V1.5. I can screenshot it if you would like. I mine on 2 computers, 1 is 24/7 with 1 cpu, other is like 8 hours a day on 6 cpus.

New message on my client today. WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers.

If you have a lot of little blocks, those could be getting in the way of the bigger blocks. I think combining the little blocks is a good idea.

That message should go away now, on your next restart.
473  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5. Come on in the water's fine! on: April 08, 2015, 01:08:57 AM
A few days ago I got an error when trying to boot up my wallet and had to download the block chain again from scratch, took about three days. The wallet ran fine for a few days and had an error again but forgot to record the error but I once again DL the block chain again using the block chain data zip file from the website and now I am getting checkpoint too old contact the developer? I am using the 1.5v of the HBN wallet.

You should be ok. A restart should take care of that message.
474  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5. Come on in the water's fine! on: April 07, 2015, 01:24:38 AM
Is it normal while staking to have upwards of 700k weight?

I'd like to reiterate I am still wondering about this. I am over 1 Million weight and have quite a few blocks of 500+ sitting at 30+ days age. Wondering if this is normal or not? Should I be coming into blocks of 1000+?

That is a bit odd, you should be staking those 500 pretty darn quick. My oldest is 14 days, and that is 160 in size.  My weight is 170k.

Are you getting many orphans? Are you getting some good stakes? Which client are you using?

475  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Bottlecaps 2.1 UPDATE REQUIRED - HARDFORK JULY 4 2014 to 200% Annual PoS on: March 19, 2015, 12:57:48 AM
Question if maybe the wallet can be more CPU optimized.

It constantly using much CPU power, up about 50% or more from my CPU (Intel i5 4.Gen) , compared to other Coins/ Stakewallets it`s huge:

Any thought´s why CAp wallet using so much CPU?

This is often a sign of a high number of coin blocks. Check your coin control. If you have over 500 blocks, you might want to combine them.  either using the split/combine thresholds or manually.

There is some code enhancements that can be done to further optimize the staking.  A future release may have this.
476  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Bottlecaps 2.1 UPDATE REQUIRED - HARDFORK JULY 4 2014 to 200% Annual PoS on: March 19, 2015, 12:55:20 AM
Hey Tranz... I Just got the new wallet V2.2.1.0 and it connected and synced just fine. I am also able to send coins to it with no problem. For some strange reason it is not staking coins. It is unlocked and enabled for staking. It says I have a 50% chance of staking in the next 30 seconds. It has not staked in the last 3 hours. Any idea what might be wrong? If it does not start staking soon I guess I will drop back to the old wallet.


No not sure, I haven't had any issues with it. There was very small changes between 2.2.0 and 2.2.1. And but for 3 lines of code nothing was really changed around the staking.

It has been 24 hours. Has it still not staked?
477  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5. Come on in the water's fine! on: March 17, 2015, 02:05:01 AM
I actually thought of investing into 10 BTC to this coin. You do seem to have a nice community and the coin s been here for a long time. Is it safe to do so?

Then I discovered trolls like this Argon18 guy who go around and troll thread after thread with mindless comments. This started me thinking, if they waste so much time and energy on that, there must be something wrong with this coin since they try to eliminate any and every kind of competition. Are you guys really doing that bad? Is everything OK with this coin? Really wouldn't want to lose you, this coins is an important part of crypto community.

I've been into HBN and CAP for over a year and I've never regretted it. I have great respect for Tranz's dedication, knowledge and his kindness to help anyone who needs support. Just read the HBN and CAP threads and decide for yourself.
There is no question, that Tranz is one of the most repected devs in the community, and his coins have passed the test of time, with many happy investors.

While Im here, Tranz, I really want more bottlecaps and HBN. What are the chances of getting a multipool together as I have a large sha-256 farm I would like to use.

Vegas

Thank you both for the kind words.

We did have a multi-pool for a while, but it is offline now. Can you recommend one that would be worth talking too? I am not keen on having to pay a fee to get listed. But if there is one that is very steady it could worth discussing.

I do want to say a few words about the future of HBN, and to a smaller extent CAPs. First off I am sorry I haven't been around quite as much. Over the last few months I haven't been able to get back into the coding mind set.  I have been pretty busy at home with family, at work(soon to be worse), and with some other activities(training and lessons).   I still plan to do more development, as I do quite enjoy it, I just need find a way to work it back in. No set time frame on this.

So be that as it may, I want to re-iterate that I have no plans to leave. I'll be doing more administrative work, answering questions, keeping things up to date, etc in the short term. And more development in the future.  I will obviously fix any serious issues right away, but more features and code base updates will be stymied for a while.

So in short, I am here for the long term, but not in the exact same capacity as before. At least currently.

I do want to say I am happy with the growth of the network and the steadiness of the price.  I think these are the things that will help lead to long term appreciation. Hopefully these things continue and we push forward!

Thanks all.

478  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5. Come on in the water's fine! on: March 17, 2015, 01:42:59 AM
I actually thought of investing into 10 BTC to this coin. You do seem to have a nice community and the coin s been here for a long time. Is it safe to do so?

Then I discovered trolls like this Argon18 guy who go around and troll thread after thread with mindless comments. This started me thinking, if they waste so much time and energy on that, there must be something wrong with this coin since they try to eliminate any and every kind of competition. Are you guys really doing that bad? Is everything OK with this coin? Really wouldn't want to lose you, this coins is an important part of crypto community.

I assume this is somewhat tongue-in-cheek but I'll answer anyway.  Any investment big or small should be done with at least some due diligence..  If the only guide you are using is the presence or lack thereof of trolls, then you may get burned. Having said that, it is nice, at least in my opinion, that HBN doesn't attract a lot of trolls. We have had a few here and there but they mostly leave us alone.

With that in mind, 10 BTC if played right could get a nice % of the market share.  I can tell you I have invested a lot more then that!
479  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Updated Pool List on: March 17, 2015, 01:30:49 AM
Updated Pools list???
Seems that I can't find a good pool to use to mine Hobo. Have mined periodically over last year or so but now can't find a good list of Pools on the current Block chain?
Can anyone help provide some ?

I have gone through the list, https://cryptocointalk.com/topic/21159-mining-pools/?p=145408 and crossed off a few. This should be many of them. Can others in the community confirm they use something other that what is listed on the page?

Thanks.
480  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5. Come on in the water's fine! on: March 12, 2015, 11:07:59 PM
Would someone kindly provide a bootstrap file for HBN? I am having a hell of a time getting it synced.

1st page has all the details.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 [24] 25 26 27 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 ... 114 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!