ERC-20
Overview
Max Total Supply
1,000,000 MONO
Holders
213
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,521.967789737677424787 MONOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Bakemono
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import "@openzeppelin/[email protected]/access/Ownable.sol"; import "@openzeppelin/[email protected]/security/Pausable.sol"; import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; contract Bakemono is Ownable, ERC20, Pausable { mapping(address => bool) private pair; bool public tradingOpen; uint256 public _maxWalletSize = 1 * 10 ** decimals(); uint256 private _totalSupply = 1000000 * 10 ** decimals(); constructor() ERC20("Bakemono", "MONO") { _mint(msg.sender, 1000000 * 10 ** decimals()); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function addPair(address toPair) public onlyOwner { require(!pair[toPair], "This pair is already excluded"); pair[toPair] = true; } function setTrading(bool _tradingOpen) public onlyOwner { tradingOpen = _tradingOpen; } function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner { _maxWalletSize = maxWalletSize; } function removeLimits() public onlyOwner{ _maxWalletSize = _totalSupply; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) { require(paused(), "Denied"); if (!tradingOpen) { require(from == owner(), "Trading not enabled"); } if(from != owner() && to != owner() && pair[from]) { require(balanceOf(to) + amount <= _maxWalletSize, "Maximum token balance exceeded"); } if(from != owner() && to != owner() && !(pair[to]) && !(pair[from])) { require(balanceOf(to) + amount <= _maxWalletSize, "Maximum token balance exceeded"); } } super._transfer(from, to, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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 {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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 Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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 virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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 virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `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 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the 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 virtual onlyOwner { _transferOwnership(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 virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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. * * IMPORTANT: 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toPair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingOpen","type":"bool"}],"name":"setTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052620000146200018460201b60201c565b600a62000022919062000576565b6001620000309190620005c7565b600955620000436200018460201b60201c565b600a62000051919062000576565b620f4240620000619190620005c7565b600a553480156200007157600080fd5b506040518060400160405280600881526020017f42616b656d6f6e6f0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4f4e4f00000000000000000000000000000000000000000000000000000000815250620000fe620000f26200018d60201b60201c565b6200019560201b60201c565b81600490816200010f919062000898565b50806005908162000121919062000898565b5050506000600660006101000a81548160ff0219169083151502179055506200017e33620001546200018460201b60201c565b600a62000162919062000576565b620f4240620001729190620005c7565b6200025960201b60201c565b62000a6b565b60006012905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c290620009e0565b60405180910390fd5b620002df60008383620003d260201b60201c565b8060036000828254620002f3919062000a02565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200034b919062000a02565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003b2919062000a4e565b60405180910390a3620003ce60008383620003d760201b60201c565b5050565b505050565b505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200046a57808604811115620004425762000441620003dc565b5b6001851615620004525780820291505b808102905062000462856200040b565b945062000422565b94509492505050565b60008262000485576001905062000558565b8162000495576000905062000558565b8160018114620004ae5760028114620004b957620004ef565b600191505062000558565b60ff841115620004ce57620004cd620003dc565b5b8360020a915084821115620004e857620004e7620003dc565b5b5062000558565b5060208310610133831016604e8410600b8410161715620005295782820a905083811115620005235762000522620003dc565b5b62000558565b62000538848484600162000418565b92509050818404811115620005525762000551620003dc565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000583826200055f565b9150620005908362000569565b9250620005bf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000473565b905092915050565b6000620005d4826200055f565b9150620005e1836200055f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200061d576200061c620003dc565b5b828202905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006aa57607f821691505b602082108103620006c057620006bf62000662565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200072a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006eb565b620007368683620006eb565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000779620007736200076d846200055f565b6200074e565b6200055f565b9050919050565b6000819050919050565b620007958362000758565b620007ad620007a48262000780565b848454620006f8565b825550505050565b600090565b620007c4620007b5565b620007d18184846200078a565b505050565b5b81811015620007f957620007ed600082620007ba565b600181019050620007d7565b5050565b601f82111562000848576200081281620006c6565b6200081d84620006db565b810160208510156200082d578190505b620008456200083c85620006db565b830182620007d6565b50505b505050565b600082821c905092915050565b60006200086d600019846008026200084d565b1980831691505092915050565b60006200088883836200085a565b9150826002028217905092915050565b620008a38262000628565b67ffffffffffffffff811115620008bf57620008be62000633565b5b620008cb825462000691565b620008d8828285620007fd565b600060209050601f831160018114620009105760008415620008fb578287015190505b6200090785826200087a565b86555062000977565b601f1984166200092086620006c6565b60005b828110156200094a5784890151825560018201915060208501945060208101905062000923565b868310156200096a578489015162000966601f8916826200085a565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009c8601f836200097f565b9150620009d58262000990565b602082019050919050565b60006020820190508181036000830152620009fb81620009b9565b9050919050565b600062000a0f826200055f565b915062000a1c836200055f565b925082820190508082111562000a375762000a36620003dc565b5b92915050565b62000a48816200055f565b82525050565b600060208201905062000a65600083018462000a3d565b92915050565b6122c88062000a7b6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80638456cb59116100c3578063a9059cbb1161007c578063a9059cbb14610358578063c2b7bbb614610388578063dd62ed3e146103a4578063ea1644d5146103d4578063f2fde38b146103f0578063ffb54a991461040c5761014d565b80638456cb59146102a85780638da5cb5b146102b25780638f70ccf7146102d05780638f9a55c0146102ec57806395d89b411461030a578063a457c2d7146103285761014d565b80633950935111610115578063395093511461020c5780633f4ba83a1461023c5780635c975abb1461024657806370a0823114610264578063715018a614610294578063751039fc1461029e5761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be578063313ce567146101ee575b600080fd5b61015a61042a565b60405161016791906116dd565b60405180910390f35b61018a60048036038101906101859190611798565b6104bc565b60405161019791906117f3565b60405180910390f35b6101a86104df565b6040516101b5919061181d565b60405180910390f35b6101d860048036038101906101d39190611838565b6104e9565b6040516101e591906117f3565b60405180910390f35b6101f6610518565b60405161020391906118a7565b60405180910390f35b61022660048036038101906102219190611798565b610521565b60405161023391906117f3565b60405180910390f35b610244610558565b005b61024e61056a565b60405161025b91906117f3565b60405180910390f35b61027e600480360381019061027991906118c2565b610581565b60405161028b919061181d565b60405180910390f35b61029c6105ca565b005b6102a66105de565b005b6102b06105f1565b005b6102ba610603565b6040516102c791906118fe565b60405180910390f35b6102ea60048036038101906102e59190611945565b61062c565b005b6102f4610651565b604051610301919061181d565b60405180910390f35b610312610657565b60405161031f91906116dd565b60405180910390f35b610342600480360381019061033d9190611798565b6106e9565b60405161034f91906117f3565b60405180910390f35b610372600480360381019061036d9190611798565b610760565b60405161037f91906117f3565b60405180910390f35b6103a2600480360381019061039d91906118c2565b610783565b005b6103be60048036038101906103b99190611972565b610873565b6040516103cb919061181d565b60405180910390f35b6103ee60048036038101906103e991906119b2565b6108fa565b005b61040a600480360381019061040591906118c2565b61090c565b005b61041461098f565b60405161042191906117f3565b60405180910390f35b60606004805461043990611a0e565b80601f016020809104026020016040519081016040528092919081815260200182805461046590611a0e565b80156104b25780601f10610487576101008083540402835291602001916104b2565b820191906000526020600020905b81548152906001019060200180831161049557829003601f168201915b5050505050905090565b6000806104c76109a2565b90506104d48185856109aa565b600191505092915050565b6000600354905090565b6000806104f46109a2565b9050610501858285610b73565b61050c858585610bff565b60019150509392505050565b60006012905090565b60008061052c6109a2565b905061054d81858561053e8589610873565b6105489190611a6e565b6109aa565b600191505092915050565b610560611126565b6105686111a4565b565b6000600660009054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d2611126565b6105dc6000611207565b565b6105e6611126565b600a54600981905550565b6105f9611126565b6106016112cb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610634611126565b80600860006101000a81548160ff02191690831515021790555050565b60095481565b60606005805461066690611a0e565b80601f016020809104026020016040519081016040528092919081815260200182805461069290611a0e565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b6000806106f46109a2565b905060006107028286610873565b905083811015610747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073e90611b14565b60405180910390fd5b61075482868684036109aa565b60019250505092915050565b60008061076b6109a2565b9050610778818585610bff565b600191505092915050565b61078b611126565b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f90611b80565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610902611126565b8060098190555050565b610914611126565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90611c12565b60405180910390fd5b61098c81611207565b50565b600860009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090611ca4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90611d36565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b66919061181d565b60405180910390a3505050565b6000610b7f8484610873565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bf95781811015610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be290611da2565b60405180910390fd5b610bf884848484036109aa565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611e34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd490611ec6565b60405180910390fd5b60008111610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790611f58565b60405180910390fd5b610d28610603565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610d965750610d66610603565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561111657610da361056a565b610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990611fc4565b60405180910390fd5b600860009054906101000a900460ff16610e6c57610dfe610603565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290612030565b60405180910390fd5b5b610e74610603565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ee25750610eb2610603565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610f375750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610f955760095481610f4984610581565b610f539190611a6e565b1115610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b9061209c565b60405180910390fd5b5b610f9d610603565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561100b5750610fdb610603565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156110615750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156110b75750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561111557600954816110c984610581565b6110d39190611a6e565b1115611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b9061209c565b60405180910390fd5b5b5b61112183838361132e565b505050565b61112e6109a2565b73ffffffffffffffffffffffffffffffffffffffff1661114c610603565b73ffffffffffffffffffffffffffffffffffffffff16146111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990612108565b60405180910390fd5b565b6111ac6115b0565b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6111f06109a2565b6040516111fd91906118fe565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6112d36115f9565b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113176109a2565b60405161132491906118fe565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490611e34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140390611ec6565b60405180910390fd5b611417838383611643565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561149e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114959061219a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115339190611a6e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611597919061181d565b60405180910390a36115aa848484611648565b50505050565b6115b861056a565b6115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90612206565b60405180910390fd5b565b61160161056a565b15611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890612272565b60405180910390fd5b565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561168757808201518184015260208101905061166c565b60008484015250505050565b6000601f19601f8301169050919050565b60006116af8261164d565b6116b98185611658565b93506116c9818560208601611669565b6116d281611693565b840191505092915050565b600060208201905081810360008301526116f781846116a4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061172f82611704565b9050919050565b61173f81611724565b811461174a57600080fd5b50565b60008135905061175c81611736565b92915050565b6000819050919050565b61177581611762565b811461178057600080fd5b50565b6000813590506117928161176c565b92915050565b600080604083850312156117af576117ae6116ff565b5b60006117bd8582860161174d565b92505060206117ce85828601611783565b9150509250929050565b60008115159050919050565b6117ed816117d8565b82525050565b600060208201905061180860008301846117e4565b92915050565b61181781611762565b82525050565b6000602082019050611832600083018461180e565b92915050565b600080600060608486031215611851576118506116ff565b5b600061185f8682870161174d565b93505060206118708682870161174d565b925050604061188186828701611783565b9150509250925092565b600060ff82169050919050565b6118a18161188b565b82525050565b60006020820190506118bc6000830184611898565b92915050565b6000602082840312156118d8576118d76116ff565b5b60006118e68482850161174d565b91505092915050565b6118f881611724565b82525050565b600060208201905061191360008301846118ef565b92915050565b611922816117d8565b811461192d57600080fd5b50565b60008135905061193f81611919565b92915050565b60006020828403121561195b5761195a6116ff565b5b600061196984828501611930565b91505092915050565b60008060408385031215611989576119886116ff565b5b60006119978582860161174d565b92505060206119a88582860161174d565b9150509250929050565b6000602082840312156119c8576119c76116ff565b5b60006119d684828501611783565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a2657607f821691505b602082108103611a3957611a386119df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a7982611762565b9150611a8483611762565b9250828201905080821115611a9c57611a9b611a3f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611afe602583611658565b9150611b0982611aa2565b604082019050919050565b60006020820190508181036000830152611b2d81611af1565b9050919050565b7f54686973207061697220697320616c7265616479206578636c75646564000000600082015250565b6000611b6a601d83611658565b9150611b7582611b34565b602082019050919050565b60006020820190508181036000830152611b9981611b5d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611bfc602683611658565b9150611c0782611ba0565b604082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c8e602483611658565b9150611c9982611c32565b604082019050919050565b60006020820190508181036000830152611cbd81611c81565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d20602283611658565b9150611d2b82611cc4565b604082019050919050565b60006020820190508181036000830152611d4f81611d13565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611d8c601d83611658565b9150611d9782611d56565b602082019050919050565b60006020820190508181036000830152611dbb81611d7f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e1e602583611658565b9150611e2982611dc2565b604082019050919050565b60006020820190508181036000830152611e4d81611e11565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611eb0602383611658565b9150611ebb82611e54565b604082019050919050565b60006020820190508181036000830152611edf81611ea3565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000611f42602983611658565b9150611f4d82611ee6565b604082019050919050565b60006020820190508181036000830152611f7181611f35565b9050919050565b7f44656e6965640000000000000000000000000000000000000000000000000000600082015250565b6000611fae600683611658565b9150611fb982611f78565b602082019050919050565b60006020820190508181036000830152611fdd81611fa1565b9050919050565b7f54726164696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b600061201a601383611658565b915061202582611fe4565b602082019050919050565b600060208201905081810360008301526120498161200d565b9050919050565b7f4d6178696d756d20746f6b656e2062616c616e63652065786365656465640000600082015250565b6000612086601e83611658565b915061209182612050565b602082019050919050565b600060208201905081810360008301526120b581612079565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120f2602083611658565b91506120fd826120bc565b602082019050919050565b60006020820190508181036000830152612121816120e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612184602683611658565b915061218f82612128565b604082019050919050565b600060208201905081810360008301526121b381612177565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006121f0601483611658565b91506121fb826121ba565b602082019050919050565b6000602082019050818103600083015261221f816121e3565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061225c601083611658565b915061226782612226565b602082019050919050565b6000602082019050818103600083015261228b8161224f565b905091905056fea264697066735822122000e2dafc6aab6f4c42fcff87bbabd73f7346f9da6e605f7e0edef199616d08f864736f6c63430008100033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80638456cb59116100c3578063a9059cbb1161007c578063a9059cbb14610358578063c2b7bbb614610388578063dd62ed3e146103a4578063ea1644d5146103d4578063f2fde38b146103f0578063ffb54a991461040c5761014d565b80638456cb59146102a85780638da5cb5b146102b25780638f70ccf7146102d05780638f9a55c0146102ec57806395d89b411461030a578063a457c2d7146103285761014d565b80633950935111610115578063395093511461020c5780633f4ba83a1461023c5780635c975abb1461024657806370a0823114610264578063715018a614610294578063751039fc1461029e5761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be578063313ce567146101ee575b600080fd5b61015a61042a565b60405161016791906116dd565b60405180910390f35b61018a60048036038101906101859190611798565b6104bc565b60405161019791906117f3565b60405180910390f35b6101a86104df565b6040516101b5919061181d565b60405180910390f35b6101d860048036038101906101d39190611838565b6104e9565b6040516101e591906117f3565b60405180910390f35b6101f6610518565b60405161020391906118a7565b60405180910390f35b61022660048036038101906102219190611798565b610521565b60405161023391906117f3565b60405180910390f35b610244610558565b005b61024e61056a565b60405161025b91906117f3565b60405180910390f35b61027e600480360381019061027991906118c2565b610581565b60405161028b919061181d565b60405180910390f35b61029c6105ca565b005b6102a66105de565b005b6102b06105f1565b005b6102ba610603565b6040516102c791906118fe565b60405180910390f35b6102ea60048036038101906102e59190611945565b61062c565b005b6102f4610651565b604051610301919061181d565b60405180910390f35b610312610657565b60405161031f91906116dd565b60405180910390f35b610342600480360381019061033d9190611798565b6106e9565b60405161034f91906117f3565b60405180910390f35b610372600480360381019061036d9190611798565b610760565b60405161037f91906117f3565b60405180910390f35b6103a2600480360381019061039d91906118c2565b610783565b005b6103be60048036038101906103b99190611972565b610873565b6040516103cb919061181d565b60405180910390f35b6103ee60048036038101906103e991906119b2565b6108fa565b005b61040a600480360381019061040591906118c2565b61090c565b005b61041461098f565b60405161042191906117f3565b60405180910390f35b60606004805461043990611a0e565b80601f016020809104026020016040519081016040528092919081815260200182805461046590611a0e565b80156104b25780601f10610487576101008083540402835291602001916104b2565b820191906000526020600020905b81548152906001019060200180831161049557829003601f168201915b5050505050905090565b6000806104c76109a2565b90506104d48185856109aa565b600191505092915050565b6000600354905090565b6000806104f46109a2565b9050610501858285610b73565b61050c858585610bff565b60019150509392505050565b60006012905090565b60008061052c6109a2565b905061054d81858561053e8589610873565b6105489190611a6e565b6109aa565b600191505092915050565b610560611126565b6105686111a4565b565b6000600660009054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d2611126565b6105dc6000611207565b565b6105e6611126565b600a54600981905550565b6105f9611126565b6106016112cb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610634611126565b80600860006101000a81548160ff02191690831515021790555050565b60095481565b60606005805461066690611a0e565b80601f016020809104026020016040519081016040528092919081815260200182805461069290611a0e565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b6000806106f46109a2565b905060006107028286610873565b905083811015610747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073e90611b14565b60405180910390fd5b61075482868684036109aa565b60019250505092915050565b60008061076b6109a2565b9050610778818585610bff565b600191505092915050565b61078b611126565b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f90611b80565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610902611126565b8060098190555050565b610914611126565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90611c12565b60405180910390fd5b61098c81611207565b50565b600860009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090611ca4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90611d36565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b66919061181d565b60405180910390a3505050565b6000610b7f8484610873565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bf95781811015610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be290611da2565b60405180910390fd5b610bf884848484036109aa565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611e34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd490611ec6565b60405180910390fd5b60008111610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790611f58565b60405180910390fd5b610d28610603565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610d965750610d66610603565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561111657610da361056a565b610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990611fc4565b60405180910390fd5b600860009054906101000a900460ff16610e6c57610dfe610603565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290612030565b60405180910390fd5b5b610e74610603565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ee25750610eb2610603565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610f375750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610f955760095481610f4984610581565b610f539190611a6e565b1115610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b9061209c565b60405180910390fd5b5b610f9d610603565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561100b5750610fdb610603565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156110615750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156110b75750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561111557600954816110c984610581565b6110d39190611a6e565b1115611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b9061209c565b60405180910390fd5b5b5b61112183838361132e565b505050565b61112e6109a2565b73ffffffffffffffffffffffffffffffffffffffff1661114c610603565b73ffffffffffffffffffffffffffffffffffffffff16146111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990612108565b60405180910390fd5b565b6111ac6115b0565b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6111f06109a2565b6040516111fd91906118fe565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6112d36115f9565b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113176109a2565b60405161132491906118fe565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490611e34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140390611ec6565b60405180910390fd5b611417838383611643565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561149e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114959061219a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115339190611a6e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611597919061181d565b60405180910390a36115aa848484611648565b50505050565b6115b861056a565b6115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90612206565b60405180910390fd5b565b61160161056a565b15611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890612272565b60405180910390fd5b565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561168757808201518184015260208101905061166c565b60008484015250505050565b6000601f19601f8301169050919050565b60006116af8261164d565b6116b98185611658565b93506116c9818560208601611669565b6116d281611693565b840191505092915050565b600060208201905081810360008301526116f781846116a4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061172f82611704565b9050919050565b61173f81611724565b811461174a57600080fd5b50565b60008135905061175c81611736565b92915050565b6000819050919050565b61177581611762565b811461178057600080fd5b50565b6000813590506117928161176c565b92915050565b600080604083850312156117af576117ae6116ff565b5b60006117bd8582860161174d565b92505060206117ce85828601611783565b9150509250929050565b60008115159050919050565b6117ed816117d8565b82525050565b600060208201905061180860008301846117e4565b92915050565b61181781611762565b82525050565b6000602082019050611832600083018461180e565b92915050565b600080600060608486031215611851576118506116ff565b5b600061185f8682870161174d565b93505060206118708682870161174d565b925050604061188186828701611783565b9150509250925092565b600060ff82169050919050565b6118a18161188b565b82525050565b60006020820190506118bc6000830184611898565b92915050565b6000602082840312156118d8576118d76116ff565b5b60006118e68482850161174d565b91505092915050565b6118f881611724565b82525050565b600060208201905061191360008301846118ef565b92915050565b611922816117d8565b811461192d57600080fd5b50565b60008135905061193f81611919565b92915050565b60006020828403121561195b5761195a6116ff565b5b600061196984828501611930565b91505092915050565b60008060408385031215611989576119886116ff565b5b60006119978582860161174d565b92505060206119a88582860161174d565b9150509250929050565b6000602082840312156119c8576119c76116ff565b5b60006119d684828501611783565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a2657607f821691505b602082108103611a3957611a386119df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a7982611762565b9150611a8483611762565b9250828201905080821115611a9c57611a9b611a3f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611afe602583611658565b9150611b0982611aa2565b604082019050919050565b60006020820190508181036000830152611b2d81611af1565b9050919050565b7f54686973207061697220697320616c7265616479206578636c75646564000000600082015250565b6000611b6a601d83611658565b9150611b7582611b34565b602082019050919050565b60006020820190508181036000830152611b9981611b5d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611bfc602683611658565b9150611c0782611ba0565b604082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c8e602483611658565b9150611c9982611c32565b604082019050919050565b60006020820190508181036000830152611cbd81611c81565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d20602283611658565b9150611d2b82611cc4565b604082019050919050565b60006020820190508181036000830152611d4f81611d13565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611d8c601d83611658565b9150611d9782611d56565b602082019050919050565b60006020820190508181036000830152611dbb81611d7f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e1e602583611658565b9150611e2982611dc2565b604082019050919050565b60006020820190508181036000830152611e4d81611e11565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611eb0602383611658565b9150611ebb82611e54565b604082019050919050565b60006020820190508181036000830152611edf81611ea3565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000611f42602983611658565b9150611f4d82611ee6565b604082019050919050565b60006020820190508181036000830152611f7181611f35565b9050919050565b7f44656e6965640000000000000000000000000000000000000000000000000000600082015250565b6000611fae600683611658565b9150611fb982611f78565b602082019050919050565b60006020820190508181036000830152611fdd81611fa1565b9050919050565b7f54726164696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b600061201a601383611658565b915061202582611fe4565b602082019050919050565b600060208201905081810360008301526120498161200d565b9050919050565b7f4d6178696d756d20746f6b656e2062616c616e63652065786365656465640000600082015250565b6000612086601e83611658565b915061209182612050565b602082019050919050565b600060208201905081810360008301526120b581612079565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120f2602083611658565b91506120fd826120bc565b602082019050919050565b60006020820190508181036000830152612121816120e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612184602683611658565b915061218f82612128565b604082019050919050565b600060208201905081810360008301526121b381612177565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006121f0601483611658565b91506121fb826121ba565b602082019050919050565b6000602082019050818103600083015261221f816121e3565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061225c601083611658565b915061226782612226565b602082019050919050565b6000602082019050818103600083015261228b8161224f565b905091905056fea264697066735822122000e2dafc6aab6f4c42fcff87bbabd73f7346f9da6e605f7e0edef199616d08f864736f6c63430008100033
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.