ETH Price: $2,750.31 (+0.40%)

Token

FansChain (FANSC)
 

Overview

Max Total Supply

132,000,001 FANSC

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1 FANSC

Value
$0.00
0xf2585587a1ed2b6e31ffd058910ea47d3f340aa0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FansChainToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-01-25
*/

pragma solidity ^0.4.18;

// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address owner;
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    function Owned() public {
        owner = msg.sender;
    }

    function changeOwner(address _newOwner) public onlyOwner{
        owner = _newOwner;
    }
}


// Safe maths, borrowed from OpenZeppelin
// ----------------------------------------------------------------------------
library SafeMath {

  function mul(uint a, uint b) internal pure returns (uint) {
    uint c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint a, uint b) internal pure returns (uint) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  function sub(uint a, uint b) internal pure returns (uint) {
    assert(b <= a);
    return a - b;
  }

  function add(uint a, uint b) internal pure returns (uint) {
    uint c = a + b;
    assert(c >= a);
    return c;
  }

}

contract tokenRecipient {
  function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public;
}

contract ERC20Token {
    /* This is a slight change to the ERC20 base standard.
    function totalSupply() constant returns (uint256 supply);
    is replaced with:
    uint256 public totalSupply;
    This automatically creates a getter function for the totalSupply.
    This is moved to the base contract since public getter functions are not
    currently recognised as an implementation of the matching abstract
    function by the compiler.
    */
    /// total amount of tokens
    uint256 public totalSupply;

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) constant public returns (uint256 balance);

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) public returns (bool success);

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);

    /// @notice `msg.sender` approves `_spender` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of tokens to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) public returns (bool success);

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) constant public returns (uint256 remaining);

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

contract limitedFactor {
    uint256 public startTime;
    uint256 public stopTime;
    address public walletAddress;
    address public teamAddress;
    address public contributorsAddress;
    bool public tokenFrozen = true;
    modifier teamAccountNeedFreezeOneYear(address _address) {
        if(_address == teamAddress) {
            require(now > startTime + 1 years);
        }
        _;
    }
    
    modifier TokenUnFreeze() {
        require(!tokenFrozen);
        _;
    } 
}
contract standardToken is ERC20Token, limitedFactor {
    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowances;

    function balanceOf(address _owner) constant public returns (uint256) {
        return balances[_owner];
    }

    /* Transfers tokens from your address to other */
    function transfer(address _to, uint256 _value) public TokenUnFreeze teamAccountNeedFreezeOneYear(msg.sender) returns (bool success) {
        require (balances[msg.sender] > _value);           // Throw if sender has insufficient balance
        require (balances[_to] + _value > balances[_to]);  // Throw if owerflow detected
        balances[msg.sender] -= _value;                     // Deduct senders balance
        balances[_to] += _value;                            // Add recivers blaance
        Transfer(msg.sender, _to, _value);                  // Raise Transfer event
        return true;
    }

    /* Approve other address to spend tokens on your account */
    function approve(address _spender, uint256 _value) public TokenUnFreeze returns (bool success) {
        allowances[msg.sender][_spender] = _value;          // Set allowance
        Approval(msg.sender, _spender, _value);             // Raise Approval event
        return true;
    }

    /* Approve and then communicate the approved contract in a single tx */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) public TokenUnFreeze returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);              // Cast spender to tokenRecipient contract
        approve(_spender, _value);                                      // Set approval to contract for _value
        spender.receiveApproval(msg.sender, _value, this, _extraData);  // Raise method on _spender contract
        return true;
    }

    /* A contract attempts to get the coins */
    function transferFrom(address _from, address _to, uint256 _value) public TokenUnFreeze returns (bool success) {
        require (balances[_from] > _value);                // Throw if sender does not have enough balance
        require (balances[_to] + _value > balances[_to]);  // Throw if overflow detected
        require (_value <= allowances[_from][msg.sender]);  // Throw if you do not have allowance
        balances[_from] -= _value;                          // Deduct senders balance
        balances[_to] += _value;                            // Add recipient blaance
        allowances[_from][msg.sender] -= _value;            // Deduct allowance for this address
        Transfer(_from, _to, _value);                       // Raise Transfer event
        return true;
    }

    /* Get the amount of allowed tokens to spend */
    function allowance(address _owner, address _spender) constant public TokenUnFreeze returns (uint256 remaining) {
        return allowances[_owner][_spender];
    }

}

