Polygon Sponsored slots available. Book your slot here!
ERC-20
Metaverse
Overview
Max Total Supply
776,248,440 MRST
Holders
17,665 ( -0.023%)
Market
Price
$0.0013 @ 0.003998 POL (+4.13%)
Onchain Market Cap
$970,869.45
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
99 MRSTValue
$0.12 ( ~0.383626483607492 POL) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
MarsToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-10-25 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.4; /** * @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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.4; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.4; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.4; /** * @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 {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.4; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: contracts/MarsToken.sol pragma solidity ^0.8.4; contract MarsToken is ERC20, ERC20Burnable, Ownable { constructor() ERC20("Mars Token", "MRST") { } function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount * 10**decimals()); } }
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":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"},{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":"renounceOwnership","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":[{"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600a81526926b0b939902a37b5b2b760b11b602080830191825283518085019094526004845263135494d560e21b9084015281519192916200006091600391620000ef565b50805162000076906004906020840190620000ef565b505050620000936200008d6200009960201b60201c565b6200009d565b620001d2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fd9062000195565b90600052602060002090601f0160209004810192826200012157600085556200016c565b82601f106200013c57805160ff19168380011785556200016c565b828001600101855582156200016c579182015b828111156200016c5782518255916020019190600101906200014f565b506200017a9291506200017e565b5090565b5b808211156200017a57600081556001016200017f565b600181811c90821680620001aa57607f821691505b60208210811415620001cc57634e487b7160e01b600052602260045260246000fd5b50919050565b610e4380620001e26000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461021f578063a457c2d714610227578063a9059cbb1461023a578063dd62ed3e1461024d578063f2fde38b1461026057600080fd5b806370a08231146101c0578063715018a6146101e957806379cc6790146101f15780638da5cb5b1461020457600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018557806340c10f191461019857806342966c68146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610273565b6040516101259190610c2d565b60405180910390f35b61014161013c366004610bec565b610305565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610bb1565b61031f565b60405160128152602001610125565b610141610193366004610bec565b610343565b6101ab6101a6366004610bec565b610365565b005b6101ab6101bb366004610c15565b610390565b6101556101ce366004610b5e565b6001600160a01b031660009081526020819052604090205490565b6101ab61039d565b6101ab6101ff366004610bec565b6103b1565b6005546040516001600160a01b039091168152602001610125565b6101186103c6565b610141610235366004610bec565b6103d5565b610141610248366004610bec565b610455565b61015561025b366004610b7f565b610463565b6101ab61026e366004610b5e565b61048e565b60606003805461028290610dbc565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610dbc565b80156102fb5780601f106102d0576101008083540402835291602001916102fb565b820191906000526020600020905b8154815290600101906020018083116102de57829003601f168201915b5050505050905090565b600033610313818585610504565b60019150505b92915050565b60003361032d858285610629565b6103388585856106a3565b506001949350505050565b6000336103138185856103568383610463565b6103609190610c80565b610504565b61036d610871565b61038c8261037d6012600a610cdb565b6103879084610d86565b6108cb565b5050565b61039a33826109aa565b50565b6103a5610871565b6103af6000610af0565b565b6103bc823383610629565b61038c82826109aa565b60606004805461028290610dbc565b600033816103e38286610463565b9050838110156104485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103388286868403610504565b6000336103138185856106a3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610496610871565b6001600160a01b0381166104fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161043f565b61039a81610af0565b6001600160a01b0383166105665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161043f565b6001600160a01b0382166105c75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161043f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006106358484610463565b9050600019811461069d57818110156106905760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161043f565b61069d8484848403610504565b50505050565b6001600160a01b0383166107075760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161043f565b6001600160a01b0382166107695760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161043f565b6001600160a01b038316600090815260208190526040902054818110156107e15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161043f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610818908490610c80565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161086491815260200190565b60405180910390a361069d565b6005546001600160a01b031633146103af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043f565b6001600160a01b0382166109215760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161043f565b80600260008282546109339190610c80565b90915550506001600160a01b03821660009081526020819052604081208054839290610960908490610c80565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610a0a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161043f565b6001600160a01b03821660009081526020819052604090205481811015610a7e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161043f565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610aad908490610da5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161061c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610b5957600080fd5b919050565b600060208284031215610b6f578081fd5b610b7882610b42565b9392505050565b60008060408385031215610b91578081fd5b610b9a83610b42565b9150610ba860208401610b42565b90509250929050565b600080600060608486031215610bc5578081fd5b610bce84610b42565b9250610bdc60208501610b42565b9150604084013590509250925092565b60008060408385031215610bfe578182fd5b610c0783610b42565b946020939093013593505050565b600060208284031215610c26578081fd5b5035919050565b6000602080835283518082850152825b81811015610c5957858101830151858201604001528201610c3d565b81811115610c6a5783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610c9357610c93610df7565b500190565b600181815b80851115610cd3578160001904821115610cb957610cb9610df7565b80851615610cc657918102915b93841c9390800290610c9d565b509250929050565b6000610b7860ff841683600082610cf457506001610319565b81610d0157506000610319565b8160018114610d175760028114610d2157610d3d565b6001915050610319565b60ff841115610d3257610d32610df7565b50506001821b610319565b5060208310610133831016604e8410600b8410161715610d60575081810a610319565b610d6a8383610c98565b8060001904821115610d7e57610d7e610df7565b029392505050565b6000816000190483118215151615610da057610da0610df7565b500290565b600082821015610db757610db7610df7565b500390565b600181811c90821680610dd057607f821691505b60208210811415610df157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220ffe0a0597db941693c83228c602e245724796f7b013e51c9b44e3d81930b4c3564736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461021f578063a457c2d714610227578063a9059cbb1461023a578063dd62ed3e1461024d578063f2fde38b1461026057600080fd5b806370a08231146101c0578063715018a6146101e957806379cc6790146101f15780638da5cb5b1461020457600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018557806340c10f191461019857806342966c68146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610273565b6040516101259190610c2d565b60405180910390f35b61014161013c366004610bec565b610305565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610bb1565b61031f565b60405160128152602001610125565b610141610193366004610bec565b610343565b6101ab6101a6366004610bec565b610365565b005b6101ab6101bb366004610c15565b610390565b6101556101ce366004610b5e565b6001600160a01b031660009081526020819052604090205490565b6101ab61039d565b6101ab6101ff366004610bec565b6103b1565b6005546040516001600160a01b039091168152602001610125565b6101186103c6565b610141610235366004610bec565b6103d5565b610141610248366004610bec565b610455565b61015561025b366004610b7f565b610463565b6101ab61026e366004610b5e565b61048e565b60606003805461028290610dbc565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610dbc565b80156102fb5780601f106102d0576101008083540402835291602001916102fb565b820191906000526020600020905b8154815290600101906020018083116102de57829003601f168201915b5050505050905090565b600033610313818585610504565b60019150505b92915050565b60003361032d858285610629565b6103388585856106a3565b506001949350505050565b6000336103138185856103568383610463565b6103609190610c80565b610504565b61036d610871565b61038c8261037d6012600a610cdb565b6103879084610d86565b6108cb565b5050565b61039a33826109aa565b50565b6103a5610871565b6103af6000610af0565b565b6103bc823383610629565b61038c82826109aa565b60606004805461028290610dbc565b600033816103e38286610463565b9050838110156104485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103388286868403610504565b6000336103138185856106a3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610496610871565b6001600160a01b0381166104fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161043f565b61039a81610af0565b6001600160a01b0383166105665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161043f565b6001600160a01b0382166105c75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161043f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006106358484610463565b9050600019811461069d57818110156106905760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161043f565b61069d8484848403610504565b50505050565b6001600160a01b0383166107075760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161043f565b6001600160a01b0382166107695760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161043f565b6001600160a01b038316600090815260208190526040902054818110156107e15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161043f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610818908490610c80565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161086491815260200190565b60405180910390a361069d565b6005546001600160a01b031633146103af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161043f565b6001600160a01b0382166109215760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161043f565b80600260008282546109339190610c80565b90915550506001600160a01b03821660009081526020819052604081208054839290610960908490610c80565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610a0a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161043f565b6001600160a01b03821660009081526020819052604090205481811015610a7e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161043f565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610aad908490610da5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161061c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610b5957600080fd5b919050565b600060208284031215610b6f578081fd5b610b7882610b42565b9392505050565b60008060408385031215610b91578081fd5b610b9a83610b42565b9150610ba860208401610b42565b90509250929050565b600080600060608486031215610bc5578081fd5b610bce84610b42565b9250610bdc60208501610b42565b9150604084013590509250925092565b60008060408385031215610bfe578182fd5b610c0783610b42565b946020939093013593505050565b600060208284031215610c26578081fd5b5035919050565b6000602080835283518082850152825b81811015610c5957858101830151858201604001528201610c3d565b81811115610c6a5783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610c9357610c93610df7565b500190565b600181815b80851115610cd3578160001904821115610cb957610cb9610df7565b80851615610cc657918102915b93841c9390800290610c9d565b509250929050565b6000610b7860ff841683600082610cf457506001610319565b81610d0157506000610319565b8160018114610d175760028114610d2157610d3d565b6001915050610319565b60ff841115610d3257610d32610df7565b50506001821b610319565b5060208310610133831016604e8410600b8410161715610d60575081810a610319565b610d6a8383610c98565b8060001904821115610d7e57610d7e610df7565b029392505050565b6000816000190483118215151615610da057610da0610df7565b500290565b600082821015610db757610db7610df7565b500390565b600181811c90821680610dd057607f821691505b60208210811415610df157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220ffe0a0597db941693c83228c602e245724796f7b013e51c9b44e3d81930b4c3564736f6c63430008040033
Deployed Bytecode Sourcemap
21387:232:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9376:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11727:201;;;;;;:::i;:::-;;:::i;:::-;;;1848:14:1;;1841:22;1823:41;;1811:2;1796:18;11727:201:0;1778:92:1;10496:108:0;10584:12;;10496:108;;;7351:25:1;;;7339:2;7324:18;10496:108:0;7306:76:1;12508:295:0;;;;;;:::i;:::-;;:::i;10338:93::-;;;10421:2;7529:36:1;;7517:2;7502:18;10338:93:0;7484:87:1;13212:238:0;;;;;;:::i;:::-;;:::i;21504:112::-;;;;;;:::i;:::-;;:::i;:::-;;20741:91;;;;;;:::i;:::-;;:::i;10667:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10768:18:0;10741:7;10768:18;;;;;;;;;;;;10667:127;2807:103;;;:::i;21151:164::-;;;;;;:::i;:::-;;:::i;2159:87::-;2232:6;;2159:87;;-1:-1:-1;;;;;2232:6:0;;;1621:51:1;;1609:2;1594:18;2159:87:0;1576:102:1;9595:104:0;;;:::i;13953:436::-;;;;;;:::i;:::-;;:::i;11000:193::-;;;;;;:::i;:::-;;:::i;11256:151::-;;;;;;:::i;:::-;;:::i;3065:201::-;;;;;;:::i;:::-;;:::i;9376:100::-;9430:13;9463:5;9456:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9376:100;:::o;11727:201::-;11810:4;792:10;11866:32;792:10;11882:7;11891:6;11866:8;:32::i;:::-;11916:4;11909:11;;;11727:201;;;;;:::o;12508:295::-;12639:4;792:10;12697:38;12713:4;792:10;12728:6;12697:15;:38::i;:::-;12746:27;12756:4;12762:2;12766:6;12746:9;:27::i;:::-;-1:-1:-1;12791:4:0;;12508:295;-1:-1:-1;;;;12508:295:0:o;13212:238::-;13300:4;792:10;13356:64;792:10;13372:7;13409:10;13381:25;792:10;13372:7;13381:9;:25::i;:::-;:38;;;;:::i;:::-;13356:8;:64::i;21504:112::-;2045:13;:11;:13::i;:::-;21574:34:::1;21580:2:::0;21593:14:::1;10421:2:::0;21593::::1;:14;:::i;:::-;21584:23;::::0;:6;:23:::1;:::i;:::-;21574:5;:34::i;:::-;21504:112:::0;;:::o;20741:91::-;20797:27;792:10;20817:6;20797:5;:27::i;:::-;20741:91;:::o;2807:103::-;2045:13;:11;:13::i;:::-;2872:30:::1;2899:1;2872:18;:30::i;:::-;2807:103::o:0;21151:164::-;21228:46;21244:7;792:10;21267:6;21228:15;:46::i;:::-;21285:22;21291:7;21300:6;21285:5;:22::i;9595:104::-;9651:13;9684:7;9677:14;;;;;:::i;13953:436::-;14046:4;792:10;14046:4;14129:25;792:10;14146:7;14129:9;:25::i;:::-;14102:52;;14193:15;14173:16;:35;;14165:85;;;;-1:-1:-1;;;14165:85:0;;6641:2:1;14165:85:0;;;6623:21:1;6680:2;6660:18;;;6653:30;6719:34;6699:18;;;6692:62;-1:-1:-1;;;6770:18:1;;;6763:35;6815:19;;14165:85:0;;;;;;;;;14286:60;14295:5;14302:7;14330:15;14311:16;:34;14286:8;:60::i;11000:193::-;11079:4;792:10;11135:28;792:10;11152:2;11156:6;11135:9;:28::i;11256:151::-;-1:-1:-1;;;;;11372:18:0;;;11345:7;11372:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11256:151::o;3065:201::-;2045:13;:11;:13::i;:::-;-1:-1:-1;;;;;3154:22:0;::::1;3146:73;;;::::0;-1:-1:-1;;;3146:73:0;;3492:2:1;3146:73:0::1;::::0;::::1;3474:21:1::0;3531:2;3511:18;;;3504:30;3570:34;3550:18;;;3543:62;-1:-1:-1;;;3621:18:1;;;3614:36;3667:19;;3146:73:0::1;3464:228:1::0;3146:73:0::1;3230:28;3249:8;3230:18;:28::i;17578:380::-:0;-1:-1:-1;;;;;17714:19:0;;17706:68;;;;-1:-1:-1;;;17706:68:0;;6236:2:1;17706:68:0;;;6218:21:1;6275:2;6255:18;;;6248:30;6314:34;6294:18;;;6287:62;-1:-1:-1;;;6365:18:1;;;6358:34;6409:19;;17706:68:0;6208:226:1;17706:68:0;-1:-1:-1;;;;;17793:21:0;;17785:68;;;;-1:-1:-1;;;17785:68:0;;3899:2:1;17785:68:0;;;3881:21:1;3938:2;3918:18;;;3911:30;3977:34;3957:18;;;3950:62;-1:-1:-1;;;4028:18:1;;;4021:32;4070:19;;17785:68:0;3871:224:1;17785:68:0;-1:-1:-1;;;;;17866:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17918:32;;7351:25:1;;;17918:32:0;;7324:18:1;17918:32:0;;;;;;;;17578:380;;;:::o;18249:453::-;18384:24;18411:25;18421:5;18428:7;18411:9;:25::i;:::-;18384:52;;-1:-1:-1;;18451:16:0;:37;18447:248;;18533:6;18513:16;:26;;18505:68;;;;-1:-1:-1;;;18505:68:0;;4302:2:1;18505:68:0;;;4284:21:1;4341:2;4321:18;;;4314:30;4380:31;4360:18;;;4353:59;4429:18;;18505:68:0;4274:179:1;18505:68:0;18617:51;18626:5;18633:7;18661:6;18642:16;:25;18617:8;:51::i;:::-;18249:453;;;;:::o;14859:671::-;-1:-1:-1;;;;;14990:18:0;;14982:68;;;;-1:-1:-1;;;14982:68:0;;5830:2:1;14982:68:0;;;5812:21:1;5869:2;5849:18;;;5842:30;5908:34;5888:18;;;5881:62;-1:-1:-1;;;5959:18:1;;;5952:35;6004:19;;14982:68:0;5802:227:1;14982:68:0;-1:-1:-1;;;;;15069:16:0;;15061:64;;;;-1:-1:-1;;;15061:64:0;;2685:2:1;15061:64:0;;;2667:21:1;2724:2;2704:18;;;2697:30;2763:34;2743:18;;;2736:62;-1:-1:-1;;;2814:18:1;;;2807:33;2857:19;;15061:64:0;2657:225:1;15061:64:0;-1:-1:-1;;;;;15211:15:0;;15189:19;15211:15;;;;;;;;;;;15245:21;;;;15237:72;;;;-1:-1:-1;;;15237:72:0;;4660:2:1;15237:72:0;;;4642:21:1;4699:2;4679:18;;;4672:30;4738:34;4718:18;;;4711:62;-1:-1:-1;;;4789:18:1;;;4782:36;4835:19;;15237:72:0;4632:228:1;15237:72:0;-1:-1:-1;;;;;15345:15:0;;;:9;:15;;;;;;;;;;;15363:20;;;15345:38;;15405:13;;;;;;;;:23;;15377:6;;15345:9;15405:23;;15377:6;;15405:23;:::i;:::-;;;;;;;;15461:2;-1:-1:-1;;;;;15446:26:0;15455:4;-1:-1:-1;;;;;15446:26:0;;15465:6;15446:26;;;;7351:25:1;;7339:2;7324:18;;7306:76;15446:26:0;;;;;;;;15485:37;16549:591;2324:132;2232:6;;-1:-1:-1;;;;;2232:6:0;792:10;2388:23;2380:68;;;;-1:-1:-1;;;2380:68:0;;5067:2:1;2380:68:0;;;5049:21:1;;;5086:18;;;5079:30;5145:34;5125:18;;;5118:62;5197:18;;2380:68:0;5039:182:1;15817:399:0;-1:-1:-1;;;;;15901:21:0;;15893:65;;;;-1:-1:-1;;;15893:65:0;;7047:2:1;15893:65:0;;;7029:21:1;7086:2;7066:18;;;7059:30;7125:33;7105:18;;;7098:61;7176:18;;15893:65:0;7019:181:1;15893:65:0;16049:6;16033:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16066:18:0;;:9;:18;;;;;;;;;;:28;;16088:6;;16066:9;:28;;16088:6;;16066:28;:::i;:::-;;;;-1:-1:-1;;16110:37:0;;7351:25:1;;;-1:-1:-1;;;;;16110:37:0;;;16127:1;;16110:37;;7339:2:1;7324:18;16110:37:0;;;;;;;21504:112;;:::o;16549:591::-;-1:-1:-1;;;;;16633:21:0;;16625:67;;;;-1:-1:-1;;;16625:67:0;;5428:2:1;16625:67:0;;;5410:21:1;5467:2;5447:18;;;5440:30;5506:34;5486:18;;;5479:62;-1:-1:-1;;;5557:18:1;;;5550:31;5598:19;;16625:67:0;5400:223:1;16625:67:0;-1:-1:-1;;;;;16792:18:0;;16767:22;16792:18;;;;;;;;;;;16829:24;;;;16821:71;;;;-1:-1:-1;;;16821:71:0;;3089:2:1;16821:71:0;;;3071:21:1;3128:2;3108:18;;;3101:30;3167:34;3147:18;;;3140:62;-1:-1:-1;;;3218:18:1;;;3211:32;3260:19;;16821:71:0;3061:224:1;16821:71:0;-1:-1:-1;;;;;16928:18:0;;:9;:18;;;;;;;;;;16949:23;;;16928:44;;16994:12;:22;;16966:6;;16928:9;16994:22;;16966:6;;16994:22;:::i;:::-;;;;-1:-1:-1;;17034:37:0;;7351:25:1;;;17060:1:0;;-1:-1:-1;;;;;17034:37:0;;;;;7339:2:1;7324:18;17034:37:0;7306:76:1;3426:191:0;3519:6;;;-1:-1:-1;;;;;3536:17:0;;;-1:-1:-1;;;;;;3536:17:0;;;;;;;3569:40;;3519:6;;;3536:17;3519:6;;3569:40;;3500:16;;3569:40;3426:191;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;1339:6;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1875:603::-;1987:4;2016:2;2045;2034:9;2027:21;2077:6;2071:13;2120:6;2115:2;2104:9;2100:18;2093:34;2145:4;2158:140;2172:6;2169:1;2166:13;2158:140;;;2267:14;;;2263:23;;2257:30;2233:17;;;2252:2;2229:26;2222:66;2187:10;;2158:140;;;2316:6;2313:1;2310:13;2307:2;;;2386:4;2381:2;2372:6;2361:9;2357:22;2353:31;2346:45;2307:2;-1:-1:-1;2462:2:1;2441:15;-1:-1:-1;;2437:29:1;2422:45;;;;2469:2;2418:54;;1996:482;-1:-1:-1;;;1996:482:1:o;7576:128::-;7616:3;7647:1;7643:6;7640:1;7637:13;7634:2;;;7653:18;;:::i;:::-;-1:-1:-1;7689:9:1;;7624:80::o;7709:422::-;7798:1;7841:5;7798:1;7855:270;7876:7;7866:8;7863:21;7855:270;;;7935:4;7931:1;7927:6;7923:17;7917:4;7914:27;7911:2;;;7944:18;;:::i;:::-;7994:7;7984:8;7980:22;7977:2;;;8014:16;;;;7977:2;8093:22;;;;8053:15;;;;7855:270;;;7859:3;7773:358;;;;;:::o;8136:140::-;8194:5;8223:47;8264:4;8254:8;8250:19;8244:4;8330:5;8360:8;8350:2;;-1:-1:-1;8401:1:1;8415:5;;8350:2;8449:4;8439:2;;-1:-1:-1;8486:1:1;8500:5;;8439:2;8531:4;8549:1;8544:59;;;;8617:1;8612:130;;;;8524:218;;8544:59;8574:1;8565:10;;8588:5;;;8612:130;8649:3;8639:8;8636:17;8633:2;;;8656:18;;:::i;:::-;-1:-1:-1;;8712:1:1;8698:16;;8727:5;;8524:218;;8826:2;8816:8;8813:16;8807:3;8801:4;8798:13;8794:36;8788:2;8778:8;8775:16;8770:2;8764:4;8761:12;8757:35;8754:77;8751:2;;;-1:-1:-1;8863:19:1;;;8895:5;;8751:2;8942:34;8967:8;8961:4;8942:34;:::i;:::-;9012:6;9008:1;9004:6;9000:19;8991:7;8988:32;8985:2;;;9023:18;;:::i;:::-;9061:20;;8340:747;-1:-1:-1;;;8340:747:1:o;9092:168::-;9132:7;9198:1;9194;9190:6;9186:14;9183:1;9180:21;9175:1;9168:9;9161:17;9157:45;9154:2;;;9205:18;;:::i;:::-;-1:-1:-1;9245:9:1;;9144:116::o;9265:125::-;9305:4;9333:1;9330;9327:8;9324:2;;;9338:18;;:::i;:::-;-1:-1:-1;9375:9:1;;9314:76::o;9395:380::-;9474:1;9470:12;;;;9517;;;9538:2;;9592:4;9584:6;9580:17;9570:27;;9538:2;9645;9637:6;9634:14;9614:18;9611:38;9608:2;;;9691:10;9686:3;9682:20;9679:1;9672:31;9726:4;9723:1;9716:15;9754:4;9751:1;9744:15;9608:2;;9450:325;;;:::o;9780:127::-;9841:10;9836:3;9832:20;9829:1;9822:31;9872:4;9869:1;9862:15;9896:4;9893:1;9886:15
Swarm Source
ipfs://ffe0a0597db941693c83228c602e245724796f7b013e51c9b44e3d81930b4c35
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.