Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 72 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 19840937 | 258 days ago | IN | 0 ETH | 0.00043557 | ||||
Approve | 17278728 | 617 days ago | IN | 0 ETH | 0.00159445 | ||||
Approve | 17278718 | 617 days ago | IN | 0 ETH | 0.00254343 | ||||
Approve | 17278671 | 617 days ago | IN | 0 ETH | 0.00195037 | ||||
Approve | 17278668 | 617 days ago | IN | 0 ETH | 0.00196309 | ||||
Approve | 17278666 | 617 days ago | IN | 0 ETH | 0.00392062 | ||||
Approve | 17278665 | 617 days ago | IN | 0 ETH | 0.00218472 | ||||
Transfer | 17278664 | 617 days ago | IN | 0 ETH | 0.00229032 | ||||
Approve | 17278663 | 617 days ago | IN | 0 ETH | 0.00220436 | ||||
Transfer | 17278659 | 617 days ago | IN | 0 ETH | 0.00221967 | ||||
Approve | 17278657 | 617 days ago | IN | 0 ETH | 0.0019693 | ||||
Approve | 17278657 | 617 days ago | IN | 0 ETH | 0.00211261 | ||||
Approve | 17278655 | 617 days ago | IN | 0 ETH | 0.00227752 | ||||
Approve | 17278652 | 617 days ago | IN | 0 ETH | 0.00227505 | ||||
Approve | 17278646 | 617 days ago | IN | 0 ETH | 0.00201194 | ||||
Approve | 17278644 | 617 days ago | IN | 0 ETH | 0.00206171 | ||||
Approve | 17278635 | 617 days ago | IN | 0 ETH | 0.00209177 | ||||
Approve | 17278634 | 617 days ago | IN | 0 ETH | 0.00385997 | ||||
Approve | 17278634 | 617 days ago | IN | 0 ETH | 0.00385997 | ||||
Approve | 17278634 | 617 days ago | IN | 0 ETH | 0.00385997 | ||||
Approve | 17278634 | 617 days ago | IN | 0 ETH | 0.00385997 | ||||
Approve | 17278633 | 617 days ago | IN | 0 ETH | 0.00208833 | ||||
Approve | 17278632 | 617 days ago | IN | 0 ETH | 0.00211175 | ||||
Approve | 17278630 | 617 days ago | IN | 0 ETH | 0.00220557 | ||||
Approve | 17278630 | 617 days ago | IN | 0 ETH | 0.00220557 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
UFO
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-17 */ // WHITEPAPER : https://twitter.com/UFOmeme_ETH // TELEGRAM : https://twitter.com/UFOmeme_ETH // TWITTER : https://twitter.com/UFOmeme_ETH // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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.openzeppelin.com/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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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.0; /** * @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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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: Ufo.sol // WHITEPAPER : https://twitter.com/UFOmeme_ETH // TELEGRAM : https://twitter.com/UFOmeme_ETH // TWITTER : https://twitter.com/UFOmeme_ETH pragma solidity ^0.8.17; contract UFO is Ownable , ERC20 { uint256 private _totalSupply = 21000000000000000 * 1e18; mapping(address => bool) public blacklist; constructor() ERC20("UFO", "UFO") { _mint(msg.sender, _totalSupply); } function _beforeTokenTransfer(address from, address to, uint256 amount) override internal virtual { require(!blacklist[to] && !blacklist[from]); } function burn(uint256 value) external { _burn(msg.sender, value); } /// Privileged Functions function toggleBlacklist(address _address, bool _blacklist) external onlyOwner { blacklist[_address] = _blacklist; } /// Privileged Functions }
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":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","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":[],"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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_blacklist","type":"bool"}],"name":"toggleBlacklist","outputs":[],"stateMutability":"nonpayable","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
60806040526e040b61439f9d13a7dc77d2000000006006553480156200002457600080fd5b506040518060400160405280600381526020017f55464f00000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f55464f0000000000000000000000000000000000000000000000000000000000815250620000b1620000a5620000f160201b60201c565b620000f960201b60201c565b8160049081620000c291906200065e565b508060059081620000d491906200065e565b505050620000eb33600654620001bd60201b60201c565b62000860565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200022f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022690620007a6565b60405180910390fd5b62000243600083836200032b60201b60201c565b8060036000828254620002579190620007f7565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030b919062000843565b60405180910390a36200032760008383620003df60201b60201c565b5050565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003d05750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b620003da57600080fd5b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200046657607f821691505b6020821081036200047c576200047b6200041e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004e67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004a7565b620004f28683620004a7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200053f6200053962000533846200050a565b62000514565b6200050a565b9050919050565b6000819050919050565b6200055b836200051e565b620005736200056a8262000546565b848454620004b4565b825550505050565b600090565b6200058a6200057b565b6200059781848462000550565b505050565b5b81811015620005bf57620005b360008262000580565b6001810190506200059d565b5050565b601f8211156200060e57620005d88162000482565b620005e38462000497565b81016020851015620005f3578190505b6200060b620006028562000497565b8301826200059c565b50505b505050565b600082821c905092915050565b6000620006336000198460080262000613565b1980831691505092915050565b60006200064e838362000620565b9150826002028217905092915050565b6200066982620003e4565b67ffffffffffffffff811115620006855762000684620003ef565b5b6200069182546200044d565b6200069e828285620005c3565b600060209050601f831160018114620006d65760008415620006c1578287015190505b620006cd858262000640565b8655506200073d565b601f198416620006e68662000482565b60005b828110156200071057848901518255600182019150602085019450602081019050620006e9565b868310156200073057848901516200072c601f89168262000620565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200078e601f8362000745565b91506200079b8262000756565b602082019050919050565b60006020820190508181036000830152620007c1816200077f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000804826200050a565b915062000811836200050a565b92508282019050808211156200082c576200082b620007c8565b5b92915050565b6200083d816200050a565b82525050565b60006020820190506200085a600083018462000832565b92915050565b611b3480620008706000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102bc578063dd62ed3e146102ec578063f2fde38b1461031c578063f9f92be414610338578063fc03b68a146103685761010b565b8063715018a6146102465780638da5cb5b1461025057806395d89b411461026e578063a457c2d71461028c5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b604051610125919061112c565b60405180910390f35b610148600480360381019061014391906111e7565b610416565b6040516101559190611242565b60405180910390f35b610166610439565b604051610173919061126c565b60405180910390f35b61019660048036038101906101919190611287565b610443565b6040516101a39190611242565b60405180910390f35b6101b4610472565b6040516101c191906112f6565b60405180910390f35b6101e460048036038101906101df91906111e7565b61047b565b6040516101f19190611242565b60405180910390f35b610214600480360381019061020f9190611311565b6104b2565b005b610230600480360381019061022b919061133e565b6104bf565b60405161023d919061126c565b60405180910390f35b61024e610508565b005b61025861051c565b604051610265919061137a565b60405180910390f35b610276610545565b604051610283919061112c565b60405180910390f35b6102a660048036038101906102a191906111e7565b6105d7565b6040516102b39190611242565b60405180910390f35b6102d660048036038101906102d191906111e7565b61064e565b6040516102e39190611242565b60405180910390f35b61030660048036038101906103019190611395565b610671565b604051610313919061126c565b60405180910390f35b6103366004803603810190610331919061133e565b6106f8565b005b610352600480360381019061034d919061133e565b61077b565b60405161035f9190611242565b60405180910390f35b610382600480360381019061037d9190611401565b61079b565b005b60606004805461039390611470565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611470565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216107fe565b905061042e818585610806565b600191505092915050565b6000600354905090565b60008061044e6107fe565b905061045b8582856109cf565b610466858585610a5b565b60019150509392505050565b60006012905090565b6000806104866107fe565b90506104a78185856104988589610671565b6104a291906114d0565b610806565b600191505092915050565b6104bc3382610cd4565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610510610ea3565b61051a6000610f21565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461055490611470565b80601f016020809104026020016040519081016040528092919081815260200182805461058090611470565b80156105cd5780601f106105a2576101008083540402835291602001916105cd565b820191906000526020600020905b8154815290600101906020018083116105b057829003601f168201915b5050505050905090565b6000806105e26107fe565b905060006105f08286610671565b905083811015610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c90611576565b60405180910390fd5b6106428286868403610806565b60019250505092915050565b6000806106596107fe565b9050610666818585610a5b565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610700610ea3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361076f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076690611608565b60405180910390fd5b61077881610f21565b50565b60076020528060005260406000206000915054906101000a900460ff1681565b6107a3610ea3565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c9061169a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db9061172c565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109c2919061126c565b60405180910390a3505050565b60006109db8484610671565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a555781811015610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e90611798565b60405180910390fd5b610a548484848403610806565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061182a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b30906118bc565b60405180910390fd5b610b44838383610fe5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc29061194e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cbb919061126c565b60405180910390a3610cce848484611097565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906119e0565b60405180910390fd5b610d4f82600083610fe5565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90611a72565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8a919061126c565b60405180910390a3610e9e83600084611097565b505050565b610eab6107fe565b73ffffffffffffffffffffffffffffffffffffffff16610ec961051c565b73ffffffffffffffffffffffffffffffffffffffff1614610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690611ade565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110895750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61109257600080fd5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110d65780820151818401526020810190506110bb565b60008484015250505050565b6000601f19601f8301169050919050565b60006110fe8261109c565b61110881856110a7565b93506111188185602086016110b8565b611121816110e2565b840191505092915050565b6000602082019050818103600083015261114681846110f3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061117e82611153565b9050919050565b61118e81611173565b811461119957600080fd5b50565b6000813590506111ab81611185565b92915050565b6000819050919050565b6111c4816111b1565b81146111cf57600080fd5b50565b6000813590506111e1816111bb565b92915050565b600080604083850312156111fe576111fd61114e565b5b600061120c8582860161119c565b925050602061121d858286016111d2565b9150509250929050565b60008115159050919050565b61123c81611227565b82525050565b60006020820190506112576000830184611233565b92915050565b611266816111b1565b82525050565b6000602082019050611281600083018461125d565b92915050565b6000806000606084860312156112a05761129f61114e565b5b60006112ae8682870161119c565b93505060206112bf8682870161119c565b92505060406112d0868287016111d2565b9150509250925092565b600060ff82169050919050565b6112f0816112da565b82525050565b600060208201905061130b60008301846112e7565b92915050565b6000602082840312156113275761132661114e565b5b6000611335848285016111d2565b91505092915050565b6000602082840312156113545761135361114e565b5b60006113628482850161119c565b91505092915050565b61137481611173565b82525050565b600060208201905061138f600083018461136b565b92915050565b600080604083850312156113ac576113ab61114e565b5b60006113ba8582860161119c565b92505060206113cb8582860161119c565b9150509250929050565b6113de81611227565b81146113e957600080fd5b50565b6000813590506113fb816113d5565b92915050565b600080604083850312156114185761141761114e565b5b60006114268582860161119c565b9250506020611437858286016113ec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061148857607f821691505b60208210810361149b5761149a611441565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114db826111b1565b91506114e6836111b1565b92508282019050808211156114fe576114fd6114a1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115606025836110a7565b915061156b82611504565b604082019050919050565b6000602082019050818103600083015261158f81611553565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115f26026836110a7565b91506115fd82611596565b604082019050919050565b60006020820190508181036000830152611621816115e5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116846024836110a7565b915061168f82611628565b604082019050919050565b600060208201905081810360008301526116b381611677565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117166022836110a7565b9150611721826116ba565b604082019050919050565b6000602082019050818103600083015261174581611709565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611782601d836110a7565b915061178d8261174c565b602082019050919050565b600060208201905081810360008301526117b181611775565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118146025836110a7565b915061181f826117b8565b604082019050919050565b6000602082019050818103600083015261184381611807565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118a66023836110a7565b91506118b18261184a565b604082019050919050565b600060208201905081810360008301526118d581611899565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119386026836110a7565b9150611943826118dc565b604082019050919050565b600060208201905081810360008301526119678161192b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006119ca6021836110a7565b91506119d58261196e565b604082019050919050565b600060208201905081810360008301526119f9816119bd565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a5c6022836110a7565b9150611a6782611a00565b604082019050919050565b60006020820190508181036000830152611a8b81611a4f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ac86020836110a7565b9150611ad382611a92565b602082019050919050565b60006020820190508181036000830152611af781611abb565b905091905056fea2646970667358221220e31cad68d85cf3efc906acfdb419ba2a7ea0d1dd0a06219cc26e7c503692c62764736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102bc578063dd62ed3e146102ec578063f2fde38b1461031c578063f9f92be414610338578063fc03b68a146103685761010b565b8063715018a6146102465780638da5cb5b1461025057806395d89b411461026e578063a457c2d71461028c5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b604051610125919061112c565b60405180910390f35b610148600480360381019061014391906111e7565b610416565b6040516101559190611242565b60405180910390f35b610166610439565b604051610173919061126c565b60405180910390f35b61019660048036038101906101919190611287565b610443565b6040516101a39190611242565b60405180910390f35b6101b4610472565b6040516101c191906112f6565b60405180910390f35b6101e460048036038101906101df91906111e7565b61047b565b6040516101f19190611242565b60405180910390f35b610214600480360381019061020f9190611311565b6104b2565b005b610230600480360381019061022b919061133e565b6104bf565b60405161023d919061126c565b60405180910390f35b61024e610508565b005b61025861051c565b604051610265919061137a565b60405180910390f35b610276610545565b604051610283919061112c565b60405180910390f35b6102a660048036038101906102a191906111e7565b6105d7565b6040516102b39190611242565b60405180910390f35b6102d660048036038101906102d191906111e7565b61064e565b6040516102e39190611242565b60405180910390f35b61030660048036038101906103019190611395565b610671565b604051610313919061126c565b60405180910390f35b6103366004803603810190610331919061133e565b6106f8565b005b610352600480360381019061034d919061133e565b61077b565b60405161035f9190611242565b60405180910390f35b610382600480360381019061037d9190611401565b61079b565b005b60606004805461039390611470565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611470565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216107fe565b905061042e818585610806565b600191505092915050565b6000600354905090565b60008061044e6107fe565b905061045b8582856109cf565b610466858585610a5b565b60019150509392505050565b60006012905090565b6000806104866107fe565b90506104a78185856104988589610671565b6104a291906114d0565b610806565b600191505092915050565b6104bc3382610cd4565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610510610ea3565b61051a6000610f21565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461055490611470565b80601f016020809104026020016040519081016040528092919081815260200182805461058090611470565b80156105cd5780601f106105a2576101008083540402835291602001916105cd565b820191906000526020600020905b8154815290600101906020018083116105b057829003601f168201915b5050505050905090565b6000806105e26107fe565b905060006105f08286610671565b905083811015610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c90611576565b60405180910390fd5b6106428286868403610806565b60019250505092915050565b6000806106596107fe565b9050610666818585610a5b565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610700610ea3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361076f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076690611608565b60405180910390fd5b61077881610f21565b50565b60076020528060005260406000206000915054906101000a900460ff1681565b6107a3610ea3565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c9061169a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db9061172c565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109c2919061126c565b60405180910390a3505050565b60006109db8484610671565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a555781811015610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e90611798565b60405180910390fd5b610a548484848403610806565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061182a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b30906118bc565b60405180910390fd5b610b44838383610fe5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc29061194e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cbb919061126c565b60405180910390a3610cce848484611097565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906119e0565b60405180910390fd5b610d4f82600083610fe5565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90611a72565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8a919061126c565b60405180910390a3610e9e83600084611097565b505050565b610eab6107fe565b73ffffffffffffffffffffffffffffffffffffffff16610ec961051c565b73ffffffffffffffffffffffffffffffffffffffff1614610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690611ade565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110895750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61109257600080fd5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110d65780820151818401526020810190506110bb565b60008484015250505050565b6000601f19601f8301169050919050565b60006110fe8261109c565b61110881856110a7565b93506111188185602086016110b8565b611121816110e2565b840191505092915050565b6000602082019050818103600083015261114681846110f3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061117e82611153565b9050919050565b61118e81611173565b811461119957600080fd5b50565b6000813590506111ab81611185565b92915050565b6000819050919050565b6111c4816111b1565b81146111cf57600080fd5b50565b6000813590506111e1816111bb565b92915050565b600080604083850312156111fe576111fd61114e565b5b600061120c8582860161119c565b925050602061121d858286016111d2565b9150509250929050565b60008115159050919050565b61123c81611227565b82525050565b60006020820190506112576000830184611233565b92915050565b611266816111b1565b82525050565b6000602082019050611281600083018461125d565b92915050565b6000806000606084860312156112a05761129f61114e565b5b60006112ae8682870161119c565b93505060206112bf8682870161119c565b92505060406112d0868287016111d2565b9150509250925092565b600060ff82169050919050565b6112f0816112da565b82525050565b600060208201905061130b60008301846112e7565b92915050565b6000602082840312156113275761132661114e565b5b6000611335848285016111d2565b91505092915050565b6000602082840312156113545761135361114e565b5b60006113628482850161119c565b91505092915050565b61137481611173565b82525050565b600060208201905061138f600083018461136b565b92915050565b600080604083850312156113ac576113ab61114e565b5b60006113ba8582860161119c565b92505060206113cb8582860161119c565b9150509250929050565b6113de81611227565b81146113e957600080fd5b50565b6000813590506113fb816113d5565b92915050565b600080604083850312156114185761141761114e565b5b60006114268582860161119c565b9250506020611437858286016113ec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061148857607f821691505b60208210810361149b5761149a611441565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114db826111b1565b91506114e6836111b1565b92508282019050808211156114fe576114fd6114a1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115606025836110a7565b915061156b82611504565b604082019050919050565b6000602082019050818103600083015261158f81611553565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115f26026836110a7565b91506115fd82611596565b604082019050919050565b60006020820190508181036000830152611621816115e5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116846024836110a7565b915061168f82611628565b604082019050919050565b600060208201905081810360008301526116b381611677565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117166022836110a7565b9150611721826116ba565b604082019050919050565b6000602082019050818103600083015261174581611709565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611782601d836110a7565b915061178d8261174c565b602082019050919050565b600060208201905081810360008301526117b181611775565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118146025836110a7565b915061181f826117b8565b604082019050919050565b6000602082019050818103600083015261184381611807565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118a66023836110a7565b91506118b18261184a565b604082019050919050565b600060208201905081810360008301526118d581611899565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119386026836110a7565b9150611943826118dc565b604082019050919050565b600060208201905081810360008301526119678161192b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006119ca6021836110a7565b91506119d58261196e565b604082019050919050565b600060208201905081810360008301526119f9816119bd565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a5c6022836110a7565b9150611a6782611a00565b604082019050919050565b60006020820190508181036000830152611a8b81611a4f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ac86020836110a7565b9150611ad382611a92565b602082019050919050565b60006020820190508181036000830152611af781611abb565b905091905056fea2646970667358221220e31cad68d85cf3efc906acfdb419ba2a7ea0d1dd0a06219cc26e7c503692c62764736f6c63430008110033
Deployed Bytecode Sourcemap
23121:704:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6828:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9179:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7948:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9960:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7790:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10664:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23535:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8119:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22098:103;;;:::i;:::-;;21450:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7047:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11405:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8452:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8708:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22356:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23223:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23656:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6828:100;6882:13;6915:5;6908:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6828:100;:::o;9179:201::-;9262:4;9279:13;9295:12;:10;:12::i;:::-;9279:28;;9318:32;9327:5;9334:7;9343:6;9318:8;:32::i;:::-;9368:4;9361:11;;;9179:201;;;;:::o;7948:108::-;8009:7;8036:12;;8029:19;;7948:108;:::o;9960:295::-;10091:4;10108:15;10126:12;:10;:12::i;:::-;10108:30;;10149:38;10165:4;10171:7;10180:6;10149:15;:38::i;:::-;10198:27;10208:4;10214:2;10218:6;10198:9;:27::i;:::-;10243:4;10236:11;;;9960:295;;;;;:::o;7790:93::-;7848:5;7873:2;7866:9;;7790:93;:::o;10664:238::-;10752:4;10769:13;10785:12;:10;:12::i;:::-;10769:28;;10808:64;10817:5;10824:7;10861:10;10833:25;10843:5;10850:7;10833:9;:25::i;:::-;:38;;;;:::i;:::-;10808:8;:64::i;:::-;10890:4;10883:11;;;10664:238;;;;:::o;23535:81::-;23584:24;23590:10;23602:5;23584;:24::i;:::-;23535:81;:::o;8119:127::-;8193:7;8220:9;:18;8230:7;8220:18;;;;;;;;;;;;;;;;8213:25;;8119:127;;;:::o;22098:103::-;21336:13;:11;:13::i;:::-;22163:30:::1;22190:1;22163:18;:30::i;:::-;22098:103::o:0;21450:87::-;21496:7;21523:6;;;;;;;;;;;21516:13;;21450:87;:::o;7047:104::-;7103:13;7136:7;7129:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7047:104;:::o;11405:436::-;11498:4;11515:13;11531:12;:10;:12::i;:::-;11515:28;;11554:24;11581:25;11591:5;11598:7;11581:9;:25::i;:::-;11554:52;;11645:15;11625:16;:35;;11617:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11738:60;11747:5;11754:7;11782:15;11763:16;:34;11738:8;:60::i;:::-;11829:4;11822:11;;;;11405:436;;;;:::o;8452:193::-;8531:4;8548:13;8564:12;:10;:12::i;:::-;8548:28;;8587;8597:5;8604:2;8608:6;8587:9;:28::i;:::-;8633:4;8626:11;;;8452:193;;;;:::o;8708:151::-;8797:7;8824:11;:18;8836:5;8824:18;;;;;;;;;;;;;;;:27;8843:7;8824:27;;;;;;;;;;;;;;;;8817:34;;8708:151;;;;:::o;22356:201::-;21336:13;:11;:13::i;:::-;22465:1:::1;22445:22;;:8;:22;;::::0;22437:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22521:28;22540:8;22521:18;:28::i;:::-;22356:201:::0;:::o;23223:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;23656:130::-;21336:13;:11;:13::i;:::-;23768:10:::1;23746:9;:19;23756:8;23746:19;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;23656:130:::0;;:::o;4470:98::-;4523:7;4550:10;4543:17;;4470:98;:::o;15432:380::-;15585:1;15568:19;;:5;:19;;;15560:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15666:1;15647:21;;:7;:21;;;15639:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15750:6;15720:11;:18;15732:5;15720:18;;;;;;;;;;;;;;;:27;15739:7;15720:27;;;;;;;;;;;;;;;:36;;;;15788:7;15772:32;;15781:5;15772:32;;;15797:6;15772:32;;;;;;:::i;:::-;;;;;;;;15432:380;;;:::o;16103:453::-;16238:24;16265:25;16275:5;16282:7;16265:9;:25::i;:::-;16238:52;;16325:17;16305:16;:37;16301:248;;16387:6;16367:16;:26;;16359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16471:51;16480:5;16487:7;16515:6;16496:16;:25;16471:8;:51::i;:::-;16301:248;16227:329;16103:453;;;:::o;12311:840::-;12458:1;12442:18;;:4;:18;;;12434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12535:1;12521:16;;:2;:16;;;12513:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12590:38;12611:4;12617:2;12621:6;12590:20;:38::i;:::-;12641:19;12663:9;:15;12673:4;12663:15;;;;;;;;;;;;;;;;12641:37;;12712:6;12697:11;:21;;12689:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12829:6;12815:11;:20;12797:9;:15;12807:4;12797:15;;;;;;;;;;;;;;;:38;;;;13032:6;13015:9;:13;13025:2;13015:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13082:2;13067:26;;13076:4;13067:26;;;13086:6;13067:26;;;;;;:::i;:::-;;;;;;;;13106:37;13126:4;13132:2;13136:6;13106:19;:37::i;:::-;12423:728;12311:840;;;:::o;14319:675::-;14422:1;14403:21;;:7;:21;;;14395:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14475:49;14496:7;14513:1;14517:6;14475:20;:49::i;:::-;14537:22;14562:9;:18;14572:7;14562:18;;;;;;;;;;;;;;;;14537:43;;14617:6;14599:14;:24;;14591:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14736:6;14719:14;:23;14698:9;:18;14708:7;14698:18;;;;;;;;;;;;;;;:44;;;;14853:6;14837:12;;:22;;;;;;;;;;;14914:1;14888:37;;14897:7;14888:37;;;14918:6;14888:37;;;;;;:::i;:::-;;;;;;;;14938:48;14958:7;14975:1;14979:6;14938:19;:48::i;:::-;14384:610;14319:675;;:::o;21615:132::-;21690:12;:10;:12::i;:::-;21679:23;;:7;:5;:7::i;:::-;:23;;;21671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21615:132::o;22717:191::-;22791:16;22810:6;;;;;;;;;;;22791:25;;22836:8;22827:6;;:17;;;;;;;;;;;;;;;;;;22891:8;22860:40;;22881:8;22860:40;;;;;;;;;;;;22780:128;22717:191;:::o;23367:160::-;23485:9;:13;23495:2;23485:13;;;;;;;;;;;;;;;;;;;;;;;;;23484:14;:34;;;;;23503:9;:15;23513:4;23503:15;;;;;;;;;;;;;;;;;;;;;;;;;23502:16;23484:34;23476:43;;;;;;23367:160;;;:::o;17885: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:116::-;6425:21;6440:5;6425:21;:::i;:::-;6418:5;6415:32;6405:60;;6461:1;6458;6451:12;6405:60;6355:116;:::o;6477:133::-;6520:5;6558:6;6545:20;6536:29;;6574:30;6598:5;6574:30;:::i;:::-;6477:133;;;;:::o;6616:468::-;6681:6;6689;6738:2;6726:9;6717:7;6713:23;6709:32;6706:119;;;6744:79;;:::i;:::-;6706:119;6864:1;6889:53;6934:7;6925:6;6914:9;6910:22;6889:53;:::i;:::-;6879:63;;6835:117;6991:2;7017:50;7059:7;7050:6;7039:9;7035:22;7017:50;:::i;:::-;7007:60;;6962:115;6616:468;;;;;:::o;7090:180::-;7138:77;7135:1;7128:88;7235:4;7232:1;7225:15;7259:4;7256:1;7249:15;7276:320;7320:6;7357:1;7351:4;7347:12;7337:22;;7404:1;7398:4;7394:12;7425:18;7415:81;;7481:4;7473:6;7469:17;7459:27;;7415:81;7543:2;7535:6;7532:14;7512:18;7509:38;7506:84;;7562:18;;:::i;:::-;7506:84;7327:269;7276:320;;;:::o;7602:180::-;7650:77;7647:1;7640:88;7747:4;7744:1;7737:15;7771:4;7768:1;7761:15;7788:191;7828:3;7847:20;7865:1;7847:20;:::i;:::-;7842:25;;7881:20;7899:1;7881:20;:::i;:::-;7876:25;;7924:1;7921;7917:9;7910:16;;7945:3;7942:1;7939:10;7936:36;;;7952:18;;:::i;:::-;7936:36;7788:191;;;;:::o;7985:224::-;8125:34;8121:1;8113:6;8109:14;8102:58;8194:7;8189:2;8181:6;8177:15;8170:32;7985:224;:::o;8215:366::-;8357:3;8378:67;8442:2;8437:3;8378:67;:::i;:::-;8371:74;;8454:93;8543:3;8454:93;:::i;:::-;8572:2;8567:3;8563:12;8556:19;;8215:366;;;:::o;8587:419::-;8753:4;8791:2;8780:9;8776:18;8768:26;;8840:9;8834:4;8830:20;8826:1;8815:9;8811:17;8804:47;8868:131;8994:4;8868:131;:::i;:::-;8860:139;;8587:419;;;:::o;9012:225::-;9152:34;9148:1;9140:6;9136:14;9129:58;9221:8;9216:2;9208:6;9204:15;9197:33;9012:225;:::o;9243:366::-;9385:3;9406:67;9470:2;9465:3;9406:67;:::i;:::-;9399:74;;9482:93;9571:3;9482:93;:::i;:::-;9600:2;9595:3;9591:12;9584:19;;9243:366;;;:::o;9615:419::-;9781:4;9819:2;9808:9;9804:18;9796:26;;9868:9;9862:4;9858:20;9854:1;9843:9;9839:17;9832:47;9896:131;10022:4;9896:131;:::i;:::-;9888:139;;9615:419;;;:::o;10040:223::-;10180:34;10176:1;10168:6;10164:14;10157:58;10249:6;10244:2;10236:6;10232:15;10225:31;10040:223;:::o;10269:366::-;10411:3;10432:67;10496:2;10491:3;10432:67;:::i;:::-;10425:74;;10508:93;10597:3;10508:93;:::i;:::-;10626:2;10621:3;10617:12;10610:19;;10269:366;;;:::o;10641:419::-;10807:4;10845:2;10834:9;10830:18;10822:26;;10894:9;10888:4;10884:20;10880:1;10869:9;10865:17;10858:47;10922:131;11048:4;10922:131;:::i;:::-;10914:139;;10641:419;;;:::o;11066:221::-;11206:34;11202:1;11194:6;11190:14;11183:58;11275:4;11270:2;11262:6;11258:15;11251:29;11066:221;:::o;11293:366::-;11435:3;11456:67;11520:2;11515:3;11456:67;:::i;:::-;11449:74;;11532:93;11621:3;11532:93;:::i;:::-;11650:2;11645:3;11641:12;11634:19;;11293:366;;;:::o;11665:419::-;11831:4;11869:2;11858:9;11854:18;11846:26;;11918:9;11912:4;11908:20;11904:1;11893:9;11889:17;11882:47;11946:131;12072:4;11946:131;:::i;:::-;11938:139;;11665:419;;;:::o;12090:179::-;12230:31;12226:1;12218:6;12214:14;12207:55;12090:179;:::o;12275:366::-;12417:3;12438:67;12502:2;12497:3;12438:67;:::i;:::-;12431:74;;12514:93;12603:3;12514:93;:::i;:::-;12632:2;12627:3;12623:12;12616:19;;12275:366;;;:::o;12647:419::-;12813:4;12851:2;12840:9;12836:18;12828:26;;12900:9;12894:4;12890:20;12886:1;12875:9;12871:17;12864:47;12928:131;13054:4;12928:131;:::i;:::-;12920:139;;12647:419;;;:::o;13072:224::-;13212:34;13208:1;13200:6;13196:14;13189:58;13281:7;13276:2;13268:6;13264:15;13257:32;13072:224;:::o;13302:366::-;13444:3;13465:67;13529:2;13524:3;13465:67;:::i;:::-;13458:74;;13541:93;13630:3;13541:93;:::i;:::-;13659:2;13654:3;13650:12;13643:19;;13302:366;;;:::o;13674:419::-;13840:4;13878:2;13867:9;13863:18;13855:26;;13927:9;13921:4;13917:20;13913:1;13902:9;13898:17;13891:47;13955:131;14081:4;13955:131;:::i;:::-;13947:139;;13674:419;;;:::o;14099:222::-;14239:34;14235:1;14227:6;14223:14;14216:58;14308:5;14303:2;14295:6;14291:15;14284:30;14099:222;:::o;14327:366::-;14469:3;14490:67;14554:2;14549:3;14490:67;:::i;:::-;14483:74;;14566:93;14655:3;14566:93;:::i;:::-;14684:2;14679:3;14675:12;14668:19;;14327:366;;;:::o;14699:419::-;14865:4;14903:2;14892:9;14888:18;14880:26;;14952:9;14946:4;14942:20;14938:1;14927:9;14923:17;14916:47;14980:131;15106:4;14980:131;:::i;:::-;14972:139;;14699:419;;;:::o;15124:225::-;15264:34;15260:1;15252:6;15248:14;15241:58;15333:8;15328:2;15320:6;15316:15;15309:33;15124:225;:::o;15355:366::-;15497:3;15518:67;15582:2;15577:3;15518:67;:::i;:::-;15511:74;;15594:93;15683:3;15594:93;:::i;:::-;15712:2;15707:3;15703:12;15696:19;;15355:366;;;:::o;15727:419::-;15893:4;15931:2;15920:9;15916:18;15908:26;;15980:9;15974:4;15970:20;15966:1;15955:9;15951:17;15944:47;16008:131;16134:4;16008:131;:::i;:::-;16000:139;;15727:419;;;:::o;16152:220::-;16292:34;16288:1;16280:6;16276:14;16269:58;16361:3;16356:2;16348:6;16344:15;16337:28;16152:220;:::o;16378:366::-;16520:3;16541:67;16605:2;16600:3;16541:67;:::i;:::-;16534:74;;16617:93;16706:3;16617:93;:::i;:::-;16735:2;16730:3;16726:12;16719:19;;16378:366;;;:::o;16750:419::-;16916:4;16954:2;16943:9;16939:18;16931:26;;17003:9;16997:4;16993:20;16989:1;16978:9;16974:17;16967:47;17031:131;17157:4;17031:131;:::i;:::-;17023:139;;16750:419;;;:::o;17175:221::-;17315:34;17311:1;17303:6;17299:14;17292:58;17384:4;17379:2;17371:6;17367:15;17360:29;17175:221;:::o;17402:366::-;17544:3;17565:67;17629:2;17624:3;17565:67;:::i;:::-;17558:74;;17641:93;17730:3;17641:93;:::i;:::-;17759:2;17754:3;17750:12;17743:19;;17402:366;;;:::o;17774:419::-;17940:4;17978:2;17967:9;17963:18;17955:26;;18027:9;18021:4;18017:20;18013:1;18002:9;17998:17;17991:47;18055:131;18181:4;18055:131;:::i;:::-;18047:139;;17774:419;;;:::o;18199:182::-;18339:34;18335:1;18327:6;18323:14;18316:58;18199:182;:::o;18387:366::-;18529:3;18550:67;18614:2;18609:3;18550:67;:::i;:::-;18543:74;;18626:93;18715:3;18626:93;:::i;:::-;18744:2;18739:3;18735:12;18728:19;;18387:366;;;:::o;18759:419::-;18925:4;18963:2;18952:9;18948:18;18940:26;;19012:9;19006:4;19002:20;18998:1;18987:9;18983:17;18976:47;19040:131;19166:4;19040:131;:::i;:::-;19032:139;;18759:419;;;:::o
Swarm Source
ipfs://e31cad68d85cf3efc906acfdb419ba2a7ea0d1dd0a06219cc26e7c503692c627
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
OP | 100.00% | $3,392.44 | 0.001 | $3.39 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.