Bitcoin Forum
April 26, 2024, 10:26:44 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Do you Accept Komodo ICO conversion vs Reject Komodo ICO conversion and fund new dev team?
Accept - 145 (68.7%)
Reject - 66 (31.3%)
Total Voters: 211

Pages: « 1 ... 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 [358] 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 ... 547 »
  Print  
Author Topic: BTCD is no more  (Read 1328437 times)
ShadowBits
Hero Member
*****
Offline Offline

Activity: 994
Merit: 504


View Profile
October 18, 2014, 01:04:30 AM
 #7141

I just want to start off by saying I love everything about this coin.  Are there any timelines up ahead we should be reaching soon?
Even if you use Bitcoin through Tor, the way transactions are handled by the network makes anonymity difficult to achieve. Do not expect your transactions to be anonymous unless you really know what you're doing.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714170404
Hero Member
*
Offline Offline

Posts: 1714170404

View Profile Personal Message (Offline)

Ignore
1714170404
Reply with quote  #2

1714170404
Report to moderator
jl777
Legendary
*
Offline Offline

Activity: 1176
Merit: 1132


View Profile WWW
October 18, 2014, 01:52:50 AM
 #7142

I just want to start off by saying I love everything about this coin.  Are there any timelines up ahead we should be reaching soon?
It is hard to get exact timeframes, but I am working doubletime 7 days a week until I get the tech done. Things are working on a ~20 node network now, though a bit buggy, but there has been quite a lot of new code so it just needs to be debugged. The designs I am feeling quite good about and feel that it will be state of the art in many areas, especially privacy. which after all is what we are trying to do.

If we can get some test programmers writing unit tests and help with troubleshooting, regression tests, then things will go quite a bit faster. As soon as the Telepathy networking is solid, then I will be able to code at a much faster pace. I am testing telepathic transmissions this weekend. I will know a lot more early next week.

longzai understands the API structure and is coding a GUI to that, BTCDdev is doing the Windows build, so all the parts are headed toward completion approx same time. Active testing by different crew will double or triple the speed of completion.

James


http://www.digitalcatallaxy.com/report2015.html
100+ page annual report for SuperNET
ShadowBits
Hero Member
*****
Offline Offline

Activity: 994
Merit: 504


View Profile
October 18, 2014, 02:06:14 AM
Last edit: October 18, 2014, 03:39:58 AM by ShadowBits
 #7143

I just want to start off by saying I love everything about this coin.  Are there any timelines up ahead we should be reaching soon?
It is hard to get exact timeframes, but I am working doubletime 7 days a week until I get the tech done. Things are working on a ~20 node network now, though a bit buggy, but there has been quite a lot of new code so it just needs to be debugged. The designs I am feeling quite good about and feel that it will be state of the art in many areas, especially privacy. which after all is what we are trying to do.

If we can get some test programmers writing unit tests and help with troubleshooting, regression tests, then things will go quite a bit faster. As soon as the Telepathy networking is solid, then I will be able to code at a much faster pace. I am testing telepathic transmissions this weekend. I will know a lot more early next week.

longzai understands the API structure and is coding a GUI to that, BTCDdev is doing the Windows build, so all the parts are headed toward completion approx same time. Active testing by different crew will double or triple the speed of completion.

James



Awesome, keep up the good work.  Thanks for the hasty response.  I'll keep buying as the weeks go by then and Ill keep supporting your work Wink
jl777
Legendary
*
Offline Offline

Activity: 1176
Merit: 1132


View Profile WWW
October 18, 2014, 06:58:06 AM
 #7144

I just want to start off by saying I love everything about this coin.  Are there any timelines up ahead we should be reaching soon?
It is hard to get exact timeframes, but I am working doubletime 7 days a week until I get the tech done. Things are working on a ~20 node network now, though a bit buggy, but there has been quite a lot of new code so it just needs to be debugged. The designs I am feeling quite good about and feel that it will be state of the art in many areas, especially privacy. which after all is what we are trying to do.