contract FansChainToken is standardToken,Owned {
    using SafeMath for uint;

    string constant public name="FansChain";
    string constant public symbol="FANSC";
    uint256 constant public decimals=18;
    
    uint256 public totalSupply = 0;
    uint256 constant public topTotalSupply = 24*10**7*10**decimals;
    uint256 public teamSupply = percent(25);
    uint256 public privateFundSupply = percent(25);
    uint256 public privateFundingSupply = 0;
    uint256 public ICOtotalSupply = percent(20);
    uint256 public ICOSupply = 0;
    uint256 public ContributorsSupply = percent(30);
    uint256 public exchangeRate;
    bool    public ICOStart;
    
    
    /// @dev Fallback to calling deposit when ether is sent directly to contract.
    function() public payable {
        require (ICOStart);
        depositToken(msg.value);
    }
    
    
    function FansChainToken() public {
        owner=msg.sender;
    }
    
    /// @dev Buys tokens with Ether.
    function depositToken(uint256 _value) internal {
        uint256 tokenAlloc = buyPriceAt(getTime()) * _value;
        ICOSupply = ICOSupply.add(tokenAlloc);
        require (ICOSupply < ICOtotalSupply);
        mintTokens (msg.sender, tokenAlloc);
        forwardFunds();
    }
    
    function forwardFunds() internal {
        require(walletAddress != address(0));
        walletAddress.transfer(msg.value);
    }
    
    /// @dev Issue new tokens
    function mintTokens(address _to, uint256 _amount) internal {
        require (balances[_to] + _amount > balances[_to]);      // Check for overflows
        balances[_to] = balances[_to].add(_amount);             // Set minted coins to target
        totalSupply = totalSupply.add(_amount);
        Transfer(0x0, _to, _amount);                            // Create Transfer event from 0x
    }
    
    /// @dev Calculate exchange
    function buyPriceAt(uint256 _time) internal constant returns(uint256) {
        if (_time >= startTime && _time <= stopTime) {
            return exchangeRate;
        } else {
            return 0;
        }
    }
    
    /// @dev Get time
    function getTime() internal constant returns(uint256) {
        return now;
    }
    
    /// @dev set initial message
    function setInitialVaribles(
        uint256 _icoStopTime,
        uint256 _exchangeRate,
        address _walletAddress,
        address _teamAddress,
        address _contributorsAddress
        )
        public
        onlyOwner {
            stopTime = _icoStopTime;
            exchangeRate=_exchangeRate;
            walletAddress = _walletAddress;
            teamAddress = _teamAddress;
            contributorsAddress = _contributorsAddress;
        }
    
    /// @dev set ICO start or stop
    function setICOStart(bool _start) public onlyOwner {
        ICOStart = _start;
        startTime = now;
    }
    
    /// @dev withDraw Ether to a Safe Wallet
    function withDraw() public payable onlyOwner {
        require (msg.sender != address(0));
        require (getTime() > stopTime);
        walletAddress.transfer(this.balance);
    }
    
    /// @dev unfreeze if ICO succeed
    function unfreezeTokenTransfer(bool _freeze) public onlyOwner {
        tokenFrozen = !_freeze;
    }
    
    /// @dev allocate Token
    function allocateTokens(address[] _owners, uint256[] _values) public onlyOwner {
        require (_owners.length == _values.length);
        for(uint256 i = 0; i < _owners.length ; i++){
            address owner = _owners[i];
            uint256 value = _values[i];
            ICOSupply = ICOSupply.add(value);
            require(totalSupply < ICOtotalSupply);
            mintTokens(owner, value);
        }
    }
    
    /// @dev calcute the tokens
    function percent(uint256 percentage) internal  pure returns (uint256) {
        return percentage.mul(topTotalSupply).div(100);
    }
     
     /// @dev allocate token for Team Address
    function allocateTeamToken() public onlyOwner {
        mintTokens(teamAddress, teamSupply);
    }
    
    /// @dev allocate token for Private Address
    function allocatePrivateToken(address[] _privateFundingAddress, uint256[] _amount) public onlyOwner {
        require (_privateFundingAddress.length == _amount.length);
        for(uint256 i = 0; i < _privateFundingAddress.length ; i++){
            address owner = _privateFundingAddress[i];
            uint256 value = _amount[i];
            privateFundingSupply = privateFundingSupply.add(value);
            require(privateFundingSupply <= privateFundSupply);
            mintTokens(owner, value);
        }
    }
    
    /// @dev allocate token for contributors Address
    function allocateContributorsToken() public onlyOwner {
        mintTokens(contributorsAddress, ContributorsSupply);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"stopTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ICOtotalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withDraw","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"ICOSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"teamAddress","outputs":[{"name":"","type":"address"}],"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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_icoStopTime","type":"uint256"},{"name":"_exchangeRate","type":"uint256"},{"name":"_walletAddress","type":"address"},{"name":"_teamAddress","type":"address"},{"name":"_contributorsAddress","type":"address"}],"name":"setInitialVaribles","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"teamSupply","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":"exchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_privateFundingAddress","type":"address[]"},{"name":"_amount","type":"uint256[]"}],"name":"allocatePrivateToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"walletAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_start","type":"bool"}],"name":"setICOStart","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"allocateTeamToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"topTotalSupply","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":"allocateContributorsToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owners","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"allocateTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenFrozen","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_freeze","type":"bool"}],"name":"unfreezeTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ContributorsSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ICOStart","outputs":[{"name":"","type":"bool"}],"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":true,"inputs":[],"name":"privateFundSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"contributorsAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"privateFundingSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"},{"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"}]

