ETH Price: $2,625.23 (+1.35%)

Token

echibi (chib)
 

Overview

Max Total Supply

713 chib

Holders

180

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
informix.eth
Balance
4 chib
0x3AA4d7CcE8C76d3CfFC886E57F01740E382A14f6
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:
echibi

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-08
*/

// File: @openzeppelin/contracts/utils/Context.sol
// File: @openzeppelin/contracts/introspection/IERC165.sol
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol
// File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// File: @openzeppelin/contracts/introspection/ERC165.sol
// File: @openzeppelin/contracts/utils/Address.sol
// File: @openzeppelin/contracts/utils/EnumerableSet.sol
// File: @openzeppelin/contracts/utils/EnumerableMap.sol
// File: @openzeppelin/contracts/utils/Strings.sol
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// File: @openzeppelin/contracts/access/Ownable.sol


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *`
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}


pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}


pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

pragma solidity ^0.8.0;



/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

pragma solidity ^0.8.0;


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC721).interfaceId
            || interfaceId == type(IERC721Metadata).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

pragma solidity ^0.8.0;


contract echibi is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI;
    uint256 private _reserved = 150;
    uint256 private _price = 0.04 ether;
    bool public _paused = true;
    bool public _preSaleIsActive = false;

    // withdraw addresses
    address t1 = 0x021F7a58649dB0b715401eb3a8b1353A667097Bc;


    constructor(string memory baseURI) ERC721("echibi", "chib")  {
        setBaseURI(baseURI);
    }

    function mintChibi(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !_paused,                              "Sale paused" );
        require( num < 11,                              "You can mint 10 chibis at a time" );
        require( supply + num < 10000 - _reserved,      "Exceeds chibi supply!" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
    
    function preSaleMint(uint256 num) public payable {
        uint256 supply = totalSupply();
    
        require(_preSaleIsActive,                   "presale_not_active");
        require( num < 11,                          "10 chibi mint max!");
        require(balanceOf(msg.sender) < 11,         "presale_wallet_limit_met");
        require(supply < 1500,                       "max_token_supply_exceeded");
        require(msg.value >= _price * num,                "insufficient_payment_value");
    
        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }
    
    // Mint value change if required.
    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _reserved, "No chibis left to give" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        _reserved -= _amount;
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }
    
    function preSaleSwitch(bool val) public onlyOwner {
    _preSaleIsActive = val;
    }


    function withdrawAll() public payable onlyOwner {
        uint256 _balance = address(this).balance;
        require(payable(t1).send(_balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintChibi","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"preSaleSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526096600c55668e1bc9bf040000600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff02191690831515021790555073021f7a58649db0b715401eb3a8b1353a667097bc600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000ac57600080fd5b5060405162004d9f38038062004d9f8339818101604052810190620000d291906200043a565b6040518060400160405280600681526020017f65636869626900000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f636869620000000000000000000000000000000000000000000000000000000081525081600090805190602001906200015692919062000318565b5080600190805190602001906200016f92919062000318565b5050506000620001846200023b60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000234816200024360201b60201c565b5062000672565b600033905090565b620002536200023b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000279620002ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c990620004a6565b60405180910390fd5b80600b9080519060200190620002ea92919062000318565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000326906200056e565b90600052602060002090601f0160209004810192826200034a576000855562000396565b82601f106200036557805160ff191683800117855562000396565b8280016001018555821562000396579182015b828111156200039557825182559160200191906001019062000378565b5b509050620003a59190620003a9565b5090565b5b80821115620003c4576000816000905550600101620003aa565b5090565b6000620003df620003d984620004f1565b620004c8565b905082815260208101848484011115620003f857600080fd5b6200040584828562000538565b509392505050565b600082601f8301126200041f57600080fd5b815162000431848260208601620003c8565b91505092915050565b6000602082840312156200044d57600080fd5b600082015167ffffffffffffffff8111156200046857600080fd5b62000476848285016200040d565b91505092915050565b60006200048e60208362000527565b91506200049b8262000649565b602082019050919050565b60006020820190508181036000830152620004c1816200047f565b9050919050565b6000620004d4620004e7565b9050620004e28282620005a4565b919050565b6000604051905090565b600067ffffffffffffffff8211156200050f576200050e62000609565b5b6200051a8262000638565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005585780820151818401526020810190506200053b565b8381111562000568576000848401525b50505050565b600060028204905060018216806200058757607f821691505b602082108114156200059e576200059d620005da565b5b50919050565b620005af8262000638565b810181811067ffffffffffffffff82111715620005d157620005d062000609565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61471d80620006826000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063a22cb46511610095578063d8c7a79711610064578063d8c7a7971461069e578063e985e9c5146106c9578063eb7d6d2114610706578063f2fde38b14610722576101d8565b8063a22cb465146105e6578063b88d4fde1461060f578063c87b56dd14610638578063ca80014414610675576101d8565b80638da5cb5b116100d15780638da5cb5b1461053c57806391b7f5ed1461056757806395d89b411461059057806398d5fdca146105bb576101d8565b806370a08231146104c2578063715018a6146104ff5780637835c63514610516578063853828b614610532576101d8565b806323b872dd1161017a578063438b630011610149578063438b6300146103e25780634f6ccce71461041f57806355f804b31461045c5780636352211e14610485576101d8565b806323b872dd1461032a578063286e4d0c146103535780632f745c591461037c57806342842e0e146103b9576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab57806316c61ccc146102d457806318160ddd146102ff576101d8565b806301ffc9a7146101dd57806302329a291461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613119565b61074b565b60405161021191906137ab565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c91906130f0565b6107c5565b005b34801561024f57600080fd5b5061025861085e565b60405161026591906137c6565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906131ac565b6108f0565b6040516102a29190613722565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd91906130b4565b610975565b005b3480156102e057600080fd5b506102e9610a8d565b6040516102f691906137ab565b60405180910390f35b34801561030b57600080fd5b50610314610aa0565b6040516103219190613b68565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612fae565b610aad565b005b34801561035f57600080fd5b5061037a600480360381019061037591906130f0565b610b0d565b005b34801561038857600080fd5b506103a3600480360381019061039e91906130b4565b610ba6565b6040516103b09190613b68565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190612fae565b610c4b565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612f49565b610c6b565b6040516104169190613789565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906131ac565b610d65565b6040516104539190613b68565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e919061316b565b610dfc565b005b34801561049157600080fd5b506104ac60048036038101906104a791906131ac565b610e92565b6040516104b99190613722565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190612f49565b610f44565b6040516104f69190613b68565b60405180910390f35b34801561050b57600080fd5b50610514610ffc565b005b610530600480360381019061052b91906131ac565b611139565b005b61053a6112ee565b005b34801561054857600080fd5b506105516113d2565b60405161055e9190613722565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906131ac565b6113fc565b005b34801561059c57600080fd5b506105a5611482565b6040516105b291906137c6565b60405180910390f35b3480156105c757600080fd5b506105d0611514565b6040516105dd9190613b68565b60405180910390f35b3480156105f257600080fd5b5061060d60048036038101906106089190613078565b61151e565b005b34801561061b57600080fd5b5061063660048036038101906106319190612ffd565b61169f565b005b34801561064457600080fd5b5061065f600480360381019061065a91906131ac565b611701565b60405161066c91906137c6565b60405180910390f35b34801561068157600080fd5b5061069c600480360381019061069791906130b4565b6117a8565b005b3480156106aa57600080fd5b506106b36118c7565b6040516106c091906137ab565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb9190612f72565b6118da565b6040516106fd91906137ab565b60405180910390f35b610720600480360381019061071b91906131ac565b61196e565b005b34801561072e57600080fd5b5061074960048036038101906107449190612f49565b611af1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107be57506107bd82611c9d565b5b9050919050565b6107cd611d7f565b73ffffffffffffffffffffffffffffffffffffffff166107eb6113d2565b73ffffffffffffffffffffffffffffffffffffffff1614610841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610838906139a8565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60606000805461086d90613e51565b80601f016020809104026020016040519081016040528092919081815260200182805461089990613e51565b80156108e65780601f106108bb576101008083540402835291602001916108e6565b820191906000526020600020905b8154815290600101906020018083116108c957829003601f168201915b5050505050905090565b60006108fb82611d87565b61093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093190613988565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098082610e92565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e890613a48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a10611d7f565b73ffffffffffffffffffffffffffffffffffffffff161480610a3f5750610a3e81610a39611d7f565b6118da565b5b610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590613908565b60405180910390fd5b610a888383611df3565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b610abe610ab8611d7f565b82611eac565b610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490613ac8565b60405180910390fd5b610b08838383611f8a565b505050565b610b15611d7f565b73ffffffffffffffffffffffffffffffffffffffff16610b336113d2565b73ffffffffffffffffffffffffffffffffffffffff1614610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b80906139a8565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000610bb183610f44565b8210610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990613828565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c668383836040518060200160405280600081525061169f565b505050565b60606000610c7883610f44565b905060008167ffffffffffffffff811115610cbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610cea5781602001602082028036833780820191505090505b50905060005b82811015610d5a57610d028582610ba6565b828281518110610d3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610d5290613eb4565b915050610cf0565b508092505050919050565b6000610d6f610aa0565b8210610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790613b08565b60405180910390fd5b60088281548110610dea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e04611d7f565b73ffffffffffffffffffffffffffffffffffffffff16610e226113d2565b73ffffffffffffffffffffffffffffffffffffffff1614610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f906139a8565b60405180910390fd5b80600b9080519060200190610e8e929190612d6d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290613948565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90613928565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611004611d7f565b73ffffffffffffffffffffffffffffffffffffffff166110226113d2565b73ffffffffffffffffffffffffffffffffffffffff1614611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f906139a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611143610aa0565b9050600e60019054906101000a900460ff16611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90613b48565b60405180910390fd5b600b82106111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90613b28565b60405180910390fd5b600b6111e233610f44565b10611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990613a28565b60405180910390fd5b6105dc8110611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90613ae8565b60405180910390fd5b81600d546112749190613d0d565b3410156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90613aa8565b60405180910390fd5b60005b828110156112e9576112d63382846112d19190613c86565b6121e6565b80806112e190613eb4565b9150506112b9565b505050565b6112f6611d7f565b73ffffffffffffffffffffffffffffffffffffffff166113146113d2565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906139a8565b60405180910390fd5b6000479050600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506113cf57600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611404611d7f565b73ffffffffffffffffffffffffffffffffffffffff166114226113d2565b73ffffffffffffffffffffffffffffffffffffffff1614611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f906139a8565b60405180910390fd5b80600d8190555050565b60606001805461149190613e51565b80601f01602080910402602001604051908101604052809291908181526020018280546114bd90613e51565b801561150a5780601f106114df5761010080835404028352916020019161150a565b820191906000526020600020905b8154815290600101906020018083116114ed57829003601f168201915b5050505050905090565b6000600d54905090565b611526611d7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b906138c8565b60405180910390fd5b80600560006115a1611d7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661164e611d7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169391906137ab565b60405180910390a35050565b6116b06116aa611d7f565b83611eac565b6116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690613ac8565b60405180910390fd5b6116fb84848484612204565b50505050565b606061170c82611d87565b61174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613a08565b60405180910390fd5b6000611755612260565b9050600081511161177557604051806020016040528060008152506117a0565b8061177f846122f2565b6040516020016117909291906136fe565b6040516020818303038152906040525b915050919050565b6117b0611d7f565b73ffffffffffffffffffffffffffffffffffffffff166117ce6113d2565b73ffffffffffffffffffffffffffffffffffffffff1614611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b906139a8565b60405180910390fd5b600c54811115611869576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611860906139c8565b60405180910390fd5b6000611873610aa0565b905060005b828110156118a8576118958482846118909190613c86565b6121e6565b80806118a090613eb4565b915050611878565b5081600c60008282546118bb9190613d67565b92505081905550505050565b600e60019054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000611978610aa0565b9050600e60009054906101000a900460ff16156119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190613808565b60405180910390fd5b600b8210611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613a88565b60405180910390fd5b600c54612710611a1d9190613d67565b8282611a299190613c86565b10611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a60906137e8565b60405180910390fd5b81600d54611a779190613d0d565b341015611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090613a68565b60405180910390fd5b60005b82811015611aec57611ad9338284611ad49190613c86565b6121e6565b8080611ae490613eb4565b915050611abc565b505050565b611af9611d7f565b73ffffffffffffffffffffffffffffffffffffffff16611b176113d2565b73ffffffffffffffffffffffffffffffffffffffff1614611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b64906139a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490613868565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d6857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d785750611d778261249f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e6683610e92565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611eb782611d87565b611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed906138e8565b60405180910390fd5b6000611f0183610e92565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f7057508373ffffffffffffffffffffffffffffffffffffffff16611f58846108f0565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f815750611f8081856118da565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611faa82610e92565b73ffffffffffffffffffffffffffffffffffffffff1614612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff7906139e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612067906138a8565b60405180910390fd5b61207b838383612509565b612086600082611df3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d69190613d67565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461212d9190613c86565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61220082826040518060200160405280600081525061261d565b5050565b61220f848484611f8a565b61221b84848484612678565b61225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190613848565b60405180910390fd5b50505050565b6060600b805461226f90613e51565b80601f016020809104026020016040519081016040528092919081815260200182805461229b90613e51565b80156122e85780601f106122bd576101008083540402835291602001916122e8565b820191906000526020600020905b8154815290600101906020018083116122cb57829003601f168201915b5050505050905090565b6060600082141561233a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061249a565b600082905060005b6000821461236c57808061235590613eb4565b915050600a826123659190613cdc565b9150612342565b60008167ffffffffffffffff8111156123ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123e05781602001600182028036833780820191505090505b5090505b60008514612493576001826123f99190613d67565b9150600a856124089190613efd565b60306124149190613c86565b60f81b818381518110612450577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561248c9190613cdc565b94506123e4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61251483838361280f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125575761255281612814565b612596565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461259557612594838261285d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125d9576125d4816129ca565b612618565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612617576126168282612b0d565b5b5b505050565b6126278383612b8c565b6126346000848484612678565b612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a90613848565b60405180910390fd5b505050565b60006126998473ffffffffffffffffffffffffffffffffffffffff16612d5a565b15612802578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126c2611d7f565b8786866040518563ffffffff1660e01b81526004016126e4949392919061373d565b602060405180830381600087803b1580156126fe57600080fd5b505af192505050801561272f57506040513d601f19601f8201168201806040525081019061272c9190613142565b60015b6127b2573d806000811461275f576040519150601f19603f3d011682016040523d82523d6000602084013e612764565b606091505b506000815114156127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a190613848565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612807565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161286a84610f44565b6128749190613d67565b9050600060076000848152602001908152602001600020549050818114612959576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129de9190613d67565b9050600060096000848152602001908152602001600020549050600060088381548110612a34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612a7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612af1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612b1883610f44565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf390613968565b60405180910390fd5b612c0581611d87565b15612c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3c90613888565b60405180910390fd5b612c5160008383612509565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ca19190613c86565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612d7990613e51565b90600052602060002090601f016020900481019282612d9b5760008555612de2565b82601f10612db457805160ff1916838001178555612de2565b82800160010185558215612de2579182015b82811115612de1578251825591602001919060010190612dc6565b5b509050612def9190612df3565b5090565b5b80821115612e0c576000816000905550600101612df4565b5090565b6000612e23612e1e84613ba8565b613b83565b905082815260208101848484011115612e3b57600080fd5b612e46848285613e0f565b509392505050565b6000612e61612e5c84613bd9565b613b83565b905082815260208101848484011115612e7957600080fd5b612e84848285613e0f565b509392505050565b600081359050612e9b8161468b565b92915050565b600081359050612eb0816146a2565b92915050565b600081359050612ec5816146b9565b92915050565b600081519050612eda816146b9565b92915050565b600082601f830112612ef157600080fd5b8135612f01848260208601612e10565b91505092915050565b600082601f830112612f1b57600080fd5b8135612f2b848260208601612e4e565b91505092915050565b600081359050612f43816146d0565b92915050565b600060208284031215612f5b57600080fd5b6000612f6984828501612e8c565b91505092915050565b60008060408385031215612f8557600080fd5b6000612f9385828601612e8c565b9250506020612fa485828601612e8c565b9150509250929050565b600080600060608486031215612fc357600080fd5b6000612fd186828701612e8c565b9350506020612fe286828701612e8c565b9250506040612ff386828701612f34565b9150509250925092565b6000806000806080858703121561301357600080fd5b600061302187828801612e8c565b945050602061303287828801612e8c565b935050604061304387828801612f34565b925050606085013567ffffffffffffffff81111561306057600080fd5b61306c87828801612ee0565b91505092959194509250565b6000806040838503121561308b57600080fd5b600061309985828601612e8c565b92505060206130aa85828601612ea1565b9150509250929050565b600080604083850312156130c757600080fd5b60006130d585828601612e8c565b92505060206130e685828601612f34565b9150509250929050565b60006020828403121561310257600080fd5b600061311084828501612ea1565b91505092915050565b60006020828403121561312b57600080fd5b600061313984828501612eb6565b91505092915050565b60006020828403121561315457600080fd5b600061316284828501612ecb565b91505092915050565b60006020828403121561317d57600080fd5b600082013567ffffffffffffffff81111561319757600080fd5b6131a384828501612f0a565b91505092915050565b6000602082840312156131be57600080fd5b60006131cc84828501612f34565b91505092915050565b60006131e183836136e0565b60208301905092915050565b6131f681613d9b565b82525050565b600061320782613c1a565b6132118185613c48565b935061321c83613c0a565b8060005b8381101561324d57815161323488826131d5565b975061323f83613c3b565b925050600181019050613220565b5085935050505092915050565b61326381613dad565b82525050565b600061327482613c25565b61327e8185613c59565b935061328e818560208601613e1e565b61329781613fea565b840191505092915050565b60006132ad82613c30565b6132b78185613c6a565b93506132c7818560208601613e1e565b6132d081613fea565b840191505092915050565b60006132e682613c30565b6132f08185613c7b565b9350613300818560208601613e1e565b80840191505092915050565b6000613319601583613c6a565b915061332482613ffb565b602082019050919050565b600061333c600b83613c6a565b915061334782614024565b602082019050919050565b600061335f602b83613c6a565b915061336a8261404d565b604082019050919050565b6000613382603283613c6a565b915061338d8261409c565b604082019050919050565b60006133a5602683613c6a565b91506133b0826140eb565b604082019050919050565b60006133c8601c83613c6a565b91506133d38261413a565b602082019050919050565b60006133eb602483613c6a565b91506133f682614163565b604082019050919050565b600061340e601983613c6a565b9150613419826141b2565b602082019050919050565b6000613431602c83613c6a565b915061343c826141db565b604082019050919050565b6000613454603883613c6a565b915061345f8261422a565b604082019050919050565b6000613477602a83613c6a565b915061348282614279565b604082019050919050565b600061349a602983613c6a565b91506134a5826142c8565b604082019050919050565b60006134bd602083613c6a565b91506134c882614317565b602082019050919050565b60006134e0602c83613c6a565b91506134eb82614340565b604082019050919050565b6000613503602083613c6a565b915061350e8261438f565b602082019050919050565b6000613526601683613c6a565b9150613531826143b8565b602082019050919050565b6000613549602983613c6a565b9150613554826143e1565b604082019050919050565b600061356c602f83613c6a565b915061357782614430565b604082019050919050565b600061358f601883613c6a565b915061359a8261447f565b602082019050919050565b60006135b2602183613c6a565b91506135bd826144a8565b604082019050919050565b60006135d5601983613c6a565b91506135e0826144f7565b602082019050919050565b60006135f8602083613c6a565b915061360382614520565b602082019050919050565b600061361b601a83613c6a565b915061362682614549565b602082019050919050565b600061363e603183613c6a565b915061364982614572565b604082019050919050565b6000613661601983613c6a565b915061366c826145c1565b602082019050919050565b6000613684602c83613c6a565b915061368f826145ea565b604082019050919050565b60006136a7601283613c6a565b91506136b282614639565b602082019050919050565b60006136ca601283613c6a565b91506136d582614662565b602082019050919050565b6136e981613e05565b82525050565b6136f881613e05565b82525050565b600061370a82856132db565b915061371682846132db565b91508190509392505050565b600060208201905061373760008301846131ed565b92915050565b600060808201905061375260008301876131ed565b61375f60208301866131ed565b61376c60408301856136ef565b818103606083015261377e8184613269565b905095945050505050565b600060208201905081810360008301526137a381846131fc565b905092915050565b60006020820190506137c0600083018461325a565b92915050565b600060208201905081810360008301526137e081846132a2565b905092915050565b600060208201905081810360008301526138018161330c565b9050919050565b600060208201905081810360008301526138218161332f565b9050919050565b6000602082019050818103600083015261384181613352565b9050919050565b6000602082019050818103600083015261386181613375565b9050919050565b6000602082019050818103600083015261388181613398565b9050919050565b600060208201905081810360008301526138a1816133bb565b9050919050565b600060208201905081810360008301526138c1816133de565b9050919050565b600060208201905081810360008301526138e181613401565b9050919050565b6000602082019050818103600083015261390181613424565b9050919050565b6000602082019050818103600083015261392181613447565b9050919050565b600060208201905081810360008301526139418161346a565b9050919050565b600060208201905081810360008301526139618161348d565b9050919050565b60006020820190508181036000830152613981816134b0565b9050919050565b600060208201905081810360008301526139a1816134d3565b9050919050565b600060208201905081810360008301526139c1816134f6565b9050919050565b600060208201905081810360008301526139e181613519565b9050919050565b60006020820190508181036000830152613a018161353c565b9050919050565b60006020820190508181036000830152613a218161355f565b9050919050565b60006020820190508181036000830152613a4181613582565b9050919050565b60006020820190508181036000830152613a61816135a5565b9050919050565b60006020820190508181036000830152613a81816135c8565b9050919050565b60006020820190508181036000830152613aa1816135eb565b9050919050565b60006020820190508181036000830152613ac18161360e565b9050919050565b60006020820190508181036000830152613ae181613631565b9050919050565b60006020820190508181036000830152613b0181613654565b9050919050565b60006020820190508181036000830152613b2181613677565b9050919050565b60006020820190508181036000830152613b418161369a565b9050919050565b60006020820190508181036000830152613b61816136bd565b9050919050565b6000602082019050613b7d60008301846136ef565b92915050565b6000613b8d613b9e565b9050613b998282613e83565b919050565b6000604051905090565b600067ffffffffffffffff821115613bc357613bc2613fbb565b5b613bcc82613fea565b9050602081019050919050565b600067ffffffffffffffff821115613bf457613bf3613fbb565b5b613bfd82613fea565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c9182613e05565b9150613c9c83613e05565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cd157613cd0613f2e565b5b828201905092915050565b6000613ce782613e05565b9150613cf283613e05565b925082613d0257613d01613f5d565b5b828204905092915050565b6000613d1882613e05565b9150613d2383613e05565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d5c57613d5b613f2e565b5b828202905092915050565b6000613d7282613e05565b9150613d7d83613e05565b925082821015613d9057613d8f613f2e565b5b828203905092915050565b6000613da682613de5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e3c578082015181840152602081019050613e21565b83811115613e4b576000848401525b50505050565b60006002820490506001821680613e6957607f821691505b60208210811415613e7d57613e7c613f8c565b5b50919050565b613e8c82613fea565b810181811067ffffffffffffffff82111715613eab57613eaa613fbb565b5b80604052505050565b6000613ebf82613e05565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ef257613ef1613f2e565b5b600182019050919050565b6000613f0882613e05565b9150613f1383613e05565b925082613f2357613f22613f5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4578636565647320636869626920737570706c79210000000000000000000000600082015250565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f20636869626973206c65667420746f206769766500000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f70726573616c655f77616c6c65745f6c696d69745f6d65740000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f596f752063616e206d696e742031302063686962697320617420612074696d65600082015250565b7f696e73756666696369656e745f7061796d656e745f76616c7565000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d61785f746f6b656e5f737570706c795f657863656564656400000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f3130206368696269206d696e74206d6178210000000000000000000000000000600082015250565b7f70726573616c655f6e6f745f6163746976650000000000000000000000000000600082015250565b61469481613d9b565b811461469f57600080fd5b50565b6146ab81613dad565b81146146b657600080fd5b50565b6146c281613db9565b81146146cd57600080fd5b50565b6146d981613e05565b81146146e457600080fd5b5056fea264697066735822122019909c1b36513d3b2b0c5dacaabf0b4aef91f6a973ad18f4cf5ecb234e1bf93664736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063a22cb46511610095578063d8c7a79711610064578063d8c7a7971461069e578063e985e9c5146106c9578063eb7d6d2114610706578063f2fde38b14610722576101d8565b8063a22cb465146105e6578063b88d4fde1461060f578063c87b56dd14610638578063ca80014414610675576101d8565b80638da5cb5b116100d15780638da5cb5b1461053c57806391b7f5ed1461056757806395d89b411461059057806398d5fdca146105bb576101d8565b806370a08231146104c2578063715018a6146104ff5780637835c63514610516578063853828b614610532576101d8565b806323b872dd1161017a578063438b630011610149578063438b6300146103e25780634f6ccce71461041f57806355f804b31461045c5780636352211e14610485576101d8565b806323b872dd1461032a578063286e4d0c146103535780632f745c591461037c57806342842e0e146103b9576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab57806316c61ccc146102d457806318160ddd146102ff576101d8565b806301ffc9a7146101dd57806302329a291461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190613119565b61074b565b60405161021191906137ab565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c91906130f0565b6107c5565b005b34801561024f57600080fd5b5061025861085e565b60405161026591906137c6565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906131ac565b6108f0565b6040516102a29190613722565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd91906130b4565b610975565b005b3480156102e057600080fd5b506102e9610a8d565b6040516102f691906137ab565b60405180910390f35b34801561030b57600080fd5b50610314610aa0565b6040516103219190613b68565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612fae565b610aad565b005b34801561035f57600080fd5b5061037a600480360381019061037591906130f0565b610b0d565b005b34801561038857600080fd5b506103a3600480360381019061039e91906130b4565b610ba6565b6040516103b09190613b68565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190612fae565b610c4b565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612f49565b610c6b565b6040516104169190613789565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906131ac565b610d65565b6040516104539190613b68565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e919061316b565b610dfc565b005b34801561049157600080fd5b506104ac60048036038101906104a791906131ac565b610e92565b6040516104b99190613722565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190612f49565b610f44565b6040516104f69190613b68565b60405180910390f35b34801561050b57600080fd5b50610514610ffc565b005b610530600480360381019061052b91906131ac565b611139565b005b61053a6112ee565b005b34801561054857600080fd5b506105516113d2565b60405161055e9190613722565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906131ac565b6113fc565b005b34801561059c57600080fd5b506105a5611482565b6040516105b291906137c6565b60405180910390f35b3480156105c757600080fd5b506105d0611514565b6040516105dd9190613b68565b60405180910390f35b3480156105f257600080fd5b5061060d60048036038101906106089190613078565b61151e565b005b34801561061b57600080fd5b5061063660048036038101906106319190612ffd565b61169f565b005b34801561064457600080fd5b5061065f600480360381019061065a91906131ac565b611701565b60405161066c91906137c6565b60405180910390f35b34801561068157600080fd5b5061069c600480360381019061069791906130b4565b6117a8565b005b3480156106aa57600080fd5b506106b36118c7565b6040516106c091906137ab565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb9190612f72565b6118da565b6040516106fd91906137ab565b60405180910390f35b610720600480360381019061071b91906131ac565b61196e565b005b34801561072e57600080fd5b5061074960048036038101906107449190612f49565b611af1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107be57506107bd82611c9d565b5b9050919050565b6107cd611d7f565b73ffffffffffffffffffffffffffffffffffffffff166107eb6113d2565b73ffffffffffffffffffffffffffffffffffffffff1614610841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610838906139a8565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60606000805461086d90613e51565b80601f016020809104026020016040519081016040528092919081815260200182805461089990613e51565b80156108e65780601f106108bb576101008083540402835291602001916108e6565b820191906000526020600020905b8154815290600101906020018083116108c957829003601f168201915b5050505050905090565b60006108fb82611d87565b61093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093190613988565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098082610e92565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e890613a48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a10611d7f565b73ffffffffffffffffffffffffffffffffffffffff161480610a3f5750610a3e81610a39611d7f565b6118da565b5b610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590613908565b60405180910390fd5b610a888383611df3565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b610abe610ab8611d7f565b82611eac565b610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490613ac8565b60405180910390fd5b610b08838383611f8a565b505050565b610b15611d7f565b73ffffffffffffffffffffffffffffffffffffffff16610b336113d2565b73ffffffffffffffffffffffffffffffffffffffff1614610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b80906139a8565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000610bb183610f44565b8210610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990613828565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c668383836040518060200160405280600081525061169f565b505050565b60606000610c7883610f44565b905060008167ffffffffffffffff811115610cbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610cea5781602001602082028036833780820191505090505b50905060005b82811015610d5a57610d028582610ba6565b828281518110610d3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610d5290613eb4565b915050610cf0565b508092505050919050565b6000610d6f610aa0565b8210610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790613b08565b60405180910390fd5b60088281548110610dea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e04611d7f565b73ffffffffffffffffffffffffffffffffffffffff16610e226113d2565b73ffffffffffffffffffffffffffffffffffffffff1614610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f906139a8565b60405180910390fd5b80600b9080519060200190610e8e929190612d6d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290613948565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90613928565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611004611d7f565b73ffffffffffffffffffffffffffffffffffffffff166110226113d2565b73ffffffffffffffffffffffffffffffffffffffff1614611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f906139a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611143610aa0565b9050600e60019054906101000a900460ff16611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90613b48565b60405180910390fd5b600b82106111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90613b28565b60405180910390fd5b600b6111e233610f44565b10611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990613a28565b60405180910390fd5b6105dc8110611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90613ae8565b60405180910390fd5b81600d546112749190613d0d565b3410156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90613aa8565b60405180910390fd5b60005b828110156112e9576112d63382846112d19190613c86565b6121e6565b80806112e190613eb4565b9150506112b9565b505050565b6112f6611d7f565b73ffffffffffffffffffffffffffffffffffffffff166113146113d2565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906139a8565b60405180910390fd5b6000479050600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506113cf57600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611404611d7f565b73ffffffffffffffffffffffffffffffffffffffff166114226113d2565b73ffffffffffffffffffffffffffffffffffffffff1614611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f906139a8565b60405180910390fd5b80600d8190555050565b60606001805461149190613e51565b80601f01602080910402602001604051908101604052809291908181526020018280546114bd90613e51565b801561150a5780601f106114df5761010080835404028352916020019161150a565b820191906000526020600020905b8154815290600101906020018083116114ed57829003601f168201915b5050505050905090565b6000600d54905090565b611526611d7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b906138c8565b60405180910390fd5b80600560006115a1611d7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661164e611d7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169391906137ab565b60405180910390a35050565b6116b06116aa611d7f565b83611eac565b6116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690613ac8565b60405180910390fd5b6116fb84848484612204565b50505050565b606061170c82611d87565b61174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613a08565b60405180910390fd5b6000611755612260565b9050600081511161177557604051806020016040528060008152506117a0565b8061177f846122f2565b6040516020016117909291906136fe565b6040516020818303038152906040525b915050919050565b6117b0611d7f565b73ffffffffffffffffffffffffffffffffffffffff166117ce6113d2565b73ffffffffffffffffffffffffffffffffffffffff1614611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b906139a8565b60405180910390fd5b600c54811115611869576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611860906139c8565b60405180910390fd5b6000611873610aa0565b905060005b828110156118a8576118958482846118909190613c86565b6121e6565b80806118a090613eb4565b915050611878565b5081600c60008282546118bb9190613d67565b92505081905550505050565b600e60019054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000611978610aa0565b9050600e60009054906101000a900460ff16156119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190613808565b60405180910390fd5b600b8210611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613a88565b60405180910390fd5b600c54612710611a1d9190613d67565b8282611a299190613c86565b10611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a60906137e8565b60405180910390fd5b81600d54611a779190613d0d565b341015611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090613a68565b60405180910390fd5b60005b82811015611aec57611ad9338284611ad49190613c86565b6121e6565b8080611ae490613eb4565b915050611abc565b505050565b611af9611d7f565b73ffffffffffffffffffffffffffffffffffffffff16611b176113d2565b73ffffffffffffffffffffffffffffffffffffffff1614611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b64906139a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490613868565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d6857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d785750611d778261249f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e6683610e92565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611eb782611d87565b611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed906138e8565b60405180910390fd5b6000611f0183610e92565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f7057508373ffffffffffffffffffffffffffffffffffffffff16611f58846108f0565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f815750611f8081856118da565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611faa82610e92565b73ffffffffffffffffffffffffffffffffffffffff1614612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff7906139e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612067906138a8565b60405180910390fd5b61207b838383612509565b612086600082611df3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d69190613d67565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461212d9190613c86565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61220082826040518060200160405280600081525061261d565b5050565b61220f848484611f8a565b61221b84848484612678565b61225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190613848565b60405180910390fd5b50505050565b6060600b805461226f90613e51565b80601f016020809104026020016040519081016040528092919081815260200182805461229b90613e51565b80156122e85780601f106122bd576101008083540402835291602001916122e8565b820191906000526020600020905b8154815290600101906020018083116122cb57829003601f168201915b5050505050905090565b6060600082141561233a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061249a565b600082905060005b6000821461236c57808061235590613eb4565b915050600a826123659190613cdc565b9150612342565b60008167ffffffffffffffff8111156123ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123e05781602001600182028036833780820191505090505b5090505b60008514612493576001826123f99190613d67565b9150600a856124089190613efd565b60306124149190613c86565b60f81b818381518110612450577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561248c9190613cdc565b94506123e4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61251483838361280f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125575761255281612814565b612596565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461259557612594838261285d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125d9576125d4816129ca565b612618565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612617576126168282612b0d565b5b5b505050565b6126278383612b8c565b6126346000848484612678565b612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a90613848565b60405180910390fd5b505050565b60006126998473ffffffffffffffffffffffffffffffffffffffff16612d5a565b15612802578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126c2611d7f565b8786866040518563ffffffff1660e01b81526004016126e4949392919061373d565b602060405180830381600087803b1580156126fe57600080fd5b505af192505050801561272f57506040513d601f19601f8201168201806040525081019061272c9190613142565b60015b6127b2573d806000811461275f576040519150601f19603f3d011682016040523d82523d6000602084013e612764565b606091505b506000815114156127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a190613848565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612807565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161286a84610f44565b6128749190613d67565b9050600060076000848152602001908152602001600020549050818114612959576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129de9190613d67565b9050600060096000848152602001908152602001600020549050600060088381548110612a34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612a7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612af1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612b1883610f44565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf390613968565b60405180910390fd5b612c0581611d87565b15612c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3c90613888565b60405180910390fd5b612c5160008383612509565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ca19190613c86565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612d7990613e51565b90600052602060002090601f016020900481019282612d9b5760008555612de2565b82601f10612db457805160ff1916838001178555612de2565b82800160010185558215612de2579182015b82811115612de1578251825591602001919060010190612dc6565b5b509050612def9190612df3565b5090565b5b80821115612e0c576000816000905550600101612df4565b5090565b6000612e23612e1e84613ba8565b613b83565b905082815260208101848484011115612e3b57600080fd5b612e46848285613e0f565b509392505050565b6000612e61612e5c84613bd9565b613b83565b905082815260208101848484011115612e7957600080fd5b612e84848285613e0f565b509392505050565b600081359050612e9b8161468b565b92915050565b600081359050612eb0816146a2565b92915050565b600081359050612ec5816146b9565b92915050565b600081519050612eda816146b9565b92915050565b600082601f830112612ef157600080fd5b8135612f01848260208601612e10565b91505092915050565b600082601f830112612f1b57600080fd5b8135612f2b848260208601612e4e565b91505092915050565b600081359050612f43816146d0565b92915050565b600060208284031215612f5b57600080fd5b6000612f6984828501612e8c565b91505092915050565b60008060408385031215612f8557600080fd5b6000612f9385828601612e8c565b9250506020612fa485828601612e8c565b9150509250929050565b600080600060608486031215612fc357600080fd5b6000612fd186828701612e8c565b9350506020612fe286828701612e8c565b9250506040612ff386828701612f34565b9150509250925092565b6000806000806080858703121561301357600080fd5b600061302187828801612e8c565b945050602061303287828801612e8c565b935050604061304387828801612f34565b925050606085013567ffffffffffffffff81111561306057600080fd5b61306c87828801612ee0565b91505092959194509250565b6000806040838503121561308b57600080fd5b600061309985828601612e8c565b92505060206130aa85828601612ea1565b9150509250929050565b600080604083850312156130c757600080fd5b60006130d585828601612e8c565b92505060206130e685828601612f34565b9150509250929050565b60006020828403121561310257600080fd5b600061311084828501612ea1565b91505092915050565b60006020828403121561312b57600080fd5b600061313984828501612eb6565b91505092915050565b60006020828403121561315457600080fd5b600061316284828501612ecb565b91505092915050565b60006020828403121561317d57600080fd5b600082013567ffffffffffffffff81111561319757600080fd5b6131a384828501612f0a565b91505092915050565b6000602082840312156131be57600080fd5b60006131cc84828501612f34565b91505092915050565b60006131e183836136e0565b60208301905092915050565b6131f681613d9b565b82525050565b600061320782613c1a565b6132118185613c48565b935061321c83613c0a565b8060005b8381101561324d57815161323488826131d5565b975061323f83613c3b565b925050600181019050613220565b5085935050505092915050565b61326381613dad565b82525050565b600061327482613c25565b61327e8185613c59565b935061328e818560208601613e1e565b61329781613fea565b840191505092915050565b60006132ad82613c30565b6132b78185613c6a565b93506132c7818560208601613e1e565b6132d081613fea565b840191505092915050565b60006132e682613c30565b6132f08185613c7b565b9350613300818560208601613e1e565b80840191505092915050565b6000613319601583613c6a565b915061332482613ffb565b602082019050919050565b600061333c600b83613c6a565b915061334782614024565b602082019050919050565b600061335f602b83613c6a565b915061336a8261404d565b604082019050919050565b6000613382603283613c6a565b915061338d8261409c565b604082019050919050565b60006133a5602683613c6a565b91506133b0826140eb565b604082019050919050565b60006133c8601c83613c6a565b91506133d38261413a565b602082019050919050565b60006133eb602483613c6a565b91506133f682614163565b604082019050919050565b600061340e601983613c6a565b9150613419826141b2565b602082019050919050565b6000613431602c83613c6a565b915061343c826141db565b604082019050919050565b6000613454603883613c6a565b915061345f8261422a565b604082019050919050565b6000613477602a83613c6a565b915061348282614279565b604082019050919050565b600061349a602983613c6a565b91506134a5826142c8565b604082019050919050565b60006134bd602083613c6a565b91506134c882614317565b602082019050919050565b60006134e0602c83613c6a565b91506134eb82614340565b604082019050919050565b6000613503602083613c6a565b915061350e8261438f565b602082019050919050565b6000613526601683613c6a565b9150613531826143b8565b602082019050919050565b6000613549602983613c6a565b9150613554826143e1565b604082019050919050565b600061356c602f83613c6a565b915061357782614430565b604082019050919050565b600061358f601883613c6a565b915061359a8261447f565b602082019050919050565b60006135b2602183613c6a565b91506135bd826144a8565b604082019050919050565b60006135d5601983613c6a565b91506135e0826144f7565b602082019050919050565b60006135f8602083613c6a565b915061360382614520565b602082019050919050565b600061361b601a83613c6a565b915061362682614549565b602082019050919050565b600061363e603183613c6a565b915061364982614572565b604082019050919050565b6000613661601983613c6a565b915061366c826145c1565b602082019050919050565b6000613684602c83613c6a565b915061368f826145ea565b604082019050919050565b60006136a7601283613c6a565b91506136b282614639565b602082019050919050565b60006136ca601283613c6a565b91506136d582614662565b602082019050919050565b6136e981613e05565b82525050565b6136f881613e05565b82525050565b600061370a82856132db565b915061371682846132db565b91508190509392505050565b600060208201905061373760008301846131ed565b92915050565b600060808201905061375260008301876131ed565b61375f60208301866131ed565b61376c60408301856136ef565b818103606083015261377e8184613269565b905095945050505050565b600060208201905081810360008301526137a381846131fc565b905092915050565b60006020820190506137c0600083018461325a565b92915050565b600060208201905081810360008301526137e081846132a2565b905092915050565b600060208201905081810360008301526138018161330c565b9050919050565b600060208201905081810360008301526138218161332f565b9050919050565b6000602082019050818103600083015261384181613352565b9050919050565b6000602082019050818103600083015261386181613375565b9050919050565b6000602082019050818103600083015261388181613398565b9050919050565b600060208201905081810360008301526138a1816133bb565b9050919050565b600060208201905081810360008301526138c1816133de565b9050919050565b600060208201905081810360008301526138e181613401565b9050919050565b6000602082019050818103600083015261390181613424565b9050919050565b6000602082019050818103600083015261392181613447565b9050919050565b600060208201905081810360008301526139418161346a565b9050919050565b600060208201905081810360008301526139618161348d565b9050919050565b60006020820190508181036000830152613981816134b0565b9050919050565b600060208201905081810360008301526139a1816134d3565b9050919050565b600060208201905081810360008301526139c1816134f6565b9050919050565b600060208201905081810360008301526139e181613519565b9050919050565b60006020820190508181036000830152613a018161353c565b9050919050565b60006020820190508181036000830152613a218161355f565b9050919050565b60006020820190508181036000830152613a4181613582565b9050919050565b60006020820190508181036000830152613a61816135a5565b9050919050565b60006020820190508181036000830152613a81816135c8565b9050919050565b60006020820190508181036000830152613aa1816135eb565b9050919050565b60006020820190508181036000830152613ac18161360e565b9050919050565b60006020820190508181036000830152613ae181613631565b9050919050565b60006020820190508181036000830152613b0181613654565b9050919050565b60006020820190508181036000830152613b2181613677565b9050919050565b60006020820190508181036000830152613b418161369a565b9050919050565b60006020820190508181036000830152613b61816136bd565b9050919050565b6000602082019050613b7d60008301846136ef565b92915050565b6000613b8d613b9e565b9050613b998282613e83565b919050565b6000604051905090565b600067ffffffffffffffff821115613bc357613bc2613fbb565b5b613bcc82613fea565b9050602081019050919050565b600067ffffffffffffffff821115613bf457613bf3613fbb565b5b613bfd82613fea565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c9182613e05565b9150613c9c83613e05565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cd157613cd0613f2e565b5b828201905092915050565b6000613ce782613e05565b9150613cf283613e05565b925082613d0257613d01613f5d565b5b828204905092915050565b6000613d1882613e05565b9150613d2383613e05565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d5c57613d5b613f2e565b5b828202905092915050565b6000613d7282613e05565b9150613d7d83613e05565b925082821015613d9057613d8f613f2e565b5b828203905092915050565b6000613da682613de5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e3c578082015181840152602081019050613e21565b83811115613e4b576000848401525b50505050565b60006002820490506001821680613e6957607f821691505b60208210811415613e7d57613e7c613f8c565b5b50919050565b613e8c82613fea565b810181811067ffffffffffffffff82111715613eab57613eaa613fbb565b5b80604052505050565b6000613ebf82613e05565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ef257613ef1613f2e565b5b600182019050919050565b6000613f0882613e05565b9150613f1383613e05565b925082613f2357613f22613f5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4578636565647320636869626920737570706c79210000000000000000000000600082015250565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f20636869626973206c65667420746f206769766500000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f70726573616c655f77616c6c65745f6c696d69745f6d65740000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f596f752063616e206d696e742031302063686962697320617420612074696d65600082015250565b7f696e73756666696369656e745f7061796d656e745f76616c7565000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d61785f746f6b656e5f737570706c795f657863656564656400000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f3130206368696269206d696e74206d6178210000000000000000000000000000600082015250565b7f70726573616c655f6e6f745f6163746976650000000000000000000000000000600082015250565b61469481613d9b565b811461469f57600080fd5b50565b6146ab81613dad565b81146146b657600080fd5b50565b6146c281613db9565b81146146cd57600080fd5b50565b6146d981613e05565b81146146e457600080fd5b5056fea264697066735822122019909c1b36513d3b2b0c5dacaabf0b4aef91f6a973ad18f4cf5ecb234e1bf93664736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42717:3130:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28590:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45508:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16875:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18335:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17872:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42912:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29243:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19225:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45594:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28911:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19601:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43737:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29433:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44983:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16569:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16299:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7080:148;;;;;;;;;;;;;:::i;:::-;;44091:618;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45691:153;;;:::i;:::-;;6429:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44760:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17044:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45093:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18628:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19823:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17219:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45182:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42945:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18994:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43190:539;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7383:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28590:237;28692:4;28731:35;28716:50;;;:11;:50;;;;:103;;;;28783:36;28807:11;28783:23;:36::i;:::-;28716:103;28709:110;;28590:237;;;:::o;45508:74::-;6660:12;:10;:12::i;:::-;6649:23;;:7;:5;:7::i;:::-;:23;;;6641:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45571:3:::1;45561:7;;:13;;;;;;;;;;;;;;;;;;45508:74:::0;:::o;16875:100::-;16929:13;16962:5;16955:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16875:100;:::o;18335:221::-;18411:7;18439:16;18447:7;18439;:16::i;:::-;18431:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18524:15;:24;18540:7;18524:24;;;;;;;;;;;;;;;;;;;;;18517:31;;18335:221;;;:::o;17872:397::-;17953:13;17969:23;17984:7;17969:14;:23::i;:::-;17953:39;;18017:5;18011:11;;:2;:11;;;;18003:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;18097:5;18081:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;18106:37;18123:5;18130:12;:10;:12::i;:::-;18106:16;:37::i;:::-;18081:62;18073:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;18240:21;18249:2;18253:7;18240:8;:21::i;:::-;17872:397;;;:::o;42912:26::-;;;;;;;;;;;;;:::o;29243:113::-;29304:7;29331:10;:17;;;;29324:24;;29243:113;:::o;19225:305::-;19386:41;19405:12;:10;:12::i;:::-;19419:7;19386:18;:41::i;:::-;19378:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;19494:28;19504:4;19510:2;19514:7;19494:9;:28::i;:::-;19225:305;;;:::o;45594:87::-;6660:12;:10;:12::i;:::-;6649:23;;:7;:5;:7::i;:::-;:23;;;6641:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45670:3:::1;45651:16;;:22;;;;;;;;;;;;;;;;;;45594:87:::0;:::o;28911:256::-;29008:7;29044:23;29061:5;29044:16;:23::i;:::-;29036:5;:31;29028:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;29133:12;:19;29146:5;29133:19;;;;;;;;;;;;;;;:26;29153:5;29133:26;;;;;;;;;;;;29126:33;;28911:256;;;;:::o;19601:151::-;19705:39;19722:4;19728:2;19732:7;19705:39;;;;;;;;;;;;:16;:39::i;:::-;19601:151;;;:::o;43737:342::-;43796:16;43825:18;43846:17;43856:6;43846:9;:17::i;:::-;43825:38;;43876:25;43918:10;43904:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43876:53;;43944:9;43940:106;43959:10;43955:1;:14;43940:106;;;44004:30;44024:6;44032:1;44004:19;:30::i;:::-;43990:8;43999:1;43990:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;43971:3;;;;;:::i;:::-;;;;43940:106;;;;44063:8;44056:15;;;;43737:342;;;:::o;29433:233::-;29508:7;29544:30;:28;:30::i;:::-;29536:5;:38;29528:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;29641:10;29652:5;29641:17;;;;;;;;;;;;;;;;;;;;;;;;29634:24;;29433:233;;;:::o;44983:102::-;6660:12;:10;:12::i;:::-;6649:23;;:7;:5;:7::i;:::-;:23;;;6641:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45070:7:::1;45054:13;:23;;;;;;;;;;;;:::i;:::-;;44983:102:::0;:::o;16569:239::-;16641:7;16661:13;16677:7;:16;16685:7;16677:16;;;;;;;;;;;;;;;;;;;;;16661:32;;16729:1;16712:19;;:5;:19;;;;16704:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16795:5;16788:12;;;16569:239;;;:::o;16299:208::-;16371:7;16416:1;16399:19;;:5;:19;;;;16391:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16483:9;:16;16493:5;16483:16;;;;;;;;;;;;;;;;16476:23;;16299:208;;;:::o;7080:148::-;6660:12;:10;:12::i;:::-;6649:23;;:7;:5;:7::i;:::-;:23;;;6641:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7187:1:::1;7150:40;;7171:6;;;;;;;;;;;7150:40;;;;;;;;;;;;7218:1;7201:6;;:19;;;;;;;;;;;;;;;;;;7080:148::o:0;44091:618::-;44151:14;44168:13;:11;:13::i;:::-;44151:30;;44206:16;;;;;;;;;;;44198:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44289:2;44283:3;:8;44274:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44382:2;44358:21;44368:10;44358:9;:21::i;:::-;:26;44350:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44449:4;44440:6;:13;44432:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44546:3;44537:6;;:12;;;;:::i;:::-;44524:9;:25;;44516:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;44616:9;44612:90;44631:3;44627:1;:7;44612:90;;;44655:35;44666:10;44687:1;44678:6;:10;;;;:::i;:::-;44655:9;:35::i;:::-;44636:3;;;;;:::i;:::-;;;;44612:90;;;;44091:618;;:::o;45691:153::-;6660:12;:10;:12::i;:::-;6649:23;;:7;:5;:7::i;:::-;:23;;;6641:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45750:16:::1;45769:21;45750:40;;45817:2;;;;;;;;;;;45809:16;;:26;45826:8;45809:26;;;;;;;;;;;;;;;;;;;;;;;45801:35;;;::::0;::::1;;6720:1;45691:153::o:0;6429:87::-;6475:7;6502:6;;;;;;;;;;;6495:13;;6429:87;:::o;44760:93::-;6660:12;:10;:12::i;:::-;6649:23;;:7;:5;:7::i;:::-;:23;;;6641:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44836:9:::1;44827:6;:18;;;;44760:93:::0;:::o;17044:104::-;17100:13;17133:7;17126:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17044:104;:::o;45093:81::-;45134:7;45160:6;;45153:13;;45093:81;:::o;18628:295::-;18743:12;:10;:12::i;:::-;18731:24;;:8;:24;;;;18723:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;18843:8;18798:18;:32;18817:12;:10;:12::i;:::-;18798:32;;;;;;;;;;;;;;;:42;18831:8;18798:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;18896:8;18867:48;;18882:12;:10;:12::i;:::-;18867:48;;;18906:8;18867:48;;;;;;:::i;:::-;;;;;;;;18628:295;;:::o;19823:285::-;19955:41;19974:12;:10;:12::i;:::-;19988:7;19955:18;:41::i;:::-;19947:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;20061:39;20075:4;20081:2;20085:7;20094:5;20061:13;:39::i;:::-;19823:285;;;;:::o;17219:360::-;17292:13;17326:16;17334:7;17326;:16::i;:::-;17318:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;17407:21;17431:10;:8;:10::i;:::-;17407:34;;17483:1;17465:7;17459:21;:25;:112;;;;;;;;;;;;;;;;;17524:7;17533:18;:7;:16;:18::i;:::-;17507:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17459:112;17452:119;;;17219:360;;;:::o;45182:318::-;6660:12;:10;:12::i;:::-;6649:23;;:7;:5;:7::i;:::-;:23;;;6641:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45282:9:::1;;45271:7;:20;;45262:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45332:14;45349:13;:11;:13::i;:::-;45332:30;;45377:9;45373:87;45392:7;45388:1;:11;45373:87;;;45420:28;45431:3;45445:1;45436:6;:10;;;;:::i;:::-;45420:9;:28::i;:::-;45401:3;;;;;:::i;:::-;;;;45373:87;;;;45485:7;45472:9;;:20;;;;;;;:::i;:::-;;;;;;;;6720:1;45182:318:::0;;:::o;42945:36::-;;;;;;;;;;;;;:::o;18994:164::-;19091:4;19115:18;:25;19134:5;19115:25;;;;;;;;;;;;;;;:35;19141:8;19115:35;;;;;;;;;;;;;;;;;;;;;;;;;19108:42;;18994:164;;;;:::o;43190:539::-;43248:14;43265:13;:11;:13::i;:::-;43248:30;;43299:7;;;;;;;;;;;43298:8;43289:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43378:2;43372:3;:8;43363:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;43490:9;;43482:5;:17;;;;:::i;:::-;43476:3;43467:6;:12;;;;:::i;:::-;:32;43458:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43573:3;43564:6;;:12;;;;:::i;:::-;43551:9;:25;;43542:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;43636:9;43632:90;43651:3;43647:1;:7;43632:90;;;43675:35;43686:10;43707:1;43698:6;:10;;;;:::i;:::-;43675:9;:35::i;:::-;43656:3;;;;;:::i;:::-;;;;43632:90;;;;43190:539;;:::o;7383:244::-;6660:12;:10;:12::i;:::-;6649:23;;:7;:5;:7::i;:::-;:23;;;6641:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7492:1:::1;7472:22;;:8;:22;;;;7464:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7582:8;7553:38;;7574:6;;;;;;;;;;;7553:38;;;;;;;;;;;;7611:8;7602:6;;:17;;;;;;;;;;;;;;;;;;7383:244:::0;:::o;15943:292::-;16045:4;16084:25;16069:40;;;:11;:40;;;;:105;;;;16141:33;16126:48;;;:11;:48;;;;16069:105;:158;;;;16191:36;16215:11;16191:23;:36::i;:::-;16069:158;16062:165;;15943:292;;;:::o;1367:98::-;1420:7;1447:10;1440:17;;1367:98;:::o;21575:127::-;21640:4;21692:1;21664:30;;:7;:16;21672:7;21664:16;;;;;;;;;;;;;;;;;;;;;:30;;;;21657:37;;21575:127;;;:::o;25452:174::-;25554:2;25527:15;:24;25543:7;25527:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25610:7;25606:2;25572:46;;25581:23;25596:7;25581:14;:23::i;:::-;25572:46;;;;;;;;;;;;25452:174;;:::o;21869:348::-;21962:4;21987:16;21995:7;21987;:16::i;:::-;21979:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22063:13;22079:23;22094:7;22079:14;:23::i;:::-;22063:39;;22132:5;22121:16;;:7;:16;;;:51;;;;22165:7;22141:31;;:20;22153:7;22141:11;:20::i;:::-;:31;;;22121:51;:87;;;;22176:32;22193:5;22200:7;22176:16;:32::i;:::-;22121:87;22113:96;;;21869:348;;;;:::o;24790:544::-;24915:4;24888:31;;:23;24903:7;24888:14;:23::i;:::-;:31;;;24880:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;24998:1;24984:16;;:2;:16;;;;24976:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;25054:39;25075:4;25081:2;25085:7;25054:20;:39::i;:::-;25158:29;25175:1;25179:7;25158:8;:29::i;:::-;25219:1;25200:9;:15;25210:4;25200:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;25248:1;25231:9;:13;25241:2;25231:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;25279:2;25260:7;:16;25268:7;25260:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;25318:7;25314:2;25299:27;;25308:4;25299:27;;;;;;;;;;;;24790:544;;;:::o;22559:110::-;22635:26;22645:2;22649:7;22635:26;;;;;;;;;;;;:9;:26::i;:::-;22559:110;;:::o;20990:272::-;21104:28;21114:4;21120:2;21124:7;21104:9;:28::i;:::-;21151:48;21174:4;21180:2;21184:7;21193:5;21151:22;:48::i;:::-;21143:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;20990:272;;;;:::o;44861:114::-;44921:13;44954;44947:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44861:114;:::o;3634:723::-;3690:13;3920:1;3911:5;:10;3907:53;;;3938:10;;;;;;;;;;;;;;;;;;;;;3907:53;3970:12;3985:5;3970:20;;4001:14;4026:78;4041:1;4033:4;:9;4026:78;;4059:8;;;;;:::i;:::-;;;;4090:2;4082:10;;;;;:::i;:::-;;;4026:78;;;4114:19;4146:6;4136:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4114:39;;4164:154;4180:1;4171:5;:10;4164:154;;4208:1;4198:11;;;;;:::i;:::-;;;4275:2;4267:5;:10;;;;:::i;:::-;4254:2;:24;;;;:::i;:::-;4241:39;;4224:6;4231;4224:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;4304:2;4295:11;;;;;:::i;:::-;;;4164:154;;;4342:6;4328:21;;;;;3634:723;;;;:::o;3219:157::-;3304:4;3343:25;3328:40;;;:11;:40;;;;3321:47;;3219:157;;;:::o;30279:555::-;30389:45;30416:4;30422:2;30426:7;30389:26;:45::i;:::-;30467:1;30451:18;;:4;:18;;;30447:187;;;30486:40;30518:7;30486:31;:40::i;:::-;30447:187;;;30556:2;30548:10;;:4;:10;;;30544:90;;30575:47;30608:4;30614:7;30575:32;:47::i;:::-;30544:90;30447:187;30662:1;30648:16;;:2;:16;;;30644:183;;;30681:45;30718:7;30681:36;:45::i;:::-;30644:183;;;30754:4;30748:10;;:2;:10;;;30744:83;;30775:40;30803:2;30807:7;30775:27;:40::i;:::-;30744:83;30644:183;30279:555;;;:::o;22896:250::-;22992:18;22998:2;23002:7;22992:5;:18::i;:::-;23029:54;23060:1;23064:2;23068:7;23077:5;23029:22;:54::i;:::-;23021:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;22896:250;;;:::o;26191:843::-;26312:4;26338:15;:2;:13;;;:15::i;:::-;26334:693;;;26390:2;26374:36;;;26411:12;:10;:12::i;:::-;26425:4;26431:7;26440:5;26374:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26370:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26637:1;26620:6;:13;:18;26616:341;;;26663:60;;;;;;;;;;:::i;:::-;;;;;;;;26616:341;26907:6;26901:13;26892:6;26888:2;26884:15;26877:38;26370:602;26507:45;;;26497:55;;;:6;:55;;;;26490:62;;;;;26334:693;27011:4;27004:11;;26191:843;;;;;;;:::o;27647:93::-;;;;:::o;31557:164::-;31661:10;:17;;;;31634:15;:24;31650:7;31634:24;;;;;;;;;;;:44;;;;31689:10;31705:7;31689:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31557:164;:::o;32348:988::-;32614:22;32664:1;32639:22;32656:4;32639:16;:22::i;:::-;:26;;;;:::i;:::-;32614:51;;32676:18;32697:17;:26;32715:7;32697:26;;;;;;;;;;;;32676:47;;32844:14;32830:10;:28;32826:328;;32875:19;32897:12;:18;32910:4;32897:18;;;;;;;;;;;;;;;:34;32916:14;32897:34;;;;;;;;;;;;32875:56;;32981:11;32948:12;:18;32961:4;32948:18;;;;;;;;;;;;;;;:30;32967:10;32948:30;;;;;;;;;;;:44;;;;33098:10;33065:17;:30;33083:11;33065:30;;;;;;;;;;;:43;;;;32826:328;;33250:17;:26;33268:7;33250:26;;;;;;;;;;;33243:33;;;33294:12;:18;33307:4;33294:18;;;;;;;;;;;;;;;:34;33313:14;33294:34;;;;;;;;;;;33287:41;;;32348:988;;;;:::o;33631:1079::-;33884:22;33929:1;33909:10;:17;;;;:21;;;;:::i;:::-;33884:46;;33941:18;33962:15;:24;33978:7;33962:24;;;;;;;;;;;;33941:45;;34313:19;34335:10;34346:14;34335:26;;;;;;;;;;;;;;;;;;;;;;;;34313:48;;34399:11;34374:10;34385;34374:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;34510:10;34479:15;:28;34495:11;34479:28;;;;;;;;;;;:41;;;;34651:15;:24;34667:7;34651:24;;;;;;;;;;;34644:31;;;34686:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33631:1079;;;;:::o;31135:221::-;31220:14;31237:20;31254:2;31237:16;:20::i;:::-;31220:37;;31295:7;31268:12;:16;31281:2;31268:16;;;;;;;;;;;;;;;:24;31285:6;31268:24;;;;;;;;;;;:34;;;;31342:6;31313:17;:26;31331:7;31313:26;;;;;;;;;;;:35;;;;31135:221;;;:::o;23482:382::-;23576:1;23562:16;;:2;:16;;;;23554:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;23635:16;23643:7;23635;:16::i;:::-;23634:17;23626:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;23697:45;23726:1;23730:2;23734:7;23697:20;:45::i;:::-;23772:1;23755:9;:13;23765:2;23755:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;23803:2;23784:7;:16;23792:7;23784:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;23848:7;23844:2;23823:33;;23840:1;23823:33;;;;;;;;;;;;23482:382;;:::o;35429:422::-;35489:4;35697:12;35808:7;35796:20;35788:28;;35842:1;35835:4;:8;35828:15;;;35429:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:179::-;6417:10;6438:46;6480:3;6472:6;6438:46;:::i;:::-;6516:4;6511:3;6507:14;6493:28;;6428:99;;;;:::o;6533:118::-;6620:24;6638:5;6620:24;:::i;:::-;6615:3;6608:37;6598:53;;:::o;6687:732::-;6806:3;6835:54;6883:5;6835:54;:::i;:::-;6905:86;6984:6;6979:3;6905:86;:::i;:::-;6898:93;;7015:56;7065:5;7015:56;:::i;:::-;7094:7;7125:1;7110:284;7135:6;7132:1;7129:13;7110:284;;;7211:6;7205:13;7238:63;7297:3;7282:13;7238:63;:::i;:::-;7231:70;;7324:60;7377:6;7324:60;:::i;:::-;7314:70;;7170:224;7157:1;7154;7150:9;7145:14;;7110:284;;;7114:14;7410:3;7403:10;;6811:608;;;;;;;:::o;7425:109::-;7506:21;7521:5;7506:21;:::i;:::-;7501:3;7494:34;7484:50;;:::o;7540:360::-;7626:3;7654:38;7686:5;7654:38;:::i;:::-;7708:70;7771:6;7766:3;7708:70;:::i;:::-;7701:77;;7787:52;7832:6;7827:3;7820:4;7813:5;7809:16;7787:52;:::i;:::-;7864:29;7886:6;7864:29;:::i;:::-;7859:3;7855:39;7848:46;;7630:270;;;;;:::o;7906:364::-;7994:3;8022:39;8055:5;8022:39;:::i;:::-;8077:71;8141:6;8136:3;8077:71;:::i;:::-;8070:78;;8157:52;8202:6;8197:3;8190:4;8183:5;8179:16;8157:52;:::i;:::-;8234:29;8256:6;8234:29;:::i;:::-;8229:3;8225:39;8218:46;;7998:272;;;;;:::o;8276:377::-;8382:3;8410:39;8443:5;8410:39;:::i;:::-;8465:89;8547:6;8542:3;8465:89;:::i;:::-;8458:96;;8563:52;8608:6;8603:3;8596:4;8589:5;8585:16;8563:52;:::i;:::-;8640:6;8635:3;8631:16;8624:23;;8386:267;;;;;:::o;8659:366::-;8801:3;8822:67;8886:2;8881:3;8822:67;:::i;:::-;8815:74;;8898:93;8987:3;8898:93;:::i;:::-;9016:2;9011:3;9007:12;9000:19;;8805:220;;;:::o;9031:366::-;9173:3;9194:67;9258:2;9253:3;9194:67;:::i;:::-;9187:74;;9270:93;9359:3;9270:93;:::i;:::-;9388:2;9383:3;9379:12;9372:19;;9177:220;;;:::o;9403:366::-;9545:3;9566:67;9630:2;9625:3;9566:67;:::i;:::-;9559:74;;9642:93;9731:3;9642:93;:::i;:::-;9760:2;9755:3;9751:12;9744:19;;9549:220;;;:::o;9775:366::-;9917:3;9938:67;10002:2;9997:3;9938:67;:::i;:::-;9931:74;;10014:93;10103:3;10014:93;:::i;:::-;10132:2;10127:3;10123:12;10116:19;;9921:220;;;:::o;10147:366::-;10289:3;10310:67;10374:2;10369:3;10310:67;:::i;:::-;10303:74;;10386:93;10475:3;10386:93;:::i;:::-;10504:2;10499:3;10495:12;10488:19;;10293:220;;;:::o;10519:366::-;10661:3;10682:67;10746:2;10741:3;10682:67;:::i;:::-;10675:74;;10758:93;10847:3;10758:93;:::i;:::-;10876:2;10871:3;10867:12;10860:19;;10665:220;;;:::o;10891:366::-;11033:3;11054:67;11118:2;11113:3;11054:67;:::i;:::-;11047:74;;11130:93;11219:3;11130:93;:::i;:::-;11248:2;11243:3;11239:12;11232:19;;11037:220;;;:::o;11263:366::-;11405:3;11426:67;11490:2;11485:3;11426:67;:::i;:::-;11419:74;;11502:93;11591:3;11502:93;:::i;:::-;11620:2;11615:3;11611:12;11604:19;;11409:220;;;:::o;11635:366::-;11777:3;11798:67;11862:2;11857:3;11798:67;:::i;:::-;11791:74;;11874:93;11963:3;11874:93;:::i;:::-;11992:2;11987:3;11983:12;11976:19;;11781:220;;;:::o;12007:366::-;12149:3;12170:67;12234:2;12229:3;12170:67;:::i;:::-;12163:74;;12246:93;12335:3;12246:93;:::i;:::-;12364:2;12359:3;12355:12;12348:19;;12153:220;;;:::o;12379:366::-;12521:3;12542:67;12606:2;12601:3;12542:67;:::i;:::-;12535:74;;12618:93;12707:3;12618:93;:::i;:::-;12736:2;12731:3;12727:12;12720:19;;12525:220;;;:::o;12751:366::-;12893:3;12914:67;12978:2;12973:3;12914:67;:::i;:::-;12907:74;;12990:93;13079:3;12990:93;:::i;:::-;13108:2;13103:3;13099:12;13092:19;;12897:220;;;:::o;13123:366::-;13265:3;13286:67;13350:2;13345:3;13286:67;:::i;:::-;13279:74;;13362:93;13451:3;13362:93;:::i;:::-;13480:2;13475:3;13471:12;13464:19;;13269:220;;;:::o;13495:366::-;13637:3;13658:67;13722:2;13717:3;13658:67;:::i;:::-;13651:74;;13734:93;13823:3;13734:93;:::i;:::-;13852:2;13847:3;13843:12;13836:19;;13641:220;;;:::o;13867:366::-;14009:3;14030:67;14094:2;14089:3;14030:67;:::i;:::-;14023:74;;14106:93;14195:3;14106:93;:::i;:::-;14224:2;14219:3;14215:12;14208:19;;14013:220;;;:::o;14239:366::-;14381:3;14402:67;14466:2;14461:3;14402:67;:::i;:::-;14395:74;;14478:93;14567:3;14478:93;:::i;:::-;14596:2;14591:3;14587:12;14580:19;;14385:220;;;:::o;14611:366::-;14753:3;14774:67;14838:2;14833:3;14774:67;:::i;:::-;14767:74;;14850:93;14939:3;14850:93;:::i;:::-;14968:2;14963:3;14959:12;14952:19;;14757:220;;;:::o;14983:366::-;15125:3;15146:67;15210:2;15205:3;15146:67;:::i;:::-;15139:74;;15222:93;15311:3;15222:93;:::i;:::-;15340:2;15335:3;15331:12;15324:19;;15129:220;;;:::o;15355:366::-;15497:3;15518:67;15582:2;15577:3;15518:67;:::i;:::-;15511:74;;15594:93;15683:3;15594:93;:::i;:::-;15712:2;15707:3;15703:12;15696:19;;15501:220;;;:::o;15727:366::-;15869:3;15890:67;15954:2;15949:3;15890:67;:::i;:::-;15883:74;;15966:93;16055:3;15966:93;:::i;:::-;16084:2;16079:3;16075:12;16068:19;;15873:220;;;:::o;16099:366::-;16241:3;16262:67;16326:2;16321:3;16262:67;:::i;:::-;16255:74;;16338:93;16427:3;16338:93;:::i;:::-;16456:2;16451:3;16447:12;16440:19;;16245:220;;;:::o;16471:366::-;16613:3;16634:67;16698:2;16693:3;16634:67;:::i;:::-;16627:74;;16710:93;16799:3;16710:93;:::i;:::-;16828:2;16823:3;16819:12;16812:19;;16617:220;;;:::o;16843:366::-;16985:3;17006:67;17070:2;17065:3;17006:67;:::i;:::-;16999:74;;17082:93;17171:3;17082:93;:::i;:::-;17200:2;17195:3;17191:12;17184:19;;16989:220;;;:::o;17215:366::-;17357:3;17378:67;17442:2;17437:3;17378:67;:::i;:::-;17371:74;;17454:93;17543:3;17454:93;:::i;:::-;17572:2;17567:3;17563:12;17556:19;;17361:220;;;:::o;17587:366::-;17729:3;17750:67;17814:2;17809:3;17750:67;:::i;:::-;17743:74;;17826:93;17915:3;17826:93;:::i;:::-;17944:2;17939:3;17935:12;17928:19;;17733:220;;;:::o;17959:366::-;18101:3;18122:67;18186:2;18181:3;18122:67;:::i;:::-;18115:74;;18198:93;18287:3;18198:93;:::i;:::-;18316:2;18311:3;18307:12;18300:19;;18105:220;;;:::o;18331:366::-;18473:3;18494:67;18558:2;18553:3;18494:67;:::i;:::-;18487:74;;18570:93;18659:3;18570:93;:::i;:::-;18688:2;18683:3;18679:12;18672:19;;18477:220;;;:::o;18703:366::-;18845:3;18866:67;18930:2;18925:3;18866:67;:::i;:::-;18859:74;;18942:93;19031:3;18942:93;:::i;:::-;19060:2;19055:3;19051:12;19044:19;;18849:220;;;:::o;19075:108::-;19152:24;19170:5;19152:24;:::i;:::-;19147:3;19140:37;19130:53;;:::o;19189:118::-;19276:24;19294:5;19276:24;:::i;:::-;19271:3;19264:37;19254:53;;:::o;19313:435::-;19493:3;19515:95;19606:3;19597:6;19515:95;:::i;:::-;19508:102;;19627:95;19718:3;19709:6;19627:95;:::i;:::-;19620:102;;19739:3;19732:10;;19497:251;;;;;:::o;19754:222::-;19847:4;19885:2;19874:9;19870:18;19862:26;;19898:71;19966:1;19955:9;19951:17;19942:6;19898:71;:::i;:::-;19852:124;;;;:::o;19982:640::-;20177:4;20215:3;20204:9;20200:19;20192:27;;20229:71;20297:1;20286:9;20282:17;20273:6;20229:71;:::i;:::-;20310:72;20378:2;20367:9;20363:18;20354:6;20310:72;:::i;:::-;20392;20460:2;20449:9;20445:18;20436:6;20392:72;:::i;:::-;20511:9;20505:4;20501:20;20496:2;20485:9;20481:18;20474:48;20539:76;20610:4;20601:6;20539:76;:::i;:::-;20531:84;;20182:440;;;;;;;:::o;20628:373::-;20771:4;20809:2;20798:9;20794:18;20786:26;;20858:9;20852:4;20848:20;20844:1;20833:9;20829:17;20822:47;20886:108;20989:4;20980:6;20886:108;:::i;:::-;20878:116;;20776:225;;;;:::o;21007:210::-;21094:4;21132:2;21121:9;21117:18;21109:26;;21145:65;21207:1;21196:9;21192:17;21183:6;21145:65;:::i;:::-;21099:118;;;;:::o;21223:313::-;21336:4;21374:2;21363:9;21359:18;21351:26;;21423:9;21417:4;21413:20;21409:1;21398:9;21394:17;21387:47;21451:78;21524:4;21515:6;21451:78;:::i;:::-;21443:86;;21341:195;;;;:::o;21542:419::-;21708:4;21746:2;21735:9;21731:18;21723:26;;21795:9;21789:4;21785:20;21781:1;21770:9;21766:17;21759:47;21823:131;21949:4;21823:131;:::i;:::-;21815:139;;21713:248;;;:::o;21967:419::-;22133:4;22171:2;22160:9;22156:18;22148:26;;22220:9;22214:4;22210:20;22206:1;22195:9;22191:17;22184:47;22248:131;22374:4;22248:131;:::i;:::-;22240:139;;22138:248;;;:::o;22392:419::-;22558:4;22596:2;22585:9;22581:18;22573:26;;22645:9;22639:4;22635:20;22631:1;22620:9;22616:17;22609:47;22673:131;22799:4;22673:131;:::i;:::-;22665:139;;22563:248;;;:::o;22817:419::-;22983:4;23021:2;23010:9;23006:18;22998:26;;23070:9;23064:4;23060:20;23056:1;23045:9;23041:17;23034:47;23098:131;23224:4;23098:131;:::i;:::-;23090:139;;22988:248;;;:::o;23242:419::-;23408:4;23446:2;23435:9;23431:18;23423:26;;23495:9;23489:4;23485:20;23481:1;23470:9;23466:17;23459:47;23523:131;23649:4;23523:131;:::i;:::-;23515:139;;23413:248;;;:::o;23667:419::-;23833:4;23871:2;23860:9;23856:18;23848:26;;23920:9;23914:4;23910:20;23906:1;23895:9;23891:17;23884:47;23948:131;24074:4;23948:131;:::i;:::-;23940:139;;23838:248;;;:::o;24092:419::-;24258:4;24296:2;24285:9;24281:18;24273:26;;24345:9;24339:4;24335:20;24331:1;24320:9;24316:17;24309:47;24373:131;24499:4;24373:131;:::i;:::-;24365:139;;24263:248;;;:::o;24517:419::-;24683:4;24721:2;24710:9;24706:18;24698:26;;24770:9;24764:4;24760:20;24756:1;24745:9;24741:17;24734:47;24798:131;24924:4;24798:131;:::i;:::-;24790:139;;24688:248;;;:::o;24942:419::-;25108:4;25146:2;25135:9;25131:18;25123:26;;25195:9;25189:4;25185:20;25181:1;25170:9;25166:17;25159:47;25223:131;25349:4;25223:131;:::i;:::-;25215:139;;25113:248;;;:::o;25367:419::-;25533:4;25571:2;25560:9;25556:18;25548:26;;25620:9;25614:4;25610:20;25606:1;25595:9;25591:17;25584:47;25648:131;25774:4;25648:131;:::i;:::-;25640:139;;25538:248;;;:::o;25792:419::-;25958:4;25996:2;25985:9;25981:18;25973:26;;26045:9;26039:4;26035:20;26031:1;26020:9;26016:17;26009:47;26073:131;26199:4;26073:131;:::i;:::-;26065:139;;25963:248;;;:::o;26217:419::-;26383:4;26421:2;26410:9;26406:18;26398:26;;26470:9;26464:4;26460:20;26456:1;26445:9;26441:17;26434:47;26498:131;26624:4;26498:131;:::i;:::-;26490:139;;26388:248;;;:::o;26642:419::-;26808:4;26846:2;26835:9;26831:18;26823:26;;26895:9;26889:4;26885:20;26881:1;26870:9;26866:17;26859:47;26923:131;27049:4;26923:131;:::i;:::-;26915:139;;26813:248;;;:::o;27067:419::-;27233:4;27271:2;27260:9;27256:18;27248:26;;27320:9;27314:4;27310:20;27306:1;27295:9;27291:17;27284:47;27348:131;27474:4;27348:131;:::i;:::-;27340:139;;27238:248;;;:::o;27492:419::-;27658:4;27696:2;27685:9;27681:18;27673:26;;27745:9;27739:4;27735:20;27731:1;27720:9;27716:17;27709:47;27773:131;27899:4;27773:131;:::i;:::-;27765:139;;27663:248;;;:::o;27917:419::-;28083:4;28121:2;28110:9;28106:18;28098:26;;28170:9;28164:4;28160:20;28156:1;28145:9;28141:17;28134:47;28198:131;28324:4;28198:131;:::i;:::-;28190:139;;28088:248;;;:::o;28342:419::-;28508:4;28546:2;28535:9;28531:18;28523:26;;28595:9;28589:4;28585:20;28581:1;28570:9;28566:17;28559:47;28623:131;28749:4;28623:131;:::i;:::-;28615:139;;28513:248;;;:::o;28767:419::-;28933:4;28971:2;28960:9;28956:18;28948:26;;29020:9;29014:4;29010:20;29006:1;28995:9;28991:17;28984:47;29048:131;29174:4;29048:131;:::i;:::-;29040:139;;28938:248;;;:::o;29192:419::-;29358:4;29396:2;29385:9;29381:18;29373:26;;29445:9;29439:4;29435:20;29431:1;29420:9;29416:17;29409:47;29473:131;29599:4;29473:131;:::i;:::-;29465:139;;29363:248;;;:::o;29617:419::-;29783:4;29821:2;29810:9;29806:18;29798:26;;29870:9;29864:4;29860:20;29856:1;29845:9;29841:17;29834:47;29898:131;30024:4;29898:131;:::i;:::-;29890:139;;29788:248;;;:::o;30042:419::-;30208:4;30246:2;30235:9;30231:18;30223:26;;30295:9;30289:4;30285:20;30281:1;30270:9;30266:17;30259:47;30323:131;30449:4;30323:131;:::i;:::-;30315:139;;30213:248;;;:::o;30467:419::-;30633:4;30671:2;30660:9;30656:18;30648:26;;30720:9;30714:4;30710:20;30706:1;30695:9;30691:17;30684:47;30748:131;30874:4;30748:131;:::i;:::-;30740:139;;30638:248;;;:::o;30892:419::-;31058:4;31096:2;31085:9;31081:18;31073:26;;31145:9;31139:4;31135:20;31131:1;31120:9;31116:17;31109:47;31173:131;31299:4;31173:131;:::i;:::-;31165:139;;31063:248;;;:::o;31317:419::-;31483:4;31521:2;31510:9;31506:18;31498:26;;31570:9;31564:4;31560:20;31556:1;31545:9;31541:17;31534:47;31598:131;31724:4;31598:131;:::i;:::-;31590:139;;31488:248;;;:::o;31742:419::-;31908:4;31946:2;31935:9;31931:18;31923:26;;31995:9;31989:4;31985:20;31981:1;31970:9;31966:17;31959:47;32023:131;32149:4;32023:131;:::i;:::-;32015:139;;31913:248;;;:::o;32167:419::-;32333:4;32371:2;32360:9;32356:18;32348:26;;32420:9;32414:4;32410:20;32406:1;32395:9;32391:17;32384:47;32448:131;32574:4;32448:131;:::i;:::-;32440:139;;32338:248;;;:::o;32592:419::-;32758:4;32796:2;32785:9;32781:18;32773:26;;32845:9;32839:4;32835:20;32831:1;32820:9;32816:17;32809:47;32873:131;32999:4;32873:131;:::i;:::-;32865:139;;32763:248;;;:::o;33017:419::-;33183:4;33221:2;33210:9;33206:18;33198:26;;33270:9;33264:4;33260:20;33256:1;33245:9;33241:17;33234:47;33298:131;33424:4;33298:131;:::i;:::-;33290:139;;33188:248;;;:::o;33442:222::-;33535:4;33573:2;33562:9;33558:18;33550:26;;33586:71;33654:1;33643:9;33639:17;33630:6;33586:71;:::i;:::-;33540:124;;;;:::o;33670:129::-;33704:6;33731:20;;:::i;:::-;33721:30;;33760:33;33788:4;33780:6;33760:33;:::i;:::-;33711:88;;;:::o;33805:75::-;33838:6;33871:2;33865:9;33855:19;;33845:35;:::o;33886:307::-;33947:4;34037:18;34029:6;34026:30;34023:2;;;34059:18;;:::i;:::-;34023:2;34097:29;34119:6;34097:29;:::i;:::-;34089:37;;34181:4;34175;34171:15;34163:23;;33952:241;;;:::o;34199:308::-;34261:4;34351:18;34343:6;34340:30;34337:2;;;34373:18;;:::i;:::-;34337:2;34411:29;34433:6;34411:29;:::i;:::-;34403:37;;34495:4;34489;34485:15;34477:23;;34266:241;;;:::o;34513:132::-;34580:4;34603:3;34595:11;;34633:4;34628:3;34624:14;34616:22;;34585:60;;;:::o;34651:114::-;34718:6;34752:5;34746:12;34736:22;;34725:40;;;:::o;34771:98::-;34822:6;34856:5;34850:12;34840:22;;34829:40;;;:::o;34875:99::-;34927:6;34961:5;34955:12;34945:22;;34934:40;;;:::o;34980:113::-;35050:4;35082;35077:3;35073:14;35065:22;;35055:38;;;:::o;35099:184::-;35198:11;35232:6;35227:3;35220:19;35272:4;35267:3;35263:14;35248:29;;35210:73;;;;:::o;35289:168::-;35372:11;35406:6;35401:3;35394:19;35446:4;35441:3;35437:14;35422:29;;35384:73;;;;:::o;35463:169::-;35547:11;35581:6;35576:3;35569:19;35621:4;35616:3;35612:14;35597:29;;35559:73;;;;:::o;35638:148::-;35740:11;35777:3;35762:18;;35752:34;;;;:::o;35792:305::-;35832:3;35851:20;35869:1;35851:20;:::i;:::-;35846:25;;35885:20;35903:1;35885:20;:::i;:::-;35880:25;;36039:1;35971:66;35967:74;35964:1;35961:81;35958:2;;;36045:18;;:::i;:::-;35958:2;36089:1;36086;36082:9;36075:16;;35836:261;;;;:::o;36103:185::-;36143:1;36160:20;36178:1;36160:20;:::i;:::-;36155:25;;36194:20;36212:1;36194:20;:::i;:::-;36189:25;;36233:1;36223:2;;36238:18;;:::i;:::-;36223:2;36280:1;36277;36273:9;36268:14;;36145:143;;;;:::o;36294:348::-;36334:7;36357:20;36375:1;36357:20;:::i;:::-;36352:25;;36391:20;36409:1;36391:20;:::i;:::-;36386:25;;36579:1;36511:66;36507:74;36504:1;36501:81;36496:1;36489:9;36482:17;36478:105;36475:2;;;36586:18;;:::i;:::-;36475:2;36634:1;36631;36627:9;36616:20;;36342:300;;;;:::o;36648:191::-;36688:4;36708:20;36726:1;36708:20;:::i;:::-;36703:25;;36742:20;36760:1;36742:20;:::i;:::-;36737:25;;36781:1;36778;36775:8;36772:2;;;36786:18;;:::i;:::-;36772:2;36831:1;36828;36824:9;36816:17;;36693:146;;;;:::o;36845:96::-;36882:7;36911:24;36929:5;36911:24;:::i;:::-;36900:35;;36890:51;;;:::o;36947:90::-;36981:7;37024:5;37017:13;37010:21;36999:32;;36989:48;;;:::o;37043:149::-;37079:7;37119:66;37112:5;37108:78;37097:89;;37087:105;;;:::o;37198:126::-;37235:7;37275:42;37268:5;37264:54;37253:65;;37243:81;;;:::o;37330:77::-;37367:7;37396:5;37385:16;;37375:32;;;:::o;37413:154::-;37497:6;37492:3;37487;37474:30;37559:1;37550:6;37545:3;37541:16;37534:27;37464:103;;;:::o;37573:307::-;37641:1;37651:113;37665:6;37662:1;37659:13;37651:113;;;37750:1;37745:3;37741:11;37735:18;37731:1;37726:3;37722:11;37715:39;37687:2;37684:1;37680:10;37675:15;;37651:113;;;37782:6;37779:1;37776:13;37773:2;;;37862:1;37853:6;37848:3;37844:16;37837:27;37773:2;37622:258;;;;:::o;37886:320::-;37930:6;37967:1;37961:4;37957:12;37947:22;;38014:1;38008:4;38004:12;38035:18;38025:2;;38091:4;38083:6;38079:17;38069:27;;38025:2;38153;38145:6;38142:14;38122:18;38119:38;38116:2;;;38172:18;;:::i;:::-;38116:2;37937:269;;;;:::o;38212:281::-;38295:27;38317:4;38295:27;:::i;:::-;38287:6;38283:40;38425:6;38413:10;38410:22;38389:18;38377:10;38374:34;38371:62;38368:2;;;38436:18;;:::i;:::-;38368:2;38476:10;38472:2;38465:22;38255:238;;;:::o;38499:233::-;38538:3;38561:24;38579:5;38561:24;:::i;:::-;38552:33;;38607:66;38600:5;38597:77;38594:2;;;38677:18;;:::i;:::-;38594:2;38724:1;38717:5;38713:13;38706:20;;38542:190;;;:::o;38738:176::-;38770:1;38787:20;38805:1;38787:20;:::i;:::-;38782:25;;38821:20;38839:1;38821:20;:::i;:::-;38816:25;;38860:1;38850:2;;38865:18;;:::i;:::-;38850:2;38906:1;38903;38899:9;38894:14;;38772:142;;;;:::o;38920:180::-;38968:77;38965:1;38958:88;39065:4;39062:1;39055:15;39089:4;39086:1;39079:15;39106:180;39154:77;39151:1;39144:88;39251:4;39248:1;39241:15;39275:4;39272:1;39265:15;39292:180;39340:77;39337:1;39330:88;39437:4;39434:1;39427:15;39461:4;39458:1;39451:15;39478:180;39526:77;39523:1;39516:88;39623:4;39620:1;39613:15;39647:4;39644:1;39637:15;39664:102;39705:6;39756:2;39752:7;39747:2;39740:5;39736:14;39732:28;39722:38;;39712:54;;;:::o;39772:171::-;39912:23;39908:1;39900:6;39896:14;39889:47;39878:65;:::o;39949:161::-;40089:13;40085:1;40077:6;40073:14;40066:37;40055:55;:::o;40116:230::-;40256:34;40252:1;40244:6;40240:14;40233:58;40325:13;40320:2;40312:6;40308:15;40301:38;40222:124;:::o;40352:237::-;40492:34;40488:1;40480:6;40476:14;40469:58;40561:20;40556:2;40548:6;40544:15;40537:45;40458:131;:::o;40595:225::-;40735:34;40731:1;40723:6;40719:14;40712:58;40804:8;40799:2;40791:6;40787:15;40780:33;40701:119;:::o;40826:178::-;40966:30;40962:1;40954:6;40950:14;40943:54;40932:72;:::o;41010:223::-;41150:34;41146:1;41138:6;41134:14;41127:58;41219:6;41214:2;41206:6;41202:15;41195:31;41116:117;:::o;41239:175::-;41379:27;41375:1;41367:6;41363:14;41356:51;41345:69;:::o;41420:231::-;41560:34;41556:1;41548:6;41544:14;41537:58;41629:14;41624:2;41616:6;41612:15;41605:39;41526:125;:::o;41657:243::-;41797:34;41793:1;41785:6;41781:14;41774:58;41866:26;41861:2;41853:6;41849:15;41842:51;41763:137;:::o;41906:229::-;42046:34;42042:1;42034:6;42030:14;42023:58;42115:12;42110:2;42102:6;42098:15;42091:37;42012:123;:::o;42141:228::-;42281:34;42277:1;42269:6;42265:14;42258:58;42350:11;42345:2;42337:6;42333:15;42326:36;42247:122;:::o;42375:182::-;42515:34;42511:1;42503:6;42499:14;42492:58;42481:76;:::o;42563:231::-;42703:34;42699:1;42691:6;42687:14;42680:58;42772:14;42767:2;42759:6;42755:15;42748:39;42669:125;:::o;42800:182::-;42940:34;42936:1;42928:6;42924:14;42917:58;42906:76;:::o;42988:172::-;43128:24;43124:1;43116:6;43112:14;43105:48;43094:66;:::o;43166:228::-;43306:34;43302:1;43294:6;43290:14;43283:58;43375:11;43370:2;43362:6;43358:15;43351:36;43272:122;:::o;43400:234::-;43540:34;43536:1;43528:6;43524:14;43517:58;43609:17;43604:2;43596:6;43592:15;43585:42;43506:128;:::o;43640:174::-;43780:26;43776:1;43768:6;43764:14;43757:50;43746:68;:::o;43820:220::-;43960:34;43956:1;43948:6;43944:14;43937:58;44029:3;44024:2;44016:6;44012:15;44005:28;43926:114;:::o;44046:175::-;44186:27;44182:1;44174:6;44170:14;44163:51;44152:69;:::o;44227:182::-;44367:34;44363:1;44355:6;44351:14;44344:58;44333:76;:::o;44415:176::-;44555:28;44551:1;44543:6;44539:14;44532:52;44521:70;:::o;44597:236::-;44737:34;44733:1;44725:6;44721:14;44714:58;44806:19;44801:2;44793:6;44789:15;44782:44;44703:130;:::o;44839:175::-;44979:27;44975:1;44967:6;44963:14;44956:51;44945:69;:::o;45020:231::-;45160:34;45156:1;45148:6;45144:14;45137:58;45229:14;45224:2;45216:6;45212:15;45205:39;45126:125;:::o;45257:168::-;45397:20;45393:1;45385:6;45381:14;45374:44;45363:62;:::o;45431:168::-;45571:20;45567:1;45559:6;45555:14;45548:44;45537:62;:::o;45605:122::-;45678:24;45696:5;45678:24;:::i;:::-;45671:5;45668:35;45658:2;;45717:1;45714;45707:12;45658:2;45648:79;:::o;45733:116::-;45803:21;45818:5;45803:21;:::i;:::-;45796:5;45793:32;45783:2;;45839:1;45836;45829:12;45783:2;45773:76;:::o;45855:120::-;45927:23;45944:5;45927:23;:::i;:::-;45920:5;45917:34;45907:2;;45965:1;45962;45955:12;45907:2;45897:78;:::o;45981:122::-;46054:24;46072:5;46054:24;:::i;:::-;46047:5;46044:35;46034:2;;46093:1;46090;46083:12;46034:2;46024:79;:::o

Swarm Source

ipfs://19909c1b36513d3b2b0c5dacaabf0b4aef91f6a973ad18f4cf5ecb234e1bf936
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.