If we can get some test programmers writing unit tests and help with troubleshooting, regression tests, then things will go quite a bit faster. As soon as the Telepathy networking is solid, then I will be able to code at a much faster pace. I am testing telepathic transmissions this weekend. I will know a lot more early next week.

longzai understands the API structure and is coding a GUI to that, BTCDdev is doing the Windows build, so all the parts are headed toward completion approx same time. Active testing by different crew will double or triple the speed of completion.

James



Awesome, keep up the good work.  Thanks for the hasty response.  I'll keep buying as the weeks go by then and Ill keep supporting your work Wink
thanks!
I think I just finished coding low level Telepathy transport layer. Since I am using UDP and many things can go wrong due to no fault of anybody (nodes dropping out, onion hopping to a node that is gone, etc) it is quite likely that a packet sent to a destination might not get there, but ones after it could. So I need to implement some sort of TCP like retry layer on top of UDP. Good thing I already did this earlier this year!

Due to the way the packets are sent, it is quite tricky to get it to work, but finally I managed to achieve this as follows:

When a contact is added (happens every init), the published public key from the NXT blockchain is used to create a shared secret between two accounts. These accounts are totally abstract and are not tied to any IP address at all and it also happens to be the key I use for the DHT traversal.

Now I could send an encrypted message between nodes to exchange the dead drop addresses, but I think using a non-predictable (to anybody else) but deterministically calculated address that only the two nodes can calculate is safe enough. Even if this is somehow compromised, it is only for a bootstrap to get a decent deaddrop address to use. Once the comms are established, then the deaddrop address to use can be updated at anytime and there is a way to get it to the other side.

Each message between the two nodes will get a sequence number and each also gets its own onetime AESpassword that is calculated as follows:

    sprintf(buf,"%llu.%d",(long long)nxt64bits,sequenceid);
    calc_sha256cat(AESpassword->bytes,(uint8_t *)buf,(int32_t)strlen(buf),shared,(int32_t)sizeof(bits256));
    init_hexbytes(AESpasswordstr,AESpassword->bytes,sizeof(bits256));
    return(conv_NXTpassword(secret.bytes,pubkey.bytes,AESpasswordstr));

sha256cat is H(m || sharedsecret) where m is the acct number of the sender with the sequenceid

So, this means the password can only be created by the two nodes who know the shared secret. I ran into a problem that the piggyback attachment was a totally encrypted blob with no header info at all. I could have put a onetime pubkey, but since I am using the sharedsecret for AES cipher I didnt want to venture into unsure crypto things. So to keep things totally encapsulated in the onetime AES cipher, I needed some other way to let the receiving end know who was sending it.

Remember that in Telepathy, there is no destination address that is actually real. It is an equidistant (in DHT space) address to N public IP privacyServers. N will hopefully be 20+ and one of these IP addresses is the actual destinations, but it can never divulge which one, so the bootstrap was tricky enough, but I solved that by putting it into the cloud at a location that is the curve25519 pubkey of the AES cipher. Another oneway function and this also combined with the need to protect the sender. After all if the sender is making DHT calls with his address in the JSON, even though it is protected by encryption, the DHT node that handles the hop has to decrypt it and if the attacker is controlling the node, then this leaks the fact that the sender sent to a specific deaddrop address. Far more leakage than I am comfortable with.

I just used the same address for all such Telepathy payload packets. But that is quite redundant and wastes precious space. Also, I use the sender's address as an authentication method and using a static address loses that. Luckily, this protection of the sender can be achieved while also providing authentication by using the "location" of the packet's sequenceid!

Now without modifying the encrpted attachment and without leaking any info, the receiver can use the "sender" field to figure out if a Telepathy packet is meant for him and most importantly what AES password to use. No need to brute force try all the possible contacts sequence id passwords, as we know what the "location"/"sender" will be for all the expected sequence ids from all the contacts.

