Bitcoin Forum
May 07, 2024, 02:21:06 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 [100] 101 102 103 104 105 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 ... 204 »
  Print  
Author Topic: [ANN][BLC] Blakecoin Blake-256 for GPU/FPGA With Merged Mined Pools Stable Net  (Read 409424 times)
mogrith
Legendary
*
Offline Offline

Activity: 1470
Merit: 1001


Use Coinbase Account almosanywhere with Shift card


View Profile WWW
May 11, 2014, 02:20:50 AM
 #1981

That is one drawback to merged mining. Solo or  reg pool you get BLC but merged you get BLC, PHO and soon more.

So fewer solo miners as everyone moves to pool. But at least with 2 merged pools it's not all in one pool.

Merge mine BLC+PHO+ELT+XDQ+BBTC+UMO+LIT pool is open http://la1.blakecoin.com tips: 1MogRiTHpQZ7bkpq49cSVWADrTt7Jrghp
1715048466
Hero Member
*
Offline Offline

Posts: 1715048466

View Profile Personal Message (Offline)

Ignore
1715048466
Reply with quote  #2

1715048466
Report to moderator
1715048466
Hero Member
*
Offline Offline

Posts: 1715048466

View Profile Personal Message (Offline)

Ignore
1715048466
Reply with quote  #2

1715048466
Report to moderator
If you see garbage posts (off-topic, trolling, spam, no point, etc.), use the "report to moderator" links. All reports are investigated, though you will rarely be contacted about your reports.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715048466
Hero Member
*
Offline Offline

Posts: 1715048466

View Profile Personal Message (Offline)

Ignore
1715048466
Reply with quote  #2

1715048466
Report to moderator
1715048466
Hero Member
*
Offline Offline

Posts: 1715048466

View Profile Personal Message (Offline)

Ignore
1715048466
Reply with quote  #2

1715048466
Report to moderator
1715048466
Hero Member
*
Offline Offline

Posts: 1715048466

View Profile Personal Message (Offline)

Ignore
1715048466
Reply with quote  #2

1715048466
Report to moderator
Ignatius
Sr. Member
****
Offline Offline

Activity: 409
Merit: 250


View Profile
May 11, 2014, 02:58:51 AM
Last edit: May 15, 2014, 08:52:30 PM by Ignatius
 #1982

That is one drawback to merged mining. Solo or  reg pool you get BLC but merged you get BLC, PHO and soon more.

So fewer solo miners as everyone moves to pool. But at least with 2 merged pools it's not all in one pool.

You can solo merge mine. I believe bzyzny is writing up some mining related info, if he doesn't include the merged setup info I will pass it along for inclusion.

EDIT: Or give the info here, now:

blakecoind setup

1) Obtain a compiled blakecoind.

2) Decide on a data directory location.

3) In this directory, create blakecoin.conf text file, with the following contents:

Code:
rpcuser=MY_RPC_USERNAME
rpcpassword=MY_RPC_PASSWORD
rpcport=8772
logtimestamps=1
listen=1
gen=0
rpcallowip=127.0.0.1
server=1
daemon=1
addnode=162.243.133.80
addnode=162.243.14.130
addnode=146.185.135.24
addnode=184.171.247.23


Obviously, change the MY_RPC_xxx to a username and password.

4) Create a newblock.sh script, with the following contents:

Code:
#!/bin/sh

killall -USR1 eloipool.py

Mark it executeable via "chmod 0755 newblock.sh"

5) Create a run-blakecoind.sh script, with the following contents:

Code:
#!/bin/sh

/pah/to/blakecoind \
-datadir=/path/to/data -daemon \
-blocknotify=/path/to/newblock.sh

Mark it executeable via "chmod 0755 run-blakecoind.sh"

You must modify the (a) blakecoind path, (b) -datadir path, and (c) -blocknotify path to fit your local computer.

6) Run blakecoind via the run-blakecoind.sh script.  Watch debug.log in the data directory, to make sure it started the Initial Block Download (blakecoin network sync).  This might take a few minutes, to download all the blocks.  


eloipool setup

1) Download eloipool dependencies, either from your Linux packager, or directly:

Python 3                        http://python.org
python-bitcoinrpc       https://github.com/jgarzik/python-bitcoinrpc
python-base58           https://gitorious.org/bitcoin/python-base58
midstate                        http://gitorious.org/midstate/midstate

2) For python-bitcoinrpc, check out an older release,

Code:
$ cd /repo/python-bitcoinrpc
$ git checkout -b solo-mining 770881c8bd9b1f92427290270b37a28751cf9df0

3) Check out eloipool,

Code:
$ git clone git://github.com/BlueDragon747/eloipool_Blakecoin.git

4) Copy config.py.example to config.py, and make the following several edits,

a) change ServerName to something unique

b) increase share target if desired (note increase '0' and decrease 'f'):
Code:
-ShareTarget = 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+ShareTarget = 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff

c) DynamicTargetting = 2

d) DynamicTargetGoal = 6

e) change TrackerAddr to YOUR blakecoin address

f) comment out CoinbaserCmd,

Code:
-CoinbaserCmd = 'echo -e "1\\n$((%d / 100))\\n1579aXhdwvKZEMrAKoCZhzGuqMa8EonuXU"'
+#CoinbaserCmd = 'echo -e "1\\n$((%d / 100))\\n1579aXhdwvKZEMrAKoCZhzGuqMa8EonuXU"'

g) update TemplateSources to point to your local blakecoind RPC, including chosen username/password, and comment out the secondary source:

Code:
@@ -57,41 +57,41 @@
 TemplateSources = (
        {
                'name': 'primary',
-               'uri': 'http://user:pass@localhost:8332',
+               'uri': 'http://MY_RPC_USERNAME:MY_RPC_PASSWORD@127.0.0.1:8772',
                'priority': 0,
                'weight': 1,
        },
-       {
-               'name': 'secondary',
-               'uri': 'http://user:pass@localhost:18332',
-               'priority': 1,
-               'weight': 1,
-       },
+#      {
+#              'name': 'secondary',
+#              'uri': 'http://user:pass@localhost:18332',
+#              'priority': 1,
+#              'weight': 1,
+#      },
 )

g) empty TemplateChecks (or comment out 100%),

Code:
 TemplateChecks = (
 )

h) comment out or delete BlockSubmissions

i) change log settings, and switch from testnet3 mining to mainnet:

Code:
-DelayLogForUpstream = False
+DelayLogForUpstream = True
 
 # Bitcoin p2p server for announcing blocks found
-UpstreamBitcoindNode = ('127.0.0.1', 18333)  # testnet
+UpstreamBitcoindNode = ('127.0.0.1', 8772)
 
 # Network ID for the primary blockchain
 # Other known network IDs can be found at:
 #     https://en.bitcoin.it/wiki/Protocol_specification#Message_structure
-UpstreamNetworkId = b'\xFA\xBF\xB5\xDA'  # testnet
+UpstreamNetworkId = b'\xF9\xBE\xB4\xD2'


j) update ShareLogging to reflect your desires.  The simplest is to delete all the SQL-related entries, leaving only the textfile logfile.  With solo mining, you don't care so much about shares. Optionally enable logging to a database here for use via an MPOS gui later.

Code:
ShareLogging = (
        {
                'type': 'logfile',
                'filename': 'share-logfile',
                'format': "{time} {Q(remoteHost)} {username} {YN(not(rejectReason))} {dash(YN(upstreamResult))} {dash(rejectReason)} {solution}\n",
        },
)

k) change log filename to something useful,

Code:
 LogFile = {
-       'filename': 'filename.log',
+       'filename': 'eloipool.log',

l) Create a runit.sh script for eloipool, with the contents,

Code:
#!/bin/sh

PYTHONPATH=/path/to/python-bitcoinrpc:/path/to/python-base58:/path/to/midstate \
     nohup ./eloipool.py 2>&1 >/dev/null &

You must change the paths to suit your local system.

m) Run eloipool with runit.sh script

n) Let's assume you are running the pool software on 192.168.1.40 IP address.  Set up your miner configuration like this:

Pool X: stratum+tcp://192.168.1.40:3334
Pool X username: anyuser
Pool X password: x

