Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Name:
GOGGLES
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-18 */ /** *Submitted for verification at ftmscan.com on 2024-10-02 */ // SPDX-License-Identifier: UNLICENSED // THE GOGGLES STAY ON. // SONIC GO FAST. // THIS IS FINANCIAL ADVICE. PRESENTED BY THE CHURCH OF SPECIAL NEEDS GAMBLERS. // GOODNIGHT FANTOM. pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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 (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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}. * * 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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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: contracts/token.sol pragma solidity ^0.8.20; // THE GOGGLES STAY ON. // SONIC GO FAST. // THIS IS FINANCIAL ADVICE. PRESENTED BY THE CHURCH OF SPECIAL NEEDS GAMBLERS. // GOODNIGHT FANTOM. // ONE LAST BANGER contract GOGGLES is ERC20, Ownable(msg.sender) { bool public lubricating = true; address public liquidityPool; // Mint the totalSupply (100 M) to the deployer constructor() ERC20("GOGGLES", "GOGLZ") { _mint(msg.sender, 100000000 * 10 ** 18); } // Function to set lubricating state function setLubricating(bool _state) external onlyOwner { lubricating = _state; } // Define the LP address to enable trading! function setLiquidityPool(address _liquidityPool) external onlyOwner { liquidityPool = _liquidityPool; } // Override _update function to include lubricating logic (previously _beforeTokenTransfer) function _update( address from, address to, uint256 amount ) internal virtual override { super._update(from, to, amount); // If liquidityPool is address(0) we've not yet enabled trading. Liquidity Loading.... if(liquidityPool == address(0)) { require(from == owner() || to == owner(), "Patience - Trading Not Started Yet!"); return; } // Allow deployer (owner) to send/receive any amount and the liquidityPool to receive any amount. // This allows for loading of the LP, and for people to sell tokens into the LP whilst lubrication in progress. if (lubricating && from != owner() && to != liquidityPool) { // Require that a receiving wallet will not hold more than 1% of supply after a transfer whilst lubrication is in effect require( balanceOf(to) <= totalSupply() / 100, "Just getting warmed up, limit of 1% of GOGGLES until Lubrication is complete!" ); } } // Renounce the contract and pass ownership to address(0) to lock the contract forever more. function renounceTokenOwnership() public onlyOwner { renounceOwnership(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"value","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":[],"name":"liquidityPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lubricating","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"renounceTokenOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityPool","type":"address"}],"name":"setLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setLubricating","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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
60806040526001600560146101000a81548160ff0219169083151502179055503480156200002b575f80fd5b50336040518060400160405280600781526020017f474f47474c4553000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f474f474c5a0000000000000000000000000000000000000000000000000000008152508160039081620000aa919062000a18565b508060049081620000bc919062000a18565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000132575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000129919062000b3f565b60405180910390fd5b62000143816200016760201b60201c565b5062000161336a52b7d2dcc80cd2e40000006200022a60201b60201c565b62000dea565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200029d575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000294919062000b3f565b60405180910390fd5b620002b05f8383620002b460201b60201c565b5050565b620002c78383836200051a60201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620003e8576200032c6200073e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620003a05750620003716200073e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b620003e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d99062000bde565b60405180910390fd5b62000515565b600560149054906101000a900460ff168015620004405750620004106200073e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156200049a575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562000514576064620004b26200076660201b60201c565b620004be919062000c58565b620004cf836200076f60201b60201c565b111562000513576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050a9062000d29565b60405180910390fd5b5b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200056e578060025f82825462000561919062000d49565b925050819055506200063f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620005fa578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620005f19392919062000d94565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000688578060025f8282540392505081905550620006d2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000731919062000dcf565b60405180910390a3505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f600254905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200083057607f821691505b602082108103620008465762000845620007eb565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008aa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200086d565b620008b686836200086d565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000900620008fa620008f484620008ce565b620008d7565b620008ce565b9050919050565b5f819050919050565b6200091b83620008e0565b620009336200092a8262000907565b84845462000879565b825550505050565b5f90565b620009496200093b565b6200095681848462000910565b505050565b5b818110156200097d57620009715f826200093f565b6001810190506200095c565b5050565b601f821115620009cc5762000996816200084c565b620009a1846200085e565b81016020851015620009b1578190505b620009c9620009c0856200085e565b8301826200095b565b50505b505050565b5f82821c905092915050565b5f620009ee5f1984600802620009d1565b1980831691505092915050565b5f62000a088383620009dd565b9150826002028217905092915050565b62000a2382620007b4565b67ffffffffffffffff81111562000a3f5762000a3e620007be565b5b62000a4b825462000818565b62000a5882828562000981565b5f60209050601f83116001811462000a8e575f841562000a79578287015190505b62000a858582620009fb565b86555062000af4565b601f19841662000a9e866200084c565b5f5b8281101562000ac75784890151825560018201915060208501945060208101905062000aa0565b8683101562000ae7578489015162000ae3601f891682620009dd565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000b278262000afc565b9050919050565b62000b398162000b1b565b82525050565b5f60208201905062000b545f83018462000b2e565b92915050565b5f82825260208201905092915050565b7f50617469656e6365202d2054726164696e67204e6f74205374617274656420595f8201527f6574210000000000000000000000000000000000000000000000000000000000602082015250565b5f62000bc660238362000b5a565b915062000bd38262000b6a565b604082019050919050565b5f6020820190508181035f83015262000bf78162000bb8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000c6482620008ce565b915062000c7183620008ce565b92508262000c845762000c8362000bfe565b5b828204905092915050565b7f4a7573742067657474696e67207761726d65642075702c206c696d6974206f665f8201527f203125206f6620474f47474c455320756e74696c204c75627269636174696f6e60208201527f20697320636f6d706c6574652100000000000000000000000000000000000000604082015250565b5f62000d11604d8362000b5a565b915062000d1e8262000c8f565b606082019050919050565b5f6020820190508181035f83015262000d428162000d03565b9050919050565b5f62000d5582620008ce565b915062000d6283620008ce565b925082820190508082111562000d7d5762000d7c62000c2b565b5b92915050565b62000d8e81620008ce565b82525050565b5f60608201905062000da95f83018662000b2e565b62000db8602083018562000d83565b62000dc7604083018462000d83565b949350505050565b5f60208201905062000de45f83018462000d83565b92915050565b6116148062000df85f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c806370a08231116100a057806395d89b411161006f57806395d89b4114610293578063a9059cbb146102b1578063dd62ed3e146102e1578063e14f08d514610311578063f2fde38b1461031b57610109565b806370a082311461021d578063715018a61461024d5780638da5cb5b1461025757806395afda0c1461027557610109565b806323b872dd116100dc57806323b872dd14610195578063313ce567146101c55780634bc3e7db146101e3578063665a11ca146101ff57610109565b8063018770201461010d57806306fdde0314610129578063095ea7b31461014757806318160ddd14610177575b5f80fd5b6101276004803603810190610122919061106d565b610337565b005b610131610382565b60405161013e9190611122565b60405180910390f35b610161600480360381019061015c9190611175565b610412565b60405161016e91906111cd565b60405180910390f35b61017f610434565b60405161018c91906111f5565b60405180910390f35b6101af60048036038101906101aa919061120e565b61043d565b6040516101bc91906111cd565b60405180910390f35b6101cd61046b565b6040516101da9190611279565b60405180910390f35b6101fd60048036038101906101f891906112bc565b610473565b005b610207610498565b60405161021491906112f6565b60405180910390f35b6102376004803603810190610232919061106d565b6104bd565b60405161024491906111f5565b60405180910390f35b610255610502565b005b61025f610515565b60405161026c91906112f6565b60405180910390f35b61027d61053d565b60405161028a91906111cd565b60405180910390f35b61029b610550565b6040516102a89190611122565b60405180910390f35b6102cb60048036038101906102c69190611175565b6105e0565b6040516102d891906111cd565b60405180910390f35b6102fb60048036038101906102f6919061130f565b610602565b60405161030891906111f5565b60405180910390f35b610319610684565b005b6103356004803603810190610330919061106d565b610696565b005b61033f61071a565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600380546103919061137a565b80601f01602080910402602001604051908101604052809291908181526020018280546103bd9061137a565b80156104085780601f106103df57610100808354040283529160200191610408565b820191905f5260205f20905b8154815290600101906020018083116103eb57829003601f168201915b5050505050905090565b5f8061041c6107a1565b90506104298185856107a8565b600191505092915050565b5f600254905090565b5f806104476107a1565b90506104548582856107ba565b61045f85858561084c565b60019150509392505050565b5f6012905090565b61047b61071a565b80600560146101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61050a61071a565b6105135f61093c565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560149054906101000a900460ff1681565b60606004805461055f9061137a565b80601f016020809104026020016040519081016040528092919081815260200182805461058b9061137a565b80156105d65780601f106105ad576101008083540402835291602001916105d6565b820191905f5260205f20905b8154815290600101906020018083116105b957829003601f168201915b5050505050905090565b5f806105ea6107a1565b90506105f781858561084c565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61068c61071a565b610694610502565b565b61069e61071a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361070e575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161070591906112f6565b60405180910390fd5b6107178161093c565b50565b6107226107a1565b73ffffffffffffffffffffffffffffffffffffffff16610740610515565b73ffffffffffffffffffffffffffffffffffffffff161461079f576107636107a1565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161079691906112f6565b60405180910390fd5b565b5f33905090565b6107b583838360016109ff565b505050565b5f6107c58484610602565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108465781811015610837578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161082e939291906113aa565b60405180910390fd5b61084584848484035f6109ff565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108bc575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108b391906112f6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361092c575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161092391906112f6565b60405180910390fd5b610937838383610bce565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a6f575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a6691906112f6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adf575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ad691906112f6565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610bc8578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bbf91906111f5565b60405180910390a35b50505050565b610bd9838383610df6565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ce457610c35610515565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ca05750610c71610515565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd69061144f565b60405180910390fd5b610df1565b600560149054906101000a900460ff168015610d335750610d03610515565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610d8c575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610df0576064610d9b610434565b610da591906114c7565b610dae836104bd565b1115610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de69061158d565b60405180910390fd5b5b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e46578060025f828254610e3a91906115ab565b92505081905550610f14565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ecf578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ec6939291906113aa565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5b578060025f8282540392505081905550610fa5565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161100291906111f5565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61103c82611013565b9050919050565b61104c81611032565b8114611056575f80fd5b50565b5f8135905061106781611043565b92915050565b5f602082840312156110825761108161100f565b5b5f61108f84828501611059565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110cf5780820151818401526020810190506110b4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110f482611098565b6110fe81856110a2565b935061110e8185602086016110b2565b611117816110da565b840191505092915050565b5f6020820190508181035f83015261113a81846110ea565b905092915050565b5f819050919050565b61115481611142565b811461115e575f80fd5b50565b5f8135905061116f8161114b565b92915050565b5f806040838503121561118b5761118a61100f565b5b5f61119885828601611059565b92505060206111a985828601611161565b9150509250929050565b5f8115159050919050565b6111c7816111b3565b82525050565b5f6020820190506111e05f8301846111be565b92915050565b6111ef81611142565b82525050565b5f6020820190506112085f8301846111e6565b92915050565b5f805f606084860312156112255761122461100f565b5b5f61123286828701611059565b935050602061124386828701611059565b925050604061125486828701611161565b9150509250925092565b5f60ff82169050919050565b6112738161125e565b82525050565b5f60208201905061128c5f83018461126a565b92915050565b61129b816111b3565b81146112a5575f80fd5b50565b5f813590506112b681611292565b92915050565b5f602082840312156112d1576112d061100f565b5b5f6112de848285016112a8565b91505092915050565b6112f081611032565b82525050565b5f6020820190506113095f8301846112e7565b92915050565b5f80604083850312156113255761132461100f565b5b5f61133285828601611059565b925050602061134385828601611059565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061139157607f821691505b6020821081036113a4576113a361134d565b5b50919050565b5f6060820190506113bd5f8301866112e7565b6113ca60208301856111e6565b6113d760408301846111e6565b949350505050565b7f50617469656e6365202d2054726164696e67204e6f74205374617274656420595f8201527f6574210000000000000000000000000000000000000000000000000000000000602082015250565b5f6114396023836110a2565b9150611444826113df565b604082019050919050565b5f6020820190508181035f8301526114668161142d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114d182611142565b91506114dc83611142565b9250826114ec576114eb61146d565b5b828204905092915050565b7f4a7573742067657474696e67207761726d65642075702c206c696d6974206f665f8201527f203125206f6620474f47474c455320756e74696c204c75627269636174696f6e60208201527f20697320636f6d706c6574652100000000000000000000000000000000000000604082015250565b5f611577604d836110a2565b9150611582826114f7565b606082019050919050565b5f6020820190508181035f8301526115a48161156b565b9050919050565b5f6115b582611142565b91506115c083611142565b92508282019050808211156115d8576115d761149a565b5b9291505056fea2646970667358221220c144004401e332fe20e8c52ca1c7f53b67131bbaa7cdf061c4b0f44b87b9886b64736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c806370a08231116100a057806395d89b411161006f57806395d89b4114610293578063a9059cbb146102b1578063dd62ed3e146102e1578063e14f08d514610311578063f2fde38b1461031b57610109565b806370a082311461021d578063715018a61461024d5780638da5cb5b1461025757806395afda0c1461027557610109565b806323b872dd116100dc57806323b872dd14610195578063313ce567146101c55780634bc3e7db146101e3578063665a11ca146101ff57610109565b8063018770201461010d57806306fdde0314610129578063095ea7b31461014757806318160ddd14610177575b5f80fd5b6101276004803603810190610122919061106d565b610337565b005b610131610382565b60405161013e9190611122565b60405180910390f35b610161600480360381019061015c9190611175565b610412565b60405161016e91906111cd565b60405180910390f35b61017f610434565b60405161018c91906111f5565b60405180910390f35b6101af60048036038101906101aa919061120e565b61043d565b6040516101bc91906111cd565b60405180910390f35b6101cd61046b565b6040516101da9190611279565b60405180910390f35b6101fd60048036038101906101f891906112bc565b610473565b005b610207610498565b60405161021491906112f6565b60405180910390f35b6102376004803603810190610232919061106d565b6104bd565b60405161024491906111f5565b60405180910390f35b610255610502565b005b61025f610515565b60405161026c91906112f6565b60405180910390f35b61027d61053d565b60405161028a91906111cd565b60405180910390f35b61029b610550565b6040516102a89190611122565b60405180910390f35b6102cb60048036038101906102c69190611175565b6105e0565b6040516102d891906111cd565b60405180910390f35b6102fb60048036038101906102f6919061130f565b610602565b60405161030891906111f5565b60405180910390f35b610319610684565b005b6103356004803603810190610330919061106d565b610696565b005b61033f61071a565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600380546103919061137a565b80601f01602080910402602001604051908101604052809291908181526020018280546103bd9061137a565b80156104085780601f106103df57610100808354040283529160200191610408565b820191905f5260205f20905b8154815290600101906020018083116103eb57829003601f168201915b5050505050905090565b5f8061041c6107a1565b90506104298185856107a8565b600191505092915050565b5f600254905090565b5f806104476107a1565b90506104548582856107ba565b61045f85858561084c565b60019150509392505050565b5f6012905090565b61047b61071a565b80600560146101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61050a61071a565b6105135f61093c565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560149054906101000a900460ff1681565b60606004805461055f9061137a565b80601f016020809104026020016040519081016040528092919081815260200182805461058b9061137a565b80156105d65780601f106105ad576101008083540402835291602001916105d6565b820191905f5260205f20905b8154815290600101906020018083116105b957829003601f168201915b5050505050905090565b5f806105ea6107a1565b90506105f781858561084c565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61068c61071a565b610694610502565b565b61069e61071a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361070e575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161070591906112f6565b60405180910390fd5b6107178161093c565b50565b6107226107a1565b73ffffffffffffffffffffffffffffffffffffffff16610740610515565b73ffffffffffffffffffffffffffffffffffffffff161461079f576107636107a1565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161079691906112f6565b60405180910390fd5b565b5f33905090565b6107b583838360016109ff565b505050565b5f6107c58484610602565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108465781811015610837578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161082e939291906113aa565b60405180910390fd5b61084584848484035f6109ff565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108bc575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108b391906112f6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361092c575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161092391906112f6565b60405180910390fd5b610937838383610bce565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a6f575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a6691906112f6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adf575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ad691906112f6565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610bc8578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bbf91906111f5565b60405180910390a35b50505050565b610bd9838383610df6565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ce457610c35610515565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ca05750610c71610515565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd69061144f565b60405180910390fd5b610df1565b600560149054906101000a900460ff168015610d335750610d03610515565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610d8c575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610df0576064610d9b610434565b610da591906114c7565b610dae836104bd565b1115610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de69061158d565b60405180910390fd5b5b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e46578060025f828254610e3a91906115ab565b92505081905550610f14565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ecf578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ec6939291906113aa565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5b578060025f8282540392505081905550610fa5565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161100291906111f5565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61103c82611013565b9050919050565b61104c81611032565b8114611056575f80fd5b50565b5f8135905061106781611043565b92915050565b5f602082840312156110825761108161100f565b5b5f61108f84828501611059565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110cf5780820151818401526020810190506110b4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110f482611098565b6110fe81856110a2565b935061110e8185602086016110b2565b611117816110da565b840191505092915050565b5f6020820190508181035f83015261113a81846110ea565b905092915050565b5f819050919050565b61115481611142565b811461115e575f80fd5b50565b5f8135905061116f8161114b565b92915050565b5f806040838503121561118b5761118a61100f565b5b5f61119885828601611059565b92505060206111a985828601611161565b9150509250929050565b5f8115159050919050565b6111c7816111b3565b82525050565b5f6020820190506111e05f8301846111be565b92915050565b6111ef81611142565b82525050565b5f6020820190506112085f8301846111e6565b92915050565b5f805f606084860312156112255761122461100f565b5b5f61123286828701611059565b935050602061124386828701611059565b925050604061125486828701611161565b9150509250925092565b5f60ff82169050919050565b6112738161125e565b82525050565b5f60208201905061128c5f83018461126a565b92915050565b61129b816111b3565b81146112a5575f80fd5b50565b5f813590506112b681611292565b92915050565b5f602082840312156112d1576112d061100f565b5b5f6112de848285016112a8565b91505092915050565b6112f081611032565b82525050565b5f6020820190506113095f8301846112e7565b92915050565b5f80604083850312156113255761132461100f565b5b5f61133285828601611059565b925050602061134385828601611059565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061139157607f821691505b6020821081036113a4576113a361134d565b5b50919050565b5f6060820190506113bd5f8301866112e7565b6113ca60208301856111e6565b6113d760408301846111e6565b949350505050565b7f50617469656e6365202d2054726164696e67204e6f74205374617274656420595f8201527f6574210000000000000000000000000000000000000000000000000000000000602082015250565b5f6114396023836110a2565b9150611444826113df565b604082019050919050565b5f6020820190508181035f8301526114668161142d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114d182611142565b91506114dc83611142565b9250826114ec576114eb61146d565b5b828204905092915050565b7f4a7573742067657474696e67207761726d65642075702c206c696d6974206f665f8201527f203125206f6620474f47474c455320756e74696c204c75627269636174696f6e60208201527f20697320636f6d706c6574652100000000000000000000000000000000000000604082015250565b5f611577604d836110a2565b9150611582826114f7565b606082019050919050565b5f6020820190508181035f8301526115a48161156b565b9050919050565b5f6115b582611142565b91506115c083611142565b92508282019050808211156115d8576115d761149a565b5b9291505056fea2646970667358221220c144004401e332fe20e8c52ca1c7f53b67131bbaa7cdf061c4b0f44b87b9886b64736f6c63430008140033
Deployed Bytecode Sourcemap
26169:1973:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26655:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13419:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15712:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14521:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16480:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14372:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26503:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26265:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14683:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25094:103;;;:::i;:::-;;24419:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26228:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13629:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15006:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15251:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28050:89;;;:::i;:::-;;25352:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26655:118;24305:13;:11;:13::i;:::-;26751:14:::1;26735:13;;:30;;;;;;;;;;;;;;;;;;26655:118:::0;:::o;13419:91::-;13464:13;13497:5;13490:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13419:91;:::o;15712:190::-;15785:4;15802:13;15818:12;:10;:12::i;:::-;15802:28;;15841:31;15850:5;15857:7;15866:5;15841:8;:31::i;:::-;15890:4;15883:11;;;15712:190;;;;:::o;14521:99::-;14573:7;14600:12;;14593:19;;14521:99;:::o;16480:249::-;16567:4;16584:15;16602:12;:10;:12::i;:::-;16584:30;;16625:37;16641:4;16647:7;16656:5;16625:15;:37::i;:::-;16673:26;16683:4;16689:2;16693:5;16673:9;:26::i;:::-;16717:4;16710:11;;;16480:249;;;;;:::o;14372:84::-;14421:5;14446:2;14439:9;;14372:84;:::o;26503:95::-;24305:13;:11;:13::i;:::-;26584:6:::1;26570:11;;:20;;;;;;;;;;;;;;;;;;26503:95:::0;:::o;26265:28::-;;;;;;;;;;;;;:::o;14683:118::-;14748:7;14775:9;:18;14785:7;14775:18;;;;;;;;;;;;;;;;14768:25;;14683:118;;;:::o;25094:103::-;24305:13;:11;:13::i;:::-;25159:30:::1;25186:1;25159:18;:30::i;:::-;25094:103::o:0;24419:87::-;24465:7;24492:6;;;;;;;;;;;24485:13;;24419:87;:::o;26228:30::-;;;;;;;;;;;;;:::o;13629:95::-;13676:13;13709:7;13702:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13629:95;:::o;15006:182::-;15075:4;15092:13;15108:12;:10;:12::i;:::-;15092:28;;15131:27;15141:5;15148:2;15152:5;15131:9;:27::i;:::-;15176:4;15169:11;;;15006:182;;;;:::o;15251:142::-;15331:7;15358:11;:18;15370:5;15358:18;;;;;;;;;;;;;;;:27;15377:7;15358:27;;;;;;;;;;;;;;;;15351:34;;15251:142;;;;:::o;28050:89::-;24305:13;:11;:13::i;:::-;28112:19:::1;:17;:19::i;:::-;28050:89::o:0;25352:220::-;24305:13;:11;:13::i;:::-;25457:1:::1;25437:22;;:8;:22;;::::0;25433:93:::1;;25511:1;25483:31;;;;;;;;;;;:::i;:::-;;;;;;;;25433:93;25536:28;25555:8;25536:18;:28::i;:::-;25352:220:::0;:::o;24584:166::-;24655:12;:10;:12::i;:::-;24644:23;;:7;:5;:7::i;:::-;:23;;;24640:103;;24718:12;:10;:12::i;:::-;24691:40;;;;;;;;;;;:::i;:::-;;;;;;;;24640:103;24584:166::o;4424:98::-;4477:7;4504:10;4497:17;;4424:98;:::o;20539:130::-;20624:37;20633:5;20640:7;20649:5;20656:4;20624:8;:37::i;:::-;20539:130;;;:::o;22255:487::-;22355:24;22382:25;22392:5;22399:7;22382:9;:25::i;:::-;22355:52;;22442:17;22422:16;:37;22418:317;;22499:5;22480:16;:24;22476:132;;;22559:7;22568:16;22586:5;22532:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22476:132;22651:57;22660:5;22667:7;22695:5;22676:16;:24;22702:5;22651:8;:57::i;:::-;22418:317;22344:398;22255:487;;;:::o;17114:308::-;17214:1;17198:18;;:4;:18;;;17194:88;;17267:1;17240:30;;;;;;;;;;;:::i;:::-;;;;;;;;17194:88;17310:1;17296:16;;:2;:16;;;17292:88;;17365:1;17336:32;;;;;;;;;;;:::i;:::-;;;;;;;;17292:88;17390:24;17398:4;17404:2;17408:5;17390:7;:24::i;:::-;17114:308;;;:::o;25732:191::-;25806:16;25825:6;;;;;;;;;;;25806:25;;25851:8;25842:6;;:17;;;;;;;;;;;;;;;;;;25906:8;25875:40;;25896:8;25875:40;;;;;;;;;;;;25795:128;25732:191;:::o;21520:443::-;21650:1;21633:19;;:5;:19;;;21629:91;;21705:1;21676:32;;;;;;;;;;;:::i;:::-;;;;;;;;21629:91;21753:1;21734:21;;:7;:21;;;21730:92;;21807:1;21779:31;;;;;;;;;;;:::i;:::-;;;;;;;;21730:92;21862:5;21832:11;:18;21844:5;21832:18;;;;;;;;;;;;;;;:27;21851:7;21832:27;;;;;;;;;;;;;;;:35;;;;21882:9;21878:78;;;21929:7;21913:31;;21922:5;21913:31;;;21938:5;21913:31;;;;;;:::i;:::-;;;;;;;;21878:78;21520:443;;;;:::o;26878:1068::-;27008:31;27022:4;27028:2;27032:6;27008:13;:31::i;:::-;27174:1;27149:27;;:13;;;;;;;;;;;:27;;;27146:160;;27209:7;:5;:7::i;:::-;27201:15;;:4;:15;;;:32;;;;27226:7;:5;:7::i;:::-;27220:13;;:2;:13;;;27201:32;27193:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;27288:7;;27146:160;27548:11;;;;;;;;;;;:30;;;;;27571:7;:5;:7::i;:::-;27563:15;;:4;:15;;;;27548:30;:53;;;;;27588:13;;;;;;;;;;;27582:19;;:2;:19;;;;27548:53;27544:395;;;27811:3;27795:13;:11;:13::i;:::-;:19;;;;:::i;:::-;27778:13;27788:2;27778:9;:13::i;:::-;:36;;27752:175;;;;;;;;;;;;:::i;:::-;;;;;;;;;27544:395;26878:1068;;;;:::o;17746:1135::-;17852:1;17836:18;;:4;:18;;;17832:552;;17990:5;17974:12;;:21;;;;;;;:::i;:::-;;;;;;;;17832:552;;;18028:19;18050:9;:15;18060:4;18050:15;;;;;;;;;;;;;;;;18028:37;;18098:5;18084:11;:19;18080:117;;;18156:4;18162:11;18175:5;18131:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;18080:117;18352:5;18338:11;:19;18320:9;:15;18330:4;18320:15;;;;;;;;;;;;;;;:37;;;;18013:371;17832:552;18414:1;18400:16;;:2;:16;;;18396:435;;18582:5;18566:12;;:21;;;;;;;;;;;18396:435;;;18799:5;18782:9;:13;18792:2;18782:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18396:435;18863:2;18848:25;;18857:4;18848:25;;;18867:5;18848:25;;;;;;:::i;:::-;;;;;;;;17746:1135;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:99::-;1228:6;1262:5;1256:12;1246:22;;1176:99;;;:::o;1281:169::-;1365:11;1399:6;1394:3;1387:19;1439:4;1434:3;1430:14;1415:29;;1281:169;;;;:::o;1456:246::-;1537:1;1547:113;1561:6;1558:1;1555:13;1547:113;;;1646:1;1641:3;1637:11;1631:18;1627:1;1622:3;1618:11;1611:39;1583:2;1580:1;1576:10;1571:15;;1547:113;;;1694:1;1685:6;1680:3;1676:16;1669:27;1518:184;1456:246;;;:::o;1708:102::-;1749:6;1800:2;1796:7;1791:2;1784:5;1780:14;1776:28;1766:38;;1708:102;;;:::o;1816:377::-;1904:3;1932:39;1965:5;1932:39;:::i;:::-;1987:71;2051:6;2046:3;1987:71;:::i;:::-;1980:78;;2067:65;2125:6;2120:3;2113:4;2106:5;2102:16;2067:65;:::i;:::-;2157:29;2179:6;2157:29;:::i;:::-;2152:3;2148:39;2141:46;;1908:285;1816:377;;;;:::o;2199:313::-;2312:4;2350:2;2339:9;2335:18;2327:26;;2399:9;2393:4;2389:20;2385:1;2374:9;2370:17;2363:47;2427:78;2500:4;2491:6;2427:78;:::i;:::-;2419:86;;2199:313;;;;:::o;2518:77::-;2555:7;2584:5;2573:16;;2518:77;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:116::-;5258:21;5273:5;5258:21;:::i;:::-;5251:5;5248:32;5238:60;;5294:1;5291;5284:12;5238:60;5188:116;:::o;5310:133::-;5353:5;5391:6;5378:20;5369:29;;5407:30;5431:5;5407:30;:::i;:::-;5310:133;;;;:::o;5449:323::-;5505:6;5554:2;5542:9;5533:7;5529:23;5525:32;5522:119;;;5560:79;;:::i;:::-;5522:119;5680:1;5705:50;5747:7;5738:6;5727:9;5723:22;5705:50;:::i;:::-;5695:60;;5651:114;5449:323;;;;:::o;5778:118::-;5865:24;5883:5;5865:24;:::i;:::-;5860:3;5853:37;5778:118;;:::o;5902:222::-;5995:4;6033:2;6022:9;6018:18;6010:26;;6046:71;6114:1;6103:9;6099:17;6090:6;6046:71;:::i;:::-;5902:222;;;;:::o;6130:474::-;6198:6;6206;6255:2;6243:9;6234:7;6230:23;6226:32;6223:119;;;6261:79;;:::i;:::-;6223:119;6381:1;6406:53;6451:7;6442:6;6431:9;6427:22;6406:53;:::i;:::-;6396:63;;6352:117;6508:2;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6479:118;6130:474;;;;;:::o;6610:180::-;6658:77;6655:1;6648:88;6755:4;6752:1;6745:15;6779:4;6776:1;6769:15;6796:320;6840:6;6877:1;6871:4;6867:12;6857:22;;6924:1;6918:4;6914:12;6945:18;6935:81;;7001:4;6993:6;6989:17;6979:27;;6935:81;7063:2;7055:6;7052:14;7032:18;7029:38;7026:84;;7082:18;;:::i;:::-;7026:84;6847:269;6796:320;;;:::o;7122:442::-;7271:4;7309:2;7298:9;7294:18;7286:26;;7322:71;7390:1;7379:9;7375:17;7366:6;7322:71;:::i;:::-;7403:72;7471:2;7460:9;7456:18;7447:6;7403:72;:::i;:::-;7485;7553:2;7542:9;7538:18;7529:6;7485:72;:::i;:::-;7122:442;;;;;;:::o;7570:222::-;7710:34;7706:1;7698:6;7694:14;7687:58;7779:5;7774:2;7766:6;7762:15;7755:30;7570:222;:::o;7798:366::-;7940:3;7961:67;8025:2;8020:3;7961:67;:::i;:::-;7954:74;;8037:93;8126:3;8037:93;:::i;:::-;8155:2;8150:3;8146:12;8139:19;;7798:366;;;:::o;8170:419::-;8336:4;8374:2;8363:9;8359:18;8351:26;;8423:9;8417:4;8413:20;8409:1;8398:9;8394:17;8387:47;8451:131;8577:4;8451:131;:::i;:::-;8443:139;;8170:419;;;:::o;8595:180::-;8643:77;8640:1;8633:88;8740:4;8737:1;8730:15;8764:4;8761:1;8754:15;8781:180;8829:77;8826:1;8819:88;8926:4;8923:1;8916:15;8950:4;8947:1;8940:15;8967:185;9007:1;9024:20;9042:1;9024:20;:::i;:::-;9019:25;;9058:20;9076:1;9058:20;:::i;:::-;9053:25;;9097:1;9087:35;;9102:18;;:::i;:::-;9087:35;9144:1;9141;9137:9;9132:14;;8967:185;;;;:::o;9158:301::-;9298:34;9294:1;9286:6;9282:14;9275:58;9367:34;9362:2;9354:6;9350:15;9343:59;9436:15;9431:2;9423:6;9419:15;9412:40;9158:301;:::o;9465:366::-;9607:3;9628:67;9692:2;9687:3;9628:67;:::i;:::-;9621:74;;9704:93;9793:3;9704:93;:::i;:::-;9822:2;9817:3;9813:12;9806:19;;9465:366;;;:::o;9837:419::-;10003:4;10041:2;10030:9;10026:18;10018:26;;10090:9;10084:4;10080:20;10076:1;10065:9;10061:17;10054:47;10118:131;10244:4;10118:131;:::i;:::-;10110:139;;9837:419;;;:::o;10262:191::-;10302:3;10321:20;10339:1;10321:20;:::i;:::-;10316:25;;10355:20;10373:1;10355:20;:::i;:::-;10350:25;;10398:1;10395;10391:9;10384:16;;10419:3;10416:1;10413:10;10410:36;;;10426:18;;:::i;:::-;10410:36;10262:191;;;;:::o
Swarm Source
ipfs://c144004401e332fe20e8c52ca1c7f53b67131bbaa7cdf061c4b0f44b87b9886b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.