Still have a few small issues like how to send back retry requests safely, but I am quite pleased at how all the pieces came together. I think I will be able to debug this tomorrow and at that point I will be able to send sequences of packets between any two contacts and have it reliably get there, well, assuming I can get all the bugs fixed. Realistically in complex network topologies there will be bugs, but so far so good.

As you can see, with a reliable low level packet transport, all sorts of things become very simple to do. Like file transfer (say telepod files!) or even low bandwidth audio. That would be cool, to be able to stream voice over Telepathy connection

I know this might seem like a lot of tech babble, so if you dont understand it, just ignore it. If you do understand it, plz feel free to point out any flaws. I tried hard to make sure there arent any, but with something like this it always helps to get as many eyes on the issue as possible

James

#### The following are the externally visible actions:
1. sending out a 1400 byte packet to a random node for the onion layered packet that contains the DHT storedata of the encrypted deaddrop address.

1b. some random hops later a random node will decrypt the DHT storedata and start a DHT sequence, which gets it to the secret location in the cloud.

2. sending out a 1400 byte DHT findvalue request for the secret address directly using the DHT sequence, so the DHT nodes will know that you requested something from the cloud. however, this will just look like all the other findvalue requests as it is just to a random address.

2b. the DHT nodes that are involved will find out the size of the encrypted data that you get. For now I am not making this all the same size, I probably should, but I need to first determine what the max size should be. At some point you get a 1400 byte packet back with the encrypted deaddrop address

3. you send 1400 by onion routed packets with the sender actually being the "location", so as long as the randomly selected nodes along the onion route are not colluding and sharing info about the source and destination, nobody will even know that you sent this packet out. The odds of the attacker control all randomly selected onion nodes is pretty small and they wont know for sure that you were not just forwarding, but in this worst case they will know that you sent some packets to a dead address.

4. your node participates in DHT routing following the same rules as all the other nodes. Even when you get a telepathy packet, there is no visible difference as any actions are deferred a bit and the output timing and even order of packets goint out of your node is randomized.

James






http://www.digitalcatallaxy.com/report2015.html
100+ page annual report for SuperNET
awais3344_1
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250


View Profile
October 18, 2014, 08:34:37 AM
 #7145

don't get me wrong, but every guy is saying the same thing "its so cheap now" and "whales are accumulating" why don't you buy it up?

don't know why every time someone says "this coin is long term, price doesn't matter" and "weak hands are selling" etc. makes me want to dump my bag and move on.
People need to stop this stupid mentality. Maybe it makes them feel better somehow that the price will move up again, because it's always whales and weak hands. But really, maybe it's just how market is going to be. It's been on a decline for month now.

                 ░▒▓▓▓▓▓▓▓▓▓▒▒░
           ░▒█████████████████████▒░
         ▓███████████████████████████▓░
      ░███████████████▓░▒███████████████░
     ▓██████████▓▓▒░        ▒▒▓▓██████████
   ░███▓                               ▒███▒
  ░████               ▒▒▒               ████▒
 ░█████░           ░███████░            █████▒
 ██████░          ░██      ██▒          ██████
░██████░          ██       ██           ██████▒
▓██████           ██░ ░   ░██           ███████
▓██████         ████████████████        ███████
▓██████        █████████████████        ███████
░██████▒       ███████████████       ░██████▓
 ███████       █████████████████       ▓██████
 ░███████       ████████████████      ▓██████▒
  ▒███████▒       ░ ░     ░ ░       ░███████▒
   ░████████▒                     ▒████████▒
     ▓████████▓░               ░▓█████████
      ░██████████▓░          ▓██████████░
         ▓██████████▒     ▒██████████▓░
           ░▒██████████▒▓█████████▓░
                 ░▒▓▓▓▓▓▓▓▓▓▒▒░
awais3344_1
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250


View Profile
October 18, 2014, 09:13:01 AM
 #7146

don't get me wrong, but every guy is saying the same thing "its so cheap now" and "whales are accumulating" why don't you buy it up?