The above gets you a private Blakecoin mining pool.
Credits:
BlueDragon747
kr105
lukejr
Jeff Garzik Donations / BTC tip jar: 1BrufViLKnSWtuWGkryPsKsxonV2NQ7Tcj
https://bitcointalk.org/index.php?topic=158105.0

The pool we created above only mines Blakecoins, to merged mine BLC and PHO:

Acquire a compiled photond, create a data dir and photon.conf in the same way you did for blakecoind.
Acquire merge-mine-proxy: https://gitorious.org/bitcoin/luke-jr-bitcoin/source/8f3f29550c2ad33f5635799ba835276eaebb4a2e:contrib/merged-mine-proxy

eloipool config.py


Code:
# Secret username allowed to use setworkaux
SecretUser = "ssecreteloipool"

GotWorkURI = "http://mergedproxyuser:mergedproxypass@127.0.0.1:8330/"

GotWorkTarget = 0x00000000000fffffffffffffffffffffffffffffffffffffffffffffffffffff #1024



photond config

Code:
rpcuser=photonrpc
rpcpassword=photonrpcpass
rpcport=9377
listen=1
gen=0
rpcallowip=127.0.0.1
port=35556
server=1
daemon=1
listen=1
addnode=162.243.101.139
addnode=72.23.74.166
addnode=62.219.234.143
addnode=78.26.209.208
addnode=162.243.101.139
addnode=77.121.61.203
addnode=107.170.123.55
addnode=218.146.3.80:3005
addnode=107.170.78.146

mining proxy command

Code:
python merged-mining-proxy  -w 8330 -p http://ssecreteloipool:222@127.0.0.1:8337/ -x http://photonrpc:photonrpcpass@localhost:9377/

Credits:
BlueDragon747
lukejr
tomaszsz
https://bitcointalk.org/index.php?topic=61731.msg2070460#msg2070460

Troubleshooting and optional info by BlueDragon747:
Quote from: BlueDragon747
start blakecoin with block notify
start photon
wait for them to be in sync!

start eloi
within 3 secs start mmp
check log, wait for a share if you get a solve its working ignore errors

if you just get update aux and no solve for ages and you have decent amount of hashing or lowish gotworktarget repeat above
if you get stale merkle its fine should get a solve shortly
if you get bad merkle them it seems mmp is not connecting to eloi

In mmp I did tweak the -R rewrite to match the gotworktarget and it does run better than just leaving it out (edit at line 253 and 462 to match your gotworktarget) then just add the -R switch to you command e.g:

python merged-mine-proxy -w 8330 -p http://secretuser:123@127.0.0.1:8337/ -x http://photonrpcuser:rpcpass@localhost:9377/ -l mmp_log.txt -R >/dev/null

You *might* be able to merge mine without eloipool, using only the blake and photon coin daemons coupled with merge-mine-proxy, but I have not tried.


EDIT/UPDATE 5-15-2014:
Moar coinz!

The launch of B+ and impending launches of Dirac and AT brings the need for config changes.

Acquire a compiled B+, create a data dir and blakebitcoin.conf in the same way you did for the other coins.

Use this copy of merge-mine-proxy: https://github.com/BlueDragon747/eloipool_Blakecoin/blob/master/merged-mine-proxy.py

blakebitcoind config

Code:
rpcuser=blakebitrpcuser
rpcpassword=blakebitrpcpass
server=1
listen=1
maxconnections=180
rpctimeout=30
rpcallowip=127.0.0.1
addnode=146.185.135.24
addnode=162.243.14.130
addnode=188.226.213.85
addnode=107.170.140.27

mining proxy command

Code:
python merged-mining-proxy  -s 4 -w 8330 -p http://ssecreteloipool:222@127.0.0.1:8337/ -x http://photonrpc:photonrpcpass@localhost:9377/ -x http://blakebitrpcuser:blakebtrpcpass@localhost:blakebitport/

You can continue to add coins now by setting up the coin daemon, adding another -x http://user:pass@host:port/ line to the launch arguments for merge-mine-proxy, and incrementing the -s value. -s == <number of aux chains> * 2
mogrith
Legendary
*
Offline Offline

Activity: 1470
Merit: 1001


Use Coinbase Account almosanywhere with Shift card


