ERC-20
Overview
Max Total Supply
1,000,000,000 $GONKEY
Holders
38
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0 $GONKEYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GonkeyGame
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-11-21 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.15; /** * @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/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.15; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * 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 `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.15; /** * @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/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.15; /** * @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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `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 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 {} } pragma solidity ^0.8.15; contract GonkeyGame is ERC20 { constructor() ERC20(unicode"GonkeyETH", unicode"$GONKEY") { _mint(msg.sender, 1000000000 * 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":"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":[],"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":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b506040518060400160405280600981526020017f476f6e6b657945544800000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f24474f4e4b455900000000000000000000000000000000000000000000000000815250816003908161008b919061048a565b50806004908161009b919061048a565b5050506100d6336100b06100db60201b60201c565b600a6100bc91906106c1565b633b9aca006100cb919061070b565b6100e360201b60201c565b61081f565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610151576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610148906107a6565b60405180910390fd5b6101625f838361024660201b60201c565b8060025f82825461017391906107c4565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546101c591906107c4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102299190610806565b60405180910390a36102425f838361024b60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806102cb57607f821691505b6020821081036102de576102dd610287565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610305565b61034a8683610305565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61038e61038961038484610362565b61036b565b610362565b9050919050565b5f819050919050565b6103a783610374565b6103bb6103b382610395565b848454610311565b825550505050565b5f90565b6103cf6103c3565b6103da81848461039e565b505050565b5b818110156103fd576103f25f826103c7565b6001810190506103e0565b5050565b601f82111561044257610413816102e4565b61041c846102f6565b8101602085101561042b578190505b61043f610437856102f6565b8301826103df565b50505b505050565b5f82821c905092915050565b5f6104625f1984600802610447565b1980831691505092915050565b5f61047a8383610453565b9150826002028217905092915050565b61049382610250565b67ffffffffffffffff8111156104ac576104ab61025a565b5b6104b682546102b4565b6104c1828285610401565b5f60209050601f8311600181146104f2575f84156104e0578287015190505b6104ea858261046f565b865550610551565b601f198416610500866102e4565b5f5b8281101561052757848901518255600182019150602085019450602081019050610502565b868310156105445784890151610540601f891682610453565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156105db578086048111156105b7576105b6610559565b5b60018516156105c65780820291505b80810290506105d485610586565b945061059b565b94509492505050565b5f826105f357600190506106ae565b81610600575f90506106ae565b816001811461061657600281146106205761064f565b60019150506106ae565b60ff84111561063257610631610559565b5b8360020a91508482111561064957610648610559565b5b506106ae565b5060208310610133831016604e8410600b84101617156106845782820a90508381111561067f5761067e610559565b5b6106ae565b6106918484846001610592565b925090508184048111156106a8576106a7610559565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6106cb82610362565b91506106d6836106b5565b92506107037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846105e4565b905092915050565b5f61071582610362565b915061072083610362565b925082820261072e81610362565b9150828204841483151761074557610744610559565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610790601f8361074c565b915061079b8261075c565b602082019050919050565b5f6020820190508181035f8301526107bd81610784565b9050919050565b5f6107ce82610362565b91506107d983610362565b92508282019050808211156107f1576107f0610559565b5b92915050565b61080081610362565b82525050565b5f6020820190506108195f8301846107f7565b92915050565b6112e98061082c5f395ff3fe608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610bdd565b60405180910390f35b6100e360048036038101906100de9190610c8e565b610303565b6040516100f09190610ce6565b60405180910390f35b610101610320565b60405161010e9190610d0e565b60405180910390f35b610131600480360381019061012c9190610d27565b610329565b60405161013e9190610ce6565b60405180910390f35b61014f61041b565b60405161015c9190610d92565b60405180910390f35b61017f600480360381019061017a9190610c8e565b610423565b60405161018c9190610ce6565b60405180910390f35b6101af60048036038101906101aa9190610dab565b6104ca565b6040516101bc9190610d0e565b60405180910390f35b6101cd61050f565b6040516101da9190610bdd565b60405180910390f35b6101fd60048036038101906101f89190610c8e565b61059f565b60405161020a9190610ce6565b60405180910390f35b61022d60048036038101906102289190610c8e565b610685565b60405161023a9190610ce6565b60405180910390f35b61025d60048036038101906102589190610dd6565b6106a2565b60405161026a9190610d0e565b60405180910390f35b60606003805461028290610e41565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610e41565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f61031661030f610724565b848461072b565b6001905092915050565b5f600254905090565b5f6103358484846108ee565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61037c610724565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156103fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f290610ee1565b60405180910390fd5b61040f85610407610724565b85840361072b565b60019150509392505050565b5f6012905090565b5f6104c061042f610724565b848460015f61043c610724565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104bb9190610f2c565b61072b565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461051e90610e41565b80601f016020809104026020016040519081016040528092919081815260200182805461054a90610e41565b80156105955780601f1061056c57610100808354040283529160200191610595565b820191905f5260205f20905b81548152906001019060200180831161057857829003601f168201915b5050505050905090565b5f8060015f6105ac610724565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d90610fcf565b60405180910390fd5b61067a610671610724565b8585840361072b565b600191505092915050565b5f610698610691610724565b84846108ee565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610799576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107909061105d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe906110eb565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108e19190610d0e565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390611179565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c190611207565b60405180910390fd5b6109d5838383610b63565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f90611295565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610ae69190610f2c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b4a9190610d0e565b60405180910390a3610b5d848484610b68565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610baf82610b6d565b610bb98185610b77565b9350610bc9818560208601610b87565b610bd281610b95565b840191505092915050565b5f6020820190508181035f830152610bf58184610ba5565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c2a82610c01565b9050919050565b610c3a81610c20565b8114610c44575f80fd5b50565b5f81359050610c5581610c31565b92915050565b5f819050919050565b610c6d81610c5b565b8114610c77575f80fd5b50565b5f81359050610c8881610c64565b92915050565b5f8060408385031215610ca457610ca3610bfd565b5b5f610cb185828601610c47565b9250506020610cc285828601610c7a565b9150509250929050565b5f8115159050919050565b610ce081610ccc565b82525050565b5f602082019050610cf95f830184610cd7565b92915050565b610d0881610c5b565b82525050565b5f602082019050610d215f830184610cff565b92915050565b5f805f60608486031215610d3e57610d3d610bfd565b5b5f610d4b86828701610c47565b9350506020610d5c86828701610c47565b9250506040610d6d86828701610c7a565b9150509250925092565b5f60ff82169050919050565b610d8c81610d77565b82525050565b5f602082019050610da55f830184610d83565b92915050565b5f60208284031215610dc057610dbf610bfd565b5b5f610dcd84828501610c47565b91505092915050565b5f8060408385031215610dec57610deb610bfd565b5b5f610df985828601610c47565b9250506020610e0a85828601610c47565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610e5857607f821691505b602082108103610e6b57610e6a610e14565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f610ecb602883610b77565b9150610ed682610e71565b604082019050919050565b5f6020820190508181035f830152610ef881610ebf565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f3682610c5b565b9150610f4183610c5b565b9250828201905080821115610f5957610f58610eff565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f610fb9602583610b77565b9150610fc482610f5f565b604082019050919050565b5f6020820190508181035f830152610fe681610fad565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611047602483610b77565b915061105282610fed565b604082019050919050565b5f6020820190508181035f8301526110748161103b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6110d5602283610b77565b91506110e08261107b565b604082019050919050565b5f6020820190508181035f830152611102816110c9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611163602583610b77565b915061116e82611109565b604082019050919050565b5f6020820190508181035f83015261119081611157565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6111f1602383610b77565b91506111fc82611197565b604082019050919050565b5f6020820190508181035f83015261121e816111e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61127f602683610b77565b915061128a82611225565b604082019050919050565b5f6020820190508181035f8301526112ac81611273565b905091905056fea26469706673582212206384ad020cec0573ceeaa483ee393e0097213885983d6d5fd2bfad59dedda64b64736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610bdd565b60405180910390f35b6100e360048036038101906100de9190610c8e565b610303565b6040516100f09190610ce6565b60405180910390f35b610101610320565b60405161010e9190610d0e565b60405180910390f35b610131600480360381019061012c9190610d27565b610329565b60405161013e9190610ce6565b60405180910390f35b61014f61041b565b60405161015c9190610d92565b60405180910390f35b61017f600480360381019061017a9190610c8e565b610423565b60405161018c9190610ce6565b60405180910390f35b6101af60048036038101906101aa9190610dab565b6104ca565b6040516101bc9190610d0e565b60405180910390f35b6101cd61050f565b6040516101da9190610bdd565b60405180910390f35b6101fd60048036038101906101f89190610c8e565b61059f565b60405161020a9190610ce6565b60405180910390f35b61022d60048036038101906102289190610c8e565b610685565b60405161023a9190610ce6565b60405180910390f35b61025d60048036038101906102589190610dd6565b6106a2565b60405161026a9190610d0e565b60405180910390f35b60606003805461028290610e41565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610e41565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f61031661030f610724565b848461072b565b6001905092915050565b5f600254905090565b5f6103358484846108ee565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61037c610724565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156103fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f290610ee1565b60405180910390fd5b61040f85610407610724565b85840361072b565b60019150509392505050565b5f6012905090565b5f6104c061042f610724565b848460015f61043c610724565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104bb9190610f2c565b61072b565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461051e90610e41565b80601f016020809104026020016040519081016040528092919081815260200182805461054a90610e41565b80156105955780601f1061056c57610100808354040283529160200191610595565b820191905f5260205f20905b81548152906001019060200180831161057857829003601f168201915b5050505050905090565b5f8060015f6105ac610724565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d90610fcf565b60405180910390fd5b61067a610671610724565b8585840361072b565b600191505092915050565b5f610698610691610724565b84846108ee565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610799576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107909061105d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe906110eb565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108e19190610d0e565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390611179565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c190611207565b60405180910390fd5b6109d5838383610b63565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f90611295565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610ae69190610f2c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b4a9190610d0e565b60405180910390a3610b5d848484610b68565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610baf82610b6d565b610bb98185610b77565b9350610bc9818560208601610b87565b610bd281610b95565b840191505092915050565b5f6020820190508181035f830152610bf58184610ba5565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c2a82610c01565b9050919050565b610c3a81610c20565b8114610c44575f80fd5b50565b5f81359050610c5581610c31565b92915050565b5f819050919050565b610c6d81610c5b565b8114610c77575f80fd5b50565b5f81359050610c8881610c64565b92915050565b5f8060408385031215610ca457610ca3610bfd565b5b5f610cb185828601610c47565b9250506020610cc285828601610c7a565b9150509250929050565b5f8115159050919050565b610ce081610ccc565b82525050565b5f602082019050610cf95f830184610cd7565b92915050565b610d0881610c5b565b82525050565b5f602082019050610d215f830184610cff565b92915050565b5f805f60608486031215610d3e57610d3d610bfd565b5b5f610d4b86828701610c47565b9350506020610d5c86828701610c47565b9250506040610d6d86828701610c7a565b9150509250925092565b5f60ff82169050919050565b610d8c81610d77565b82525050565b5f602082019050610da55f830184610d83565b92915050565b5f60208284031215610dc057610dbf610bfd565b5b5f610dcd84828501610c47565b91505092915050565b5f8060408385031215610dec57610deb610bfd565b5b5f610df985828601610c47565b9250506020610e0a85828601610c47565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610e5857607f821691505b602082108103610e6b57610e6a610e14565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f610ecb602883610b77565b9150610ed682610e71565b604082019050919050565b5f6020820190508181035f830152610ef881610ebf565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f3682610c5b565b9150610f4183610c5b565b9250828201905080821115610f5957610f58610eff565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f610fb9602583610b77565b9150610fc482610f5f565b604082019050919050565b5f6020820190508181035f830152610fe681610fad565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611047602483610b77565b915061105282610fed565b604082019050919050565b5f6020820190508181035f8301526110748161103b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6110d5602283610b77565b91506110e08261107b565b604082019050919050565b5f6020820190508181035f830152611102816110c9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611163602583610b77565b915061116e82611109565b604082019050919050565b5f6020820190508181035f83015261119081611157565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6111f1602383610b77565b91506111fc82611197565b604082019050919050565b5f6020820190508181035f83015261121e816111e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61127f602683610b77565b915061128a82611225565b604082019050919050565b5f6020820190508181035f8301526112ac81611273565b905091905056fea26469706673582212206384ad020cec0573ceeaa483ee393e0097213885983d6d5fd2bfad59dedda64b64736f6c634300081a0033
Deployed Bytecode Sourcemap
16581:165:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6600:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8767:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7720:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9418:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7562:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10319:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7891:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6819:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11037:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8231:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8469:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6600:100;6654:13;6687:5;6680:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6600:100;:::o;8767:169::-;8850:4;8867:39;8876:12;:10;:12::i;:::-;8890:7;8899:6;8867:8;:39::i;:::-;8924:4;8917:11;;8767:169;;;;:::o;7720:108::-;7781:7;7808:12;;7801:19;;7720:108;:::o;9418:492::-;9558:4;9575:36;9585:6;9593:9;9604:6;9575:9;:36::i;:::-;9624:24;9651:11;:19;9663:6;9651:19;;;;;;;;;;;;;;;:33;9671:12;:10;:12::i;:::-;9651:33;;;;;;;;;;;;;;;;9624:60;;9723:6;9703:16;:26;;9695:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9810:57;9819:6;9827:12;:10;:12::i;:::-;9860:6;9841:16;:25;9810:8;:57::i;:::-;9898:4;9891:11;;;9418:492;;;;;:::o;7562:93::-;7620:5;7645:2;7638:9;;7562:93;:::o;10319:215::-;10407:4;10424:80;10433:12;:10;:12::i;:::-;10447:7;10493:10;10456:11;:25;10468:12;:10;:12::i;:::-;10456:25;;;;;;;;;;;;;;;:34;10482:7;10456:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10424:8;:80::i;:::-;10522:4;10515:11;;10319:215;;;;:::o;7891:127::-;7965:7;7992:9;:18;8002:7;7992:18;;;;;;;;;;;;;;;;7985:25;;7891:127;;;:::o;6819:104::-;6875:13;6908:7;6901:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6819:104;:::o;11037:413::-;11130:4;11147:24;11174:11;:25;11186:12;:10;:12::i;:::-;11174:25;;;;;;;;;;;;;;;:34;11200:7;11174:34;;;;;;;;;;;;;;;;11147:61;;11247:15;11227:16;:35;;11219:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11340:67;11349:12;:10;:12::i;:::-;11363:7;11391:15;11372:16;:34;11340:8;:67::i;:::-;11438:4;11431:11;;;11037:413;;;;:::o;8231:175::-;8317:4;8334:42;8344:12;:10;:12::i;:::-;8358:9;8369:6;8334:9;:42::i;:::-;8394:4;8387:11;;8231:175;;;;:::o;8469:151::-;8558:7;8585:11;:18;8597:5;8585:18;;;;;;;;;;;;;;;:27;8604:7;8585:27;;;;;;;;;;;;;;;;8578:34;;8469:151;;;;:::o;601:98::-;654:7;681:10;674:17;;601:98;:::o;14713:380::-;14866:1;14849:19;;:5;:19;;;14841:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14947:1;14928:21;;:7;:21;;;14920:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15031:6;15001:11;:18;15013:5;15001:18;;;;;;;;;;;;;;;:27;15020:7;15001:27;;;;;;;;;;;;;;;:36;;;;15069:7;15053:32;;15062:5;15053:32;;;15078:6;15053:32;;;;;;:::i;:::-;;;;;;;;14713:380;;;:::o;11940:733::-;12098:1;12080:20;;:6;:20;;;12072:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12182:1;12161:23;;:9;:23;;;12153:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12237:47;12258:6;12266:9;12277:6;12237:20;:47::i;:::-;12297:21;12321:9;:17;12331:6;12321:17;;;;;;;;;;;;;;;;12297:41;;12374:6;12357:13;:23;;12349:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12495:6;12479:13;:22;12459:9;:17;12469:6;12459:17;;;;;;;;;;;;;;;:42;;;;12547:6;12523:9;:20;12533:9;12523:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12588:9;12571:35;;12580:6;12571:35;;;12599:6;12571:35;;;;;;:::i;:::-;;;;;;;;12619:46;12639:6;12647:9;12658:6;12619:19;:46::i;:::-;12061:612;11940:733;;;:::o;15693:125::-;;;;:::o;16422:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:474::-;5149:6;5157;5206:2;5194:9;5185:7;5181:23;5177:32;5174:119;;;5212:79;;:::i;:::-;5174:119;5332:1;5357:53;5402:7;5393:6;5382:9;5378:22;5357:53;:::i;:::-;5347:63;;5303:117;5459:2;5485:53;5530:7;5521:6;5510:9;5506:22;5485:53;:::i;:::-;5475:63;;5430:118;5081:474;;;;;:::o;5561:180::-;5609:77;5606:1;5599:88;5706:4;5703:1;5696:15;5730:4;5727:1;5720:15;5747:320;5791:6;5828:1;5822:4;5818:12;5808:22;;5875:1;5869:4;5865:12;5896:18;5886:81;;5952:4;5944:6;5940:17;5930:27;;5886:81;6014:2;6006:6;6003:14;5983:18;5980:38;5977:84;;6033:18;;:::i;:::-;5977:84;5798:269;5747:320;;;:::o;6073:227::-;6213:34;6209:1;6201:6;6197:14;6190:58;6282:10;6277:2;6269:6;6265:15;6258:35;6073:227;:::o;6306:366::-;6448:3;6469:67;6533:2;6528:3;6469:67;:::i;:::-;6462:74;;6545:93;6634:3;6545:93;:::i;:::-;6663:2;6658:3;6654:12;6647:19;;6306:366;;;:::o;6678:419::-;6844:4;6882:2;6871:9;6867:18;6859:26;;6931:9;6925:4;6921:20;6917:1;6906:9;6902:17;6895:47;6959:131;7085:4;6959:131;:::i;:::-;6951:139;;6678:419;;;:::o;7103:180::-;7151:77;7148:1;7141:88;7248:4;7245:1;7238:15;7272:4;7269:1;7262:15;7289:191;7329:3;7348:20;7366:1;7348:20;:::i;:::-;7343:25;;7382:20;7400:1;7382:20;:::i;:::-;7377:25;;7425:1;7422;7418:9;7411:16;;7446:3;7443:1;7440:10;7437:36;;;7453:18;;:::i;:::-;7437:36;7289:191;;;;:::o;7486:224::-;7626:34;7622:1;7614:6;7610:14;7603:58;7695:7;7690:2;7682:6;7678:15;7671:32;7486:224;:::o;7716:366::-;7858:3;7879:67;7943:2;7938:3;7879:67;:::i;:::-;7872:74;;7955:93;8044:3;7955:93;:::i;:::-;8073:2;8068:3;8064:12;8057:19;;7716:366;;;:::o;8088:419::-;8254:4;8292:2;8281:9;8277:18;8269:26;;8341:9;8335:4;8331:20;8327:1;8316:9;8312:17;8305:47;8369:131;8495:4;8369:131;:::i;:::-;8361:139;;8088:419;;;:::o;8513:223::-;8653:34;8649:1;8641:6;8637:14;8630:58;8722:6;8717:2;8709:6;8705:15;8698:31;8513:223;:::o;8742:366::-;8884:3;8905:67;8969:2;8964:3;8905:67;:::i;:::-;8898:74;;8981:93;9070:3;8981:93;:::i;:::-;9099:2;9094:3;9090:12;9083:19;;8742:366;;;:::o;9114:419::-;9280:4;9318:2;9307:9;9303:18;9295:26;;9367:9;9361:4;9357:20;9353:1;9342:9;9338:17;9331:47;9395:131;9521:4;9395:131;:::i;:::-;9387:139;;9114:419;;;:::o;9539:221::-;9679:34;9675:1;9667:6;9663:14;9656:58;9748:4;9743:2;9735:6;9731:15;9724:29;9539:221;:::o;9766:366::-;9908:3;9929:67;9993:2;9988:3;9929:67;:::i;:::-;9922:74;;10005:93;10094:3;10005:93;:::i;:::-;10123:2;10118:3;10114:12;10107:19;;9766:366;;;:::o;10138:419::-;10304:4;10342:2;10331:9;10327:18;10319:26;;10391:9;10385:4;10381:20;10377:1;10366:9;10362:17;10355:47;10419:131;10545:4;10419:131;:::i;:::-;10411:139;;10138:419;;;:::o;10563:224::-;10703:34;10699:1;10691:6;10687:14;10680:58;10772:7;10767:2;10759:6;10755:15;10748:32;10563:224;:::o;10793:366::-;10935:3;10956:67;11020:2;11015:3;10956:67;:::i;:::-;10949:74;;11032:93;11121:3;11032:93;:::i;:::-;11150:2;11145:3;11141:12;11134:19;;10793:366;;;:::o;11165:419::-;11331:4;11369:2;11358:9;11354:18;11346:26;;11418:9;11412:4;11408:20;11404:1;11393:9;11389:17;11382:47;11446:131;11572:4;11446:131;:::i;:::-;11438:139;;11165:419;;;:::o;11590:222::-;11730:34;11726:1;11718:6;11714:14;11707:58;11799:5;11794:2;11786:6;11782:15;11775:30;11590:222;:::o;11818:366::-;11960:3;11981:67;12045:2;12040:3;11981:67;:::i;:::-;11974:74;;12057:93;12146:3;12057:93;:::i;:::-;12175:2;12170:3;12166:12;12159:19;;11818:366;;;:::o;12190:419::-;12356:4;12394:2;12383:9;12379:18;12371:26;;12443:9;12437:4;12433:20;12429:1;12418:9;12414:17;12407:47;12471:131;12597:4;12471:131;:::i;:::-;12463:139;;12190:419;;;:::o;12615:225::-;12755:34;12751:1;12743:6;12739:14;12732:58;12824:8;12819:2;12811:6;12807:15;12800:33;12615:225;:::o;12846:366::-;12988:3;13009:67;13073:2;13068:3;13009:67;:::i;:::-;13002:74;;13085:93;13174:3;13085:93;:::i;:::-;13203:2;13198:3;13194:12;13187:19;;12846:366;;;:::o;13218:419::-;13384:4;13422:2;13411:9;13407:18;13399:26;;13471:9;13465:4;13461:20;13457:1;13446:9;13442:17;13435:47;13499:131;13625:4;13499:131;:::i;:::-;13491:139;;13218:419;;;:::o
Swarm Source
ipfs://6384ad020cec0573ceeaa483ee393e0097213885983d6d5fd2bfad59dedda64b
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.