don't know why every time someone says "this coin is long term, price doesn't matter" and "weak hands are selling" etc. makes me want to dump my bag and move on.
People need to stop this stupid mentality. Maybe it makes them feel better somehow that the price will move up again, because it's always whales and weak hands. But really, maybe it's just how market is going to be. It's been on a decline for month now.

You need to understand that this is not just like a normal Clonecoin which you find everywhere on Bitcointalk. BTCD has the balls to try something never done before as this takes time.

you only need 10btc to buy up to 0,008 and only 20 btc to 0,012. If you check the history how much volume BTCD had then this would be bought up in seconds or just one day.

I can ensure you who ever sells at these prices are people who don't know anything from trading.
If you like constant value and no work done why don't you stay with BTC ?

I am not saying this is the ultimate and best time to sell your coins. But it's better for me to sell and earn in other coins.

But the fact that is not only btcd, but the rest of the altcoins as well that they're all declining. And no one knows when this will actually stop. So it's always better to trade sensibly, not to listen to people on forum who tell you that it's cheap. Anyone could sell at 0.01, that was fair price, compared to where it's now.

People posting comments like it's cheap and whales accumulating only make it alarming for me. Since every time someone starts the chants, price declines faster than before.

                 ░▒▓▓▓▓▓▓▓▓▓▒▒░
           ░▒█████████████████████▒░
         ▓███████████████████████████▓░
      ░███████████████▓░▒███████████████░
     ▓██████████▓▓▒░        ▒▒▓▓██████████
   ░███▓                               ▒███▒
  ░████               ▒▒▒               ████▒
 ░█████░           ░███████░            █████▒
 ██████░          ░██      ██▒          ██████
░██████░          ██       ██           ██████▒
▓██████           ██░ ░   ░██           ███████
▓██████         ████████████████        ███████
▓██████        █████████████████        ███████
░██████▒       ███████████████       ░██████▓
 ███████       █████████████████       ▓██████
 ░███████       ████████████████      ▓██████▒
  ▒███████▒       ░ ░     ░ ░       ░███████▒
   ░████████▒                     ▒████████▒
     ▓████████▓░               ░▓█████████
      ░██████████▓░          ▓██████████░
         ▓██████████▒     ▒██████████▓░
           ░▒██████████▒▓█████████▓░
                 ░▒▓▓▓▓▓▓▓▓▓▒▒░
Azeh (OP)
Sr. Member
****
Offline Offline

Activity: 441
Merit: 500


View Profile
October 18, 2014, 09:31:27 AM
Last edit: October 18, 2014, 09:42:29 AM by Azeh
 #7147

The price is outside of anyone's control and no individual really has any idea when it will go up or down.

A good quote that sticks in my mind is, "the market can stay irrational longer than you can stay solvent", or something to that effect.

All I can really say is that at this point is progress is being made on the new tech daily and a lot of people are doing some great things.  However, we (the bitcoindark dev team) need to do a better job communicating the importance of the tech being developed to the market which would likely have a positive impact on price.  

We're working on getting better at that and hopefully this will allow the market to better reflect (in price) the value of btcd.

**I say hopefully because it is up to the market to realize this value:  BTCD will provide the most secure system of communication and transaction ever and be linked up to other coins unique features with a click of the superNET tab within the wallet client.  I don't know, does this have any value?  Wink
awais3344_1
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250


View Profile
October 18, 2014, 09:42:18 AM
 #7148

@StealthCoin

it's better for me to earn 20%-30% in other coins once in a while, than to wait months for a particular coin to go 100%. i sold some coins to go into other coins. And I have secured my money. I am only trying my best to keep my money up even though many coins are declining in price over months.

