pragma solidity ^0.4.13;
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) public view returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
contract ERC20 is ERC20Basic {
function allowance(address owner, address spender) public view returns (uint256);
function transferFrom(address from, address to, uint256 value) public returns (bool);
function approve(address spender, uint256 value) public returns (bool);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function Ownable() public {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) public onlyOwner {
require(newOwner != address(0));
OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
assert(c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
assert(c >= a);
return c;
}
}
contract FYC is ERC20,Ownable{
using SafeMath for uint256;
//the base info of the token
string public constant name="frenzy coin";
string public constant symbol="FYC";
string public constant version = "1.0";
uint256 public constant decimals = 18;
mapping(address => uint256) balances;
mapping (address => mapping (address => uint256)) allowed;
uint256 public constant MAX_SUPPLY=1000000000000*10**decimals;
uint256 public constant INIT_SUPPLY=500000000000*10**decimals;
uint256 public constant autoAirdropAmount=1000*10**decimals;
uint256 public constant MAX_AUTO_AIRDROP_AMOUNT=1000000*10**decimals;
uint256 public constant MAX_FUNDING_SUPPLY=499999000000*10**decimals;
uint256 public totalFundingSupply;
//rate
uint256 public rate=1;
uint256 public alreadyAutoAirdropAmount;
mapping(address => bool) touched;
struct epoch {
uint256 endTime;
uint256 amount;
}
mapping(address=>epoch[]) public lockEpochsMap;
function FYC() public{
totalFundingSupply=0;
alreadyAutoAirdropAmount=0;
totalSupply = INIT_SUPPLY;
balances[msg.sender] = INIT_SUPPLY;
emit Transfer(0x0, msg.sender, INIT_SUPPLY);
}
modifier totalSupplyNotReached(uint256 _ethContribution,uint _rate){
assert(totalSupply.add(_ethContribution.mul(rate)) <= MAX_SUPPLY);
_;
}
modifier notReachFundingSupply(uint256 _value,uint256 _rate){
assert(MAX_FUNDING_SUPPLY>=totalFundingSupply.add(_value.mul(_rate)));
_;
}
function lockBalance(address user, uint256 amount,uint256 endTime) external
onlyOwner
{
epoch[] storage epochs = lockEpochsMap[user];
epochs.push(epoch(endTime,amount));
}
function () payable external
notReachFundingSupply(msg.value,rate)
{
processFunding(msg.sender,msg.value,rate);
uint256 amount=msg.value.mul(rate);
totalFundingSupply = totalFundingSupply.add(amount);
}
function withdrawCoin(uint256 _value)external
onlyOwner
notReachFundingSupply(_value,1)
{
processFunding(msg.sender,_value,1);
uint256 amount=_value;
totalFundingSupply = totalFundingSupply.add(amount);
}
function etherProceeds() external
onlyOwner
{
if(!msg.sender.send(this.balance)) revert();
}
function processFunding(address receiver,uint256 _value,uint256 fundingRate) internal
totalSupplyNotReached(_value,fundingRate)
{
uint256 tokenAmount = _value.mul(fundingRate);
totalSupply=totalSupply.add(tokenAmount);
balances[receiver] += tokenAmount; // safeAdd not needed; bad semantics to use here
emit Transfer(0x0, receiver, tokenAmount);
}
function transfer(address _to, uint256 _value) public returns (bool)
{
require(_to != address(0));
if( !touched[msg.sender] && totalSupply.add(autoAirdropAmount) <= MAX_SUPPLY &&alreadyAutoAirdropAmount.add(autoAirdropAmount)<=MAX_AUTO_AIRDROP_AMOUNT){
touched[msg.sender] = true;
balances[msg.sender] = balances[msg.sender].add( autoAirdropAmount );
totalSupply = totalSupply.add( autoAirdropAmount );
alreadyAutoAirdropAmount=alreadyAutoAirdropAmount.add(autoAirdropAmount);
}
epoch[] epochs = lockEpochsMap[msg.sender];
uint256 needLockBalance = 0;
for(uint256 i;i<epochs.length;i++)
{
if( now < epochs[i].endTime )
{
needLockBalance=needLockBalance.add(epochs[i].amount);
}
}
require(balances[msg.sender].sub(_value)>=needLockBalance);
require(_value <= balances[msg.sender]);
// SafeMath.sub will throw if there is not enough balance.
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
emit Transfer(msg.sender, _to, _value);
return true;
}
function balanceOf(address _owner) public constant returns (uint256 balance)
{
if( totalSupply.add(autoAirdropAmount) <= MAX_SUPPLY &&alreadyAutoAirdropAmount.add(autoAirdropAmount)<=MAX_AUTO_AIRDROP_AMOUNT){
if( touched[_owner] ){
return balances[_owner];
}
else{
return balances[_owner].add(autoAirdropAmount);
}
} else {
return balances[_owner];
}
}
function transferFrom(address _from, address _to, uint256 _value) public returns (bool)
{
require(_to != address(0));
if( !touched[_from] && totalSupply.add(autoAirdropAmount) <= MAX_SUPPLY &&alreadyAutoAirdropAmount.add(autoAirdropAmount)<=MAX_AUTO_AIRDROP_AMOUNT){
touched[_from] = true;
balances[_from] = balances[_from].add( autoAirdropAmount );
totalSupply = totalSupply.add( autoAirdropAmount );
alreadyAutoAirdropAmount=alreadyAutoAirdropAmount.add(autoAirdropAmount);
}
epoch[] epochs = lockEpochsMap[_from];
uint256 needLockBalance = 0;
for(uint256 i;i<epochs.length;i++)
{
if( now < epochs[i].endTime )
{
needLockBalance = needLockBalance.add(epochs[i].amount);
}
}
require(balances[_from].sub(_value)>=needLockBalance);
require(_value <= balances[_from]);
uint256 _allowance = allowed[_from][msg.sender];
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
allowed[_from][msg.sender] = _allowance.sub(_value);
emit Transfer(_from, _to, _value);
return true;
}
function approve(address _spender, uint256 _value) public returns (bool)
{
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) public constant returns (uint256 remaining)
{
return allowed[_owner][_spender];
}
function setRate(uint256 _rate) external
onlyOwner
{
rate=_rate;
}
}
{
"compilationTarget": {
"FYC.sol": "FYC"
},
"evmVersion": "byzantium",
"libraries": {},
"optimizer": {
"enabled": false,
"runs": 0
},
"remappings": []
}
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_rate","type":"uint256"}],"name":"setRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"alreadyAutoAirdropAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_FUNDING_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"withdrawCoin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_AUTO_AIRDROP_AMOUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"lockEpochsMap","outputs":[{"name":"endTime","type":"uint256"},{"name":"amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"autoAirdropAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"etherProceeds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INIT_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"user","type":"address"},{"name":"amount","type":"uint256"},{"name":"endTime","type":"uint256"}],"name":"lockBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalFundingSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]