Bitcoin Forum
July 31, 2024, 06:46:35 PM *
News: Help 1Dq create 15th anniversary forum artwork.
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 [156] 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 ... 573 »
3101  Bitcoin / Mycelium / Re: Mycelium Bitcoin Wallet on: July 07, 2015, 06:31:11 AM
I have sent several txs during the last few hours, but I noticed none of them seem to be broadcasted. I don't just mean not confirmed, they don't even show up in block explorers (such as blocktrail.com, blockr.io, blockchain.info, etc). Anything wrong with Mycelium servers?

I just sent a transaction from Mycelium and it too isn't showing up anywhere.

Can I get the raw transaction so I can broadcast it myself? Or at ETA for when it might be broadcast? Or any kind of word on what's going on here?

I didn't use Mycelium a whole lot recently, but as I remember it I used to be able to get details of each transaction, and copy/paste the transaction ID. Now I can't figure out how to do that. Touching a transaction in the transaction list is occasionally selecting it, sometimes just making it flicker, but mostly doing nothing. So I turned the tablet off and on again only to find that the non-broadcast transaction has vanished. When I look at the output I tried to spent at blockchain.info I don't see any pending transaction there either.

So I'm thinking I can export the xprv key, use that to find the output's private key, import it into a real Bitcoin client, and make a conflicting transaction there, just in case the first transaction is stuck somewhere in a Mycelium server somewhere. I don't want to end up paying twice...

Edit: That worked. I used something called 'pycoin' to convert the xprv... string you get from exporting the Mycelium wallet into a Bitcoin wif format private key, imported the private key, and spent the output. It was just 7 commands including the installation of pycoin:

Quote
$ cd /tmp

$ virtualenv pycoin.env
New python executable in pycoin.env/bin/python
Installing setuptools, pip...done.

$ source pycoin.env/bin/activate

(pycoin.env)$ pip install pycoin
Downloading/unpacking pycoin
  Downloading pycoin-0.52.tar.gz (78kB): 78kB downloaded
  Running setup.py (path:/tmp/pycoin.env/build/pycoin/setup.py) egg_info for package pycoin
    
Installing collected packages: pycoin
  Running setup.py install for pycoin
    
    Installing tx script to /tmp/pycoin.env/bin
    Installing cache_tx script to /tmp/pycoin.env/bin
    Installing genwallet script to /tmp/pycoin.env/bin
    Installing bu script to /tmp/pycoin.env/bin
    Installing ku script to /tmp/pycoin.env/bin
    Installing spend script to /tmp/pycoin.env/bin
    Installing block script to /tmp/pycoin.env/bin
    Installing fetch_unspent script to /tmp/pycoin.env/bin
Successfully installed pycoin
Cleaning up...

(pycoin.env)$ read x
xprv9yH[...deleted-secret-stuff-here...]

(pycoin.env)$ bitcoin-cli importprivkey $(ku -W -s 0/0 $x) '' false

(pycoin.env)$ bitcoin-cli sendrawtransaction $(bitcoin-cli signrawtransaction $(bitcoin-cli createrawtransaction '[{"txid":"5d858f836924ae205f5397d2a27e98d874bca7cd0711fbe60ae25f80c1adf0a3","vout":0}]' '{"18CzYPg8NrbFbRGghrH1tiWVqWpNZF5jxt":1.8902,"15u9hqee9ibAYVkQ1fPLL45nazJ8DQtyV4":12.27013776}') | grep hex | cut -d'"' -f4)
b969d7eacb7b38e7a1921d78c24add76d3dd9990d952b4de081efbe6a85ecad9

(pycoin.env)$

The 'false' argument at the end of 'importprivkey' tells bitcoind not to rescan the whole chain. I know there's only one output at that address and I know its txid and vout, so scanning the chain would be a waste of time. I used the raw transaction RPC commands, but you could use the coin-control GUI in bitcoin-qt (but for that you would have to let importprivkey rescan the chain).