Right now, for some reason no proof of work coins are profitable anymore for your gpus. Back in 2013, 1Mh/s scrypt would pay you $15 a day. Now its not even $1. Don't know when this whole decline of prices will stop, but I think the profitability is long gone. And now it's just 10 shitcoins/s speed of cryptocurrencies, which is retarded and people including me are losing money so fast. Because that most of the traders put money anywhere without even thinking. If we all just stick to the gold ol' coins, the whole altscene would have been different. All of the hyping up of one or two features offered by a coin to pump it until the feature releases and then dump it until it's of no value, even worse the selling of these vaporware everyday. This all needs to stop to recover from this shithole of altscene.  Smiley

                 ░▒▓▓▓▓▓▓▓▓▓▒▒░
           ░▒█████████████████████▒░
         ▓███████████████████████████▓░
      ░███████████████▓░▒███████████████░
     ▓██████████▓▓▒░        ▒▒▓▓██████████
   ░███▓                               ▒███▒
  ░████               ▒▒▒               ████▒
 ░█████░           ░███████░            █████▒
 ██████░          ░██      ██▒          ██████
░██████░          ██       ██           ██████▒
▓██████           ██░ ░   ░██           ███████
▓██████         ████████████████        ███████
▓██████        █████████████████        ███████
░██████▒       ███████████████       ░██████▓
 ███████       █████████████████       ▓██████
 ░███████       ████████████████      ▓██████▒
  ▒███████▒       ░ ░     ░ ░       ░███████▒
   ░████████▒                     ▒████████▒
     ▓████████▓░               ░▓█████████
      ░██████████▓░          ▓██████████░
         ▓██████████▒     ▒██████████▓░
           ░▒██████████▒▓█████████▓░
                 ░▒▓▓▓▓▓▓▓▓▓▒▒░
xxxgoodgirls
Legendary
*
Offline Offline

Activity: 1092
Merit: 1001


View Profile
October 18, 2014, 12:21:04 PM
 #7149

What's going on with the price?

In summary, the Intel Management Engine and its applications are a backdoor with total access to and control over the rest of the PC. The ME is a threat to freedom, security, and privacy, and the libreboot project strongly recommends avoiding it entirely. Since recent versions of it can’t be removed, this means avoiding all recent generations of Intel hardware. details https://libreboot.org/faq.html#intelme --- https://tehnoetic.com/laptops --- https://store.vikings.net/x200-ryf-certfied
Cassius
Legendary
*
Offline Offline

Activity: 1764
Merit: 1031


View Profile WWW
October 18, 2014, 12:42:17 PM
 #7150

What's going on with the price?

What's going on is that I've finally had enough of people seeing BTCD crash on very low volumes and am sending some cash to Poloniex to pick up some more. Thanks!
Timevortex
Newbie
*
Offline Offline

Activity: 41
Merit: 0


View Profile
October 18, 2014, 01:10:46 PM
 #7151

I picked up some more too on Trex !!!
junsha
Newbie
*
Offline Offline

Activity: 34
Merit: 0


View Profile
October 18, 2014, 02:18:18 PM
 #7152

Hi, I still have sync problem.
I downloaded the config file on page 1, and followed the instructions.
but still have 0 connections.

Is it a known problem, and will there be a new wallet release?

Edit: after quite a long time, it start syncing Smiley  -> OK

It was syncing, but never finish. stuck on 100001 block.
Anybody has same problem? I followed all the steps on page one.
Shall I edit the config file ? 

today still stuck at 100001/100676,
Am I the only one that have wallet  sync problem?
would appreciate if I could get some help. thanks!

need some help, wallet sync problem.   thanks!

I still have problem with the lastest wallet.
1. It now stuck at 100676/150540 block.
    after almost 48 hours of running. still 100676...
    --> is it a known problem??

2. I wan't to try sending fund with the "out of sync" status.
    But most of fund goes to "Stake", only a very little in "Spendable", so when I send fund, it shows "The amount exceeds you balance", 
    How to make all my fund "Spendable"?

It's really bad that my BTCD stuck in the wallet for weeks when I want to transfer it. (it WAS good when the supernet ICO.)
Timevortex
Newbie
*
Offline Offline

Activity: 41
Merit: 0


View Profile
October 18, 2014, 03:44:06 PM
 #7153

You could try re-indexing it?   
junsha
Newbie
*
Offline Offline

Activity: 34
Merit: 0


View Profile
October 18, 2014, 03:59:17 PM
 #7154

