I read smart contract but what I found:
https://etherscan.io/address/0xb39a1a54acad320ca64ae671edb05332595eaa11#code function NeoDark()
{
totalSupply = 3000000;
symbol = 'NEOD';
owner = 0x0Fd3eB0D9eaef23EE74499C181186BC2e4EC8d78;
balances[owner] = 3000000;
decimals = 0;
}
function unlockSupply() returns(bool)
{
require(msg.sender == owner);
require(!fullSupplyUnlocked);
balances[owner] = balances[owner].add(50000000);
fullSupplyUnlocked = true;
return true;
}
balances[owner] = balances[owner].add(50000000);more 5 mil tokens for owner
The important one is this :
totalSupply = 3000000;
symbol = 'NEOD';
owner = 0x0Fd3eB0D9eaef23EE74499C181186BC2e4EC8d78;
balances[owner] = 3000000;
decimals = 0;
Sorry that was a problem from us but it doesn't matter because The max supply is 3,000,000 it can't go more than that number impossible
So don't worry about it