The "ku -W -s 0/0 $x" part is dumping the WIF format private key for the 0th non-change address in the wallet. The first 0 means "real address, not change address" and the 2nd 0 means "the first address" (it counts from zero).

Edit2: even after the new transaction confirmed, it doesn't show up in Mycelium. I've refreshed, but my balance there shows the same as it was before I spent it all.

Edit3: Edit2 is a lie. The balance does indeed show 0, but the transaction list only shows a single incoming transaction. It doesn't show the one that I made using the bitcoin-cli raw transaction.
3102  Bitcoin / Mycelium / Re: Mycelium Bitcoin Wallet on: July 07, 2015, 05:26:30 AM
I have sent several txs during the last few hours, but I noticed none of them seem to be broadcasted. I don't just mean not confirmed, they don't even show up in block explorers (such as blocktrail.com, blockr.io, blockchain.info, etc). Anything wrong with Mycelium servers?

I just sent a transaction from Mycelium and it too isn't showing up anywhere.

Can I get the raw transaction so I can broadcast it myself? Or at ETA for when it might be broadcast? Or any kind of word on what's going on here?
3103  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice.com : Invest in 1% House Edge Dice Game on: July 07, 2015, 03:33:17 AM
Thanks for listening to my suggestions dooglus. The whois command works great. Smiley Thanks for implementing.

The last sentence with the bot output was meant for the sound playing when you name is mentioned in chat. It doesnt make sense when a sound appears when your name is mentioned only because you made a big bet. You know already that your name is in the chat. So the sound should only play when you need to be notified.

Oh, I see. That's how I did it...

Reload the site now. Chat lines where people mention your name or userid are bolded. You can turn on an audible alert too using a setting in the account tab. And also edit the list of words that trigger the alerts.
3104  Bitcoin / Bitcoin Discussion / Re: Blockchain split of 4 July 2015 on: July 06, 2015, 05:19:37 PM
So how can we correct the reward function?  Is there some key the miners can't possibly know, some test they cannot pass, unless they have REALLY checked the blocks?

Interesting question , perhaps by requiring some kind of checksum be calculated and inserted into the next block?

As I understand it, f2pool didn't even have a copy of the block they were mining on top of. All they had was the bare minimum needed to build on top of it. If validating a block produces a checksum that is needed to be included in the next block then whoever is giving them the details they need will just add that checksum to the list of details they provide. f2pool still won't have to validate anything.

I don't see a way of checking that the miners even have a copy of the parent block let alone checking that they have verified it without breaking compatibility with all existing mining hardware.
3105  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: JUST-DICE.com ADMINS NOT ENFORCING THE RULES RATHER TAKING SIDES, Comments Here. on: July 06, 2015, 04:20:49 PM
Has anyone else run into issues on this site where it seems that the rules never apply to anyone but new members and the non "club members". All I want is a admin of the site to come on here and explain to me why "GATOR" < ME was muted on the site / banned, is this unfair?

I only just found this thread. I'm not sure why you thought I would happen to notice your thread.

There's an email address at the end of JD's FAQ tab for customer support.

I'll take a look at the logs and see who muted you. Do you have record of when it happened, or a screenshot, or your userid or username or anything that might help me locate it?
3106  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice.com : Invest in 1% House Edge Dice Game on: July 06, 2015, 03:49:51 PM
And it seems there is no way to identify a winning user under biggest, with his ID, when he didnt post in the chat. If you search such id with !last then nothing happens. Is there another way?

You can /msg him - that tells you his name.


Looking up the bet ID in chat works too as that gives the username at the top of the 'bet info' dialog.

Do:

  /whois 1

It's a recently added command for looking up names from userids.

dooglus, can you maybe change last so that it at least reveals the username? I dont want to always write the user a private message when i dont know who it was.

Yes, I'll be changing that 'soon'.

And another thing that came to mind when using just-dice... you already have the option to play a sound when big bets going on. More important for me would be to have a sound when my username or id is mentioned in the chat. It would make it much easier to be noticed when someone wants something from you.

OK.

Of course bot outputs should only count when you dont know about your name being written. It makes no sense for bets, but for many other things.