You could try re-indexing it?   

thanks. but how to re-index it?
I just follow the steps in page 1.  use the config file (BitcoinDark.conf ), and removed all the stuff in roaming dir except .wallet and config file,  then restart the wallet client.
Timevortex
Newbie
*
Offline Offline

Activity: 41
Merit: 0


View Profile
October 18, 2014, 04:02:51 PM
 #7155

I think you have to start the wallet with the -reindex command option.   Put it in your shortcut or icon on your desktop.    Restart the wallet with it.   Then take the sync option out.

junsha
Newbie
*
Offline Offline

Activity: 34
Merit: 0


View Profile
October 18, 2014, 04:15:34 PM
 #7156

I think you have to start the wallet with the -reindex command option.   Put it in your shortcut or icon on your desktop.    Restart the wallet with it.   Then take the sync option out.



thanks, I will try this
D:\BTCD\BitcoinDark-win-qt\BitcoinDark-qt.exe -reindex
EcoChavCrypto
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250



View Profile
October 18, 2014, 06:17:36 PM
 #7157

I picked up some more too on Trex !!!

Still buying BTCD with my daily hashlet payouts.  Smiley

       ▄▄█████████▄▄
    ▄█████████████████
  ▄████████▀▀▀▀▀▀▀▀▀▀
 ▄███████▀   ▄▄   ▄▄▄▄▄▄▄▄
▄████████▄▄▄████  ▄▄▄▄▄▄▄▄
█████████▀▀▀▀▀▀▀  █████████
█████████   ▄▄▄▄   ▀███████
█████████   █████   ███████
 ▀▀▀▀▀▀▀▀   █████   ██████▀
 ▀▀▀▀▀▀▀▀   ███▀▀   █████▀
      ▄▄▄▄▄▄███▄▄▄▄█████▀
     █████████████████▀
       ▀▀█████████▀▀
Bitcoin Air 
 
.
█      ███
█      ███
  ██
  ██  ███
  ██  ███
  ██  ███
      ███
█  ██
  ███
█  ██
  ███
   ██
  ███
█  ██  ███
█  ██  ███
█  ██
     ██  █
███  ██  █
███  ██
███  ██  █
███  ██  █
███  ██  █
███      █
███  ██ 
███  ██ 
     ██ 
███
  ██ 
███
  ██ 
     ██
 
.
.
SHossain
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
October 18, 2014, 11:48:42 PM
 #7158

BitcoinDark Rich List (Top 500)

Now available on http://explorebtcd.info/bitcoindark-btcd-rich-list-top-500/

This will be updated every hour except I'm sleeping. So, Plese be patient until I can get something to update it automatically every 10 minutes. Hope you guys will like it.

There is still more to do. If you would like to help or any feedback please let me know.

Donations are welcome.
crackfoo
Legendary
*
Offline Offline

Activity: 3444
Merit: 1126



View Profile WWW
October 18, 2014, 11:59:39 PM
 #7159

BitcoinDark Rich List (Top 500)

Now available on http://explorebtcd.info/bitcoindark-btcd-rich-list-top-500/

This will be updated every hour except I'm sleeping. So, Plese be patient until I can get something to update it automatically every 10 minutes. Hope you guys will like it.

There is still more to do. If you would like to help or any feedback please let me know.

Donations are welcome.

Cool! I'm on the list a few times ^_^

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
SHossain
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
October 19, 2014, 12:03:42 AM
 #7160

BitcoinDark Rich List (Top 500)

Now available on http://explorebtcd.info/bitcoindark-btcd-rich-list-top-500/

This will be updated every hour except I'm sleeping. So, Plese be patient until I can get something to update it automatically every 10 minutes. Hope you guys will like it.

There is still more to do. If you would like to help or any feedback please let me know.

Donations are welcome.

Cool! I'm on the list a few times ^_^

You should be lucky. There are 79265 unique BTCD addresses out there as of now.
Pages: « 1 ... 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 [358] 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 ... 547 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!