It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
// PoS starts at block 3500
int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8); // default is 4% per year
if(pindexBest->nHeight < 4000)
{
nSubsidy = 20 * COIN;
}
else if(pindexBest->nHeight < 4600)
{
nSubsidy = 12 * COIN;
}
else if(pindexBest->nHeight < 5000)
{
nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 5100)
{
nSubsidy = 200 * COIN;
}
else if(pindexBest->nHeight < 5900)
{
nSubsidy = 12 * COIN;
}
else if(pindexBest->nHeight < 6500)
{
nSubsidy = 20 * COIN;
}
else if(pindexBest->nHeight < 6600)
{
nSubsidy = 50 * COIN;
}
else if(pindexBest->nHeight < 7500)
{
nSubsidy = 12 * COIN;
}
else if(pindexBest->nHeight < 8200)
{
nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 8300)
{
nSubsidy = 100 * COIN;
}
else if(pindexBest->nHeight < 10000)
{
nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 10050)
{
nSubsidy = 100 * COIN;
}
else if(pindexBest->nHeight < 10100)
{
nSubsidy = 300 * COIN;
}
else if(pindexBest->nHeight < 10150)
{
nSubsidy = 100 * COIN;
}
else if(pindexBest->nHeight < 15000)
{
nSubsidy = 8 * COIN;
}
else if(pindexBest->nHeight < 16000)
{
nSubsidy = 50 * COIN;
}
else if(pindexBest->nHeight < 19500)
{
nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 20000)
{
nSubsidy = 100 * COIN;
}
int64_t multiplier = 100; // is really 1.00 as nSubsidy shall be div 100 later
int64_t nMultVal = 0;
for (int i = 1; i < 8; i += 2)
{
nMultVal += pindexBest->pprev->GetBlockHash().getinnerint(i) >> 2;
}
if (nMultVal % 10000 == 0)
{
multiplier = 550; // 5.5
}
else if (nMultVal % 1000 == 0)
{
multiplier = 250; // 2.5
}
else if (nMultVal % 100 == 0)
{
multiplier = 50; // 0.5
}
else
{
int n = nMultVal % 10;
if (n < 5)
{
multiplier += n * 10; // either 1.0, 1.1, 1.2, 1.3, or 1.4
}
else if (n > 5)
{
multiplier = n * 10; // either 0.9, 0.8, 0.7, or 0.6
}
}
if (pindexBest->nHeight > 20000 && multiplier > 100)
{
multiplier *= 10;
}
nSubsidy = (nSubsidy * multiplier) / 100;
return nSubsidy + nFees;