I don't understand. Can you give some examples please?
3107  Economy / Scam Accusations / Re: [SCAMMER ALERT] FAKE Bittrex-Richie || 360 CLAMs stolen || Just-Dice.com on: July 06, 2015, 03:30:34 AM
There are a number of wallet explorers that tag which Bitcoin addresses belong to semi-major sites/exchanges/ect, I don't see why someone couldn't do a similar analysis for CLAMs or at least for their CLAM addresses. I wouldn't think it would be difficult to find the majority of their CLAM addresses with blockchain analysis.

That's a good idea. Any idea whether any of them are open source or open to adding new coins?

None of the CLAM block explorers that I am aware of do the address clustering / labelling thing.
3108  Economy / Scam Accusations / Re: [SCAMMER ALERT] FAKE Bittrex-Richie || 360 CLAMs stolen || Just-Dice.com on: July 06, 2015, 02:00:56 AM
That is kind of dooglus to help you out with this, I only wish for your sake that you had contacted dooglus in the first place to escrow your trade between you and the scammer (he probably would have).

I have added an escrow function to Just-Dice now. See the FAQ tab for details - search for "escrow" in there.

I guess a not enough educated support person can create bad press pretty quick.

Apparently the support person was parroting the official company policy. xploited (CLAM dev) tells me he spoke to bittrex-richie (the real one!) who told him that their lawyers won't let them comment on whether they control particular crypto addresses or not. Which sucks, but at least it's not the support person's fault.
3109  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Scrypt.CC | Scrypt Cloud Mining on: July 06, 2015, 01:57:02 AM
If PONZA, then you explain to me how it works nearly two years?
If PONZA, then you explain to me how it works nearly two years?
If PONZA, then you explain to me how it works nearly two years?
If PONZA, then you explain to me how it works nearly two years?
If PONZA, then you explain to me how it works nearly two years?
If PONZA, then you explain to me how it works nearly two years?

http://bitcoincloudservices.com/ was on the market similar long time actvie and now ist gone.
pbmining.com the same, now its gone.

And lots lots another. Until ponzi get profit from "top" of piramide, until owners keep it running. in case when U need to payout more then U get form new users , its time to close ponzi. But how to close its subcjet on another post Smiley Admin of scrypt.cc ( realy U all think its some "Marcelo" ? it could be anybody.. ) chosen clever way, not to sudenly close  minig but prevent hacking and withdraw BTC for himself, than start portal again because he knows there will be pep to invest again, and again, and again........

Showing BitcoinCloudServices as an example is stupid and the reason is; if you couldn't tell that BitcoinCloudServices was a scam, you need to go back to school. Look at this picture, apart from the fact that the miners are photoshopped in it isn't set up as you wouldn't put the exhaust vents against a wall.
[img]https://www.bitcoincloudservices.com/wp-content/uploads/2014/06/d4.jpg/img]

koikoi's argument appears to be "s.cc cannot be a Ponzi because it has been running for two years; Ponzis cannot run for two years, hence s.cc is not a Ponzi".

In order to disprove his argument, all you need to do is find a counterexample. That is what drawer did. Even though bitcoincloudservices was obviously a scam, even it was able to run for two years. And so s.cc which is very slightly less obviously a scam (instead of photoshopped miners we get no photo at all, and claims to be mining with 850 Gh/s) should be able to run for even longer, even if it is a scam.

Get it? It's called logic.
3110  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice.com : Invest in 1% House Edge Dice Game on: July 05, 2015, 09:50:11 PM
The other domain doesnt work for me. But i believe that it will work. Guess i need to adjust the value to bid daily according to the chance. Tongue

Its hefty with the tip... i hate scammers with a passion. Hopefully they get all their well deserved end. Smiley

I took the test site down after putting the changes live. You can reload Just-Dice.com now to see the things I was talking about.
3111  Economy / Gambling / Re: I have a +EV method for a dice site,[CONFIRMED +EV is possible] on: July 05, 2015, 09:40:25 PM