60606040526005805460a060020a60ff0219167401000000000000000000000000000000000000000017905560006009556200004a601964010000000062001142620000e282021704565b600a5562000067601964010000000062001142620000e282021704565b600b556000600c5562000089601464010000000062001142620000e282021704565b600d556000600e55620000ab601e64010000000062001142620000e282021704565b600f553415620000ba57600080fd5b60088054600160a060020a033316600160a060020a0319918216811790911617905562000170565b60006200012460646200010f846ac685fa11e01ec6f0000000640100000000620011766200012a82021704565b906401000000006200119a6200015882021704565b92915050565b60008282028315806200014857508284828115156200014557fe5b04145b15156200015157fe5b9392505050565b60008082848115156200016757fe5b04949350505050565b6111dd80620001806000396000f3006060604052600436106101ab5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166303ff5e7381146101c757806306fdde03146101ec578063095ea7b3146102765780630d329d14146102ac5780630fdb1c10146102bf57806315b73a1d146102c757806318160ddd146102da5780631c75f085146102ed57806323b872dd1461031c57806329c19304146103445780632cfac6ec14610375578063313ce567146103885780633ba0b9a91461039b578063620edb32146103ae5780636ad5b3ea1461043d57806370a082311461045057806378e979251461046f5780637c8bc827146104825780637c9677be1461049a57806385c09f26146104ad57806395d89b41146104c0578063a1d0ab04146104d3578063a6f9dae1146104e6578063a7368afb14610505578063a9059cbb14610594578063afc361bc146105b6578063b5cc7e29146105c9578063c0584e68146105e1578063cae9ca51146105f4578063d01ab31a14610659578063dd62ed3e1461066c578063df482ad514610691578063e9aa80b1146106a4578063ee2fbf3a146106b7575b60115460ff1615156101bc57600080fd5b6101c5346106ca565b005b34156101d257600080fd5b6101da61071d565b60405190815260200160405180910390f35b34156101f757600080fd5b6101ff610723565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561023b578082015183820152602001610223565b50505050905090810190601f1680156102685780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561028157600080fd5b610298600160a060020a036004351660243561075a565b604051901515815260200160405180910390f35b34156102b757600080fd5b6101da6107dd565b6101c56107e3565b34156102d257600080fd5b6101da610863565b34156102e557600080fd5b6101da610869565b34156102f857600080fd5b61030061086f565b604051600160a060020a03909116815260200160405180910390f35b341561032757600080fd5b610298600160a060020a036004358116906024351660443561087e565b341561034f57600080fd5b6101c5600435602435600160a060020a03604435811690606435811690608435166109a4565b341561038057600080fd5b6101da610a17565b341561039357600080fd5b6101da610a1d565b34156103a657600080fd5b6101da610a22565b34156103b957600080fd5b6101c5600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610a2895505050505050565b341561044857600080fd5b610300610ada565b341561045b57600080fd5b6101da600160a060020a0360043516610ae9565b341561047a57600080fd5b6101da610b08565b341561048d57600080fd5b6101c56004351515610b0e565b34156104a557600080fd5b6101c5610b40565b34156104b857600080fd5b6101da610b74565b34156104cb57600080fd5b6101ff610b83565b34156104de57600080fd5b6101c5610bba565b34156104f157600080fd5b6101c5600160a060020a0360043516610bee565b341561051057600080fd5b6101c5600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610c3895505050505050565b341561059f57600080fd5b610298600160a060020a0360043516602435610ce2565b34156105c157600080fd5b610298610de2565b34156105d457600080fd5b6101c56004351515610df2565b34156105ec57600080fd5b6101da610e39565b34156105ff57600080fd5b61029860048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610e3f95505050505050565b341561066457600080fd5b610298610f86565b341561067757600080fd5b6101da600160a060020a0360043581169060243516610f8f565b341561069c57600080fd5b6101da610fd5565b34156106af57600080fd5b610300610fdb565b34156106c257600080fd5b6101da610fea565b6000816106dd6106d8610ff0565b610ff4565b600e54910291506106f4908263ffffffff61102016565b600e819055600d54901061070757600080fd5b6107113382611036565b6107196110f7565b5050565b60025481565b60408051908101604052600981527f46616e73436861696e0000000000000000000000000000000000000000000000602082015281565b60055460009060a060020a900460ff161561077457600080fd5b600160a060020a03338116600081815260076020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600d5481565b60085433600160a060020a039081169116146107fe57600080fd5b33600160a060020a0316151561081357600080fd5b60025461081e610ff0565b1161082857600080fd5b600354600160a060020a039081169030163180156108fc0290604051600060405180830381858888f19350505050151561086157600080fd5b565b600e5481565b60095481565b600454600160a060020a031681565b60055460009060a060020a900460ff161561089857600080fd5b600160a060020a0384166000908152600660205260409020548290116108bd57600080fd5b600160a060020a038316600090815260066020526040902054828101116108e357600080fd5b600160a060020a038085166000908152600760209081526040808320339094168352929052205482111561091657600080fd5b600160a060020a03808516600081815260066020908152604080832080548890039055878516808452818420805489019055848452600783528184203390961684529490915290819020805486900390557fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60085433600160a060020a039081169116146109bf57600080fd5b60029490945560109290925560038054600160a060020a0392831673ffffffffffffffffffffffffffffffffffffffff1991821617909155600480549383169382169390931790925560058054919093169116179055565b600a5481565b601281565b60105481565b6008546000908190819033600160a060020a03908116911614610a4a57600080fd5b8351855114610a5857600080fd5b600092505b8451831015610ad357848381518110610a7257fe5b906020019060200201519150838381518110610a8a57fe5b90602001906020020151600c54909150610aaa908263ffffffff61102016565b600c819055600b54901115610abe57600080fd5b610ac88282611036565b600190920191610a5d565b5050505050565b600354600160a060020a031681565b600160a060020a0381166000908152600660205260409020545b919050565b60015481565b60085433600160a060020a03908116911614610b2957600080fd5b6011805460ff191691151591909117905542600155565b60085433600160a060020a03908116911614610b5b57600080fd5b600454600a5461086191600160a060020a031690611036565b6ac685fa11e01ec6f000000081565b60408051908101604052600581527f46414e5343000000000000000000000000000000000000000000000000000000602082015281565b60085433600160a060020a03908116911614610bd557600080fd5b600554600f5461086191600160a060020a031690611036565b60085433600160a060020a03908116911614610c0957600080fd5b6008805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6008546000908190819033600160a060020a03908116911614610c5a57600080fd5b8351855114610c6857600080fd5b600092505b8451831015610ad357848381518110610c8257fe5b906020019060200201519150838381518110610c9a57fe5b90602001906020020151600e54909150610cba908263ffffffff61102016565b600e55600d5460095410610ccd57600080fd5b610cd78282611036565b600190920191610c6d565b60055460009060a060020a900460ff1615610cfc57600080fd5b6004543390600160a060020a0380831691161415610d28576001546301e13380014211610d2857600080fd5b600160a060020a033316600090815260066020526040902054839011610d4d57600080fd5b600160a060020a03841660009081526006602052604090205483810111610d7357600080fd5b600160a060020a033381166000818152600660205260408082208054889003905592871680825290839020805487019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35060019392505050565b60055460a060020a900460ff1681565b60085433600160a060020a03908116911614610e0d57600080fd5b6005805474ff00000000000000000000000000000000000000001916911560a060020a02919091179055565b600f5481565b600554600090819060a060020a900460ff1615610e5b57600080fd5b5083610e67818561075a565b5080600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610f19578082015183820152602001610f01565b50505050905090810190601f168015610f465780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610f6757600080fd5b6102c65a03f11515610f7857600080fd5b506001979650505050505050565b60115460ff1681565b60055460009060a060020a900460ff1615610fa957600080fd5b50600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b600b5481565b600554600160a060020a031681565b600c5481565b4290565b6000600154821015801561100a57506002548211155b156110185750601054610b03565b506000610b03565b60008282018381101561102f57fe5b9392505050565b600160a060020a0382166000908152600660205260409020548181011161105c57600080fd5b600160a060020a038216600090815260066020526040902054611085908263ffffffff61102016565b600160a060020a0383166000908152600660205260409020556009546110b1908263ffffffff61102016565b600955600160a060020a03821660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600354600160a060020a0316151561110e57600080fd5b600354600160a060020a03163480156108fc0290604051600060405180830381858888f19350505050151561086157600080fd5b60006111706064611164846ac685fa11e01ec6f000000063ffffffff61117616565b9063ffffffff61119a16565b92915050565b6000828202831580611192575082848281151561118f57fe5b04145b151561102f57fe5b60008082848115156111a857fe5b049493505050505600a165627a7a72305820679928063e833adb00ce7128d28f234d4b7e752b4289c37ac1fd07f50b1d37cc0029