View Profile WWW
May 11, 2014, 04:03:59 AM
 #1983

That good to know may try it out just to see it work

Merge mine BLC+PHO+ELT+XDQ+BBTC+UMO+LIT pool is open http://la1.blakecoin.com tips: 1MogRiTHpQZ7bkpq49cSVWADrTt7Jrghp
cinnamon_carter
Legendary
*
Offline Offline

Activity: 1148
Merit: 1018


It's about time -- All merrit accepted !!!


View Profile WWW
May 11, 2014, 05:03:22 AM
 #1984

Ignatius looks like a fabulous resource , well done !! I may try it out this week, at the momemt I am 'sloshing it up' in the New York merged pool  !!

Check out my coin Photon
Merge Mine 5 other Blake 256 coins - 6x your hash power  https://www.blakecoin.org/

The obvious choice is not always the best choice.

LOOK DEEPER - Look into the Blake 256 Family -- CC
bzyzny
Sr. Member
****
Offline Offline

Activity: 274
Merit: 254


View Profile
May 11, 2014, 03:24:23 PM
 #1985

Ignatius, that looks like some very good info, thanks for sharing it. I'll definitely refer to that in the guide update.
BlueDragon747 (OP)
Legendary
*
Offline Offline

Activity: 1509
Merit: 1030


Solutions Architect


View Profile WWW
May 12, 2014, 12:35:41 AM
Last edit: May 12, 2014, 03:14:54 AM by BlueDragon747
 #1986

Updating NY2 merge server expect some down time EU3 will follow once NY2 is working on new code  Smiley

Edit:
NY2 is done its only merging BLC+PHO atm other wallets need adding  Roll Eyes

EU3 is done same as NY2 any problems let me know  Cool


Note:

for anyone running a private/solo eloipool can you please enable

# Aim to produce blocks with transaction counts that are a power of two
# This helps avoid any chance of someone abusing CVE-2012-2459 with them
# 1 = cut out feeless transactions; 2 = cut out even fee-included transactions (if possible)
POT = 2

and the Blakecoin network is as follows did not notice earlier

# Network ID for the primary blockchain
UpstreamNetworkId = b'\xF9\xBE\xB4\xD2'

Info: GithubBlakecoin.org - BCT Blakecoin thread - Twitter - BCS - BlakeZone  Trade Blakecoin: Xeggex.com Merged Mining Pools: EU3 - NY2/AT1 - LA1
Donation Addresses: BLC: Bd3jJftFbwxWSKNSNz35vkDd57kG6jHAjt PHO: BZXPMc8eF9YZcJStskkP2bVia38fv9VmuT BBTC: 2h8c4NbzXJXk6QQ89r7YYMGhe13gQUC2ajD ELT: e7cm6cAgpfhvk3Myh2Jkmi1nqaHtDHnxXb 
UMO: uQH9H17t7kz3eVQ3vKDzMsWCK4hn5nh2gC LIT: 8p8Z4h5fkZ8SCoyEtihKcjzZLA7gFjTdmL BTC: 1Q6kgcNqhKh8u67m6Gj73T2LMgGseETwR6
mogrith
Legendary
*
Offline Offline

Activity: 1470
Merit: 1001


Use Coinbase Account almosanywhere with Shift card


View Profile WWW
May 12, 2014, 04:29:19 AM
 #1987



Nice tease what do we call the coin between PHO an DIRAC?  Ƀ the symbol formerly rejected as BTC  BlicCoin?

AT and Dirac  I can at least type without google search to find it

Merge mine BLC+PHO+ELT+XDQ+BBTC+UMO+LIT pool is open http://la1.blakecoin.com tips: 1MogRiTHpQZ7bkpq49cSVWADrTt7Jrghp
BlakeBitcoin
Newbie
*
Offline Offline

Activity: 23
Merit: 3


View Profile
May 12, 2014, 04:39:44 AM
 #1988

BlakeBitcoin due for release and merge mine very soon  Grin
BlueDragon747 (OP)
Legendary
*
Offline Offline

Activity: 1509
Merit: 1030


Solutions Architect


View Profile WWW
May 12, 2014, 04:41:30 AM
 #1989

I have the pools ready to go on all of them just waiting for wallets atm  Cool