Quoting just for references in case few hours later someone find a rounding issue again
Nice idea! Because I did!
Set bet amount to 0.00000001 (one satoshi) and payout multiplier to 1.5
You can't divide a satoshi so 1.5 gets rounded to 2.
The house edge is 32.24%. (Roll over 33.86, or Roll under 66.13 with 2x payout)

To crypto-games.net admins: Will I get a price for this?  Kiss
If i play for 1 satoshi and win, i get one, not two.

So i dont know what u mean that i will get two, multiplier is set to 1.5

ClamCoin
No. You don't get one, your profit is one.
You get two satoshies on win, but your bet is one, so the rest is your profit(one satoshi).

You get 1.5 on a win, 0.5 of which is profit. If you win two in a row, one time your balance will go up by 1 satoshi, the other time it will stay still. It's like you really win 0.5 profit, but the displayed balance is rounded to 8 decimal places.
3112  Economy / Gambling / Re: I have a +EV method for a dice site,[CONFIRMED +EV is possible] on: July 05, 2015, 09:35:37 PM
Yeah sure. Investors are safe. What you think -> I don't care.

You emailed your investors before you knew any details of the vulnerability telling them that they were safe.

You were wrong.

Once you knew about the vulnerability you denied it because you couldn't reproduce it in your badly coded simulation.

You were wrong again.

So what makes you think that you're qualified to say "Investors are safe" now? And why should they believe you when you have shown yourself to be generally clueless?
3113  Economy / Gambling / Re: I have a +EV method for a dice site,[CONFIRMED +EV is possible] on: July 04, 2015, 07:39:28 PM
This whole issue came about because too many different payout multipliers result in the same chance of winning when the chance is rounded to 2 decimal places.

That's an issue that all dice sites have to consider at some point, and of course they all come to the conclusion that you need to let the player pick the chance and tell them what the multiplier is going to be, and not the other way around.

Just-Dice has been running for 2 years and only today did someone ask about this for the first time. They want to turn 0.6 CLAM into 130k CLAM, and to do so they need a multiplier which results in a chance of winning of 0.00045%. We only allow chances to 4 decimal places, and so he has to go with 0.0004% or 0.0005% and was wondering why he couldn't have the chance he wanted.

It's weird that the issue should come up now for the first time, independently of the crypto-games.net issue. Apparently crypto-games.net has been running for a year without anyone thinking about this issue too.
3114  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice.com : Invest in 1% House Edge Dice Game on: July 04, 2015, 07:31:26 PM
And it seems there is no way to identify a winning user under biggest, with his ID, when he didnt post in the chat. If you search such id with !last then nothing happens. Is there another way?

You can /msg him - that tells you his name.

Once the escrow commands are live, you can /cancel <uid> and that will tell you his name too:

Quote
/cancel 1097
12:27:25 INFO: you don't have a pending escrow from (1097) <Titanz>

But of course I should include their names in that report too...

I think it would be good when you would have a "Change" section in your biggest too. Instead losses and wins a change. Quicker to gasp. Maybe even with the amount of stakes? Though sure, that has nothing to do with bets, it would be more like a investors stat. Maybe a new document like that for investors would be nice... Checking with one view what hapenned in last timeframes. Staking and bankroll matters but should be divided.

Only my thought. Tongue

So merge "cumulative gains" and "cumulative losses", and sort by the absolute value of the profit. That's a good idea. People care about the biggest changes whether they're positive or negative.

I'll add it to my list. Today I hope to put some kind of confirmation dialog on the /tip command. Yesterday KingDice accidentally tipped 1400 CLAM to a scammer who instantly withdrew it. The same scammer who he tipper 360 CLAMs to a week or two ago. Sigh.
3115  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice.com : Invest in 1% House Edge Dice Game on: July 04, 2015, 07:25:18 PM
If you hold shift and hit TAB twice after editing the 'payout' field, you'll see the payout field gets adjusted to reflect the new rounded chance field.

I just made a couple of changes.

