ERC-20
Overview
Max Total Supply
200,000,000 SFU
Holders
7
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SaifuToken
Compiler Version
v0.4.19+commit.c4cbbb05
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-02-12 */ pragma solidity ^0.4.19; // File: zeppelin-solidity/contracts/ownership/Ownable.sol /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ 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; } } // File: contracts/FreezableToken.sol /** * @title Freezable Token * @dev Token that can be freezed for chosen token holder. */ contract FreezableToken is Ownable { mapping (address => bool) public frozenList; event FrozenFunds(address indexed wallet, bool frozen); /** * @dev Owner can freeze the token balance for chosen token holder. * @param _wallet The address of token holder whose tokens to be frozen. */ function freezeAccount(address _wallet) onlyOwner public { require(_wallet != address(0)); frozenList[_wallet] = true; FrozenFunds(_wallet, true); } /** * @dev Owner can unfreeze the token balance for chosen token holder. * @param _wallet The address of token holder whose tokens to be unfrozen. */ function unfreezeAccount(address _wallet) onlyOwner public { require(_wallet != address(0)); frozenList[_wallet] = false; FrozenFunds(_wallet, false); } /** * @dev Check the specified token holder whether his/her token balance is frozen. * @param _wallet The address of token holder to check. */ function isFrozen(address _wallet) public view returns (bool) { return frozenList[_wallet]; } } // File: zeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); 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); } // File: zeppelin-solidity/contracts/token/ERC20/ERC20.sol /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ 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); } // File: zeppelin-solidity/contracts/token/ERC20/SafeERC20.sol /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { function safeTransfer(ERC20Basic token, address to, uint256 value) internal { assert(token.transfer(to, value)); } function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal { assert(token.transferFrom(from, to, value)); } function safeApprove(ERC20 token, address spender, uint256 value) internal { assert(token.approve(spender, value)); } } // File: contracts/TokenTimelock.sol /** * @title TokenTimelock * @dev TokenTimelock is a token holder contract that will allow a * beneficiary to extract the tokens after a given release time */ contract TokenTimelock { using SafeERC20 for ERC20Basic; // ERC20 basic token contract being held ERC20Basic public token; // beneficiary of tokens after they are released address public beneficiary; // timestamp when token release is enabled uint256 public releaseTime; function TokenTimelock(ERC20Basic _token, address _beneficiary, uint256 _releaseTime) public { require(_releaseTime > now); token = _token; beneficiary = _beneficiary; releaseTime = _releaseTime; } /** * @notice Transfers tokens held by timelock to beneficiary. */ function release() public { require(now >= releaseTime); uint256 amount = token.balanceOf(this); require(amount > 0); // Change safeTransfer -> transfer because issue with assert function with ref type. token.transfer(beneficiary, amount); } } // File: zeppelin-solidity/contracts/math/SafeMath.sol /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ 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; } /** * @dev Integer division of two numbers, truncating the quotient. */ 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; } /** * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } // File: zeppelin-solidity/contracts/token/ERC20/BasicToken.sol /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); 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); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } } // File: zeppelin-solidity/contracts/token/ERC20/StandardToken.sol /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } // File: contracts/SaifuToken.sol contract SaifuToken is StandardToken, FreezableToken { using SafeMath for uint256; string constant public name = "Saifu"; string constant public symbol = "SFU"; uint8 constant public decimals = 18; uint256 constant public INITIAL_TOTAL_SUPPLY = 200e6 * (uint256(10) ** decimals); uint256 constant public AMOUNT_TOKENS_FOR_SELL = 130e6 * (uint256(10) ** decimals); uint256 constant public RESERVE_FUND = 20e6 * (uint256(10) ** decimals); uint256 constant public RESERVED_FOR_TEAM = 50e6 * (uint256(10) ** decimals); uint256 constant public RESERVED_TOTAL_AMOUNT = 70e6 * (uint256(10) ** decimals); uint256 public alreadyReservedForTeam = 0; bool private isReservedFundsDone = false; address public burnAddress; uint256 private setBurnAddressCount = 0; // Key: address of wallet, Value: address of contract. mapping (address => address) private lockedList; /** * @dev Throws if called by any account other than the burnable account. */ modifier onlyBurnAddress() { require(msg.sender == burnAddress); _; } /** * @dev Create SaifuToken contract */ function SaifuToken() public { totalSupply_ = totalSupply_.add(INITIAL_TOTAL_SUPPLY); balances[owner] = balances[owner].add(AMOUNT_TOKENS_FOR_SELL); Transfer(address(0), owner, AMOUNT_TOKENS_FOR_SELL); balances[this] = balances[this].add(RESERVED_TOTAL_AMOUNT); Transfer(address(0), this, RESERVED_TOTAL_AMOUNT); } /** * @dev Transfer token for a specified address. * @dev Only applies when the transfer is allowed by the owner. * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(!isFrozen(msg.sender)); super.transfer(_to, _value); } /** * @dev Transfer tokens from one address to another. * @dev Only applies when the transfer is allowed by the owner. * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(!isFrozen(msg.sender)); require(!isFrozen(_from)); super.transferFrom(_from, _to, _value); } /** * @dev Set burn address. * @param _address New burn address */ function setBurnAddress(address _address) onlyOwner public { require(setBurnAddressCount < 3); require(_address != address(0)); burnAddress = _address; setBurnAddressCount = setBurnAddressCount.add(1); } /** * @dev Reserve funds. * @param _address the address for reserve funds. */ function reserveFunds(address _address) onlyOwner public { require(_address != address(0)); require(!isReservedFundsDone); sendFromContract(_address, RESERVE_FUND); isReservedFundsDone = true; } /** * @dev Get locked contract address. * @param _address the address of owner these tokens. */ function getLockedContract(address _address) public view returns(address) { return lockedList[_address]; } /** * @dev Reserve for team. * @param _address the address for reserve. * @param _amount the specified amount for reserve. * @param _time the specified freezing time (in days). */ function reserveForTeam(address _address, uint256 _amount, uint256 _time) onlyOwner public { require(_address != address(0)); require(_amount > 0 && _amount <= RESERVED_FOR_TEAM.sub(alreadyReservedForTeam)); if (_time > 0) { address lockedAddress = new TokenTimelock(this, _address, now.add(_time * 1 days)); lockedList[_address] = lockedAddress; sendFromContract(lockedAddress, _amount); } else { sendFromContract(_address, _amount); } alreadyReservedForTeam = alreadyReservedForTeam.add(_amount); } /** * @dev Send tokens which will be frozen for specified time. * @param _address the address for send. * @param _amount the specified amount for send. * @param _time the specified freezing time (in seconds). */ function sendWithFreeze(address _address, uint256 _amount, uint256 _time) onlyOwner public { require(_address != address(0) && _amount > 0 && _time > 0); address lockedAddress = new TokenTimelock(this, _address, now.add(_time)); lockedList[_address] = lockedAddress; transfer(lockedAddress, _amount); } /** * @dev Unlock frozen tokens. * @param _address the address for which to release already unlocked tokens. */ function unlockTokens(address _address) public { require(lockedList[_address] != address(0)); TokenTimelock lockedContract = TokenTimelock(lockedList[_address]); lockedContract.release(); } /** * @dev Burn a specific amount of tokens. * @param _amount The Amount of tokens. */ function burnFromAddress(uint256 _amount) onlyBurnAddress public { require(_amount > 0); require(_amount <= balances[burnAddress]); balances[burnAddress] = balances[burnAddress].sub(_amount); totalSupply_ = totalSupply_.sub(_amount); Transfer(burnAddress, address(0), _amount); } /* * @dev Send tokens from contract. * @param _address the address destination. * @param _amount the specified amount for send. */ function sendFromContract(address _address, uint256 _amount) internal { balances[this] = balances[this].sub(_amount); balances[_address] = balances[_address].add(_amount); Transfer(this, _address, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_time","type":"uint256"}],"name":"sendWithFreeze","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"getLockedContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"AMOUNT_TOKENS_FOR_SELL","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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"setBurnAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"RESERVE_FUND","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenList","outputs":[{"name":"","type":"bool"}],"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":"burnAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_wallet","type":"address"}],"name":"unfreezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"alreadyReservedForTeam","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"RESERVED_FOR_TEAM","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_time","type":"uint256"}],"name":"reserveForTeam","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","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":"INITIAL_TOTAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"RESERVED_TOTAL_AMOUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"unlockTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"burnFromAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_wallet","type":"address"}],"name":"isFrozen","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"reserveFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_wallet","type":"address"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"wallet","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"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"}]
Contract Creation Code
6060604052600060058190556006805460ff1916905560075534156200002457600080fd5b60038054600160a060020a03191633600160a060020a031617905560015462000067906aa56fa5b99019a5c80000006401000000006200018d810262000feb1704565b600155600354600160a060020a0316600090815260208190526040902054620000aa906a6b88921f0410abc200000064010000000062000feb6200018d82021704565b60038054600160a060020a03908116600090815260208190526040808220949094559154169160008051602062001807833981519152906a6b88921f0410abc2000000905190815260200160405180910390a3600160a060020a0330166000908152602081905260409020546200013b906a39e7139a8c08fa0600000064010000000062000feb6200018d82021704565b600160a060020a03301660008181526020819052604080822093909355909160008051602062001807833981519152906a39e7139a8c08fa06000000905190815260200160405180910390a3620001a4565b6000828201838110156200019d57fe5b9392505050565b61165380620001b46000396000f30060606040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302d23cef811461018f57806306fdde03146101b6578063095ea7b31461024057806318160ddd14610276578063193080cb1461029b5780631b7aad1b146102d657806323b872dd146102e9578063313ce567146103115780634b0e72161461033a5780635c47376414610359578063661884631461036c5780636a8269b41461038e57806370a08231146103ad57806370d5ae05146103cc578063788649ea146103df5780637f5f9128146103fe5780637f704657146104115780638da5cb5b1461042457806391d6367b1461043757806395d89b411461045c578063a9059cbb1461046f578063c04fcad814610491578063c403cf6d146104a4578063cb67f948146104b7578063d73dd623146104d6578063dd62ed3e146104f8578063e06c58081461051d578063e583983614610533578063f1c5593114610552578063f26c159f14610571578063f2fde38b14610590575b600080fd5b341561019a57600080fd5b6101b4600160a060020a03600435166024356044356105af565b005b34156101c157600080fd5b6101c961069b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102055780820151838201526020016101ed565b50505050905090810190601f1680156102325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024b57600080fd5b610262600160a060020a03600435166024356106d2565b604051901515815260200160405180910390f35b341561028157600080fd5b61028961073e565b60405190815260200160405180910390f35b34156102a657600080fd5b6102ba600160a060020a0360043516610744565b604051600160a060020a03909116815260200160405180910390f35b34156102e157600080fd5b610289610762565b34156102f457600080fd5b610262600160a060020a0360043581169060243516604435610771565b341561031c57600080fd5b6103246107ac565b60405160ff909116815260200160405180910390f35b341561034557600080fd5b6101b4600160a060020a03600435166107b1565b341561036457600080fd5b610289610832565b341561037757600080fd5b610262600160a060020a0360043516602435610841565b341561039957600080fd5b610262600160a060020a036004351661093d565b34156103b857600080fd5b610289600160a060020a0360043516610952565b34156103d757600080fd5b6102ba61096d565b34156103ea57600080fd5b6101b4600160a060020a0360043516610981565b341561040957600080fd5b610289610a09565b341561041c57600080fd5b610289610a0f565b341561042f57600080fd5b6102ba610a1e565b341561044257600080fd5b6101b4600160a060020a0360043516602435604435610a2d565b341561046757600080fd5b6101c9610b6a565b341561047a57600080fd5b610262600160a060020a0360043516602435610ba1565b341561049c57600080fd5b610289610bc0565b34156104af57600080fd5b610289610bcf565b34156104c257600080fd5b6101b4600160a060020a0360043516610bde565b34156104e157600080fd5b610262600160a060020a0360043516602435610c85565b341561050357600080fd5b610289600160a060020a0360043581169060243516610d29565b341561052857600080fd5b6101b4600435610d54565b341561053e57600080fd5b610262600160a060020a0360043516610e3f565b341561055d57600080fd5b6101b4600160a060020a0360043516610e5d565b341561057c57600080fd5b6101b4600160a060020a0360043516610ec2565b341561059b57600080fd5b6101b4600160a060020a0360043516610f50565b60035460009033600160a060020a039081169116146105cd57600080fd5b600160a060020a038416158015906105e55750600083115b80156105f15750600082115b15156105fc57600080fd5b308461060e428563ffffffff610feb16565b610616611340565b600160a060020a0393841681529190921660208201526040808201929092526060019051809103906000f080151561064d57600080fd5b600160a060020a038581166000908152600860205260409020805473ffffffffffffffffffffffffffffffffffffffff191691831691909117905590506106948184610ba1565b5050505050565b60408051908101604052600581527f5361696675000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b600160a060020a039081166000908152600860205260409020541690565b6a6b88921f0410abc200000081565b600061077c33610e3f565b1561078657600080fd5b61078f84610e3f565b1561079957600080fd5b6107a4848484611001565b509392505050565b601281565b60035433600160a060020a039081169116146107cc57600080fd5b600754600390106107dc57600080fd5b600160a060020a03811615156107f157600080fd5b6006805474ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a0384160217905560075461082c906001610feb565b60075550565b6a108b2a2c2802909400000081565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561089e57600160a060020a0333811660009081526002602090815260408083209388168352929052908120556108d5565b6108ae818463ffffffff61116f16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b60046020526000908152604090205460ff1681565b600160a060020a031660009081526020819052604090205490565b6006546101009004600160a060020a031681565b60035433600160a060020a0390811691161461099c57600080fd5b600160a060020a03811615156109b157600080fd5b600160a060020a038116600081815260046020526040808220805460ff191690557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5919051901515815260200160405180910390a250565b60055481565b6a295be96e6406697200000081565b600354600160a060020a031681565b60035460009033600160a060020a03908116911614610a4b57600080fd5b600160a060020a0384161515610a6057600080fd5b600083118015610a8e5750600554610a8a906a295be96e640669720000009063ffffffff61116f16565b8311155b1515610a9957600080fd5b6000821115610b44573084610ab94262015180860263ffffffff610feb16565b610ac1611340565b600160a060020a0393841681529190921660208201526040808201929092526060019051809103906000f0801515610af857600080fd5b600160a060020a038581166000908152600860205260409020805473ffffffffffffffffffffffffffffffffffffffff19169183169190911790559050610b3f8184611181565b610b4e565b610b4e8484611181565b600554610b61908463ffffffff610feb16565b60055550505050565b60408051908101604052600381527f5346550000000000000000000000000000000000000000000000000000000000602082015281565b6000610bac33610e3f565b15610bb657600080fd5b6109368383611240565b6aa56fa5b99019a5c800000081565b6a39e7139a8c08fa0600000081565b600160a060020a038181166000908152600860205260408120549091161515610c0657600080fd5b50600160a060020a0380821660009081526008602052604090819020549091169081906386d1a69f90518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401600060405180830381600087803b1515610c7457600080fd5b6102c65a03f1151561069457600080fd5b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610cbd908363ffffffff610feb16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60065433600160a060020a039081166101009092041614610d7457600080fd5b60008111610d8157600080fd5b6006546101009004600160a060020a0316600090815260208190526040902054811115610dad57600080fd5b6006546101009004600160a060020a0316600090815260208190526040902054610dd7908261116f565b6006546101009004600160a060020a0316600090815260208190526040902055600154610e04908261116f565b6001556006546000906101009004600160a060020a03166000805160206116088339815191528360405190815260200160405180910390a350565b600160a060020a031660009081526004602052604090205460ff1690565b60035433600160a060020a03908116911614610e7857600080fd5b600160a060020a0381161515610e8d57600080fd5b60065460ff1615610e9d57600080fd5b610eb2816a108b2a2c28029094000000611181565b506006805460ff19166001179055565b60035433600160a060020a03908116911614610edd57600080fd5b600160a060020a0381161515610ef257600080fd5b600160a060020a03811660008181526004602052604090819020805460ff191660019081179091557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59151901515815260200160405180910390a250565b60035433600160a060020a03908116911614610f6b57600080fd5b600160a060020a0381161515610f8057600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082820183811015610ffa57fe5b9392505050565b6000600160a060020a038316151561101857600080fd5b600160a060020a03841660009081526020819052604090205482111561103d57600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561107057600080fd5b600160a060020a038416600090815260208190526040902054611099908363ffffffff61116f16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546110ce908363ffffffff610feb16565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054611114908363ffffffff61116f16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516916000805160206116088339815191529085905190815260200160405180910390a35060019392505050565b60008282111561117b57fe5b50900390565b600160a060020a0330166000908152602081905260409020546111aa908263ffffffff61116f16565b600160a060020a0330811660009081526020819052604080822093909355908416815220546111df908263ffffffff610feb16565b60008084600160a060020a0316600160a060020a031681526020019081526020016000208190555081600160a060020a031630600160a060020a03166000805160206116088339815191528360405190815260200160405180910390a35050565b6000600160a060020a038316151561125757600080fd5b600160a060020a03331660009081526020819052604090205482111561127c57600080fd5b600160a060020a0333166000908152602081905260409020546112a5908363ffffffff61116f16565b600160a060020a0333811660009081526020819052604080822093909355908516815220546112da908363ffffffff610feb16565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03166000805160206116088339815191528460405190815260200160405180910390a350600192915050565b6040516102b7806113518339019056006060604052341561000f57600080fd5b6040516060806102b783398101604052808051919060200180519190602001805191505042811161003f57600080fd5b60008054600160a060020a03948516600160a060020a0319918216179091556001805493909416921691909117909155600255610236806100816000396000f3006060604052600436106100485763ffffffff60e060020a60003504166338af3eed811461004d57806386d1a69f1461007c578063b91d400114610091578063fc0c546a146100b6575b600080fd5b341561005857600080fd5b6100606100c9565b604051600160a060020a03909116815260200160405180910390f35b341561008757600080fd5b61008f6100d8565b005b341561009c57600080fd5b6100a46101f5565b60405190815260200160405180910390f35b34156100c157600080fd5b6100606101fb565b600154600160a060020a031681565b6002546000904210156100ea57600080fd5b60008054600160a060020a0316906370a082319030906040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561014557600080fd5b6102c65a03f1151561015657600080fd5b50505060405180519150506000811161016e57600080fd5b60008054600154600160a060020a039182169263a9059cbb929091169084906040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b15156101d757600080fd5b6102c65a03f115156101e857600080fd5b5050506040518051505050565b60025481565b600054600160a060020a0316815600a165627a7a72305820f3b4905d32385b5558c2ba89249aabab2ed74105ca194dd508a0aafda3e43d6c0029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058200de97108bf1455f5a3cc44c30440e75f3fafdc65bf975a93a280a12cef94c5100029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x60606040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302d23cef811461018f57806306fdde03146101b6578063095ea7b31461024057806318160ddd14610276578063193080cb1461029b5780631b7aad1b146102d657806323b872dd146102e9578063313ce567146103115780634b0e72161461033a5780635c47376414610359578063661884631461036c5780636a8269b41461038e57806370a08231146103ad57806370d5ae05146103cc578063788649ea146103df5780637f5f9128146103fe5780637f704657146104115780638da5cb5b1461042457806391d6367b1461043757806395d89b411461045c578063a9059cbb1461046f578063c04fcad814610491578063c403cf6d146104a4578063cb67f948146104b7578063d73dd623146104d6578063dd62ed3e146104f8578063e06c58081461051d578063e583983614610533578063f1c5593114610552578063f26c159f14610571578063f2fde38b14610590575b600080fd5b341561019a57600080fd5b6101b4600160a060020a03600435166024356044356105af565b005b34156101c157600080fd5b6101c961069b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102055780820151838201526020016101ed565b50505050905090810190601f1680156102325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024b57600080fd5b610262600160a060020a03600435166024356106d2565b604051901515815260200160405180910390f35b341561028157600080fd5b61028961073e565b60405190815260200160405180910390f35b34156102a657600080fd5b6102ba600160a060020a0360043516610744565b604051600160a060020a03909116815260200160405180910390f35b34156102e157600080fd5b610289610762565b34156102f457600080fd5b610262600160a060020a0360043581169060243516604435610771565b341561031c57600080fd5b6103246107ac565b60405160ff909116815260200160405180910390f35b341561034557600080fd5b6101b4600160a060020a03600435166107b1565b341561036457600080fd5b610289610832565b341561037757600080fd5b610262600160a060020a0360043516602435610841565b341561039957600080fd5b610262600160a060020a036004351661093d565b34156103b857600080fd5b610289600160a060020a0360043516610952565b34156103d757600080fd5b6102ba61096d565b34156103ea57600080fd5b6101b4600160a060020a0360043516610981565b341561040957600080fd5b610289610a09565b341561041c57600080fd5b610289610a0f565b341561042f57600080fd5b6102ba610a1e565b341561044257600080fd5b6101b4600160a060020a0360043516602435604435610a2d565b341561046757600080fd5b6101c9610b6a565b341561047a57600080fd5b610262600160a060020a0360043516602435610ba1565b341561049c57600080fd5b610289610bc0565b34156104af57600080fd5b610289610bcf565b34156104c257600080fd5b6101b4600160a060020a0360043516610bde565b34156104e157600080fd5b610262600160a060020a0360043516602435610c85565b341561050357600080fd5b610289600160a060020a0360043581169060243516610d29565b341561052857600080fd5b6101b4600435610d54565b341561053e57600080fd5b610262600160a060020a0360043516610e3f565b341561055d57600080fd5b6101b4600160a060020a0360043516610e5d565b341561057c57600080fd5b6101b4600160a060020a0360043516610ec2565b341561059b57600080fd5b6101b4600160a060020a0360043516610f50565b60035460009033600160a060020a039081169116146105cd57600080fd5b600160a060020a038416158015906105e55750600083115b80156105f15750600082115b15156105fc57600080fd5b308461060e428563ffffffff610feb16565b610616611340565b600160a060020a0393841681529190921660208201526040808201929092526060019051809103906000f080151561064d57600080fd5b600160a060020a038581166000908152600860205260409020805473ffffffffffffffffffffffffffffffffffffffff191691831691909117905590506106948184610ba1565b5050505050565b60408051908101604052600581527f5361696675000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b600160a060020a039081166000908152600860205260409020541690565b6a6b88921f0410abc200000081565b600061077c33610e3f565b1561078657600080fd5b61078f84610e3f565b1561079957600080fd5b6107a4848484611001565b509392505050565b601281565b60035433600160a060020a039081169116146107cc57600080fd5b600754600390106107dc57600080fd5b600160a060020a03811615156107f157600080fd5b6006805474ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a0384160217905560075461082c906001610feb565b60075550565b6a108b2a2c2802909400000081565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561089e57600160a060020a0333811660009081526002602090815260408083209388168352929052908120556108d5565b6108ae818463ffffffff61116f16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b60046020526000908152604090205460ff1681565b600160a060020a031660009081526020819052604090205490565b6006546101009004600160a060020a031681565b60035433600160a060020a0390811691161461099c57600080fd5b600160a060020a03811615156109b157600080fd5b600160a060020a038116600081815260046020526040808220805460ff191690557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5919051901515815260200160405180910390a250565b60055481565b6a295be96e6406697200000081565b600354600160a060020a031681565b60035460009033600160a060020a03908116911614610a4b57600080fd5b600160a060020a0384161515610a6057600080fd5b600083118015610a8e5750600554610a8a906a295be96e640669720000009063ffffffff61116f16565b8311155b1515610a9957600080fd5b6000821115610b44573084610ab94262015180860263ffffffff610feb16565b610ac1611340565b600160a060020a0393841681529190921660208201526040808201929092526060019051809103906000f0801515610af857600080fd5b600160a060020a038581166000908152600860205260409020805473ffffffffffffffffffffffffffffffffffffffff19169183169190911790559050610b3f8184611181565b610b4e565b610b4e8484611181565b600554610b61908463ffffffff610feb16565b60055550505050565b60408051908101604052600381527f5346550000000000000000000000000000000000000000000000000000000000602082015281565b6000610bac33610e3f565b15610bb657600080fd5b6109368383611240565b6aa56fa5b99019a5c800000081565b6a39e7139a8c08fa0600000081565b600160a060020a038181166000908152600860205260408120549091161515610c0657600080fd5b50600160a060020a0380821660009081526008602052604090819020549091169081906386d1a69f90518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401600060405180830381600087803b1515610c7457600080fd5b6102c65a03f1151561069457600080fd5b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610cbd908363ffffffff610feb16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60065433600160a060020a039081166101009092041614610d7457600080fd5b60008111610d8157600080fd5b6006546101009004600160a060020a0316600090815260208190526040902054811115610dad57600080fd5b6006546101009004600160a060020a0316600090815260208190526040902054610dd7908261116f565b6006546101009004600160a060020a0316600090815260208190526040902055600154610e04908261116f565b6001556006546000906101009004600160a060020a03166000805160206116088339815191528360405190815260200160405180910390a350565b600160a060020a031660009081526004602052604090205460ff1690565b60035433600160a060020a03908116911614610e7857600080fd5b600160a060020a0381161515610e8d57600080fd5b60065460ff1615610e9d57600080fd5b610eb2816a108b2a2c28029094000000611181565b506006805460ff19166001179055565b60035433600160a060020a03908116911614610edd57600080fd5b600160a060020a0381161515610ef257600080fd5b600160a060020a03811660008181526004602052604090819020805460ff191660019081179091557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59151901515815260200160405180910390a250565b60035433600160a060020a03908116911614610f6b57600080fd5b600160a060020a0381161515610f8057600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082820183811015610ffa57fe5b9392505050565b6000600160a060020a038316151561101857600080fd5b600160a060020a03841660009081526020819052604090205482111561103d57600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561107057600080fd5b600160a060020a038416600090815260208190526040902054611099908363ffffffff61116f16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546110ce908363ffffffff610feb16565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054611114908363ffffffff61116f16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516916000805160206116088339815191529085905190815260200160405180910390a35060019392505050565b60008282111561117b57fe5b50900390565b600160a060020a0330166000908152602081905260409020546111aa908263ffffffff61116f16565b600160a060020a0330811660009081526020819052604080822093909355908416815220546111df908263ffffffff610feb16565b60008084600160a060020a0316600160a060020a031681526020019081526020016000208190555081600160a060020a031630600160a060020a03166000805160206116088339815191528360405190815260200160405180910390a35050565b6000600160a060020a038316151561125757600080fd5b600160a060020a03331660009081526020819052604090205482111561127c57600080fd5b600160a060020a0333166000908152602081905260409020546112a5908363ffffffff61116f16565b600160a060020a0333811660009081526020819052604080822093909355908516815220546112da908363ffffffff610feb16565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03166000805160206116088339815191528460405190815260200160405180910390a350600192915050565b6040516102b7806113518339019056006060604052341561000f57600080fd5b6040516060806102b783398101604052808051919060200180519190602001805191505042811161003f57600080fd5b60008054600160a060020a03948516600160a060020a0319918216179091556001805493909416921691909117909155600255610236806100816000396000f3006060604052600436106100485763ffffffff60e060020a60003504166338af3eed811461004d57806386d1a69f1461007c578063b91d400114610091578063fc0c546a146100b6575b600080fd5b341561005857600080fd5b6100606100c9565b604051600160a060020a03909116815260200160405180910390f35b341561008757600080fd5b61008f6100d8565b005b341561009c57600080fd5b6100a46101f5565b60405190815260200160405180910390f35b34156100c157600080fd5b6100606101fb565b600154600160a060020a031681565b6002546000904210156100ea57600080fd5b60008054600160a060020a0316906370a082319030906040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561014557600080fd5b6102c65a03f1151561015657600080fd5b50505060405180519150506000811161016e57600080fd5b60008054600154600160a060020a039182169263a9059cbb929091169084906040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b15156101d757600080fd5b6102c65a03f115156101e857600080fd5b5050506040518051505050565b60025481565b600054600160a060020a0316815600a165627a7a72305820f3b4905d32385b5558c2ba89249aabab2ed74105ca194dd508a0aafda3e43d6c0029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058200de97108bf1455f5a3cc44c30440e75f3fafdc65bf975a93a280a12cef94c5100029
Swarm Source
bzzr://0de97108bf1455f5a3cc44c30440e75f3fafdc65bf975a93a280a12cef94c510
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.