Info: GithubBlakecoin.org - BCT Blakecoin thread - Twitter - BCS - BlakeZone  Trade Blakecoin: Xeggex.com Merged Mining Pools: EU3 - NY2/AT1 - LA1
Donation Addresses: BLC: Bd3jJftFbwxWSKNSNz35vkDd57kG6jHAjt PHO: BZXPMc8eF9YZcJStskkP2bVia38fv9VmuT BBTC: 2h8c4NbzXJXk6QQ89r7YYMGhe13gQUC2ajD ELT: e7cm6cAgpfhvk3Myh2Jkmi1nqaHtDHnxXb 
UMO: uQH9H17t7kz3eVQ3vKDzMsWCK4hn5nh2gC LIT: 8p8Z4h5fkZ8SCoyEtihKcjzZLA7gFjTdmL BTC: 1Q6kgcNqhKh8u67m6Gj73T2LMgGseETwR6
BlakeBitcoin
Newbie
*
Offline Offline

Activity: 23
Merit: 3


View Profile
May 12, 2014, 01:05:20 PM
 #1990

ok thread here : https://bitcointalk.org/index.php?topic=606037.msg6687021#msg6687021
bzyzny
Sr. Member
****
Offline Offline

Activity: 274
Merit: 254


View Profile
May 12, 2014, 05:15:04 PM
 #1991

I managed to build the Photon-QT wallet for Linux, original post is in the Photon thread. You can get it here:
http://www.mediafire.com/download/v1zu1365c61tjak/photon-qt-v0.8.9.1-linux64.7z
jetxm
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
May 12, 2014, 10:52:41 PM
 #1992

I was mining Myriadcoin with Myriad-Groestl but now i want to try Blakecoin someone can help telling me with the best miner and settings for a ATI 5850 please.
BlueDragon747 (OP)
Legendary
*
Offline Offline

Activity: 1509
Merit: 1030


Solutions Architect


View Profile WWW
May 12, 2014, 10:58:00 PM
 #1993

I was mining Myriadcoin with Myriad-Groestl but now i want to try Blakecoin someone can help telling me with the best miner and settings for a ATI 5850 please.

The default cgminer.conf that is included in any of the pools "Getting Started" is fine for that card can tweak the intensity to about 10, its a simple kernel not many extra options best thing to do is drop the memory clocks and raise the core clocks or just drop the memory and save some watts  Cool

Info: GithubBlakecoin.org - BCT Blakecoin thread - Twitter - BCS - BlakeZone  Trade Blakecoin: Xeggex.com Merged Mining Pools: EU3 - NY2/AT1 - LA1
Donation Addresses: BLC: Bd3jJftFbwxWSKNSNz35vkDd57kG6jHAjt PHO: BZXPMc8eF9YZcJStskkP2bVia38fv9VmuT BBTC: 2h8c4NbzXJXk6QQ89r7YYMGhe13gQUC2ajD ELT: e7cm6cAgpfhvk3Myh2Jkmi1nqaHtDHnxXb 
UMO: uQH9H17t7kz3eVQ3vKDzMsWCK4hn5nh2gC LIT: 8p8Z4h5fkZ8SCoyEtihKcjzZLA7gFjTdmL BTC: 1Q6kgcNqhKh8u67m6Gj73T2LMgGseETwR6
jetxm
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
May 13, 2014, 12:45:37 AM
 #1994

Thanks BlueDragon747 now im mining Blakecoins!  Smiley. Im starting to like this coin , good dev
BlueDragon747 (OP)
Legendary
*
Offline Offline

Activity: 1509
Merit: 1030


Solutions Architect


View Profile WWW
May 13, 2014, 07:50:00 AM
 #1995

Thanks BlueDragon747 now im mining Blakecoins!  Smiley. Im starting to like this coin , good dev

no problem if you get stuck or have any issue just let me know I will always try and help  Grin