1) as soon as you leave the 'payout' field, the payout field is adjusted to match the displayed 'chance to win' value. So type 222222 into 'payout' then hit TAB or click outside the box and see it instantly change to 247500 (the multiplier for 0.0004%).

2) every time you hit a key, a 5 second timer is started. If you go 5 seconds without hitting a key, the 'payout' field is adjusted to match the displayed 'chance to win'. So type '222222' into the 'payout' field and then do nothing for 5 seconds. The 222222 should change to 247500.

I've put neither feature live, but you can try them out here:

    https://54.155.13.216/

That also has the /escrow, /cancel, /paid, /release commands for your testing pleasure. See Q7 in the FAQ for details, or just type /escrow in the chat for more terse usage information.

All feedback gratefully received, as always.

Edit: I improved the automatic 'fixing' of the payout multiplier. When you type a number that isn't one of the allowed multipliers, the field's background goes orange and a message appears in the top right telling you that it will be automatically fixed after 3 seconds of inactivity. It's up at:

    https://54.155.13.216/
3116  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice.com : Invest in 1% House Edge Dice Game on: July 04, 2015, 06:57:23 PM
That means when you send the coins to such a bitcoin address one could use the private key of that bitcoin address to import the clams into the clam wallet?

Exactly. 'dumpprivkey' in bitcoind, 'importprivkey' in clamd and the CLAMs show up.

I will modify the /dig command in Just-Dice so that it tells you CLAM address for any BTC address you give it:

Quote
09:20:12 (1) <@dooglus> /dig 19Zmw5kMbkTjA7qRUdUEiwLqgRaMRRLDkh
09:20:21 INFO: BTC address [19Zmw5kM] was not funded on 12th May 2014; [xGsQpxap] is the corresponding CLAM address; see [history:19Zmw5kM] for a history of its balance

I'm also working on some changes to implement an escrow feature in JD. I'll put both changes live together.

I found that /help and !help show the commands but the latter seems not to be complete. !w is missing for example.

All Just-Dice chat commands begin with '/'. Typing "!help" simply causes you to say "!help" in the chat. If something is responding to that, it must be some kind of third party bot.

And i think it would be good when you could update the chance to win formfield.

I tried the following some time ago: Entered the value corresponding 1USD into betsize. Was around 0.6 clams. Then adjusted the payout to the value that would match the max profit. Then wanted to bet and... nothing happened. Even though all formfields were white.

I'll see if I can reproduce that. Put 0.6 into 'bet size', then by trial and error adjust the 'payout' box until the profit is the same as the max profit? (Do you realise how mad people are going to be if I bet 0.6 CLAM and win the max profit testing this for you?!) OK, so I see the problem. You're making a relatively small bet to win a huge amount. That's obviously going to need the chance of winning to be tiny. We have only 4 decimal places of granularity in the chance of winning, because we only roll 6 digit dice rolls (00.0000 to 99.9999). At 0.0004% chance of winning (247,500x) a winning 0.6 CLAM bet makes 148,499.4 profit, and at 0.0005% (198,000x) it makes 118,799.4 profit. The max profit (135k) is somewhere between these, and so you want to roll at something like 0.00045%, but we can't do that when we only have a million different roll outcomes. I notice that if I put 0.6 into the 'bet size' field and then edit the 'payout' field, the 'chance to win' field goes to 0.0005 when I type 215000 but to 0.0004 when I type 225000. It looks like I am seeing the chance field to the closest available chance to the one you're requesting:

>>> 99.0 / 215000 = 0.0004604 -> rounded to 0.0005%
>>> 99.0 / 225000 = 0.0004400 -> rounded to 0.0004%

I guess the question is: when the user asks for a 215000x multiplier, and we don't have a bet like that, should we round down to 198000x, up to 247500x, or round to whatever available multiplier is 'closest' in some sense? We round to the closest one. Sometimes that involves rounding the multiplier up, which puts the profit over the max profit, and so the bet is disallowed.

You say "nothing happened". When I tried, I saw this in the text area in the very top right, next to the 'Just-Dice.com' text:
    "That is over the current maximum allowed profit (135886.52)"