Deployed Bytecode

0x6060604052600436106101ab5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166303ff5e7381146101c757806306fdde03146101ec578063095ea7b3146102765780630d329d14146102ac5780630fdb1c10146102bf57806315b73a1d146102c757806318160ddd146102da5780631c75f085146102ed57806323b872dd1461031c57806329c19304146103445780632cfac6ec14610375578063313ce567146103885780633ba0b9a91461039b578063620edb32146103ae5780636ad5b3ea1461043d57806370a082311461045057806378e979251461046f5780637c8bc827146104825780637c9677be1461049a57806385c09f26146104ad57806395d89b41146104c0578063a1d0ab04146104d3578063a6f9dae1146104e6578063a7368afb14610505578063a9059cbb14610594578063afc361bc146105b6578063b5cc7e29146105c9578063c0584e68146105e1578063cae9ca51146105f4578063d01ab31a14610659578063dd62ed3e1461066c578063df482ad514610691578063e9aa80b1146106a4578063ee2fbf3a146106b7575b60115460ff1615156101bc57600080fd5b6101c5346106ca565b005b34156101d257600080fd5b6101da61071d565b60405190815260200160405180910390f35b34156101f757600080fd5b6101ff610723565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561023b578082015183820152602001610223565b50505050905090810190601f1680156102685780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561028157600080fd5b610298600160a060020a036004351660243561075a565b604051901515815260200160405180910390f35b34156102b757600080fd5b6101da6107dd565b6101c56107e3565b34156102d257600080fd5b6101da610863565b34156102e557600080fd5b6101da610869565b34156102f857600080fd5b61030061086f565b604051600160a060020a03909116815260200160405180910390f35b341561032757600080fd5b610298600160a060020a036004358116906024351660443561087e565b341561034f57600080fd5b6101c5600435602435600160a060020a03604435811690606435811690608435166109a4565b341561038057600080fd5b6101da610a17565b341561039357600080fd5b6101da610a1d565b34156103a657600080fd5b6101da610a22565b34156103b957600080fd5b6101c5600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610a2895505050505050565b341561044857600080fd5b610300610ada565b341561045b57600080fd5b6101da600160a060020a0360043516610ae9565b341561047a57600080fd5b6101da610b08565b341561048d57600080fd5b6101c56004351515610b0e565b34156104a557600080fd5b6101c5610b40565b34156104b857600080fd5b6101da610b74565b34156104cb57600080fd5b6101ff610b83565b34156104de57600080fd5b6101c5610bba565b34156104f157600080fd5b6101c5600160a060020a0360043516610bee565b341561051057600080fd5b6101c5600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610c3895505050505050565b341561059f57600080fd5b610298600160a060020a0360043516602435610ce2565b34156105c157600080fd5b610298610de2565b34156105d457600080fd5b6101c56004351515610df2565b34156105ec57600080fd5b6101da610e39565b34156105ff57600080fd5b61029860048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610e3f95505050505050565b341561066457600080fd5b610298610f86565b341561067757600080fd5b6101da600160a060020a0360043581169060243516610f8f565b341561069c57600080fd5b6101da610fd5565b34156106af57600080fd5b610300610fdb565b34156106c257600080fd5b6101da610fea565b6000816106dd6106d8610ff0565b610ff4565b600e54910291506106f4908263ffffffff61102016565b600e819055600d54901061070757600080fd5b6107113382611036565b6107196110f7565b5050565b60025481565b60408051908101604052600981527f46616e73436861696e0000000000000000000000000000000000000000000000602082015281565b60055460009060a060020a900460ff161561077457600080fd5b600160a060020a03338116600081815260076020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600d5481565b60085433600160a060020a039081169116146107fe57600080fd5b33600160a060020a0316151561081357600080fd5b60025461081e610ff0565b1161082857600080fd5b600354600160a060020a039081169030163180156108fc0290604051600060405180830381858888f19350505050151561086157600080fd5b565b600e5481565b60095481565b600454600160a060020a031681565b60055460009060a060020a900460ff161561089857600080fd5b600160a060020a0384166000908152600660205260409020548290116108bd57600080fd5b600160a060020a038316600090815260066020526040902054828101116108e357600080fd5b600160a060020a038085166000908152600760209081526040808320339094168352929052205482111561091657600080fd5b600160a060020a03808516600081815260066020908152604080832080548890039055878516808452818420805489019055848452600783528184203390961684529490915290819020805486900390557fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60085433600160a060020a039081169116146109bf57600080fd5b60029490945560109290925560038054600160a060020a0392831673ffffffffffffffffffffffffffffffffffffffff1991821617909155600480549383169382169390931790925560058054919093169116179055565b600a5481565b601281565b60105481565b6008546000908190819033600160a060020a03908116911614610a4a57600080fd5b8351855114610a5857600080fd5b600092505b8451831015610ad357848381518110610a7257fe5b906020019060200201519150838381518110610a8a57fe5b90602001906020020151600c54909150610aaa908263ffffffff61102016565b600c819055600b54901115610abe57600080fd5b610ac88282611036565b600190920191610a5d565b5050505050565b600354600160a060020a031681565b600160a060020a0381166000908152600660205260409020545b919050565b60015481565b60085433600160a060020a03908116911614610b2957600080fd5b6011805460ff191691151591909117905542600155565b60085433600160a060020a03908116911614610b5b57600080fd5b600454600a5461086191600160a060020a031690611036565b6ac685fa11e01ec6f000000081565b60408051908101604052600581527f46414e5343000000000000000000000000000000000000000000000000000000602082015281565b60085433600160a060020a03908116911614610bd557600080fd5b600554600f5461086191600160a060020a031690611036565b60085433600160a060020a03908116911614610c0957600080fd5b6008805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6008546000908190819033600160a060020a03908116911614610c5a57600080fd5b8351855114610c6857600080fd5b600092505b8451831015610ad357848381518110610c8257fe5b906020019060200201519150838381518110610c9a57fe5b90602001906020020151600e54909150610cba908263ffffffff61102016565b600e55600d5460095410610ccd57600080fd5b610cd78282611036565b600190920191610c6d565b60055460009060a060020a900460ff1615610cfc57600080fd5b6004543390600160a060020a0380831691161415610d28576001546301e13380014211610d2857600080fd5b600160a060020a033316600090815260066020526040902054839011610d4d57600080fd5b600160a060020a03841660009081526006602052604090205483810111610d7357600080fd5b600160a060020a033381166000818152600660205260408082208054889003905592871680825290839020805487019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35060019392505050565b60055460a060020a900460ff1681565b60085433600160a060020a03908116911614610e0d57600080fd5b6005805474ff00000000000000000000000000000000000000001916911560a060020a02919091179055565b600f5481565b600554600090819060a060020a900460ff1615610e5b57600080fd5b5083610e67818561075a565b5080600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610f19578082015183820152602001610f01565b50505050905090810190601f168015610f465780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610f6757600080fd5b6102c65a03f11515610f7857600080fd5b506001979650505050505050565b60115460ff1681565b60055460009060a060020a900460ff1615610fa957600080fd5b50600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b600b5481565b600554600160a060020a031681565b600c5481565b4290565b6000600154821015801561100a57506002548211155b156110185750601054610b03565b506000610b03565b60008282018381101561102f57fe5b9392505050565b600160a060020a0382166000908152600660205260409020548181011161105c57600080fd5b600160a060020a038216600090815260066020526040902054611085908263ffffffff61102016565b600160a060020a0383166000908152600660205260409020556009546110b1908263ffffffff61102016565b600955600160a060020a03821660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600354600160a060020a0316151561110e57600080fd5b600354600160a060020a03163480156108fc0290604051600060405180830381858888f19350505050151561086157600080fd5b60006111706064611164846ac685fa11e01ec6f000000063ffffffff61117616565b9063ffffffff61119a16565b92915050565b6000828202831580611192575082848281151561118f57fe5b04145b151561102f57fe5b60008082848115156111a857fe5b049493505050505600a165627a7a72305820679928063e833adb00ce7128d28f234d4b7e752b4289c37ac1fd07f50b1d37cc0029

Swarm Source

bzzr://679928063e833adb00ce7128d28f234d4b7e752b4289c37ac1fd07f50b1d37cc
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.