ERC-20
E-Commerce
Overview
Max Total Supply
997,289,588.518338 KYT
Holders
3,918 (0.00%)
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 Name:
KeyrptoToken
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-20 */ pragma solidity ^0.4.18; // File: node_modules/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: node_modules/zeppelin-solidity/contracts/lifecycle/Pausable.sol /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } // File: node_modules/zeppelin-solidity/contracts/math/SafeMath.sol /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ 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; } } // File: node_modules/zeppelin-solidity/contracts/token/ERC20Basic.sol /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ 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); } // File: node_modules/zeppelin-solidity/contracts/token/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; /** * @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: node_modules/zeppelin-solidity/contracts/token/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: node_modules/zeppelin-solidity/contracts/token/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: node_modules/zeppelin-solidity/contracts/token/MintableToken.sol /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) { totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Mint(_to, _amount); Transfer(address(0), _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner canMint public returns (bool) { mintingFinished = true; MintFinished(); return true; } } // File: contracts/KeyrptoToken.sol contract KeyrptoToken is MintableToken, Pausable { string public constant name = "Keyrpto Token"; string public constant symbol = "KYT"; uint8 public constant decimals = 18; uint256 internal constant MILLION_TOKENS = 1e6 * 1e18; address public teamWallet; bool public teamTokensMinted = false; uint256 public circulationStartTime; event Burn(address indexed burnedFrom, uint256 value); function KeyrptoToken() public { paused = true; } function setTeamWallet(address _teamWallet) public onlyOwner canMint { require(teamWallet == address(0)); require(_teamWallet != address(0)); teamWallet = _teamWallet; } function mintTeamTokens(uint256 _extraTokensMintedDuringPresale) public onlyOwner canMint { require(!teamTokensMinted); teamTokensMinted = true; mint(teamWallet, (490 * MILLION_TOKENS).sub(_extraTokensMintedDuringPresale)); } /* * @overrides Pausable#unpause * Change: store the time when it was first unpaused */ function unpause() onlyOwner whenPaused public { if (circulationStartTime == 0) { circulationStartTime = now; } super.unpause(); } /* * @overrides BasicToken#transfer * Changes: * - added whenNotPaused modifier * - added validation that teamWallet balance must not fall below amount of locked tokens */ function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) { require(validTransfer(msg.sender, _value)); return super.transfer(_to, _value); } /* * @overrides StandardToken#transferFrom * Changes: * - added whenNotPaused modifier * - added validation that teamWallet balance must not fall below amount of locked tokens */ function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) { require(validTransfer(_from, _value)); return super.transferFrom(_from, _to, _value); } function validTransfer(address _from, uint256 _amount) internal view returns (bool) { if (_from != teamWallet) { return true; } uint256 balanceAfterTransfer = balanceOf(_from).sub(_amount); return balanceAfterTransfer >= minimumTeamWalletBalance(); } /* * 100M tokens in teamWallet are locked for 6 months * 200M tokens in teamWallet are locked for 12 months */ function minimumTeamWalletBalance() internal view returns (uint256) { if (now < circulationStartTime + 26 weeks) { return 300 * MILLION_TOKENS; } else if (now < circulationStartTime + 1 years) { return 200 * MILLION_TOKENS; } else { return 0; } } /* * Copy of BurnableToken#burn * Changes: * - only allow owner to burn tokens and burn from given address, not msg.sender */ function burn(address _from, uint256 _value) external onlyOwner { require(_value <= balances[_from]); balances[_from] = balances[_from].sub(_value); totalSupply = totalSupply.sub(_value); Burn(_from, _value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_teamWallet","type":"address"}],"name":"setTeamWallet","outputs":[],"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":"teamTokensMinted","outputs":[{"name":"","type":"bool"}],"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":true,"inputs":[],"name":"circulationStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"teamWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_extraTokensMintedDuringPresale","type":"uint256"}],"name":"mintTeamTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"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":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burn","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":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":"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":"burnedFrom","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","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
60606040526003805460a060020a61ffff02191690556004805460a060020a60ff0219169055341561003057600080fd5b600380547501000000000000000000000000000000000000000000600160a060020a031990911633600160a060020a03161760a860020a60ff0219161790556111348061007e6000396000f3006060604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014d57806306fdde0314610174578063095ea7b3146101fe5780631525ff7d1461022057806318160ddd1461024157806322cb1ec81461026657806323b872dd14610279578063313ce567146102a157806338b9499b146102ca5780633f4ba83a146102dd57806340c10f19146102f057806359927044146103125780635c27cdc3146103415780635c975abb14610357578063661884631461036a57806370a082311461038c5780637d64bcb4146103ab5780638456cb59146103be5780638da5cb5b146103d157806395d89b41146103e45780639dc29fac146103f7578063a9059cbb14610419578063d73dd6231461043b578063dd62ed3e1461045d578063f2fde38b14610482575b600080fd5b341561015857600080fd5b6101606104a1565b604051901515815260200160405180910390f35b341561017f57600080fd5b6101876104b1565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c35780820151838201526020016101ab565b50505050905090810190601f1680156101f05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020957600080fd5b610160600160a060020a03600435166024356104e8565b341561022b57600080fd5b61023f600160a060020a0360043516610554565b005b341561024c57600080fd5b6102546105e0565b60405190815260200160405180910390f35b341561027157600080fd5b6101606105e6565b341561028457600080fd5b610160600160a060020a03600435811690602435166044356105f6565b34156102ac57600080fd5b6102b4610638565b60405160ff909116815260200160405180910390f35b34156102d557600080fd5b61025461063d565b34156102e857600080fd5b61023f610643565b34156102fb57600080fd5b610160600160a060020a036004351660243561068e565b341561031d57600080fd5b61032561079b565b604051600160a060020a03909116815260200160405180910390f35b341561034c57600080fd5b61023f6004356107aa565b341561036257600080fd5b61016061084b565b341561037557600080fd5b610160600160a060020a036004351660243561085b565b341561039757600080fd5b610254600160a060020a0360043516610957565b34156103b657600080fd5b610160610972565b34156103c957600080fd5b61023f6109fe565b34156103dc57600080fd5b610325610a83565b34156103ef57600080fd5b610187610a92565b341561040257600080fd5b61023f600160a060020a0360043516602435610ac9565b341561042457600080fd5b610160600160a060020a0360043516602435610ba3565b341561044657600080fd5b610160600160a060020a0360043516602435610be3565b341561046857600080fd5b610254600160a060020a0360043581169060243516610c87565b341561048d57600080fd5b61023f600160a060020a0360043516610cb2565b60035460a060020a900460ff1681565b60408051908101604052600d81527f4b65797270746f20546f6b656e00000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60035433600160a060020a0390811691161461056f57600080fd5b60035460a060020a900460ff161561058657600080fd5b600454600160a060020a03161561059c57600080fd5b600160a060020a03811615156105b157600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005481565b60045460a060020a900460ff1681565b60035460009060a860020a900460ff161561061057600080fd5b61061a8483610d4d565b151561062557600080fd5b610630848484610d9d565b949350505050565b601281565b60055481565b60035433600160a060020a0390811691161461065e57600080fd5b60035460a860020a900460ff16151561067657600080fd5b600554151561068457426005555b61068c610f1f565b565b60035460009033600160a060020a039081169116146106ac57600080fd5b60035460a060020a900460ff16156106c357600080fd5b6000546106d6908363ffffffff610f9f16565b6000908155600160a060020a038416815260016020526040902054610701908363ffffffff610f9f16565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600454600160a060020a031681565b60035433600160a060020a039081169116146107c557600080fd5b60035460a060020a900460ff16156107dc57600080fd5b60045460a060020a900460ff16156107f357600080fd5b6004805474ff0000000000000000000000000000000000000000191660a060020a179081905561084790600160a060020a03166108426b0195518939d43ed62a0000008463ffffffff610fae16565b61068e565b5050565b60035460a860020a900460ff1681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156108b857600160a060020a0333811660009081526002602090815260408083209388168352929052908120556108ef565b6108c8818463ffffffff610fae16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a0390811691161461099057600080fd5b60035460a060020a900460ff16156109a757600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b90565b60035433600160a060020a03908116911614610a1957600080fd5b60035460a860020a900460ff1615610a3057600080fd5b6003805475ff000000000000000000000000000000000000000000191660a860020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600381527f4b59540000000000000000000000000000000000000000000000000000000000602082015281565b60035433600160a060020a03908116911614610ae457600080fd5b600160a060020a038216600090815260016020526040902054811115610b0957600080fd5b600160a060020a038216600090815260016020526040902054610b32908263ffffffff610fae16565b600160a060020a03831660009081526001602052604081209190915554610b5f908263ffffffff610fae16565b600055600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405190815260200160405180910390a25050565b60035460009060a860020a900460ff1615610bbd57600080fd5b610bc73383610d4d565b1515610bd257600080fd5b610bdc8383610fc0565b9392505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610c1b908363ffffffff610f9f16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610ccd57600080fd5b600160a060020a0381161515610ce257600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6004546000908190600160a060020a03858116911614610d705760019150610950565b610d8983610d7d86610957565b9063ffffffff610fae16565b9050610d936110bb565b9010159392505050565b6000600160a060020a0383161515610db457600080fd5b600160a060020a038416600090815260016020526040902054821115610dd957600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610e0c57600080fd5b600160a060020a038416600090815260016020526040902054610e35908363ffffffff610fae16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610e6a908363ffffffff610f9f16565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610eb2908363ffffffff610fae16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60035433600160a060020a03908116911614610f3a57600080fd5b60035460a860020a900460ff161515610f5257600080fd5b6003805475ff000000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600082820183811015610bdc57fe5b600082821115610fba57fe5b50900390565b6000600160a060020a0383161515610fd757600080fd5b600160a060020a033316600090815260016020526040902054821115610ffc57600080fd5b600160a060020a033316600090815260016020526040902054611025908363ffffffff610fae16565b600160a060020a03338116600090815260016020526040808220939093559085168152205461105a908363ffffffff610f9f16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600060055462eff100014210156110de57506af8277896582678ac0000006109fb565b6005546301e133800142101561110057506aa56fa5b99019a5c80000006109fb565b5060006109fb5600a165627a7a72305820313da42af4ad7ffbf64857fac342635292992dfa06d7e87a5114c4b98be942780029
Deployed Bytecode
0x6060604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014d57806306fdde0314610174578063095ea7b3146101fe5780631525ff7d1461022057806318160ddd1461024157806322cb1ec81461026657806323b872dd14610279578063313ce567146102a157806338b9499b146102ca5780633f4ba83a146102dd57806340c10f19146102f057806359927044146103125780635c27cdc3146103415780635c975abb14610357578063661884631461036a57806370a082311461038c5780637d64bcb4146103ab5780638456cb59146103be5780638da5cb5b146103d157806395d89b41146103e45780639dc29fac146103f7578063a9059cbb14610419578063d73dd6231461043b578063dd62ed3e1461045d578063f2fde38b14610482575b600080fd5b341561015857600080fd5b6101606104a1565b604051901515815260200160405180910390f35b341561017f57600080fd5b6101876104b1565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c35780820151838201526020016101ab565b50505050905090810190601f1680156101f05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020957600080fd5b610160600160a060020a03600435166024356104e8565b341561022b57600080fd5b61023f600160a060020a0360043516610554565b005b341561024c57600080fd5b6102546105e0565b60405190815260200160405180910390f35b341561027157600080fd5b6101606105e6565b341561028457600080fd5b610160600160a060020a03600435811690602435166044356105f6565b34156102ac57600080fd5b6102b4610638565b60405160ff909116815260200160405180910390f35b34156102d557600080fd5b61025461063d565b34156102e857600080fd5b61023f610643565b34156102fb57600080fd5b610160600160a060020a036004351660243561068e565b341561031d57600080fd5b61032561079b565b604051600160a060020a03909116815260200160405180910390f35b341561034c57600080fd5b61023f6004356107aa565b341561036257600080fd5b61016061084b565b341561037557600080fd5b610160600160a060020a036004351660243561085b565b341561039757600080fd5b610254600160a060020a0360043516610957565b34156103b657600080fd5b610160610972565b34156103c957600080fd5b61023f6109fe565b34156103dc57600080fd5b610325610a83565b34156103ef57600080fd5b610187610a92565b341561040257600080fd5b61023f600160a060020a0360043516602435610ac9565b341561042457600080fd5b610160600160a060020a0360043516602435610ba3565b341561044657600080fd5b610160600160a060020a0360043516602435610be3565b341561046857600080fd5b610254600160a060020a0360043581169060243516610c87565b341561048d57600080fd5b61023f600160a060020a0360043516610cb2565b60035460a060020a900460ff1681565b60408051908101604052600d81527f4b65797270746f20546f6b656e00000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60035433600160a060020a0390811691161461056f57600080fd5b60035460a060020a900460ff161561058657600080fd5b600454600160a060020a03161561059c57600080fd5b600160a060020a03811615156105b157600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005481565b60045460a060020a900460ff1681565b60035460009060a860020a900460ff161561061057600080fd5b61061a8483610d4d565b151561062557600080fd5b610630848484610d9d565b949350505050565b601281565b60055481565b60035433600160a060020a0390811691161461065e57600080fd5b60035460a860020a900460ff16151561067657600080fd5b600554151561068457426005555b61068c610f1f565b565b60035460009033600160a060020a039081169116146106ac57600080fd5b60035460a060020a900460ff16156106c357600080fd5b6000546106d6908363ffffffff610f9f16565b6000908155600160a060020a038416815260016020526040902054610701908363ffffffff610f9f16565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600454600160a060020a031681565b60035433600160a060020a039081169116146107c557600080fd5b60035460a060020a900460ff16156107dc57600080fd5b60045460a060020a900460ff16156107f357600080fd5b6004805474ff0000000000000000000000000000000000000000191660a060020a179081905561084790600160a060020a03166108426b0195518939d43ed62a0000008463ffffffff610fae16565b61068e565b5050565b60035460a860020a900460ff1681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156108b857600160a060020a0333811660009081526002602090815260408083209388168352929052908120556108ef565b6108c8818463ffffffff610fae16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a0390811691161461099057600080fd5b60035460a060020a900460ff16156109a757600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b90565b60035433600160a060020a03908116911614610a1957600080fd5b60035460a860020a900460ff1615610a3057600080fd5b6003805475ff000000000000000000000000000000000000000000191660a860020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600381527f4b59540000000000000000000000000000000000000000000000000000000000602082015281565b60035433600160a060020a03908116911614610ae457600080fd5b600160a060020a038216600090815260016020526040902054811115610b0957600080fd5b600160a060020a038216600090815260016020526040902054610b32908263ffffffff610fae16565b600160a060020a03831660009081526001602052604081209190915554610b5f908263ffffffff610fae16565b600055600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405190815260200160405180910390a25050565b60035460009060a860020a900460ff1615610bbd57600080fd5b610bc73383610d4d565b1515610bd257600080fd5b610bdc8383610fc0565b9392505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610c1b908363ffffffff610f9f16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610ccd57600080fd5b600160a060020a0381161515610ce257600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6004546000908190600160a060020a03858116911614610d705760019150610950565b610d8983610d7d86610957565b9063ffffffff610fae16565b9050610d936110bb565b9010159392505050565b6000600160a060020a0383161515610db457600080fd5b600160a060020a038416600090815260016020526040902054821115610dd957600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610e0c57600080fd5b600160a060020a038416600090815260016020526040902054610e35908363ffffffff610fae16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610e6a908363ffffffff610f9f16565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610eb2908363ffffffff610fae16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60035433600160a060020a03908116911614610f3a57600080fd5b60035460a860020a900460ff161515610f5257600080fd5b6003805475ff000000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600082820183811015610bdc57fe5b600082821115610fba57fe5b50900390565b6000600160a060020a0383161515610fd757600080fd5b600160a060020a033316600090815260016020526040902054821115610ffc57600080fd5b600160a060020a033316600090815260016020526040902054611025908363ffffffff610fae16565b600160a060020a03338116600090815260016020526040808220939093559085168152205461105a908363ffffffff610f9f16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600060055462eff100014210156110de57506af8277896582678ac0000006109fb565b6005546301e133800142101561110057506aa56fa5b99019a5c80000006109fb565b5060006109fb5600a165627a7a72305820313da42af4ad7ffbf64857fac342635292992dfa06d7e87a5114c4b98be942780029
Swarm Source
bzzr://313da42af4ad7ffbf64857fac342635292992dfa06d7e87a5114c4b98be94278
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.