but it's not very obvious. The client should really detect that the bet isn't acceptable before sending it to the server, but it's tricky. The 'chance' depends on the multiplier, and the multiplier can only have 4 decimal places, and the multiplier depends on the rounded chance, so we have a circular dependency here. Changing the multiplier changes the chance, which gets rounded to 4 decimal places, which changes the chance, which changes the multiplier. But you're currently typing in the multiplier field, so it's really annoying if we edit it while you're typing it. A few sites do that, and it makes them really annoying to use.

I checked around a bit and found that you calculate bets with the chance to win value. And even though that value is white, there are too few decimals to keep up with the payout number. When i went to chance to win and left the number there how it was then the payout was lowered down to match the percent. Though the profit was only 2 third of max profit then.

If you hold shift and hit TAB twice after editing the 'payout' field, you'll see the payout field gets adjusted to reflect the new rounded chance field.

It seems its not possible to adjust the chance to win to the possible values in payout because the decimals are missing. I think it would be good to adjust it so that they can match each other.

There's a limit on how finely the chance can be adjusted. We only have a million different possible rolls, and so we can't make a bet with a percentage chance of winning which has more than 4 decimal places. We could change the roll algorithm to roll 8 or 10 digit roll numbers, but then I'd have gamblers up in arms. "I was on a 200 roll losing streak and I'm sure I was about to win when you changed everything. You cheater!".

At the moment i have to split my bets into 2 bets and have to reinvest the rest because i cant bet it against max profit.

I think you need to pick either 0.0004% or 0.0005% and adjust your stake accordingly. 0.54903858 CLAM at 0.0004% or 0.68629892 CLAM at 0.0005% will hit the max profit right now. If you put 0.0004 in the 'chance to win' field and then click the 'max' bet button, it will fill in the 0.549... value for you. You may have to hit it again if the max profit drops before you get to submit your bet.
3117  Economy / Gambling / Re: I have a +EV method for a dice site,[CONFIRMED +EV is possible] on: July 04, 2015, 04:04:48 PM
I thought this too.  Would be a brilliant scam if true.  Fake an exploit, hire a guy to expose you, rig your games.

Maybe, but then how do you explain his public display of stupidity and rudeness?
3118  Economy / Gambling / Re: I have a +EV method for a dice site,[CONFIRMED +EV is possible] on: July 04, 2015, 03:05:55 PM
Where does 0.015 even come from?

These bets have a target of < 0.015:



but the rolls only have 2 decimal places...
3119  Economy / Gambling / Re: I have a +EV method for a dice site,[CONFIRMED +EV is possible] on: July 04, 2015, 03:01:23 PM
I checked your account. The bets you are making seem to be -EV. Are you sure you didn't just get lucky?

(payout * chance = 99.99; less than 100 means it's -EV)

Take a bet: "< 0.015  @ 6666x"

There are two possible outcomes I win: 0.01 and 0.00. Both of which I hit (and got paid for). There are 10,000 possible outcomes. So I have a 1 in 5000 chance of winning. A 1 in 5000 chance of winning 6666x, seems pretty +EV for me


So which one of us fails at math?

Are you saying they added a decimal place to the target but not to the rolls themselves?

That's amazing! Smiley

< 0.015 is the same as < 0.02 when your rolls only have 2 decimal places.

So much fail in one place!
3120  Economy / Gambling / Re: I have a +EV method for a dice site,[CONFIRMED +EV is possible] on: July 04, 2015, 02:47:20 PM
I just private messaged dooglus my account information for verification. I hope he checks it, and gives them negative rep as I just used the exploit to take 0.3 BTC from the investors. Dooglus can should be able to check the account history to verify this

I'm happy to return the money once they acknowledge the issue.

I don't think these guys are scammers just very very very very stupid.

I checked your account. The bets you are making seem to be -EV. Are you sure you didn't just get lucky?

(payout * chance = 99.99; less than 100 means it's -EV)
Pages: « 1 ... 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 [156] 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 ... 573 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!