Overview
Max Total Supply
200,000,000 SPYCE
Holders
3,327 (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 Source Code Verified (Exact Match)
Contract Name:
SpyceToken
Compiler Version
v0.5.8+commit.23d335f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-10-15 */ pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * > Note: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through `transferFrom`. This is * zero by default. * * This value changes when `approve` or `transferFrom` are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * > 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 * * Emits an `Approval` event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to `approve`. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Implementation of the `IERC20` interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using `_mint`. * For a generic mechanism see `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an `Approval` event is emitted on calls to `transferFrom`. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard `decreaseAllowance` and `increaseAllowance` * functions have been added to mitigate the well-known issues around setting * allowances. See `IERC20.approve`. */ contract ERC20 is IERC20, Ownable{ using SafeMath for uint256; mapping (address => uint256) internal _balances; mapping (address => mapping (address => uint256)) internal _allowances; uint256 internal _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev See `IERC20.transferFrom`. * * Emits an `Approval` event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of `ERC20`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a `Transfer` event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destoys `amount` tokens from `account`, reducing the * total supply. * * Emits a `Transfer` event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an `Approval` event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } } /** * @dev Extension of `ERC20` that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract ERC20Burnable is ERC20 { /** * @dev Destoys `amount` tokens from the caller. * * See `ERC20._burn`. */ function burn(uint256 amount) public onlyOwner { _burn(msg.sender, amount); } /** * @dev See `ERC20._burnFrom`. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } } /** * @dev Extension of `ERC20` that adds a set of accounts with the `MinterRole`, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ERC20Mintable is ERC20 { /** * @dev See `ERC20._mint`. * * Requirements: * * - the caller must have the `MinterRole`. */ function mint(address account, uint256 amount) public onlyOwner returns (bool) { _mint(account, amount); return true; } } /** * @dev Spyce Token implementation. */ contract SpyceToken is ERC20Burnable, ERC20Mintable { using SafeMath for uint256; string public constant name = "SPYCE"; string public constant symbol = "SPYCE"; uint8 public constant decimals = 18; uint256 internal constant INITIAL_SUPPLY = 2 * (10**6) * (10 ** uint256(decimals)); // 2 millions tokens (first release) /** * @dev Constructor that gives msg.sender all of existing tokens. */ constructor() public { _totalSupply = INITIAL_SUPPLY; _balances[msg.sender] = INITIAL_SUPPLY; emit Transfer(address(0), msg.sender, INITIAL_SUPPLY); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","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":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","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":"isOwner","outputs":[{"name":"","type":"bool"}],"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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","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":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"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"}]
Contract Creation Code
608060405234801561001057600080fd5b50600080546001600160a01b03191633178082556040516001600160a01b039190911691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36a01a784379d99db420000006003819055336000818152600160209081526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3610df4806100c36000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a257806395d89b411161007157806395d89b411461011b578063a457c2d714610343578063a9059cbb1461036f578063dd62ed3e1461039b578063f2fde38b146103c957610116565b8063715018a6146102e357806379cc6790146102eb5780638da5cb5b146103175780638f32d59b1461033b57610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806340c10f191461027257806342966c681461029e57806370a08231146102bd57610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236103ef565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610413565b604080519115158252519081900360200190f35b6101e0610429565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b0381358116916020810135909116906040013561042f565b610230610486565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b03813516906020013561048b565b6101c46004803603604081101561028857600080fd5b506001600160a01b0381351690602001356104c7565b6102bb600480360360208110156102b457600080fd5b503561051d565b005b6101e0600480360360208110156102d357600080fd5b50356001600160a01b0316610574565b6102bb61058f565b6102bb6004803603604081101561030157600080fd5b506001600160a01b038135169060200135610623565b61031f610631565b604080516001600160a01b039092168252519081900360200190f35b6101c4610640565b6101c46004803603604081101561035957600080fd5b506001600160a01b038135169060200135610651565b6101c46004803603604081101561038557600080fd5b506001600160a01b03813516906020013561068d565b6101e0600480360360408110156103b157600080fd5b506001600160a01b038135811691602001351661069a565b6102bb600480360360208110156103df57600080fd5b50356001600160a01b03166106c5565b604051806040016040528060058152602001600160d81b6453505943450281525081565b6000610420338484610718565b50600192915050565b60035490565b600061043c84848461080a565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461047c918691610477908663ffffffff61095416565b610718565b5060019392505050565b601281565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610420918590610477908663ffffffff6109b416565b60006104d1610640565b6105135760408051600160e51b62461bcd0281526020600482018190526024820152600080516020610d3f833981519152604482015290519081900360640190fd5b6104208383610a18565b610525610640565b6105675760408051600160e51b62461bcd0281526020600482018190526024820152600080516020610d3f833981519152604482015290519081900360640190fd5b6105713382610b0d565b50565b6001600160a01b031660009081526001602052604090205490565b610597610640565b6105d95760408051600160e51b62461bcd0281526020600482018190526024820152600080516020610d3f833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61062d8282610beb565b5050565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610420918590610477908663ffffffff61095416565b600061042033848461080a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106cd610640565b61070f5760408051600160e51b62461bcd0281526020600482018190526024820152600080516020610d3f833981519152604482015290519081900360640190fd5b61057181610c30565b6001600160a01b03831661076057604051600160e51b62461bcd028152600401808060200182810382526024815260200180610da56024913960400191505060405180910390fd5b6001600160a01b0382166107a857604051600160e51b62461bcd028152600401808060200182810382526022815260200180610d1d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661085257604051600160e51b62461bcd028152600401808060200182810382526025815260200180610d806025913960400191505060405180910390fd5b6001600160a01b03821661089a57604051600160e51b62461bcd028152600401808060200182810382526023815260200180610cd46023913960400191505060405180910390fd5b6001600160a01b0383166000908152600160205260409020546108c3908263ffffffff61095416565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108f8908263ffffffff6109b416565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156109ae5760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610a115760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610a765760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610a89908263ffffffff6109b416565b6003556001600160a01b038216600090815260016020526040902054610ab5908263ffffffff6109b416565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610b5557604051600160e51b62461bcd028152600401808060200182810382526021815260200180610d5f6021913960400191505060405180910390fd5b600354610b68908263ffffffff61095416565b6003556001600160a01b038216600090815260016020526040902054610b94908263ffffffff61095416565b6001600160a01b0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610bf58282610b0d565b6001600160a01b03821660009081526002602090815260408083203380855292529091205461062d918491610477908563ffffffff61095416565b6001600160a01b038116610c7857604051600160e51b62461bcd028152600401808060200182810382526026815260200180610cf76026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a72305820347fbc70013a05194bc2690144cbd8314781875094af43c174870598b94f12640029
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a257806395d89b411161007157806395d89b411461011b578063a457c2d714610343578063a9059cbb1461036f578063dd62ed3e1461039b578063f2fde38b146103c957610116565b8063715018a6146102e357806379cc6790146102eb5780638da5cb5b146103175780638f32d59b1461033b57610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806340c10f191461027257806342966c681461029e57806370a08231146102bd57610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236103ef565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610413565b604080519115158252519081900360200190f35b6101e0610429565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b0381358116916020810135909116906040013561042f565b610230610486565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b03813516906020013561048b565b6101c46004803603604081101561028857600080fd5b506001600160a01b0381351690602001356104c7565b6102bb600480360360208110156102b457600080fd5b503561051d565b005b6101e0600480360360208110156102d357600080fd5b50356001600160a01b0316610574565b6102bb61058f565b6102bb6004803603604081101561030157600080fd5b506001600160a01b038135169060200135610623565b61031f610631565b604080516001600160a01b039092168252519081900360200190f35b6101c4610640565b6101c46004803603604081101561035957600080fd5b506001600160a01b038135169060200135610651565b6101c46004803603604081101561038557600080fd5b506001600160a01b03813516906020013561068d565b6101e0600480360360408110156103b157600080fd5b506001600160a01b038135811691602001351661069a565b6102bb600480360360208110156103df57600080fd5b50356001600160a01b03166106c5565b604051806040016040528060058152602001600160d81b6453505943450281525081565b6000610420338484610718565b50600192915050565b60035490565b600061043c84848461080a565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461047c918691610477908663ffffffff61095416565b610718565b5060019392505050565b601281565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610420918590610477908663ffffffff6109b416565b60006104d1610640565b6105135760408051600160e51b62461bcd0281526020600482018190526024820152600080516020610d3f833981519152604482015290519081900360640190fd5b6104208383610a18565b610525610640565b6105675760408051600160e51b62461bcd0281526020600482018190526024820152600080516020610d3f833981519152604482015290519081900360640190fd5b6105713382610b0d565b50565b6001600160a01b031660009081526001602052604090205490565b610597610640565b6105d95760408051600160e51b62461bcd0281526020600482018190526024820152600080516020610d3f833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61062d8282610beb565b5050565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610420918590610477908663ffffffff61095416565b600061042033848461080a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106cd610640565b61070f5760408051600160e51b62461bcd0281526020600482018190526024820152600080516020610d3f833981519152604482015290519081900360640190fd5b61057181610c30565b6001600160a01b03831661076057604051600160e51b62461bcd028152600401808060200182810382526024815260200180610da56024913960400191505060405180910390fd5b6001600160a01b0382166107a857604051600160e51b62461bcd028152600401808060200182810382526022815260200180610d1d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661085257604051600160e51b62461bcd028152600401808060200182810382526025815260200180610d806025913960400191505060405180910390fd5b6001600160a01b03821661089a57604051600160e51b62461bcd028152600401808060200182810382526023815260200180610cd46023913960400191505060405180910390fd5b6001600160a01b0383166000908152600160205260409020546108c3908263ffffffff61095416565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108f8908263ffffffff6109b416565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156109ae5760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610a115760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610a765760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610a89908263ffffffff6109b416565b6003556001600160a01b038216600090815260016020526040902054610ab5908263ffffffff6109b416565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610b5557604051600160e51b62461bcd028152600401808060200182810382526021815260200180610d5f6021913960400191505060405180910390fd5b600354610b68908263ffffffff61095416565b6003556001600160a01b038216600090815260016020526040902054610b94908263ffffffff61095416565b6001600160a01b0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610bf58282610b0d565b6001600160a01b03821660009081526002602090815260408083203380855292529091205461062d918491610477908563ffffffff61095416565b6001600160a01b038116610c7857604051600160e51b62461bcd028152600401808060200182810382526026815260200180610cf76026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a72305820347fbc70013a05194bc2690144cbd8314781875094af43c174870598b94f12640029
Deployed Bytecode Sourcemap
17991:629:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17991:629:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18086:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18086:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11250:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11250:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;10273:91;;;:::i;:::-;;;;;;;;;;;;;;;;11869:256;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11869:256:0;;;;;;;;;;;;;;;;;:::i;18176:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12534:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12534:206:0;;;;;;;;:::i;17795:142::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17795:142:0;;;;;;;;:::i;17120:91::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17120:91:0;;:::i;:::-;;10427:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10427:110:0;-1:-1:-1;;;;;10427:110:0;;:::i;5265:140::-;;;:::i;17273:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17273:103:0;;;;;;;;:::i;4454:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;4454:79:0;;;;;;;;;;;;;;4820:92;;;:::i;13243:216::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13243:216:0;;;;;;;;:::i;10750:156::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10750:156:0;;;;;;;;:::i;10969:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10969:134:0;;;;;;;;;;:::i;5560:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5560:109:0;-1:-1:-1;;;;;5560:109:0;;:::i;18086:37::-;;;;;;;;;;;;;;-1:-1:-1;;;;;18086:37:0;;;;:::o;11250:148::-;11315:4;11332:36;11341:10;11353:7;11362:5;11332:8;:36::i;:::-;-1:-1:-1;11386:4:0;11250:148;;;;:::o;10273:91::-;10344:12;;10273:91;:::o;11869:256::-;11958:4;11975:36;11985:6;11993:9;12004:6;11975:9;:36::i;:::-;-1:-1:-1;;;;;12051:19:0;;;;;;:11;:19;;;;;;;;12039:10;12051:31;;;;;;;;;12022:73;;12031:6;;12051:43;;12087:6;12051:43;:35;:43;:::i;:::-;12022:8;:73::i;:::-;-1:-1:-1;12113:4:0;11869:256;;;;;:::o;18176:35::-;18209:2;18176:35;:::o;12534:206::-;12640:10;12614:4;12661:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12661:32:0;;;;;;;;;;12614:4;;12631:79;;12652:7;;12661:48;;12698:10;12661:48;:36;:48;:::i;17795:142::-;17868:4;4666:9;:7;:9::i;:::-;4658:54;;;;;-1:-1:-1;;;;;4658:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4658:54:0;;;;;;;;;;;;;;;17885:22;17891:7;17900:6;17885:5;:22::i;17120:91::-;4666:9;:7;:9::i;:::-;4658:54;;;;;-1:-1:-1;;;;;4658:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4658:54:0;;;;;;;;;;;;;;;17178:25;17184:10;17196:6;17178:5;:25::i;:::-;17120:91;:::o;10427:110::-;-1:-1:-1;;;;;10511:18:0;10484:7;10511:18;;;:9;:18;;;;;;;10427:110::o;5265:140::-;4666:9;:7;:9::i;:::-;4658:54;;;;;-1:-1:-1;;;;;4658:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4658:54:0;;;;;;;;;;;;;;;5364:1;5348:6;;5327:40;;-1:-1:-1;;;;;5348:6:0;;;;5327:40;;5364:1;;5327:40;5395:1;5378:19;;-1:-1:-1;;;;;;5378:19:0;;;5265:140::o;17273:103::-;17342:26;17352:7;17361:6;17342:9;:26::i;:::-;17273:103;;:::o;4454:79::-;4492:7;4519:6;-1:-1:-1;;;;;4519:6:0;4454:79;:::o;4820:92::-;4860:4;4898:6;-1:-1:-1;;;;;4898:6:0;4884:10;:20;;4820:92::o;13243:216::-;13354:10;13328:4;13375:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13375:32:0;;;;;;;;;;13328:4;;13345:84;;13366:7;;13375:53;;13412:15;13375:53;:36;:53;:::i;10750:156::-;10819:4;10836:40;10846:10;10858:9;10869:6;10836:9;:40::i;10969:134::-;-1:-1:-1;;;;;11068:18:0;;;11041:7;11068:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10969:134::o;5560:109::-;4666:9;:7;:9::i;:::-;4658:54;;;;;-1:-1:-1;;;;;4658:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4658:54:0;;;;;;;;;;;;;;;5633:28;5652:8;5633:18;:28::i;16045:335::-;-1:-1:-1;;;;;16138:19:0;;16130:68;;;;-1:-1:-1;;;;;16130:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16217:21:0;;16209:68;;;;-1:-1:-1;;;;;16209:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16290:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;16341:31;;;;;;;;;;;;;;;;;16045:335;;;:::o;13949:429::-;-1:-1:-1;;;;;14047:20:0;;14039:70;;;;-1:-1:-1;;;;;14039:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14128:23:0;;14120:71;;;;-1:-1:-1;;;;;14120:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14224:17:0;;;;;;:9;:17;;;;;;:29;;14246:6;14224:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;14204:17:0;;;;;;;:9;:17;;;;;;:49;;;;14287:20;;;;;;;:32;;14312:6;14287:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;14264:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;14335:35;;;;;;;14264:20;;14335:35;;;;;;;;;;;;;13949:429;;;:::o;1315:184::-;1373:7;1406:1;1401;:6;;1393:49;;;;;-1:-1:-1;;;;;1393:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1465:5:0;;;1315:184::o;859:181::-;917:7;949:5;;;973:6;;;;965:46;;;;;-1:-1:-1;;;;;965:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031:1;859:181;-1:-1:-1;;;859:181:0:o;14659:308::-;-1:-1:-1;;;;;14735:21:0;;14727:65;;;;;-1:-1:-1;;;;;14727:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14820:12;;:24;;14837:6;14820:24;:16;:24;:::i;:::-;14805:12;:39;-1:-1:-1;;;;;14876:18:0;;;;;;:9;:18;;;;;;:30;;14899:6;14876:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;14855:18:0;;;;;;:9;:18;;;;;;;;:51;;;;14922:37;;;;;;;14855:18;;;;14922:37;;;;;;;;;;14659:308;;:::o;15299:306::-;-1:-1:-1;;;;;15374:21:0;;15366:67;;;;-1:-1:-1;;;;;15366:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15461:12;;:23;;15478:5;15461:23;:16;:23;:::i;:::-;15446:12;:38;-1:-1:-1;;;;;15516:18:0;;;;;;:9;:18;;;;;;:29;;15539:5;15516:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;15495:18:0;;;;;;:9;:18;;;;;;;;:50;;;;15561:36;;;;;;;15495:18;;15561:36;;;;;;;;;;;15299:306;;:::o;16565:188::-;16637:22;16643:7;16652:6;16637:5;:22::i;:::-;-1:-1:-1;;;;;16700:20:0;;;;;;:11;:20;;;;;;;;16688:10;16700:32;;;;;;;;;16670:75;;16679:7;;16700:44;;16737:6;16700:44;:36;:44;:::i;5775:229::-;-1:-1:-1;;;;;5849:22:0;;5841:73;;;;-1:-1:-1;;;;;5841:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5951:6;;;5930:38;;-1:-1:-1;;;;;5930:38:0;;;;5951:6;;;5930:38;;;5979:6;:17;;-1:-1:-1;;;;;;5979:17:0;-1:-1:-1;;;;;5979:17:0;;;;;;;;;;5775:229::o
Swarm Source
bzzr://347fbc70013a05194bc2690144cbd8314781875094af43c174870598b94f1264
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.