ERC-20
Overview
Max Total Supply
2,000,000,000 VVT
Holders
502
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10.007616482859033595 VVTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VVTToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-10 */ pragma solidity >=0.5.0 <0.6.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. * * *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 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 VersoView Token implementation. */ contract VVTToken is ERC20 { using SafeMath for uint256; string public constant name = "VersoView"; string public constant symbol = "VVT"; uint8 public constant decimals = 18; bool public isPaused = false; uint256 internal constant INITIAL_SUPPLY = 2 * (10**9) * (10 ** uint256(decimals)); // 2 billions tokens /** * @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); } /** * @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) { require(!isPaused, "Token is suspended from transferring, please contact with owner"); _transfer(msg.sender, recipient, amount); 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) { require(!isPaused, "Token is suspended from transferring, please contact with owner"); _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * Suspend token from transferring */ function pause() public onlyOwner { isPaused = true; } /** * Stop suspendding token */ function stopPause() public onlyOwner { isPaused = false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"stopPause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526004805460ff1916905534801561001a57600080fd5b50600080546001600160a01b03191633178082556040516001600160a01b039190911691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36b06765c793fa10079d00000006003819055336000818152600160209081526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3610c33806100ce6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a457c2d711610071578063a457c2d7146102e6578063a9059cbb14610312578063b187bd261461033e578063dd62ed3e14610346578063f2fde38b1461037457610116565b80638da5cb5b146102aa5780638f32d59b146102ce57806395d89b41146102d65780639e26c3f1146102de57610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806370a0823114610272578063715018a6146102985780638456cb59146102a257610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b61012361039a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b0381351690602001356103bf565b604080519115158252519081900360200190f35b6101e06103d5565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b038135811691602081013590911690604001356103db565b610230610475565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b03813516906020013561047a565b6101e06004803603602081101561028857600080fd5b50356001600160a01b03166104b6565b6102a06104d1565b005b6102a0610562565b6102b26105b8565b604080516001600160a01b039092168252519081900360200190f35b6101c46105c7565b6101236105d8565b6102a06105f7565b6101c4600480360360408110156102fc57600080fd5b506001600160a01b03813516906020013561064a565b6101c46004803603604081101561032857600080fd5b506001600160a01b038135169060200135610686565b6101c46106d6565b6101e06004803603604081101561035c57600080fd5b506001600160a01b03813581169160200135166106df565b6102a06004803603602081101561038a57600080fd5b50356001600160a01b031661070a565b60405180604001604052806009815260200168566572736f5669657760b81b81525081565b60006103cc33848461075d565b50600192915050565b60035490565b60045460009060ff16156104205760405162461bcd60e51b815260040180806020018281038252603f815260200180610b57603f913960400191505060405180910390fd5b61042b848484610849565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461046b918691610466908663ffffffff61098d16565b61075d565b5060019392505050565b601281565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103cc918590610466908663ffffffff6109ea16565b6001600160a01b031660009081526001602052604090205490565b6104d96105c7565b610518576040805162461bcd60e51b81526020600482018190526024820152600080516020610b96833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61056a6105c7565b6105a9576040805162461bcd60e51b81526020600482018190526024820152600080516020610b96833981519152604482015290519081900360640190fd5b6004805460ff19166001179055565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b6040518060400160405280600381526020016215959560ea1b81525081565b6105ff6105c7565b61063e576040805162461bcd60e51b81526020600482018190526024820152600080516020610b96833981519152604482015290519081900360640190fd5b6004805460ff19169055565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103cc918590610466908663ffffffff61098d16565b60045460009060ff16156106cb5760405162461bcd60e51b815260040180806020018281038252603f815260200180610b57603f913960400191505060405180910390fd5b6103cc338484610849565b60045460ff1681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6107126105c7565b610751576040805162461bcd60e51b81526020600482018190526024820152600080516020610b96833981519152604482015290519081900360640190fd5b61075a81610a4b565b50565b6001600160a01b0383166107a25760405162461bcd60e51b8152600401808060200182810382526024815260200180610bdb6024913960400191505060405180910390fd5b6001600160a01b0382166107e75760405162461bcd60e51b8152600401808060200182810382526022815260200180610b356022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661088e5760405162461bcd60e51b8152600401808060200182810382526025815260200180610bb66025913960400191505060405180910390fd5b6001600160a01b0382166108d35760405162461bcd60e51b8152600401808060200182810382526023815260200180610aec6023913960400191505060405180910390fd5b6001600160a01b0383166000908152600160205260409020546108fc908263ffffffff61098d16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610931908263ffffffff6109ea16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156109e4576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610a44576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038116610a905760405162461bcd60e51b8152600401808060200182810382526026815260200180610b0f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f6b656e2069732073757370656e6465642066726f6d207472616e7366657272696e672c20706c6561736520636f6e746163742077697468206f776e65724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a7231582040965751dabb795bc1c3d5c5cdc26fa8f4bc7a8edeaec7e56e9b9787cba608c364736f6c63430005100032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a457c2d711610071578063a457c2d7146102e6578063a9059cbb14610312578063b187bd261461033e578063dd62ed3e14610346578063f2fde38b1461037457610116565b80638da5cb5b146102aa5780638f32d59b146102ce57806395d89b41146102d65780639e26c3f1146102de57610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806370a0823114610272578063715018a6146102985780638456cb59146102a257610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b61012361039a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b0381351690602001356103bf565b604080519115158252519081900360200190f35b6101e06103d5565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b038135811691602081013590911690604001356103db565b610230610475565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b03813516906020013561047a565b6101e06004803603602081101561028857600080fd5b50356001600160a01b03166104b6565b6102a06104d1565b005b6102a0610562565b6102b26105b8565b604080516001600160a01b039092168252519081900360200190f35b6101c46105c7565b6101236105d8565b6102a06105f7565b6101c4600480360360408110156102fc57600080fd5b506001600160a01b03813516906020013561064a565b6101c46004803603604081101561032857600080fd5b506001600160a01b038135169060200135610686565b6101c46106d6565b6101e06004803603604081101561035c57600080fd5b506001600160a01b03813581169160200135166106df565b6102a06004803603602081101561038a57600080fd5b50356001600160a01b031661070a565b60405180604001604052806009815260200168566572736f5669657760b81b81525081565b60006103cc33848461075d565b50600192915050565b60035490565b60045460009060ff16156104205760405162461bcd60e51b815260040180806020018281038252603f815260200180610b57603f913960400191505060405180910390fd5b61042b848484610849565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461046b918691610466908663ffffffff61098d16565b61075d565b5060019392505050565b601281565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103cc918590610466908663ffffffff6109ea16565b6001600160a01b031660009081526001602052604090205490565b6104d96105c7565b610518576040805162461bcd60e51b81526020600482018190526024820152600080516020610b96833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61056a6105c7565b6105a9576040805162461bcd60e51b81526020600482018190526024820152600080516020610b96833981519152604482015290519081900360640190fd5b6004805460ff19166001179055565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b6040518060400160405280600381526020016215959560ea1b81525081565b6105ff6105c7565b61063e576040805162461bcd60e51b81526020600482018190526024820152600080516020610b96833981519152604482015290519081900360640190fd5b6004805460ff19169055565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103cc918590610466908663ffffffff61098d16565b60045460009060ff16156106cb5760405162461bcd60e51b815260040180806020018281038252603f815260200180610b57603f913960400191505060405180910390fd5b6103cc338484610849565b60045460ff1681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6107126105c7565b610751576040805162461bcd60e51b81526020600482018190526024820152600080516020610b96833981519152604482015290519081900360640190fd5b61075a81610a4b565b50565b6001600160a01b0383166107a25760405162461bcd60e51b8152600401808060200182810382526024815260200180610bdb6024913960400191505060405180910390fd5b6001600160a01b0382166107e75760405162461bcd60e51b8152600401808060200182810382526022815260200180610b356022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661088e5760405162461bcd60e51b8152600401808060200182810382526025815260200180610bb66025913960400191505060405180910390fd5b6001600160a01b0382166108d35760405162461bcd60e51b8152600401808060200182810382526023815260200180610aec6023913960400191505060405180910390fd5b6001600160a01b0383166000908152600160205260409020546108fc908263ffffffff61098d16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610931908263ffffffff6109ea16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156109e4576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610a44576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038116610a905760405162461bcd60e51b8152600401808060200182810382526026815260200180610b0f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f6b656e2069732073757370656e6465642066726f6d207472616e7366657272696e672c20706c6561736520636f6e746163742077697468206f776e65724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a7231582040965751dabb795bc1c3d5c5cdc26fa8f4bc7a8edeaec7e56e9b9787cba608c364736f6c63430005100032
Deployed Bytecode Sourcemap
15016:2190:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15016:2190:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15085:41;;;:::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;15085:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11049:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11049:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;10072:91;;;:::i;:::-;;;;;;;;;;;;;;;;16577:362;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16577:362:0;;;;;;;;;;;;;;;;;:::i;15177:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12333:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12333:206:0;;;;;;;;:::i;10226:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10226:110:0;-1:-1:-1;;;;;10226:110:0;;:::i;5273:140::-;;;:::i;:::-;;17005:68;;;:::i;4462:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;4462:79:0;;;;;;;;;;;;;;4828:92;;;:::i;15133:37::-;;;:::i;17130:73::-;;;:::i;13042:216::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13042:216:0;;;;;;;;:::i;15850:252::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15850:252:0;;;;;;;;:::i;15219:28::-;;;:::i;10768:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10768:134:0;;;;;;;;;;:::i;5568:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5568:109:0;-1:-1:-1;;;;;5568:109:0;;:::i;15085:41::-;;;;;;;;;;;;;;-1:-1:-1;;;15085:41:0;;;;:::o;11049:148::-;11114:4;11131:36;11140:10;11152:7;11161:5;11131:8;:36::i;:::-;-1:-1:-1;11185:4:0;11049:148;;;;:::o;10072:91::-;10143:12;;10072:91;:::o;16577:362::-;16692:8;;16666:4;;16692:8;;16691:9;16683:85;;;;-1:-1:-1;;;16683:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16789:36;16799:6;16807:9;16818:6;16789:9;:36::i;:::-;-1:-1:-1;;;;;16865:19:0;;;;;;:11;:19;;;;;;;;16853:10;16865:31;;;;;;;;;16836:73;;16845:6;;16865:43;;16901:6;16865:43;:35;:43;:::i;:::-;16836:8;:73::i;:::-;-1:-1:-1;16927:4:0;16577:362;;;;;:::o;15177:35::-;15210:2;15177:35;:::o;12333:206::-;12439:10;12413:4;12460:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12460:32:0;;;;;;;;;;12413:4;;12430:79;;12451:7;;12460:48;;12497:10;12460:48;:36;:48;:::i;10226:110::-;-1:-1:-1;;;;;10310:18:0;10283:7;10310:18;;;:9;:18;;;;;;;10226:110::o;5273:140::-;4674:9;:7;:9::i;:::-;4666:54;;;;;-1:-1:-1;;;4666:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4666:54:0;;;;;;;;;;;;;;;5372:1;5356:6;;5335:40;;-1:-1:-1;;;;;5356:6:0;;;;5335:40;;5372:1;;5335:40;5403:1;5386:19;;-1:-1:-1;;;;;;5386:19:0;;;5273:140::o;17005:68::-;4674:9;:7;:9::i;:::-;4666:54;;;;;-1:-1:-1;;;4666:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4666:54:0;;;;;;;;;;;;;;;17050:8;:15;;-1:-1:-1;;17050:15:0;17061:4;17050:15;;;17005:68::o;4462:79::-;4500:7;4527:6;-1:-1:-1;;;;;4527:6:0;4462:79;:::o;4828:92::-;4868:4;4906:6;-1:-1:-1;;;;;4906:6:0;4892:10;:20;;4828:92::o;15133:37::-;;;;;;;;;;;;;;-1:-1:-1;;;15133:37:0;;;;:::o;17130:73::-;4674:9;:7;:9::i;:::-;4666:54;;;;;-1:-1:-1;;;4666:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4666:54:0;;;;;;;;;;;;;;;17179:8;:16;;-1:-1:-1;;17179:16:0;;;17130:73::o;13042:216::-;13153:10;13127:4;13174:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13174:32:0;;;;;;;;;;13127:4;;13144:84;;13165:7;;13174:53;;13211:15;13174:53;:36;:53;:::i;15850:252::-;15945:8;;15919:4;;15945:8;;15944:9;15936:85;;;;-1:-1:-1;;;15936:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16032:40;16042:10;16054:9;16065:6;16032:9;:40::i;15219:28::-;;;;;;:::o;10768:134::-;-1:-1:-1;;;;;10867:18:0;;;10840:7;10867:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10768:134::o;5568:109::-;4674:9;:7;:9::i;:::-;4666:54;;;;;-1:-1:-1;;;4666:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4666:54:0;;;;;;;;;;;;;;;5641:28;5660:8;5641:18;:28::i;:::-;5568:109;:::o;14617:335::-;-1:-1:-1;;;;;14710:19:0;;14702:68;;;;-1:-1:-1;;;14702:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14789:21:0;;14781:68;;;;-1:-1:-1;;;14781:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14862:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;14913:31;;;;;;;;;;;;;;;;;14617:335;;;:::o;13748:429::-;-1:-1:-1;;;;;13846:20:0;;13838:70;;;;-1:-1:-1;;;13838:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13927:23:0;;13919:71;;;;-1:-1:-1;;;13919:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14023:17:0;;;;;;:9;:17;;;;;;:29;;14045:6;14023:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;14003:17:0;;;;;;;:9;:17;;;;;;:49;;;;14086:20;;;;;;;:32;;14111:6;14086:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;14063:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;14134:35;;;;;;;14063:20;;14134:35;;;;;;;;;;;;;13748:429;;;:::o;1323:184::-;1381:7;1414:1;1409;:6;;1401:49;;;;;-1:-1:-1;;;1401:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1473:5:0;;;1323:184::o;867:181::-;925:7;957:5;;;981:6;;;;973:46;;;;;-1:-1:-1;;;973:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1039:1;867:181;-1:-1:-1;;;867:181:0:o;5783:229::-;-1:-1:-1;;;;;5857:22:0;;5849:73;;;;-1:-1:-1;;;5849:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5959:6;;;5938:38;;-1:-1:-1;;;;;5938:38:0;;;;5959:6;;;5938:38;;;5987:6;:17;;-1:-1:-1;;;;;;5987:17:0;-1:-1:-1;;;;;5987:17:0;;;;;;;;;;5783:229::o
Swarm Source
bzzr://40965751dabb795bc1c3d5c5cdc26fa8f4bc7a8edeaec7e56e9b9787cba608c3
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.