Info: GithubBlakecoin.org - BCT Blakecoin thread - Twitter - BCS - BlakeZone  Trade Blakecoin: Xeggex.com Merged Mining Pools: EU3 - NY2/AT1 - LA1
Donation Addresses: BLC: Bd3jJftFbwxWSKNSNz35vkDd57kG6jHAjt PHO: BZXPMc8eF9YZcJStskkP2bVia38fv9VmuT BBTC: 2h8c4NbzXJXk6QQ89r7YYMGhe13gQUC2ajD ELT: e7cm6cAgpfhvk3Myh2Jkmi1nqaHtDHnxXb 
UMO: uQH9H17t7kz3eVQ3vKDzMsWCK4hn5nh2gC LIT: 8p8Z4h5fkZ8SCoyEtihKcjzZLA7gFjTdmL BTC: 1Q6kgcNqhKh8u67m6Gj73T2LMgGseETwR6
Angelie1LTC
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
May 13, 2014, 08:18:44 AM
 #1996

How about this coin?Is it still alive?
BlueDragon747 (OP)
Legendary
*
Offline Offline

Activity: 1509
Merit: 1030


Solutions Architect


View Profile WWW
May 13, 2014, 08:39:21 AM
 #1997

How about this coin?Is it still alive?

yep alive and kicking especially with the Merged Mine Pools BLC+PHO+B+  Grin

http://eu3.blakecoin.com
http://ny2.blakecoin.com

Info: GithubBlakecoin.org - BCT Blakecoin thread - Twitter - BCS - BlakeZone  Trade Blakecoin: Xeggex.com Merged Mining Pools: EU3 - NY2/AT1 - LA1
Donation Addresses: BLC: Bd3jJftFbwxWSKNSNz35vkDd57kG6jHAjt PHO: BZXPMc8eF9YZcJStskkP2bVia38fv9VmuT BBTC: 2h8c4NbzXJXk6QQ89r7YYMGhe13gQUC2ajD ELT: e7cm6cAgpfhvk3Myh2Jkmi1nqaHtDHnxXb 
UMO: uQH9H17t7kz3eVQ3vKDzMsWCK4hn5nh2gC LIT: 8p8Z4h5fkZ8SCoyEtihKcjzZLA7gFjTdmL BTC: 1Q6kgcNqhKh8u67m6Gj73T2LMgGseETwR6
mogrith
Legendary
*
Offline Offline

Activity: 1470
Merit: 1001


Use Coinbase Account almosanywhere with Shift card


View Profile WWW
May 13, 2014, 07:52:47 PM
 #1998





Or merge mine BLC

Merge mine BLC+PHO+ELT+XDQ+BBTC+UMO+LIT pool is open http://la1.blakecoin.com tips: 1MogRiTHpQZ7bkpq49cSVWADrTt7Jrghp
BitcoinForumator
Legendary
*
Offline Offline

Activity: 1120
Merit: 1000


View Profile
May 14, 2014, 03:49:46 PM
 #1999

Is Dirac Coin a new coin that will be launched? Or just a rebranded Blakecoin?
BlueDragon747 (OP)
Legendary
*
Offline Offline

Activity: 1509
Merit: 1030


Solutions Architect


View Profile WWW
May 14, 2014, 04:02:01 PM
Last edit: May 15, 2014, 06:39:08 PM by BlueDragon747
 #2000

Dirac and AT are to be released both new coins no rebranding going on here

Blakecoin - BLC is here to stay  Cool

Info: GithubBlakecoin.org - BCT Blakecoin thread - Twitter - BCS - BlakeZone  Trade Blakecoin: Xeggex.com Merged Mining Pools: EU3 - NY2/AT1 - LA1
Donation Addresses: BLC: Bd3jJftFbwxWSKNSNz35vkDd57kG6jHAjt PHO: BZXPMc8eF9YZcJStskkP2bVia38fv9VmuT BBTC: 2h8c4NbzXJXk6QQ89r7YYMGhe13gQUC2ajD ELT: e7cm6cAgpfhvk3Myh2Jkmi1nqaHtDHnxXb 
UMO: uQH9H17t7kz3eVQ3vKDzMsWCK4hn5nh2gC LIT: 8p8Z4h5fkZ8SCoyEtihKcjzZLA7gFjTdmL BTC: 1Q6kgcNqhKh8u67m6Gj73T2LMgGseETwR6
Pages: « 1 ... 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 [100] 101 102 103 104 105 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 ... 204 »
  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!