ETH Price: $3,444.30 (-0.96%)
Gas: 3 Gwei

Token

TENKAI (TENKAI)
 

Overview

Max Total Supply

1,824 TENKAI

Holders

1,464

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wkamaubell.eth
Balance
3 TENKAI
0xc95bb75edaeba9329777e07cf84d4fc84eb85578
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:
Tenkai

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-17
*/

/**
 *This contract creator Tmznfts -> Full Stack Web3 Developer -> https://twitter.com/tmznfts
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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;
        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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

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;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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) {
        return msg.data;
    }
}

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _nextTokenId;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _nextTokenId = 1;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. 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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _nextTokenId;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _nextTokenId;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        _nextTokenId = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_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 {
        _transferOwnership(address(0));
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


pragma solidity ^0.8.0;

contract Tenkai is ERC721A, Ownable {
  using Strings for uint256;
  string public baseURI;
  address public treasuryAddress;
  uint256 public mintPrice = 0.02 ether;
  uint256 public supply = 9750;
  uint256 public maxFreeMint = 3000;
  uint256 public freeMintCounter = 0;
    bytes32 public whitelistMerkleRoot;
  uint8 public phase = 0;
  uint8 public maxBuy = 20;
  uint8 public presaleMaxBuy = 20;
    //TEAM WALLETS
    address wallet1 = 0x737aF88f67f94fe011A56aE84b510b0d342DbA90;
    address wallet2 = 0x73b1599DcD187b6BD2FEAbAeE6E6367405C94F38;
    address wallet3 = 0x71e095B3d56e0e12D68e482c027216F473E136F8;
    address wallet4 = 0x20FF23c7b2C4066feA65aCac411222A814Fa30aD;
    address wallet5 = 0x32d719d798e075B846Cf0af5821B80A43A681C28;

 
  constructor(
      string memory _name,
        string memory _symbol,
        string memory _initBaseURI
  ) ERC721A(_name, _symbol) {
    setBaseURI(_initBaseURI);
    treasuryAddress = msg.sender;
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

    return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : "";
  }

  function mintForAddress(address[] calldata _addresses, uint256 quantity) public onlyOwner {
    for (uint i=0; i<_addresses.length; i++) {
      _safeMint(_addresses[i], quantity);
    }
  }
    function donate() external payable {
        // thank you
    }
  function mint(uint8 _mintAmount) external payable {
    require(phase == 3, "This sale has not started");
    require(_mintAmount > 0, "Not mint zero");
    
    require(totalSupply() + _mintAmount <= supply, "You can't mint more then the total supply");
    require(_numberMinted(msg.sender) + _mintAmount <= maxBuy, "Buy limit reached");
     if(freeMintCounter <= maxFreeMint){
    if(_numberMinted(msg.sender) > 0){
    require(msg.value >= mintPrice * _mintAmount, "Insufficient funds");
    }else{
        require(msg.value >= ((mintPrice * _mintAmount) - mintPrice), "Insufficient funds");
        freeMintCounter++;
    }
    }else{
        require(msg.value >= mintPrice * _mintAmount, "Insufficient funds");
    }
    _safeMint(msg.sender, _mintAmount);
  }

 

  function whitelistMint(uint8 _mintAmount, bytes32[] calldata _merkleProof) public payable {
    // Verify presale list requirements
    require(phase == 1, "This sale has not started");
    require(_mintAmount > 0, "Not mint zero");
    
    require(_numberMinted(msg.sender) + _mintAmount <= presaleMaxBuy, "Buy limit reached");
    
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "Invalid proof!");
    if(freeMintCounter <= maxFreeMint){
    if(_numberMinted(msg.sender) > 0){
    require(msg.value >= mintPrice * _mintAmount, "Insufficient funds");
    }else{
        require(msg.value >= ((mintPrice * _mintAmount) - mintPrice), "Insufficient funds");
         freeMintCounter++;
    }
    }else{
        require(msg.value >= mintPrice * _mintAmount, "Insufficient funds");
    }
    _safeMint(msg.sender, _mintAmount);
  }
    function teamMint(uint8 _mintAmount) external payable onlyOwner{
    
    _safeMint(msg.sender, _mintAmount);
  }
  function teamMintCollab(address _cto,uint8 _mintAmount) external payable onlyOwner{
    
    _safeMint(_cto, _mintAmount);
  }
  function getBaseURI() public view returns (string memory) {
    return baseURI;
  }
function freecounters() public view returns (uint256) {
    return freeMintCounter;
  }
 

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

  function setMintPrice (uint256 _newPrice) external onlyOwner {
    mintPrice = _newPrice;
  }

  

  function setPhase(uint8 _phase) public onlyOwner {
    phase = _phase;
  }

  function setMaxBuy(uint8 _maxBuy) external onlyOwner {
      maxBuy = _maxBuy;
  }

  function setPresaleMaxBuy(uint8 _maxBuy) external onlyOwner {
      presaleMaxBuy = _maxBuy;
  }

  function updateSupply(uint256 _supply) external onlyOwner {
      require(_supply < 10000,"Max suplly not more 10000");
      supply = _supply;
      
  }

  

  function changePresaleRootHash(bytes32 _rootHash) external onlyOwner {
    whitelistMerkleRoot = _rootHash;
  }

 

  function changeOwner(address payable _newWallet) external onlyOwner {
    treasuryAddress = _newWallet;
  }

  function withdraw() external payable onlyOwner {
        require(address(this).balance > 0,"Not have Eth");
        payable(wallet1).transfer((address(this).balance*30) /100);
        payable(wallet2).transfer((address(this).balance*25) /100);
        payable(wallet3).transfer((address(this).balance*25) /100);
        payable(wallet4).transfer((address(this).balance*15) /100);
        payable(wallet5).transfer((address(this).balance*5) /100);
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","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":[{"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newWallet","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"changePresaleRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freecounters","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":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[],"name":"maxBuy","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxBuy","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxBuy","type":"uint8"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxBuy","type":"uint8"}],"name":"setPresaleMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint8","name":"_mintAmount","type":"uint8"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_cto","type":"address"},{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"teamMintCollab","outputs":[],"stateMutability":"payable","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":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"updateSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266470de4df820000600a55612616600b55610bb8600c556000600d556000600f60006101000a81548160ff021916908360ff1602179055506014600f60016101000a81548160ff021916908360ff1602179055506014600f60026101000a81548160ff021916908360ff16021790555073737af88f67f94fe011a56ae84b510b0d342dba90600f60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507373b1599dcd187b6bd2feabaee6e6367405c94f38601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507371e095b3d56e0e12d68e482c027216f473e136f8601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507320ff23c7b2c4066fea65acac411222a814fa30ad601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507332d719d798e075b846cf0af5821b80a43a681c28601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200022a57600080fd5b506040516200625b3803806200625b8339818101604052810190620002509190620005da565b828281600190805190602001906200026a929190620004ac565b50806002908051906020019062000283929190620004ac565b5060016000819055505050620002ae620002a26200030960201b60201c565b6200031160201b60201c565b620002bf81620003d760201b60201c565b33600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200089a565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003e76200030960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200040d6200048260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000466576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045d90620006ba565b60405180910390fd5b80600890805190602001906200047e929190620004ac565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004ba9062000782565b90600052602060002090601f016020900481019282620004de57600085556200052a565b82601f10620004f957805160ff19168380011785556200052a565b828001600101855582156200052a579182015b82811115620005295782518255916020019190600101906200050c565b5b5090506200053991906200053d565b5090565b5b80821115620005585760008160009055506001016200053e565b5090565b6000620005736200056d8462000705565b620006dc565b90508281526020810184848401111562000592576200059162000851565b5b6200059f8482856200074c565b509392505050565b600082601f830112620005bf57620005be6200084c565b5b8151620005d18482602086016200055c565b91505092915050565b600080600060608486031215620005f657620005f56200085b565b5b600084015167ffffffffffffffff81111562000617576200061662000856565b5b6200062586828701620005a7565b935050602084015167ffffffffffffffff81111562000649576200064862000856565b5b6200065786828701620005a7565b925050604084015167ffffffffffffffff8111156200067b576200067a62000856565b5b6200068986828701620005a7565b9150509250925092565b6000620006a26020836200073b565b9150620006af8262000871565b602082019050919050565b60006020820190508181036000830152620006d58162000693565b9050919050565b6000620006e8620006fb565b9050620006f68282620007b8565b919050565b6000604051905090565b600067ffffffffffffffff8211156200072357620007226200081d565b5b6200072e8262000860565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200076c5780820151818401526020810190506200074f565b838111156200077c576000848401525b50505050565b600060028204905060018216806200079b57607f821691505b60208210811415620007b257620007b1620007ee565b5b50919050565b620007c38262000860565b810181811067ffffffffffffffff82111715620007e557620007e46200081d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6159b180620008aa6000396000f3fe60806040526004361061027d5760003560e01c8063714c53981161014f578063ad0b4cc3116100c1578063dbdf2dc01161007a578063dbdf2dc014610931578063dfcf15b01461095a578063e985e9c514610983578063ed88c68e146109c0578063f2fde38b146109ca578063f4a0a528146109f35761027d565b8063ad0b4cc314610823578063b1c9fe6e1461084c578063b88d4fde14610877578063c03afb59146108a0578063c5f956af146108c9578063c87b56dd146108f45761027d565b806395d89b411161011357806395d89b4114610734578063a22cb4651461075f578063a591252d14610788578063a6f9dae1146107b3578063aa98e0c6146107dc578063ac94000f146108075761027d565b8063714c539814610680578063715018a6146106ab5780637b671780146106c25780637ece16a8146106de5780638da5cb5b146107095761027d565b80633ccfd60b116101f35780636817c76c116101ac5780636817c76c1461057d5780636bd08049146105a85780636c0360eb146105d15780636ecd2306146105fc57806370a082311461061857806370db69d6146106555761027d565b80633ccfd60b1461048b57806342842e0e146104955780634f6ccce7146104be57806355f804b3146104fb57806358381669146105245780636352211e146105405761027d565b806318160ddd1161024557806318160ddd1461037b57806323b872dd146103a657806329a0af0b146103cf5780632f745c59146103fa5780633a3f716a146104375780633c4201d2146104625761027d565b806301ffc9a714610282578063047fc9aa146102bf57806306fdde03146102ea578063081812fc14610315578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a4919061406b565b610a1c565b6040516102b691906147f4565b60405180910390f35b3480156102cb57600080fd5b506102d4610b66565b6040516102e19190614bcc565b60405180910390f35b3480156102f657600080fd5b506102ff610b6c565b60405161030c919061482a565b60405180910390f35b34801561032157600080fd5b5061033c6004803603810190610337919061410e565b610bfe565b604051610349919061478d565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613f5e565b610c83565b005b34801561038757600080fd5b50610390610d9c565b60405161039d9190614bcc565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613e48565b610db2565b005b3480156103db57600080fd5b506103e4610dc2565b6040516103f19190614bcc565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190613f5e565b610dc8565b60405161042e9190614bcc565b60405180910390f35b34801561044357600080fd5b5061044c610fc6565b6040516104599190614be7565b60405180910390f35b34801561046e57600080fd5b506104896004803603810190610484919061403e565b610fd9565b005b61049361105f565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613e48565b6113a5565b005b3480156104ca57600080fd5b506104e560048036038101906104e0919061410e565b6113c5565b6040516104f29190614bcc565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d91906140c5565b611418565b005b61053e60048036038101906105399190614168565b6114ae565b005b34801561054c57600080fd5b506105676004803603810190610562919061410e565b6117c5565b604051610574919061478d565b60405180910390f35b34801561058957600080fd5b506105926117db565b60405161059f9190614bcc565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca919061410e565b6117e1565b005b3480156105dd57600080fd5b506105e66118ab565b6040516105f3919061482a565b60405180910390f35b6106166004803603810190610611919061413b565b611939565b005b34801561062457600080fd5b5061063f600480360381019061063a9190613dae565b611bef565b60405161064c9190614bcc565b60405180910390f35b34801561066157600080fd5b5061066a611cd8565b6040516106779190614be7565b60405180910390f35b34801561068c57600080fd5b50610695611ceb565b6040516106a2919061482a565b60405180910390f35b3480156106b757600080fd5b506106c0611d7d565b005b6106dc60048036038101906106d7919061413b565b611e05565b005b3480156106ea57600080fd5b506106f3611e91565b6040516107009190614bcc565b60405180910390f35b34801561071557600080fd5b5061071e611e9b565b60405161072b919061478d565b60405180910390f35b34801561074057600080fd5b50610749611ec5565b604051610756919061482a565b60405180910390f35b34801561076b57600080fd5b5061078660048036038101906107819190613f1e565b611f57565b005b34801561079457600080fd5b5061079d6120d8565b6040516107aa9190614bcc565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d59190613ddb565b6120de565b005b3480156107e857600080fd5b506107f161219e565b6040516107fe919061480f565b60405180910390f35b610821600480360381019061081c9190613f9e565b6121a4565b005b34801561082f57600080fd5b5061084a6004803603810190610845919061413b565b612231565b005b34801561085857600080fd5b506108616122cb565b60405161086e9190614be7565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613e9b565b6122de565b005b3480156108ac57600080fd5b506108c760048036038101906108c2919061413b565b61233a565b005b3480156108d557600080fd5b506108de6123d4565b6040516108eb919061478d565b60405180910390f35b34801561090057600080fd5b5061091b6004803603810190610916919061410e565b6123fa565b604051610928919061482a565b60405180910390f35b34801561093d57600080fd5b506109586004803603810190610953919061413b565b6124a2565b005b34801561096657600080fd5b50610981600480360381019061097c9190613fde565b61253c565b005b34801561098f57600080fd5b506109aa60048036038101906109a59190613e08565b612610565b6040516109b791906147f4565b60405180910390f35b6109c86126a4565b005b3480156109d657600080fd5b506109f160048036038101906109ec9190613dae565b6126a6565b005b3480156109ff57600080fd5b50610a1a6004803603810190610a15919061410e565b61279e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5f5750610b5e82612824565b5b9050919050565b600b5481565b606060018054610b7b90614f61565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba790614f61565b8015610bf45780601f10610bc957610100808354040283529160200191610bf4565b820191906000526020600020905b815481529060010190602001808311610bd757829003601f168201915b5050505050905090565b6000610c098261288e565b610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f90614bac565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8e826117c5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf690614aac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1e61289b565b73ffffffffffffffffffffffffffffffffffffffff161480610d4d5750610d4c81610d4761289b565b612610565b5b610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d839061496c565b60405180910390fd5b610d978383836128a3565b505050565b60006001600054610dad9190614e08565b905090565b610dbd838383612955565b505050565b600d5481565b6000610dd383611bef565b8210610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b9061484c565b60405180910390fd5b6000610e1e610d9c565b905060008060005b83811015610f84576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f1857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f705786841415610f61578195505050505050610fc0565b8380610f6c90614fc4565b9450505b508080610f7c90614fc4565b915050610e26565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790614b4c565b60405180910390fd5b92915050565b600f60029054906101000a900460ff1681565b610fe161289b565b73ffffffffffffffffffffffffffffffffffffffff16610fff611e9b565b73ffffffffffffffffffffffffffffffffffffffff1614611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90614a0c565b60405180910390fd5b80600e8190555050565b61106761289b565b73ffffffffffffffffffffffffffffffffffffffff16611085611e9b565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290614a0c565b60405180910390fd5b6000471161111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590614b8c565b60405180910390fd5b600f60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601e476111699190614dae565b6111739190614d7d565b9081150290604051600060405180830381858888f1935050505015801561119e573d6000803e3d6000fd5b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646019476111ea9190614dae565b6111f49190614d7d565b9081150290604051600060405180830381858888f1935050505015801561121f573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460194761126b9190614dae565b6112759190614d7d565b9081150290604051600060405180830381858888f193505050501580156112a0573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600f476112ec9190614dae565b6112f69190614d7d565b9081150290604051600060405180830381858888f19350505050158015611321573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460054761136d9190614dae565b6113779190614d7d565b9081150290604051600060405180830381858888f193505050501580156113a2573d6000803e3d6000fd5b50565b6113c0838383604051806020016040528060008152506122de565b505050565b60006113cf610d9c565b8210611410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611407906148cc565b60405180910390fd5b819050919050565b61142061289b565b73ffffffffffffffffffffffffffffffffffffffff1661143e611e9b565b73ffffffffffffffffffffffffffffffffffffffff1614611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b90614a0c565b60405180910390fd5b80600890805190602001906114aa929190613a9d565b5050565b6001600f60009054906101000a900460ff1660ff1614611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90614b6c565b60405180910390fd5b60008360ff1611611549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611540906149ac565b60405180910390fd5b600f60029054906101000a900460ff1660ff168360ff1661156933612efc565b6115739190614d27565b11156115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab9061498c565b60405180910390fd5b6000336040516020016115c79190614743565b60405160208183030381529060405280519060200120905061162d838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612fe5565b61166c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116639061486c565b60405180910390fd5b600c54600d541161175e57600061168233612efc565b11156116e0578360ff16600a546116999190614dae565b3410156116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d29061492c565b60405180910390fd5b611759565b600a548460ff16600a546116f49190614dae565b6116fe9190614e08565b341015611740576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117379061492c565b60405180910390fd5b600d600081548092919061175390614fc4565b91905055505b6117b2565b8360ff16600a5461176f9190614dae565b3410156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a89061492c565b60405180910390fd5b5b6117bf338560ff16612ffc565b50505050565b60006117d08261301a565b600001519050919050565b600a5481565b6117e961289b565b73ffffffffffffffffffffffffffffffffffffffff16611807611e9b565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490614a0c565b60405180910390fd5b61271081106118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890614a8c565b60405180910390fd5b80600b8190555050565b600880546118b890614f61565b80601f01602080910402602001604051908101604052809291908181526020018280546118e490614f61565b80156119315780601f1061190657610100808354040283529160200191611931565b820191906000526020600020905b81548152906001019060200180831161191457829003601f168201915b505050505081565b6003600f60009054906101000a900460ff1660ff161461198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590614b6c565b60405180910390fd5b60008160ff16116119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb906149ac565b60405180910390fd5b600b548160ff166119e3610d9c565b6119ed9190614d27565b1115611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a259061494c565b60405180910390fd5b600f60019054906101000a900460ff1660ff168160ff16611a4e33612efc565b611a589190614d27565b1115611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a909061498c565b60405180910390fd5b600c54600d5411611b8b576000611aaf33612efc565b1115611b0d578060ff16600a54611ac69190614dae565b341015611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff9061492c565b60405180910390fd5b611b86565b600a548160ff16600a54611b219190614dae565b611b2b9190614e08565b341015611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b649061492c565b60405180910390fd5b600d6000815480929190611b8090614fc4565b91905055505b611bdf565b8060ff16600a54611b9c9190614dae565b341015611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd59061492c565b60405180910390fd5b5b611bec338260ff16612ffc565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c57906149cc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600f60019054906101000a900460ff1681565b606060088054611cfa90614f61565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2690614f61565b8015611d735780601f10611d4857610100808354040283529160200191611d73565b820191906000526020600020905b815481529060010190602001808311611d5657829003601f168201915b5050505050905090565b611d8561289b565b73ffffffffffffffffffffffffffffffffffffffff16611da3611e9b565b73ffffffffffffffffffffffffffffffffffffffff1614611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090614a0c565b60405180910390fd5b611e036000613175565b565b611e0d61289b565b73ffffffffffffffffffffffffffffffffffffffff16611e2b611e9b565b73ffffffffffffffffffffffffffffffffffffffff1614611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7890614a0c565b60405180910390fd5b611e8e338260ff16612ffc565b50565b6000600d54905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611ed490614f61565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0090614f61565b8015611f4d5780601f10611f2257610100808354040283529160200191611f4d565b820191906000526020600020905b815481529060010190602001808311611f3057829003601f168201915b5050505050905090565b611f5f61289b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc490614a4c565b60405180910390fd5b8060066000611fda61289b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661208761289b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120cc91906147f4565b60405180910390a35050565b600c5481565b6120e661289b565b73ffffffffffffffffffffffffffffffffffffffff16612104611e9b565b73ffffffffffffffffffffffffffffffffffffffff161461215a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215190614a0c565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b6121ac61289b565b73ffffffffffffffffffffffffffffffffffffffff166121ca611e9b565b73ffffffffffffffffffffffffffffffffffffffff1614612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790614a0c565b60405180910390fd5b61222d828260ff16612ffc565b5050565b61223961289b565b73ffffffffffffffffffffffffffffffffffffffff16612257611e9b565b73ffffffffffffffffffffffffffffffffffffffff16146122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a490614a0c565b60405180910390fd5b80600f60026101000a81548160ff021916908360ff16021790555050565b600f60009054906101000a900460ff1681565b6122e9848484612955565b6122f58484848461323b565b612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b90614aec565b60405180910390fd5b50505050565b61234261289b565b73ffffffffffffffffffffffffffffffffffffffff16612360611e9b565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614a0c565b60405180910390fd5b80600f60006101000a81548160ff021916908360ff16021790555050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606124058261288e565b612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b90614a2c565b60405180910390fd5b60006008805461245390614f61565b90501161246f576040518060200160405280600081525061249b565b600861247a836133d2565b60405160200161248b92919061475e565b6040516020818303038152906040525b9050919050565b6124aa61289b565b73ffffffffffffffffffffffffffffffffffffffff166124c8611e9b565b73ffffffffffffffffffffffffffffffffffffffff161461251e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251590614a0c565b60405180910390fd5b80600f60016101000a81548160ff021916908360ff16021790555050565b61254461289b565b73ffffffffffffffffffffffffffffffffffffffff16612562611e9b565b73ffffffffffffffffffffffffffffffffffffffff16146125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125af90614a0c565b60405180910390fd5b60005b8383905081101561260a576125f78484838181106125dc576125db6150ef565b5b90506020020160208101906125f19190613dae565b83612ffc565b808061260290614fc4565b9150506125bb565b50505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b565b6126ae61289b565b73ffffffffffffffffffffffffffffffffffffffff166126cc611e9b565b73ffffffffffffffffffffffffffffffffffffffff1614612722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271990614a0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612792576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127899061488c565b60405180910390fd5b61279b81613175565b50565b6127a661289b565b73ffffffffffffffffffffffffffffffffffffffff166127c4611e9b565b73ffffffffffffffffffffffffffffffffffffffff161461281a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281190614a0c565b60405180910390fd5b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006129608261301a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661298761289b565b73ffffffffffffffffffffffffffffffffffffffff1614806129e357506129ac61289b565b73ffffffffffffffffffffffffffffffffffffffff166129cb84610bfe565b73ffffffffffffffffffffffffffffffffffffffff16145b806129ff57506129fe82600001516129f961289b565b612610565b5b905080612a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3890614a6c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa906149ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a906148ec565b60405180910390fd5b612b308585856001613533565b612b4060008484600001516128a3565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612d469190614d27565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e8c57612dbc8161288e565b15612e8b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ef48686866001613539565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f649061490c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600082612ff2858461353f565b1490509392505050565b6130168282604051806020016040528060008152506135b4565b5050565b613022613b23565b61302b8261288e565b61306a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613061906148ac565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461315c578092505050613170565b50808061316890614f37565b915050613070565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061325c8473ffffffffffffffffffffffffffffffffffffffff16613a73565b156133c5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261328561289b565b8786866040518563ffffffff1660e01b81526004016132a794939291906147a8565b602060405180830381600087803b1580156132c157600080fd5b505af19250505080156132f257506040513d601f19601f820116820180604052508101906132ef9190614098565b60015b613375573d8060008114613322576040519150601f19603f3d011682016040523d82523d6000602084013e613327565b606091505b5060008151141561336d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336490614aec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133ca565b600190505b949350505050565b6060600082141561341a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061352e565b600082905060005b6000821461344c57808061343590614fc4565b915050600a826134459190614d7d565b9150613422565b60008167ffffffffffffffff8111156134685761346761511e565b5b6040519080825280601f01601f19166020018201604052801561349a5781602001600182028036833780820191505090505b5090505b60008514613527576001826134b39190614e08565b9150600a856134c29190615031565b60306134ce9190614d27565b60f81b8183815181106134e4576134e36150ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135209190614d7d565b945061349e565b8093505050505b919050565b50505050565b50505050565b60008082905060005b84518110156135a9576000858281518110613566576135656150ef565b5b60200260200101519050808311613588576135818382613a86565b9250613595565b6135928184613a86565b92505b5080806135a190614fc4565b915050613548565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561362a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362190614b2c565b60405180910390fd5b6136338161288e565b15613673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366a90614b0c565b60405180910390fd5b600083116136b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ad90614acc565b60405180910390fd5b6136c36000858386613533565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516137c09190614ce1565b6fffffffffffffffffffffffffffffffff1681526020018583602001516137e79190614ce1565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613a5657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139f6600088848861323b565b613a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2c90614aec565b60405180910390fd5b8180613a4090614fc4565b9250508080613a4e90614fc4565b915050613985565b5080600081905550613a6b6000878588613539565b505050505050565b600080823b905060008111915050919050565b600082600052816020526040600020905092915050565b828054613aa990614f61565b90600052602060002090601f016020900481019282613acb5760008555613b12565b82601f10613ae457805160ff1916838001178555613b12565b82800160010185558215613b12579182015b82811115613b11578251825591602001919060010190613af6565b5b509050613b1f9190613b5d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b76576000816000905550600101613b5e565b5090565b6000613b8d613b8884614c27565b614c02565b905082815260208101848484011115613ba957613ba861515c565b5b613bb4848285614ef5565b509392505050565b6000613bcf613bca84614c58565b614c02565b905082815260208101848484011115613beb57613bea61515c565b5b613bf6848285614ef5565b509392505050565b600081359050613c0d816158da565b92915050565b600081359050613c22816158f1565b92915050565b60008083601f840112613c3e57613c3d615152565b5b8235905067ffffffffffffffff811115613c5b57613c5a61514d565b5b602083019150836020820283011115613c7757613c76615157565b5b9250929050565b60008083601f840112613c9457613c93615152565b5b8235905067ffffffffffffffff811115613cb157613cb061514d565b5b602083019150836020820283011115613ccd57613ccc615157565b5b9250929050565b600081359050613ce381615908565b92915050565b600081359050613cf88161591f565b92915050565b600081359050613d0d81615936565b92915050565b600081519050613d2281615936565b92915050565b600082601f830112613d3d57613d3c615152565b5b8135613d4d848260208601613b7a565b91505092915050565b600082601f830112613d6b57613d6a615152565b5b8135613d7b848260208601613bbc565b91505092915050565b600081359050613d938161594d565b92915050565b600081359050613da881615964565b92915050565b600060208284031215613dc457613dc3615166565b5b6000613dd284828501613bfe565b91505092915050565b600060208284031215613df157613df0615166565b5b6000613dff84828501613c13565b91505092915050565b60008060408385031215613e1f57613e1e615166565b5b6000613e2d85828601613bfe565b9250506020613e3e85828601613bfe565b9150509250929050565b600080600060608486031215613e6157613e60615166565b5b6000613e6f86828701613bfe565b9350506020613e8086828701613bfe565b9250506040613e9186828701613d84565b9150509250925092565b60008060008060808587031215613eb557613eb4615166565b5b6000613ec387828801613bfe565b9450506020613ed487828801613bfe565b9350506040613ee587828801613d84565b925050606085013567ffffffffffffffff811115613f0657613f05615161565b5b613f1287828801613d28565b91505092959194509250565b60008060408385031215613f3557613f34615166565b5b6000613f4385828601613bfe565b9250506020613f5485828601613cd4565b9150509250929050565b60008060408385031215613f7557613f74615166565b5b6000613f8385828601613bfe565b9250506020613f9485828601613d84565b9150509250929050565b60008060408385031215613fb557613fb4615166565b5b6000613fc385828601613bfe565b9250506020613fd485828601613d99565b9150509250929050565b600080600060408486031215613ff757613ff6615166565b5b600084013567ffffffffffffffff81111561401557614014615161565b5b61402186828701613c28565b9350935050602061403486828701613d84565b9150509250925092565b60006020828403121561405457614053615166565b5b600061406284828501613ce9565b91505092915050565b60006020828403121561408157614080615166565b5b600061408f84828501613cfe565b91505092915050565b6000602082840312156140ae576140ad615166565b5b60006140bc84828501613d13565b91505092915050565b6000602082840312156140db576140da615166565b5b600082013567ffffffffffffffff8111156140f9576140f8615161565b5b61410584828501613d56565b91505092915050565b60006020828403121561412457614123615166565b5b600061413284828501613d84565b91505092915050565b60006020828403121561415157614150615166565b5b600061415f84828501613d99565b91505092915050565b60008060006040848603121561418157614180615166565b5b600061418f86828701613d99565b935050602084013567ffffffffffffffff8111156141b0576141af615161565b5b6141bc86828701613c7e565b92509250509250925092565b6141d181614e3c565b82525050565b6141e86141e382614e3c565b61500d565b82525050565b6141f781614e60565b82525050565b61420681614e6c565b82525050565b600061421782614c9e565b6142218185614cb4565b9350614231818560208601614f04565b61423a8161516b565b840191505092915050565b600061425082614ca9565b61425a8185614cc5565b935061426a818560208601614f04565b6142738161516b565b840191505092915050565b600061428982614ca9565b6142938185614cd6565b93506142a3818560208601614f04565b80840191505092915050565b600081546142bc81614f61565b6142c68186614cd6565b945060018216600081146142e157600181146142f257614325565b60ff19831686528186019350614325565b6142fb85614c89565b60005b8381101561431d578154818901526001820191506020810190506142fe565b838801955050505b50505092915050565b600061433b602283614cc5565b915061434682615189565b604082019050919050565b600061435e600e83614cc5565b9150614369826151d8565b602082019050919050565b6000614381602683614cc5565b915061438c82615201565b604082019050919050565b60006143a4602a83614cc5565b91506143af82615250565b604082019050919050565b60006143c7602383614cc5565b91506143d28261529f565b604082019050919050565b60006143ea602583614cc5565b91506143f5826152ee565b604082019050919050565b600061440d603183614cc5565b91506144188261533d565b604082019050919050565b6000614430601283614cc5565b915061443b8261538c565b602082019050919050565b6000614453602983614cc5565b915061445e826153b5565b604082019050919050565b6000614476603983614cc5565b915061448182615404565b604082019050919050565b6000614499601183614cc5565b91506144a482615453565b602082019050919050565b60006144bc600d83614cc5565b91506144c78261547c565b602082019050919050565b60006144df602b83614cc5565b91506144ea826154a5565b604082019050919050565b6000614502602683614cc5565b915061450d826154f4565b604082019050919050565b6000614525600583614cd6565b915061453082615543565b600582019050919050565b6000614548602083614cc5565b91506145538261556c565b602082019050919050565b600061456b602f83614cc5565b915061457682615595565b604082019050919050565b600061458e601a83614cc5565b9150614599826155e4565b602082019050919050565b60006145b1603283614cc5565b91506145bc8261560d565b604082019050919050565b60006145d4601983614cc5565b91506145df8261565c565b602082019050919050565b60006145f7602283614cc5565b915061460282615685565b604082019050919050565b600061461a602383614cc5565b9150614625826156d4565b604082019050919050565b600061463d603383614cc5565b915061464882615723565b604082019050919050565b6000614660601d83614cc5565b915061466b82615772565b602082019050919050565b6000614683602183614cc5565b915061468e8261579b565b604082019050919050565b60006146a6602e83614cc5565b91506146b1826157ea565b604082019050919050565b60006146c9601983614cc5565b91506146d482615839565b602082019050919050565b60006146ec600c83614cc5565b91506146f782615862565b602082019050919050565b600061470f602d83614cc5565b915061471a8261588b565b604082019050919050565b61472e81614ede565b82525050565b61473d81614ee8565b82525050565b600061474f82846141d7565b60148201915081905092915050565b600061476a82856142af565b9150614776828461427e565b915061478182614518565b91508190509392505050565b60006020820190506147a260008301846141c8565b92915050565b60006080820190506147bd60008301876141c8565b6147ca60208301866141c8565b6147d76040830185614725565b81810360608301526147e9818461420c565b905095945050505050565b600060208201905061480960008301846141ee565b92915050565b600060208201905061482460008301846141fd565b92915050565b600060208201905081810360008301526148448184614245565b905092915050565b600060208201905081810360008301526148658161432e565b9050919050565b6000602082019050818103600083015261488581614351565b9050919050565b600060208201905081810360008301526148a581614374565b9050919050565b600060208201905081810360008301526148c581614397565b9050919050565b600060208201905081810360008301526148e5816143ba565b9050919050565b60006020820190508181036000830152614905816143dd565b9050919050565b6000602082019050818103600083015261492581614400565b9050919050565b6000602082019050818103600083015261494581614423565b9050919050565b6000602082019050818103600083015261496581614446565b9050919050565b6000602082019050818103600083015261498581614469565b9050919050565b600060208201905081810360008301526149a58161448c565b9050919050565b600060208201905081810360008301526149c5816144af565b9050919050565b600060208201905081810360008301526149e5816144d2565b9050919050565b60006020820190508181036000830152614a05816144f5565b9050919050565b60006020820190508181036000830152614a258161453b565b9050919050565b60006020820190508181036000830152614a458161455e565b9050919050565b60006020820190508181036000830152614a6581614581565b9050919050565b60006020820190508181036000830152614a85816145a4565b9050919050565b60006020820190508181036000830152614aa5816145c7565b9050919050565b60006020820190508181036000830152614ac5816145ea565b9050919050565b60006020820190508181036000830152614ae58161460d565b9050919050565b60006020820190508181036000830152614b0581614630565b9050919050565b60006020820190508181036000830152614b2581614653565b9050919050565b60006020820190508181036000830152614b4581614676565b9050919050565b60006020820190508181036000830152614b6581614699565b9050919050565b60006020820190508181036000830152614b85816146bc565b9050919050565b60006020820190508181036000830152614ba5816146df565b9050919050565b60006020820190508181036000830152614bc581614702565b9050919050565b6000602082019050614be16000830184614725565b92915050565b6000602082019050614bfc6000830184614734565b92915050565b6000614c0c614c1d565b9050614c188282614f93565b919050565b6000604051905090565b600067ffffffffffffffff821115614c4257614c4161511e565b5b614c4b8261516b565b9050602081019050919050565b600067ffffffffffffffff821115614c7357614c7261511e565b5b614c7c8261516b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614cec82614ea2565b9150614cf783614ea2565b9250826fffffffffffffffffffffffffffffffff03821115614d1c57614d1b615062565b5b828201905092915050565b6000614d3282614ede565b9150614d3d83614ede565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d7257614d71615062565b5b828201905092915050565b6000614d8882614ede565b9150614d9383614ede565b925082614da357614da2615091565b5b828204905092915050565b6000614db982614ede565b9150614dc483614ede565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dfd57614dfc615062565b5b828202905092915050565b6000614e1382614ede565b9150614e1e83614ede565b925082821015614e3157614e30615062565b5b828203905092915050565b6000614e4782614ebe565b9050919050565b6000614e5982614ebe565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614f22578082015181840152602081019050614f07565b83811115614f31576000848401525b50505050565b6000614f4282614ede565b91506000821415614f5657614f55615062565b5b600182039050919050565b60006002820490506001821680614f7957607f821691505b60208210811415614f8d57614f8c6150c0565b5b50919050565b614f9c8261516b565b810181811067ffffffffffffffff82111715614fbb57614fba61511e565b5b80604052505050565b6000614fcf82614ede565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561500257615001615062565b5b600182019050919050565b60006150188261501f565b9050919050565b600061502a8261517c565b9050919050565b600061503c82614ede565b915061504783614ede565b92508261505757615056615091565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f7460008201527f616c20737570706c790000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f427579206c696d69742072656163686564000000000000000000000000000000600082015250565b7f4e6f74206d696e74207a65726f00000000000000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d6178207375706c6c79206e6f74206d6f726520313030303000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f546869732073616c6520686173206e6f74207374617274656400000000000000600082015250565b7f4e6f742068617665204574680000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6158e381614e3c565b81146158ee57600080fd5b50565b6158fa81614e4e565b811461590557600080fd5b50565b61591181614e60565b811461591c57600080fd5b50565b61592881614e6c565b811461593357600080fd5b50565b61593f81614e76565b811461594a57600080fd5b50565b61595681614ede565b811461596157600080fd5b50565b61596d81614ee8565b811461597857600080fd5b5056fea264697066735822122098ae2921be9f3dcd9420407db37b78249775d001be7a0f72c8c04822ddd9e46564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000654454e4b41490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000654454e4b414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696368716d61623464656d6a71766b78766e3572717070646569796c6e693634747336626f6a6665636c61677a787535326f7237612f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063714c53981161014f578063ad0b4cc3116100c1578063dbdf2dc01161007a578063dbdf2dc014610931578063dfcf15b01461095a578063e985e9c514610983578063ed88c68e146109c0578063f2fde38b146109ca578063f4a0a528146109f35761027d565b8063ad0b4cc314610823578063b1c9fe6e1461084c578063b88d4fde14610877578063c03afb59146108a0578063c5f956af146108c9578063c87b56dd146108f45761027d565b806395d89b411161011357806395d89b4114610734578063a22cb4651461075f578063a591252d14610788578063a6f9dae1146107b3578063aa98e0c6146107dc578063ac94000f146108075761027d565b8063714c539814610680578063715018a6146106ab5780637b671780146106c25780637ece16a8146106de5780638da5cb5b146107095761027d565b80633ccfd60b116101f35780636817c76c116101ac5780636817c76c1461057d5780636bd08049146105a85780636c0360eb146105d15780636ecd2306146105fc57806370a082311461061857806370db69d6146106555761027d565b80633ccfd60b1461048b57806342842e0e146104955780634f6ccce7146104be57806355f804b3146104fb57806358381669146105245780636352211e146105405761027d565b806318160ddd1161024557806318160ddd1461037b57806323b872dd146103a657806329a0af0b146103cf5780632f745c59146103fa5780633a3f716a146104375780633c4201d2146104625761027d565b806301ffc9a714610282578063047fc9aa146102bf57806306fdde03146102ea578063081812fc14610315578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a4919061406b565b610a1c565b6040516102b691906147f4565b60405180910390f35b3480156102cb57600080fd5b506102d4610b66565b6040516102e19190614bcc565b60405180910390f35b3480156102f657600080fd5b506102ff610b6c565b60405161030c919061482a565b60405180910390f35b34801561032157600080fd5b5061033c6004803603810190610337919061410e565b610bfe565b604051610349919061478d565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613f5e565b610c83565b005b34801561038757600080fd5b50610390610d9c565b60405161039d9190614bcc565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613e48565b610db2565b005b3480156103db57600080fd5b506103e4610dc2565b6040516103f19190614bcc565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190613f5e565b610dc8565b60405161042e9190614bcc565b60405180910390f35b34801561044357600080fd5b5061044c610fc6565b6040516104599190614be7565b60405180910390f35b34801561046e57600080fd5b506104896004803603810190610484919061403e565b610fd9565b005b61049361105f565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613e48565b6113a5565b005b3480156104ca57600080fd5b506104e560048036038101906104e0919061410e565b6113c5565b6040516104f29190614bcc565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d91906140c5565b611418565b005b61053e60048036038101906105399190614168565b6114ae565b005b34801561054c57600080fd5b506105676004803603810190610562919061410e565b6117c5565b604051610574919061478d565b60405180910390f35b34801561058957600080fd5b506105926117db565b60405161059f9190614bcc565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca919061410e565b6117e1565b005b3480156105dd57600080fd5b506105e66118ab565b6040516105f3919061482a565b60405180910390f35b6106166004803603810190610611919061413b565b611939565b005b34801561062457600080fd5b5061063f600480360381019061063a9190613dae565b611bef565b60405161064c9190614bcc565b60405180910390f35b34801561066157600080fd5b5061066a611cd8565b6040516106779190614be7565b60405180910390f35b34801561068c57600080fd5b50610695611ceb565b6040516106a2919061482a565b60405180910390f35b3480156106b757600080fd5b506106c0611d7d565b005b6106dc60048036038101906106d7919061413b565b611e05565b005b3480156106ea57600080fd5b506106f3611e91565b6040516107009190614bcc565b60405180910390f35b34801561071557600080fd5b5061071e611e9b565b60405161072b919061478d565b60405180910390f35b34801561074057600080fd5b50610749611ec5565b604051610756919061482a565b60405180910390f35b34801561076b57600080fd5b5061078660048036038101906107819190613f1e565b611f57565b005b34801561079457600080fd5b5061079d6120d8565b6040516107aa9190614bcc565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d59190613ddb565b6120de565b005b3480156107e857600080fd5b506107f161219e565b6040516107fe919061480f565b60405180910390f35b610821600480360381019061081c9190613f9e565b6121a4565b005b34801561082f57600080fd5b5061084a6004803603810190610845919061413b565b612231565b005b34801561085857600080fd5b506108616122cb565b60405161086e9190614be7565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613e9b565b6122de565b005b3480156108ac57600080fd5b506108c760048036038101906108c2919061413b565b61233a565b005b3480156108d557600080fd5b506108de6123d4565b6040516108eb919061478d565b60405180910390f35b34801561090057600080fd5b5061091b6004803603810190610916919061410e565b6123fa565b604051610928919061482a565b60405180910390f35b34801561093d57600080fd5b506109586004803603810190610953919061413b565b6124a2565b005b34801561096657600080fd5b50610981600480360381019061097c9190613fde565b61253c565b005b34801561098f57600080fd5b506109aa60048036038101906109a59190613e08565b612610565b6040516109b791906147f4565b60405180910390f35b6109c86126a4565b005b3480156109d657600080fd5b506109f160048036038101906109ec9190613dae565b6126a6565b005b3480156109ff57600080fd5b50610a1a6004803603810190610a15919061410e565b61279e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5f5750610b5e82612824565b5b9050919050565b600b5481565b606060018054610b7b90614f61565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba790614f61565b8015610bf45780601f10610bc957610100808354040283529160200191610bf4565b820191906000526020600020905b815481529060010190602001808311610bd757829003601f168201915b5050505050905090565b6000610c098261288e565b610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f90614bac565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8e826117c5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf690614aac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1e61289b565b73ffffffffffffffffffffffffffffffffffffffff161480610d4d5750610d4c81610d4761289b565b612610565b5b610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d839061496c565b60405180910390fd5b610d978383836128a3565b505050565b60006001600054610dad9190614e08565b905090565b610dbd838383612955565b505050565b600d5481565b6000610dd383611bef565b8210610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b9061484c565b60405180910390fd5b6000610e1e610d9c565b905060008060005b83811015610f84576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f1857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f705786841415610f61578195505050505050610fc0565b8380610f6c90614fc4565b9450505b508080610f7c90614fc4565b915050610e26565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790614b4c565b60405180910390fd5b92915050565b600f60029054906101000a900460ff1681565b610fe161289b565b73ffffffffffffffffffffffffffffffffffffffff16610fff611e9b565b73ffffffffffffffffffffffffffffffffffffffff1614611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90614a0c565b60405180910390fd5b80600e8190555050565b61106761289b565b73ffffffffffffffffffffffffffffffffffffffff16611085611e9b565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290614a0c565b60405180910390fd5b6000471161111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590614b8c565b60405180910390fd5b600f60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601e476111699190614dae565b6111739190614d7d565b9081150290604051600060405180830381858888f1935050505015801561119e573d6000803e3d6000fd5b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646019476111ea9190614dae565b6111f49190614d7d565b9081150290604051600060405180830381858888f1935050505015801561121f573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460194761126b9190614dae565b6112759190614d7d565b9081150290604051600060405180830381858888f193505050501580156112a0573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600f476112ec9190614dae565b6112f69190614d7d565b9081150290604051600060405180830381858888f19350505050158015611321573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460054761136d9190614dae565b6113779190614d7d565b9081150290604051600060405180830381858888f193505050501580156113a2573d6000803e3d6000fd5b50565b6113c0838383604051806020016040528060008152506122de565b505050565b60006113cf610d9c565b8210611410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611407906148cc565b60405180910390fd5b819050919050565b61142061289b565b73ffffffffffffffffffffffffffffffffffffffff1661143e611e9b565b73ffffffffffffffffffffffffffffffffffffffff1614611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b90614a0c565b60405180910390fd5b80600890805190602001906114aa929190613a9d565b5050565b6001600f60009054906101000a900460ff1660ff1614611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90614b6c565b60405180910390fd5b60008360ff1611611549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611540906149ac565b60405180910390fd5b600f60029054906101000a900460ff1660ff168360ff1661156933612efc565b6115739190614d27565b11156115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab9061498c565b60405180910390fd5b6000336040516020016115c79190614743565b60405160208183030381529060405280519060200120905061162d838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612fe5565b61166c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116639061486c565b60405180910390fd5b600c54600d541161175e57600061168233612efc565b11156116e0578360ff16600a546116999190614dae565b3410156116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d29061492c565b60405180910390fd5b611759565b600a548460ff16600a546116f49190614dae565b6116fe9190614e08565b341015611740576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117379061492c565b60405180910390fd5b600d600081548092919061175390614fc4565b91905055505b6117b2565b8360ff16600a5461176f9190614dae565b3410156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a89061492c565b60405180910390fd5b5b6117bf338560ff16612ffc565b50505050565b60006117d08261301a565b600001519050919050565b600a5481565b6117e961289b565b73ffffffffffffffffffffffffffffffffffffffff16611807611e9b565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490614a0c565b60405180910390fd5b61271081106118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890614a8c565b60405180910390fd5b80600b8190555050565b600880546118b890614f61565b80601f01602080910402602001604051908101604052809291908181526020018280546118e490614f61565b80156119315780601f1061190657610100808354040283529160200191611931565b820191906000526020600020905b81548152906001019060200180831161191457829003601f168201915b505050505081565b6003600f60009054906101000a900460ff1660ff161461198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590614b6c565b60405180910390fd5b60008160ff16116119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb906149ac565b60405180910390fd5b600b548160ff166119e3610d9c565b6119ed9190614d27565b1115611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a259061494c565b60405180910390fd5b600f60019054906101000a900460ff1660ff168160ff16611a4e33612efc565b611a589190614d27565b1115611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a909061498c565b60405180910390fd5b600c54600d5411611b8b576000611aaf33612efc565b1115611b0d578060ff16600a54611ac69190614dae565b341015611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff9061492c565b60405180910390fd5b611b86565b600a548160ff16600a54611b219190614dae565b611b2b9190614e08565b341015611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b649061492c565b60405180910390fd5b600d6000815480929190611b8090614fc4565b91905055505b611bdf565b8060ff16600a54611b9c9190614dae565b341015611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd59061492c565b60405180910390fd5b5b611bec338260ff16612ffc565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c57906149cc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600f60019054906101000a900460ff1681565b606060088054611cfa90614f61565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2690614f61565b8015611d735780601f10611d4857610100808354040283529160200191611d73565b820191906000526020600020905b815481529060010190602001808311611d5657829003601f168201915b5050505050905090565b611d8561289b565b73ffffffffffffffffffffffffffffffffffffffff16611da3611e9b565b73ffffffffffffffffffffffffffffffffffffffff1614611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090614a0c565b60405180910390fd5b611e036000613175565b565b611e0d61289b565b73ffffffffffffffffffffffffffffffffffffffff16611e2b611e9b565b73ffffffffffffffffffffffffffffffffffffffff1614611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7890614a0c565b60405180910390fd5b611e8e338260ff16612ffc565b50565b6000600d54905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611ed490614f61565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0090614f61565b8015611f4d5780601f10611f2257610100808354040283529160200191611f4d565b820191906000526020600020905b815481529060010190602001808311611f3057829003601f168201915b5050505050905090565b611f5f61289b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc490614a4c565b60405180910390fd5b8060066000611fda61289b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661208761289b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120cc91906147f4565b60405180910390a35050565b600c5481565b6120e661289b565b73ffffffffffffffffffffffffffffffffffffffff16612104611e9b565b73ffffffffffffffffffffffffffffffffffffffff161461215a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215190614a0c565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b6121ac61289b565b73ffffffffffffffffffffffffffffffffffffffff166121ca611e9b565b73ffffffffffffffffffffffffffffffffffffffff1614612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790614a0c565b60405180910390fd5b61222d828260ff16612ffc565b5050565b61223961289b565b73ffffffffffffffffffffffffffffffffffffffff16612257611e9b565b73ffffffffffffffffffffffffffffffffffffffff16146122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a490614a0c565b60405180910390fd5b80600f60026101000a81548160ff021916908360ff16021790555050565b600f60009054906101000a900460ff1681565b6122e9848484612955565b6122f58484848461323b565b612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b90614aec565b60405180910390fd5b50505050565b61234261289b565b73ffffffffffffffffffffffffffffffffffffffff16612360611e9b565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614a0c565b60405180910390fd5b80600f60006101000a81548160ff021916908360ff16021790555050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606124058261288e565b612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b90614a2c565b60405180910390fd5b60006008805461245390614f61565b90501161246f576040518060200160405280600081525061249b565b600861247a836133d2565b60405160200161248b92919061475e565b6040516020818303038152906040525b9050919050565b6124aa61289b565b73ffffffffffffffffffffffffffffffffffffffff166124c8611e9b565b73ffffffffffffffffffffffffffffffffffffffff161461251e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251590614a0c565b60405180910390fd5b80600f60016101000a81548160ff021916908360ff16021790555050565b61254461289b565b73ffffffffffffffffffffffffffffffffffffffff16612562611e9b565b73ffffffffffffffffffffffffffffffffffffffff16146125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125af90614a0c565b60405180910390fd5b60005b8383905081101561260a576125f78484838181106125dc576125db6150ef565b5b90506020020160208101906125f19190613dae565b83612ffc565b808061260290614fc4565b9150506125bb565b50505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b565b6126ae61289b565b73ffffffffffffffffffffffffffffffffffffffff166126cc611e9b565b73ffffffffffffffffffffffffffffffffffffffff1614612722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271990614a0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612792576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127899061488c565b60405180910390fd5b61279b81613175565b50565b6127a661289b565b73ffffffffffffffffffffffffffffffffffffffff166127c4611e9b565b73ffffffffffffffffffffffffffffffffffffffff161461281a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281190614a0c565b60405180910390fd5b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006129608261301a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661298761289b565b73ffffffffffffffffffffffffffffffffffffffff1614806129e357506129ac61289b565b73ffffffffffffffffffffffffffffffffffffffff166129cb84610bfe565b73ffffffffffffffffffffffffffffffffffffffff16145b806129ff57506129fe82600001516129f961289b565b612610565b5b905080612a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3890614a6c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa906149ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a906148ec565b60405180910390fd5b612b308585856001613533565b612b4060008484600001516128a3565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612d469190614d27565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e8c57612dbc8161288e565b15612e8b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ef48686866001613539565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f649061490c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600082612ff2858461353f565b1490509392505050565b6130168282604051806020016040528060008152506135b4565b5050565b613022613b23565b61302b8261288e565b61306a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613061906148ac565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461315c578092505050613170565b50808061316890614f37565b915050613070565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061325c8473ffffffffffffffffffffffffffffffffffffffff16613a73565b156133c5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261328561289b565b8786866040518563ffffffff1660e01b81526004016132a794939291906147a8565b602060405180830381600087803b1580156132c157600080fd5b505af19250505080156132f257506040513d601f19601f820116820180604052508101906132ef9190614098565b60015b613375573d8060008114613322576040519150601f19603f3d011682016040523d82523d6000602084013e613327565b606091505b5060008151141561336d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336490614aec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133ca565b600190505b949350505050565b6060600082141561341a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061352e565b600082905060005b6000821461344c57808061343590614fc4565b915050600a826134459190614d7d565b9150613422565b60008167ffffffffffffffff8111156134685761346761511e565b5b6040519080825280601f01601f19166020018201604052801561349a5781602001600182028036833780820191505090505b5090505b60008514613527576001826134b39190614e08565b9150600a856134c29190615031565b60306134ce9190614d27565b60f81b8183815181106134e4576134e36150ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135209190614d7d565b945061349e565b8093505050505b919050565b50505050565b50505050565b60008082905060005b84518110156135a9576000858281518110613566576135656150ef565b5b60200260200101519050808311613588576135818382613a86565b9250613595565b6135928184613a86565b92505b5080806135a190614fc4565b915050613548565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561362a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362190614b2c565b60405180910390fd5b6136338161288e565b15613673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366a90614b0c565b60405180910390fd5b600083116136b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ad90614acc565b60405180910390fd5b6136c36000858386613533565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516137c09190614ce1565b6fffffffffffffffffffffffffffffffff1681526020018583602001516137e79190614ce1565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613a5657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139f6600088848861323b565b613a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2c90614aec565b60405180910390fd5b8180613a4090614fc4565b9250508080613a4e90614fc4565b915050613985565b5080600081905550613a6b6000878588613539565b505050505050565b600080823b905060008111915050919050565b600082600052816020526040600020905092915050565b828054613aa990614f61565b90600052602060002090601f016020900481019282613acb5760008555613b12565b82601f10613ae457805160ff1916838001178555613b12565b82800160010185558215613b12579182015b82811115613b11578251825591602001919060010190613af6565b5b509050613b1f9190613b5d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b76576000816000905550600101613b5e565b5090565b6000613b8d613b8884614c27565b614c02565b905082815260208101848484011115613ba957613ba861515c565b5b613bb4848285614ef5565b509392505050565b6000613bcf613bca84614c58565b614c02565b905082815260208101848484011115613beb57613bea61515c565b5b613bf6848285614ef5565b509392505050565b600081359050613c0d816158da565b92915050565b600081359050613c22816158f1565b92915050565b60008083601f840112613c3e57613c3d615152565b5b8235905067ffffffffffffffff811115613c5b57613c5a61514d565b5b602083019150836020820283011115613c7757613c76615157565b5b9250929050565b60008083601f840112613c9457613c93615152565b5b8235905067ffffffffffffffff811115613cb157613cb061514d565b5b602083019150836020820283011115613ccd57613ccc615157565b5b9250929050565b600081359050613ce381615908565b92915050565b600081359050613cf88161591f565b92915050565b600081359050613d0d81615936565b92915050565b600081519050613d2281615936565b92915050565b600082601f830112613d3d57613d3c615152565b5b8135613d4d848260208601613b7a565b91505092915050565b600082601f830112613d6b57613d6a615152565b5b8135613d7b848260208601613bbc565b91505092915050565b600081359050613d938161594d565b92915050565b600081359050613da881615964565b92915050565b600060208284031215613dc457613dc3615166565b5b6000613dd284828501613bfe565b91505092915050565b600060208284031215613df157613df0615166565b5b6000613dff84828501613c13565b91505092915050565b60008060408385031215613e1f57613e1e615166565b5b6000613e2d85828601613bfe565b9250506020613e3e85828601613bfe565b9150509250929050565b600080600060608486031215613e6157613e60615166565b5b6000613e6f86828701613bfe565b9350506020613e8086828701613bfe565b9250506040613e9186828701613d84565b9150509250925092565b60008060008060808587031215613eb557613eb4615166565b5b6000613ec387828801613bfe565b9450506020613ed487828801613bfe565b9350506040613ee587828801613d84565b925050606085013567ffffffffffffffff811115613f0657613f05615161565b5b613f1287828801613d28565b91505092959194509250565b60008060408385031215613f3557613f34615166565b5b6000613f4385828601613bfe565b9250506020613f5485828601613cd4565b9150509250929050565b60008060408385031215613f7557613f74615166565b5b6000613f8385828601613bfe565b9250506020613f9485828601613d84565b9150509250929050565b60008060408385031215613fb557613fb4615166565b5b6000613fc385828601613bfe565b9250506020613fd485828601613d99565b9150509250929050565b600080600060408486031215613ff757613ff6615166565b5b600084013567ffffffffffffffff81111561401557614014615161565b5b61402186828701613c28565b9350935050602061403486828701613d84565b9150509250925092565b60006020828403121561405457614053615166565b5b600061406284828501613ce9565b91505092915050565b60006020828403121561408157614080615166565b5b600061408f84828501613cfe565b91505092915050565b6000602082840312156140ae576140ad615166565b5b60006140bc84828501613d13565b91505092915050565b6000602082840312156140db576140da615166565b5b600082013567ffffffffffffffff8111156140f9576140f8615161565b5b61410584828501613d56565b91505092915050565b60006020828403121561412457614123615166565b5b600061413284828501613d84565b91505092915050565b60006020828403121561415157614150615166565b5b600061415f84828501613d99565b91505092915050565b60008060006040848603121561418157614180615166565b5b600061418f86828701613d99565b935050602084013567ffffffffffffffff8111156141b0576141af615161565b5b6141bc86828701613c7e565b92509250509250925092565b6141d181614e3c565b82525050565b6141e86141e382614e3c565b61500d565b82525050565b6141f781614e60565b82525050565b61420681614e6c565b82525050565b600061421782614c9e565b6142218185614cb4565b9350614231818560208601614f04565b61423a8161516b565b840191505092915050565b600061425082614ca9565b61425a8185614cc5565b935061426a818560208601614f04565b6142738161516b565b840191505092915050565b600061428982614ca9565b6142938185614cd6565b93506142a3818560208601614f04565b80840191505092915050565b600081546142bc81614f61565b6142c68186614cd6565b945060018216600081146142e157600181146142f257614325565b60ff19831686528186019350614325565b6142fb85614c89565b60005b8381101561431d578154818901526001820191506020810190506142fe565b838801955050505b50505092915050565b600061433b602283614cc5565b915061434682615189565b604082019050919050565b600061435e600e83614cc5565b9150614369826151d8565b602082019050919050565b6000614381602683614cc5565b915061438c82615201565b604082019050919050565b60006143a4602a83614cc5565b91506143af82615250565b604082019050919050565b60006143c7602383614cc5565b91506143d28261529f565b604082019050919050565b60006143ea602583614cc5565b91506143f5826152ee565b604082019050919050565b600061440d603183614cc5565b91506144188261533d565b604082019050919050565b6000614430601283614cc5565b915061443b8261538c565b602082019050919050565b6000614453602983614cc5565b915061445e826153b5565b604082019050919050565b6000614476603983614cc5565b915061448182615404565b604082019050919050565b6000614499601183614cc5565b91506144a482615453565b602082019050919050565b60006144bc600d83614cc5565b91506144c78261547c565b602082019050919050565b60006144df602b83614cc5565b91506144ea826154a5565b604082019050919050565b6000614502602683614cc5565b915061450d826154f4565b604082019050919050565b6000614525600583614cd6565b915061453082615543565b600582019050919050565b6000614548602083614cc5565b91506145538261556c565b602082019050919050565b600061456b602f83614cc5565b915061457682615595565b604082019050919050565b600061458e601a83614cc5565b9150614599826155e4565b602082019050919050565b60006145b1603283614cc5565b91506145bc8261560d565b604082019050919050565b60006145d4601983614cc5565b91506145df8261565c565b602082019050919050565b60006145f7602283614cc5565b915061460282615685565b604082019050919050565b600061461a602383614cc5565b9150614625826156d4565b604082019050919050565b600061463d603383614cc5565b915061464882615723565b604082019050919050565b6000614660601d83614cc5565b915061466b82615772565b602082019050919050565b6000614683602183614cc5565b915061468e8261579b565b604082019050919050565b60006146a6602e83614cc5565b91506146b1826157ea565b604082019050919050565b60006146c9601983614cc5565b91506146d482615839565b602082019050919050565b60006146ec600c83614cc5565b91506146f782615862565b602082019050919050565b600061470f602d83614cc5565b915061471a8261588b565b604082019050919050565b61472e81614ede565b82525050565b61473d81614ee8565b82525050565b600061474f82846141d7565b60148201915081905092915050565b600061476a82856142af565b9150614776828461427e565b915061478182614518565b91508190509392505050565b60006020820190506147a260008301846141c8565b92915050565b60006080820190506147bd60008301876141c8565b6147ca60208301866141c8565b6147d76040830185614725565b81810360608301526147e9818461420c565b905095945050505050565b600060208201905061480960008301846141ee565b92915050565b600060208201905061482460008301846141fd565b92915050565b600060208201905081810360008301526148448184614245565b905092915050565b600060208201905081810360008301526148658161432e565b9050919050565b6000602082019050818103600083015261488581614351565b9050919050565b600060208201905081810360008301526148a581614374565b9050919050565b600060208201905081810360008301526148c581614397565b9050919050565b600060208201905081810360008301526148e5816143ba565b9050919050565b60006020820190508181036000830152614905816143dd565b9050919050565b6000602082019050818103600083015261492581614400565b9050919050565b6000602082019050818103600083015261494581614423565b9050919050565b6000602082019050818103600083015261496581614446565b9050919050565b6000602082019050818103600083015261498581614469565b9050919050565b600060208201905081810360008301526149a58161448c565b9050919050565b600060208201905081810360008301526149c5816144af565b9050919050565b600060208201905081810360008301526149e5816144d2565b9050919050565b60006020820190508181036000830152614a05816144f5565b9050919050565b60006020820190508181036000830152614a258161453b565b9050919050565b60006020820190508181036000830152614a458161455e565b9050919050565b60006020820190508181036000830152614a6581614581565b9050919050565b60006020820190508181036000830152614a85816145a4565b9050919050565b60006020820190508181036000830152614aa5816145c7565b9050919050565b60006020820190508181036000830152614ac5816145ea565b9050919050565b60006020820190508181036000830152614ae58161460d565b9050919050565b60006020820190508181036000830152614b0581614630565b9050919050565b60006020820190508181036000830152614b2581614653565b9050919050565b60006020820190508181036000830152614b4581614676565b9050919050565b60006020820190508181036000830152614b6581614699565b9050919050565b60006020820190508181036000830152614b85816146bc565b9050919050565b60006020820190508181036000830152614ba5816146df565b9050919050565b60006020820190508181036000830152614bc581614702565b9050919050565b6000602082019050614be16000830184614725565b92915050565b6000602082019050614bfc6000830184614734565b92915050565b6000614c0c614c1d565b9050614c188282614f93565b919050565b6000604051905090565b600067ffffffffffffffff821115614c4257614c4161511e565b5b614c4b8261516b565b9050602081019050919050565b600067ffffffffffffffff821115614c7357614c7261511e565b5b614c7c8261516b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614cec82614ea2565b9150614cf783614ea2565b9250826fffffffffffffffffffffffffffffffff03821115614d1c57614d1b615062565b5b828201905092915050565b6000614d3282614ede565b9150614d3d83614ede565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d7257614d71615062565b5b828201905092915050565b6000614d8882614ede565b9150614d9383614ede565b925082614da357614da2615091565b5b828204905092915050565b6000614db982614ede565b9150614dc483614ede565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dfd57614dfc615062565b5b828202905092915050565b6000614e1382614ede565b9150614e1e83614ede565b925082821015614e3157614e30615062565b5b828203905092915050565b6000614e4782614ebe565b9050919050565b6000614e5982614ebe565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614f22578082015181840152602081019050614f07565b83811115614f31576000848401525b50505050565b6000614f4282614ede565b91506000821415614f5657614f55615062565b5b600182039050919050565b60006002820490506001821680614f7957607f821691505b60208210811415614f8d57614f8c6150c0565b5b50919050565b614f9c8261516b565b810181811067ffffffffffffffff82111715614fbb57614fba61511e565b5b80604052505050565b6000614fcf82614ede565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561500257615001615062565b5b600182019050919050565b60006150188261501f565b9050919050565b600061502a8261517c565b9050919050565b600061503c82614ede565b915061504783614ede565b92508261505757615056615091565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f7460008201527f616c20737570706c790000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f427579206c696d69742072656163686564000000000000000000000000000000600082015250565b7f4e6f74206d696e74207a65726f00000000000000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d6178207375706c6c79206e6f74206d6f726520313030303000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f546869732073616c6520686173206e6f74207374617274656400000000000000600082015250565b7f4e6f742068617665204574680000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6158e381614e3c565b81146158ee57600080fd5b50565b6158fa81614e4e565b811461590557600080fd5b50565b61591181614e60565b811461591c57600080fd5b50565b61592881614e6c565b811461593357600080fd5b50565b61593f81614e76565b811461594a57600080fd5b50565b61595681614ede565b811461596157600080fd5b50565b61596d81614ee8565b811461597857600080fd5b5056fea264697066735822122098ae2921be9f3dcd9420407db37b78249775d001be7a0f72c8c04822ddd9e46564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000654454e4b41490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000654454e4b414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696368716d61623464656d6a71766b78766e3572717070646569796c6e693634747336626f6a6665636c61677a787535326f7237612f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): TENKAI
Arg [1] : _symbol (string): TENKAI
Arg [2] : _initBaseURI (string): ipfs://bafybeichqmab4demjqvkxvn5rqppdeiylni64ts6bojfeclagzxu52or7a/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 54454e4b41490000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 54454e4b41490000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f626166796265696368716d61623464656d6a71766b78766e35
Arg [9] : 72717070646569796c6e693634747336626f6a6665636c61677a787535326f72
Arg [10] : 37612f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41398:5087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24327:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41572:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25954:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27515:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27036:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22764:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28391:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41643:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23432:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41779:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45784:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46023:457;;;:::i;:::-;;28624:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22945:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45127:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43749:934;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25763:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41530:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45614:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41469:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42954:784;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24763:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41750:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44942:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38028:103;;;;;;;;;;;;;:::i;:::-;;44689:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45029:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37377:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26123:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27801:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41605:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45908:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41684:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44809:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45510:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41723:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28872:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45338:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41495:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42391:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45420:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42685:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28160:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42885:65;;;:::i;:::-;;38286:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45231:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24327:372;24429:4;24481:25;24466:40;;;:11;:40;;;;:105;;;;24538:33;24523:48;;;:11;:48;;;;24466:105;:172;;;;24603:35;24588:50;;;:11;:50;;;;24466:172;:225;;;;24655:36;24679:11;24655:23;:36::i;:::-;24466:225;24446:245;;24327:372;;;:::o;41572:28::-;;;;:::o;25954:100::-;26008:13;26041:5;26034:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25954:100;:::o;27515:214::-;27583:7;27611:16;27619:7;27611;:16::i;:::-;27603:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27697:15;:24;27713:7;27697:24;;;;;;;;;;;;;;;;;;;;;27690:31;;27515:214;;;:::o;27036:413::-;27109:13;27125:24;27141:7;27125:15;:24::i;:::-;27109:40;;27174:5;27168:11;;:2;:11;;;;27160:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27269:5;27253:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27278:37;27295:5;27302:12;:10;:12::i;:::-;27278:16;:37::i;:::-;27253:62;27231:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;27413:28;27422:2;27426:7;27435:5;27413:8;:28::i;:::-;27098:351;27036:413;;:::o;22764:104::-;22817:7;22859:1;22844:12;;:16;;;;:::i;:::-;22837:23;;22764:104;:::o;28391:162::-;28517:28;28527:4;28533:2;28537:7;28517:9;:28::i;:::-;28391:162;;;:::o;41643:34::-;;;;:::o;23432:823::-;23521:7;23557:16;23567:5;23557:9;:16::i;:::-;23549:5;:24;23541:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23623:22;23648:13;:11;:13::i;:::-;23623:38;;23672:19;23706:25;23760:9;23755:426;23779:14;23775:1;:18;23755:426;;;23815:31;23849:11;:14;23861:1;23849:14;;;;;;;;;;;23815:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23908:1;23882:28;;:9;:14;;;:28;;;23878:103;;23951:9;:14;;;23931:34;;23878:103;24020:5;23999:26;;:17;:26;;;23995:175;;;24065:5;24050:11;:20;24046:77;;;24102:1;24095:8;;;;;;;;;24046:77;24141:13;;;;;:::i;:::-;;;;23995:175;23800:381;23795:3;;;;;:::i;:::-;;;;23755:426;;;;24191:56;;;;;;;;;;:::i;:::-;;;;;;;;23432:823;;;;;:::o;41779:31::-;;;;;;;;;;;;;:::o;45784:113::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45882:9:::1;45860:19;:31;;;;45784:113:::0;:::o;46023:457::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46113:1:::1;46089:21;:25;46081:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;46149:7;;;;;;;;;;;46141:25;;:58;46195:3;46190:2;46168:21;:24;;;;:::i;:::-;46167:31;;;;:::i;:::-;46141:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46218:7;;;;;;;;;;;46210:25;;:58;46264:3;46259:2;46237:21;:24;;;;:::i;:::-;46236:31;;;;:::i;:::-;46210:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46287:7;;;;;;;;;;;46279:25;;:58;46333:3;46328:2;46306:21;:24;;;;:::i;:::-;46305:31;;;;:::i;:::-;46279:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46356:7;;;;;;;;;;;46348:25;;:58;46402:3;46397:2;46375:21;:24;;;;:::i;:::-;46374:31;;;;:::i;:::-;46348:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46425:7;;;;;;;;;;;46417:25;;:57;46470:3;46466:1;46444:21;:23;;;;:::i;:::-;46443:30;;;;:::i;:::-;46417:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46023:457::o:0;28624:177::-;28754:39;28771:4;28777:2;28781:7;28754:39;;;;;;;;;;;;:16;:39::i;:::-;28624:177;;;:::o;22945:187::-;23012:7;23048:13;:11;:13::i;:::-;23040:5;:21;23032:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23119:5;23112:12;;22945:187;;;:::o;45127:98::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45208:11:::1;45198:7;:21;;;;;;;;;;;;:::i;:::-;;45127:98:::0;:::o;43749:934::-;43904:1;43895:5;;;;;;;;;;;:10;;;43887:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43964:1;43950:11;:15;;;43942:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;44047:13;;;;;;;;;;;44004:56;;44032:11;44004:39;;:25;44018:10;44004:13;:25::i;:::-;:39;;;;:::i;:::-;:56;;43996:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;44095:12;44137:10;44120:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;44110:39;;;;;;44095:54;;44164:59;44183:12;;44164:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44197:19;;44218:4;44164:18;:59::i;:::-;44156:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;44271:11;;44252:15;;:30;44249:388;;44321:1;44293:25;44307:10;44293:13;:25::i;:::-;:29;44290:250;;;44363:11;44351:23;;:9;;:23;;;;:::i;:::-;44338:9;:36;;44330:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44290:250;;;44470:9;;44455:11;44443:23;;:9;;:23;;;;:::i;:::-;44442:37;;;;:::i;:::-;44428:9;:52;;44420:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;44515:15;;:17;;;;;;;;;:::i;:::-;;;;;;44290:250;44249:388;;;44595:11;44583:23;;:9;;:23;;;;:::i;:::-;44570:9;:36;;44562:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44249:388;44643:34;44653:10;44665:11;44643:34;;:9;:34::i;:::-;43839:844;43749:934;;;:::o;25763:124::-;25827:7;25854:20;25866:7;25854:11;:20::i;:::-;:25;;;25847:32;;25763:124;;;:::o;41530:37::-;;;;:::o;45614:158::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45699:5:::1;45689:7;:15;45681:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;45751:7;45742:6;:16;;;;45614:158:::0;:::o;41469:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42954:784::-;43028:1;43019:5;;;;;;;;;;;:10;;;43011:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43088:1;43074:11;:15;;;43066:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;43159:6;;43144:11;43128:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:37;;43120:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;43269:6;;;;;;;;;;;43226:49;;43254:11;43226:39;;:25;43240:10;43226:13;:25::i;:::-;:39;;;;:::i;:::-;:49;;43218:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;43327:11;;43308:15;;:30;43305:387;;43377:1;43349:25;43363:10;43349:13;:25::i;:::-;:29;43346:249;;;43419:11;43407:23;;:9;;:23;;;;:::i;:::-;43394:9;:36;;43386:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43346:249;;;43526:9;;43511:11;43499:23;;:9;;:23;;;;:::i;:::-;43498:37;;;;:::i;:::-;43484:9;:52;;43476:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;43570:15;;:17;;;;;;;;;:::i;:::-;;;;;;43346:249;43305:387;;;43650:11;43638:23;;:9;;:23;;;;:::i;:::-;43625:9;:36;;43617:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43305:387;43698:34;43708:10;43720:11;43698:34;;:9;:34::i;:::-;42954:784;:::o;24763:221::-;24827:7;24872:1;24855:19;;:5;:19;;;;24847:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;24948:12;:19;24961:5;24948:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24940:36;;24933:43;;24763:221;;;:::o;41750:24::-;;;;;;;;;;;;;:::o;44942:85::-;44985:13;45014:7;45007:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44942:85;:::o;38028:103::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38093:30:::1;38120:1;38093:18;:30::i;:::-;38028:103::o:0;44689:116::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44765:34:::1;44775:10;44787:11;44765:34;;:9;:34::i;:::-;44689:116:::0;:::o;45029:89::-;45074:7;45097:15;;45090:22;;45029:89;:::o;37377:87::-;37423:7;37450:6;;;;;;;;;;;37443:13;;37377:87;:::o;26123:104::-;26179:13;26212:7;26205:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26123:104;:::o;27801:288::-;27908:12;:10;:12::i;:::-;27896:24;;:8;:24;;;;27888:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28009:8;27964:18;:32;27983:12;:10;:12::i;:::-;27964:32;;;;;;;;;;;;;;;:42;27997:8;27964:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28062:8;28033:48;;28048:12;:10;:12::i;:::-;28033:48;;;28072:8;28033:48;;;;;;:::i;:::-;;;;;;;;27801:288;;:::o;41605:33::-;;;;:::o;45908:109::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46001:10:::1;45983:15;;:28;;;;;;;;;;;;;;;;;;45908:109:::0;:::o;41684:34::-;;;;:::o;44809:129::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44904:28:::1;44914:4;44920:11;44904:28;;:9;:28::i;:::-;44809:129:::0;;:::o;45510:98::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45595:7:::1;45579:13;;:23;;;;;;;;;;;;;;;;;;45510:98:::0;:::o;41723:22::-;;;;;;;;;;;;;:::o;28872:355::-;29031:28;29041:4;29047:2;29051:7;29031:9;:28::i;:::-;29092:48;29115:4;29121:2;29125:7;29134:5;29092:22;:48::i;:::-;29070:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;28872:355;;;;:::o;45338:76::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45402:6:::1;45394:5;;:14;;;;;;;;;;;;;;;;;;45338:76:::0;:::o;41495:30::-;;;;;;;;;;;;;:::o;42391:288::-;42464:13;42494:16;42502:7;42494;:16::i;:::-;42486:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;42602:1;42584:7;42578:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;42630:7;42639:18;:7;:16;:18::i;:::-;42613:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42578:95;42571:102;;42391:288;;;:::o;45420:84::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45491:7:::1;45482:6;;:16;;;;;;;;;;;;;;;;;;45420:84:::0;:::o;42685:194::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42787:6:::1;42782:92;42799:10;;:17;;42797:1;:19;42782:92;;;42832:34;42842:10;;42853:1;42842:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;42857:8;42832:9;:34::i;:::-;42818:3;;;;;:::i;:::-;;;;42782:92;;;;42685:194:::0;;;:::o;28160:164::-;28257:4;28281:18;:25;28300:5;28281:25;;;;;;;;;;;;;;;:35;28307:8;28281:35;;;;;;;;;;;;;;;;;;;;;;;;;28274:42;;28160:164;;;;:::o;42885:65::-;:::o;38286:201::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38395:1:::1;38375:22;;:8;:22;;;;38367:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38451:28;38470:8;38451:18;:28::i;:::-;38286:201:::0;:::o;45231:95::-;37608:12;:10;:12::i;:::-;37597:23;;:7;:5;:7::i;:::-;:23;;;37589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45311:9:::1;45299;:21;;;;45231:95:::0;:::o;13115:157::-;13200:4;13239:25;13224:40;;;:11;:40;;;;13217:47;;13115:157;;;:::o;29482:111::-;29539:4;29573:12;;29563:7;:22;29556:29;;29482:111;;;:::o;20706:98::-;20759:7;20786:10;20779:17;;20706:98;:::o;33526:196::-;33668:2;33641:15;:24;33657:7;33641:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33706:7;33702:2;33686:28;;33695:5;33686:28;;;;;;;;;;;;33526:196;;;:::o;31625:1783::-;31740:35;31778:20;31790:7;31778:11;:20::i;:::-;31740:58;;31811:22;31853:13;:18;;;31837:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;31912:12;:10;:12::i;:::-;31888:36;;:20;31900:7;31888:11;:20::i;:::-;:36;;;31837:87;:154;;;;31941:50;31958:13;:18;;;31978:12;:10;:12::i;:::-;31941:16;:50::i;:::-;31837:154;31811:181;;32013:17;32005:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;32128:4;32106:26;;:13;:18;;;:26;;;32098:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;32208:1;32194:16;;:2;:16;;;;32186:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32265:43;32287:4;32293:2;32297:7;32306:1;32265:21;:43::i;:::-;32373:49;32390:1;32394:7;32403:13;:18;;;32373:8;:49::i;:::-;32657:1;32627:12;:18;32640:4;32627:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32701:1;32673:12;:16;32686:2;32673:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32749:43;;;;;;;;32764:2;32749:43;;;;;;32775:15;32749:43;;;;;32726:11;:20;32738:7;32726:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33032:19;33064:1;33054:7;:11;;;;:::i;:::-;33032:33;;33121:1;33080:43;;:11;:24;33092:11;33080:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;33076:227;;;33144:20;33152:11;33144:7;:20::i;:::-;33140:152;;;33212:64;;;;;;;;33227:13;:18;;;33212:64;;;;;;33247:13;:28;;;33212:64;;;;;33185:11;:24;33197:11;33185:24;;;;;;;;;;;:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33140:152;33076:227;33339:7;33335:2;33320:27;;33329:4;33320:27;;;;;;;;;;;;33358:42;33379:4;33385:2;33389:7;33398:1;33358:20;:42::i;:::-;31729:1679;;;31625:1783;;;:::o;24992:229::-;25053:7;25098:1;25081:19;;:5;:19;;;;25073:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;25180:12;:19;25193:5;25180:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;25172:41;;25165:48;;24992:229;;;:::o;39904:190::-;40029:4;40082;40053:25;40066:5;40073:4;40053:12;:25::i;:::-;:33;40046:40;;39904:190;;;;;:::o;29601:104::-;29670:27;29680:2;29684:8;29670:27;;;;;;;;;;;;:9;:27::i;:::-;29601:104;;:::o;25229:472::-;25290:21;;:::i;:::-;25332:16;25340:7;25332;:16::i;:::-;25324:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25413:12;25428:7;25413:22;;25408:216;25462:31;25496:11;:17;25508:4;25496:17;;;;;;;;;;;25462:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25558:1;25532:28;;:9;:14;;;:28;;;25528:85;;25588:9;25581:16;;;;;;25528:85;25447:177;25439:6;;;;;:::i;:::-;;;;25408:216;;25229:472;;;;:::o;38647:191::-;38721:16;38740:6;;;;;;;;;;;38721:25;;38766:8;38757:6;;:17;;;;;;;;;;;;;;;;;;38821:8;38790:40;;38811:8;38790:40;;;;;;;;;;;;38710:128;38647:191;:::o;34287:804::-;34442:4;34463:15;:2;:13;;;:15::i;:::-;34459:625;;;34515:2;34499:36;;;34536:12;:10;:12::i;:::-;34550:4;34556:7;34565:5;34499:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34495:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34762:1;34745:6;:13;:18;34741:273;;;34788:61;;;;;;;;;;:::i;:::-;;;;;;;;34741:273;34964:6;34958:13;34949:6;34945:2;34941:15;34934:38;34495:534;34632:45;;;34622:55;;;:6;:55;;;;34615:62;;;;;34459:625;35068:4;35061:11;;34287:804;;;;;;;:::o;392:723::-;448:13;678:1;669:5;:10;665:53;;;696:10;;;;;;;;;;;;;;;;;;;;;665:53;728:12;743:5;728:20;;759:14;784:78;799:1;791:4;:9;784:78;;817:8;;;;;:::i;:::-;;;;848:2;840:10;;;;;:::i;:::-;;;784:78;;;872:19;904:6;894:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872:39;;922:154;938:1;929:5;:10;922:154;;966:1;956:11;;;;;:::i;:::-;;;1033:2;1025:5;:10;;;;:::i;:::-;1012:2;:24;;;;:::i;:::-;999:39;;982:6;989;982:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1062:2;1053:11;;;;;:::i;:::-;;;922:154;;;1100:6;1086:21;;;;;392:723;;;;:::o;35579:159::-;;;;;:::o;36150:158::-;;;;;:::o;40455:675::-;40538:7;40558:20;40581:4;40558:27;;40601:9;40596:497;40620:5;:12;40616:1;:16;40596:497;;;40654:20;40677:5;40683:1;40677:8;;;;;;;;:::i;:::-;;;;;;;;40654:31;;40720:12;40704;:28;40700:382;;40847:42;40862:12;40876;40847:14;:42::i;:::-;40832:57;;40700:382;;;41024:42;41039:12;41053;41024:14;:42::i;:::-;41009:57;;40700:382;40639:454;40634:3;;;;;:::i;:::-;;;;40596:497;;;;41110:12;41103:19;;;40455:675;;;;:::o;29982:1389::-;30105:20;30128:12;;30105:35;;30173:1;30159:16;;:2;:16;;;;30151:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30358:21;30366:12;30358:7;:21::i;:::-;30357:22;30349:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30443:1;30432:8;:12;30424:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;30497:61;30527:1;30531:2;30535:12;30549:8;30497:21;:61::i;:::-;30571:30;30604:12;:16;30617:2;30604:16;;;;;;;;;;;;;;;30571:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30650:135;;;;;;;;30706:8;30676:11;:19;;;:39;;;;:::i;:::-;30650:135;;;;;;30765:8;30730:11;:24;;;:44;;;;:::i;:::-;30650:135;;;;;30631:12;:16;30644:2;30631:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30824:43;;;;;;;;30839:2;30824:43;;;;;;30850:15;30824:43;;;;;30796:11;:25;30808:12;30796:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30880:20;30903:12;30880:35;;30933:9;30928:325;30952:8;30948:1;:12;30928:325;;;31012:12;31008:2;30987:38;;31004:1;30987:38;;;;;;;;;;;;31066:59;31097:1;31101:2;31105:12;31119:5;31066:22;:59::i;:::-;31040:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;31227:14;;;;;:::i;:::-;;;;30962:3;;;;;:::i;:::-;;;;30928:325;;;;31280:12;31265;:27;;;;31303:60;31332:1;31336:2;31340:12;31354:8;31303:20;:60::i;:::-;30094:1277;;;29982:1389;;;:::o;2971:387::-;3031:4;3239:12;3306:7;3294:20;3286:28;;3349:1;3342:4;:8;3335:15;;;2971:387;;;:::o;41138:224::-;41206:13;41269:1;41263:4;41256:15;41298:1;41292:4;41285:15;41339:4;41333;41323:21;41314:30;;41138:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410: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:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:155::-;1040:5;1078:6;1065:20;1056:29;;1094:41;1129:5;1094:41;:::i;:::-;986:155;;;;:::o;1164:568::-;1237:8;1247:6;1297:3;1290:4;1282:6;1278:17;1274:27;1264:122;;1305:79;;:::i;:::-;1264:122;1418:6;1405:20;1395:30;;1448:18;1440:6;1437:30;1434:117;;;1470:79;;:::i;:::-;1434:117;1584:4;1576:6;1572:17;1560:29;;1638:3;1630:4;1622:6;1618:17;1608:8;1604:32;1601:41;1598:128;;;1645:79;;:::i;:::-;1598:128;1164:568;;;;;:::o;1755:::-;1828:8;1838:6;1888:3;1881:4;1873:6;1869:17;1865:27;1855:122;;1896:79;;:::i;:::-;1855:122;2009:6;1996:20;1986:30;;2039:18;2031:6;2028:30;2025:117;;;2061:79;;:::i;:::-;2025:117;2175:4;2167:6;2163:17;2151:29;;2229:3;2221:4;2213:6;2209:17;2199:8;2195:32;2192:41;2189:128;;;2236:79;;:::i;:::-;2189:128;1755:568;;;;;:::o;2329:133::-;2372:5;2410:6;2397:20;2388:29;;2426:30;2450:5;2426:30;:::i;:::-;2329:133;;;;:::o;2468:139::-;2514:5;2552:6;2539:20;2530:29;;2568:33;2595:5;2568:33;:::i;:::-;2468:139;;;;:::o;2613:137::-;2658:5;2696:6;2683:20;2674:29;;2712:32;2738:5;2712:32;:::i;:::-;2613:137;;;;:::o;2756:141::-;2812:5;2843:6;2837:13;2828:22;;2859:32;2885:5;2859:32;:::i;:::-;2756:141;;;;:::o;2916:338::-;2971:5;3020:3;3013:4;3005:6;3001:17;2997:27;2987:122;;3028:79;;:::i;:::-;2987:122;3145:6;3132:20;3170:78;3244:3;3236:6;3229:4;3221:6;3217:17;3170:78;:::i;:::-;3161:87;;2977:277;2916:338;;;;:::o;3274:340::-;3330:5;3379:3;3372:4;3364:6;3360:17;3356:27;3346:122;;3387:79;;:::i;:::-;3346:122;3504:6;3491:20;3529:79;3604:3;3596:6;3589:4;3581:6;3577:17;3529:79;:::i;:::-;3520:88;;3336:278;3274:340;;;;:::o;3620:139::-;3666:5;3704:6;3691:20;3682:29;;3720:33;3747:5;3720:33;:::i;:::-;3620:139;;;;:::o;3765:135::-;3809:5;3847:6;3834:20;3825:29;;3863:31;3888:5;3863:31;:::i;:::-;3765:135;;;;:::o;3906:329::-;3965:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:119;;;4020:79;;:::i;:::-;3982:119;4140:1;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4111:117;3906:329;;;;:::o;4241:345::-;4308:6;4357:2;4345:9;4336:7;4332:23;4328:32;4325:119;;;4363:79;;:::i;:::-;4325:119;4483:1;4508:61;4561:7;4552:6;4541:9;4537:22;4508:61;:::i;:::-;4498:71;;4454:125;4241:345;;;;:::o;4592:474::-;4660:6;4668;4717:2;4705:9;4696:7;4692:23;4688:32;4685:119;;;4723:79;;:::i;:::-;4685:119;4843:1;4868:53;4913:7;4904:6;4893:9;4889:22;4868:53;:::i;:::-;4858:63;;4814:117;4970:2;4996:53;5041:7;5032:6;5021:9;5017:22;4996:53;:::i;:::-;4986:63;;4941:118;4592:474;;;;;:::o;5072:619::-;5149:6;5157;5165;5214:2;5202:9;5193:7;5189:23;5185:32;5182:119;;;5220:79;;:::i;:::-;5182:119;5340:1;5365:53;5410:7;5401:6;5390:9;5386:22;5365:53;:::i;:::-;5355:63;;5311:117;5467:2;5493:53;5538:7;5529:6;5518:9;5514:22;5493:53;:::i;:::-;5483:63;;5438:118;5595:2;5621:53;5666:7;5657:6;5646:9;5642:22;5621:53;:::i;:::-;5611:63;;5566:118;5072:619;;;;;:::o;5697:943::-;5792:6;5800;5808;5816;5865:3;5853:9;5844:7;5840:23;5836:33;5833:120;;;5872:79;;:::i;:::-;5833:120;5992:1;6017:53;6062:7;6053:6;6042:9;6038:22;6017:53;:::i;:::-;6007:63;;5963:117;6119:2;6145:53;6190:7;6181:6;6170:9;6166:22;6145:53;:::i;:::-;6135:63;;6090:118;6247:2;6273:53;6318:7;6309:6;6298:9;6294:22;6273:53;:::i;:::-;6263:63;;6218:118;6403:2;6392:9;6388:18;6375:32;6434:18;6426:6;6423:30;6420:117;;;6456:79;;:::i;:::-;6420:117;6561:62;6615:7;6606:6;6595:9;6591:22;6561:62;:::i;:::-;6551:72;;6346:287;5697:943;;;;;;;:::o;6646:468::-;6711:6;6719;6768:2;6756:9;6747:7;6743:23;6739:32;6736:119;;;6774:79;;:::i;:::-;6736:119;6894:1;6919:53;6964:7;6955:6;6944:9;6940:22;6919:53;:::i;:::-;6909:63;;6865:117;7021:2;7047:50;7089:7;7080:6;7069:9;7065:22;7047:50;:::i;:::-;7037:60;;6992:115;6646:468;;;;;:::o;7120:474::-;7188:6;7196;7245:2;7233:9;7224:7;7220:23;7216:32;7213:119;;;7251:79;;:::i;:::-;7213:119;7371:1;7396:53;7441:7;7432:6;7421:9;7417:22;7396:53;:::i;:::-;7386:63;;7342:117;7498:2;7524:53;7569:7;7560:6;7549:9;7545:22;7524:53;:::i;:::-;7514:63;;7469:118;7120:474;;;;;:::o;7600:470::-;7666:6;7674;7723:2;7711:9;7702:7;7698:23;7694:32;7691:119;;;7729:79;;:::i;:::-;7691:119;7849:1;7874:53;7919:7;7910:6;7899:9;7895:22;7874:53;:::i;:::-;7864:63;;7820:117;7976:2;8002:51;8045:7;8036:6;8025:9;8021:22;8002:51;:::i;:::-;7992:61;;7947:116;7600:470;;;;;:::o;8076:704::-;8171:6;8179;8187;8236:2;8224:9;8215:7;8211:23;8207:32;8204:119;;;8242:79;;:::i;:::-;8204:119;8390:1;8379:9;8375:17;8362:31;8420:18;8412:6;8409:30;8406:117;;;8442:79;;:::i;:::-;8406:117;8555:80;8627:7;8618:6;8607:9;8603:22;8555:80;:::i;:::-;8537:98;;;;8333:312;8684:2;8710:53;8755:7;8746:6;8735:9;8731:22;8710:53;:::i;:::-;8700:63;;8655:118;8076:704;;;;;:::o;8786:329::-;8845:6;8894:2;8882:9;8873:7;8869:23;8865:32;8862:119;;;8900:79;;:::i;:::-;8862:119;9020:1;9045:53;9090:7;9081:6;9070:9;9066:22;9045:53;:::i;:::-;9035:63;;8991:117;8786:329;;;;:::o;9121:327::-;9179:6;9228:2;9216:9;9207:7;9203:23;9199:32;9196:119;;;9234:79;;:::i;:::-;9196:119;9354:1;9379:52;9423:7;9414:6;9403:9;9399:22;9379:52;:::i;:::-;9369:62;;9325:116;9121:327;;;;:::o;9454:349::-;9523:6;9572:2;9560:9;9551:7;9547:23;9543:32;9540:119;;;9578:79;;:::i;:::-;9540:119;9698:1;9723:63;9778:7;9769:6;9758:9;9754:22;9723:63;:::i;:::-;9713:73;;9669:127;9454:349;;;;:::o;9809:509::-;9878:6;9927:2;9915:9;9906:7;9902:23;9898:32;9895:119;;;9933:79;;:::i;:::-;9895:119;10081:1;10070:9;10066:17;10053:31;10111:18;10103:6;10100:30;10097:117;;;10133:79;;:::i;:::-;10097:117;10238:63;10293:7;10284:6;10273:9;10269:22;10238:63;:::i;:::-;10228:73;;10024:287;9809:509;;;;:::o;10324:329::-;10383:6;10432:2;10420:9;10411:7;10407:23;10403:32;10400:119;;;10438:79;;:::i;:::-;10400:119;10558:1;10583:53;10628:7;10619:6;10608:9;10604:22;10583:53;:::i;:::-;10573:63;;10529:117;10324:329;;;;:::o;10659:325::-;10716:6;10765:2;10753:9;10744:7;10740:23;10736:32;10733:119;;;10771:79;;:::i;:::-;10733:119;10891:1;10916:51;10959:7;10950:6;10939:9;10935:22;10916:51;:::i;:::-;10906:61;;10862:115;10659:325;;;;:::o;10990:700::-;11083:6;11091;11099;11148:2;11136:9;11127:7;11123:23;11119:32;11116:119;;;11154:79;;:::i;:::-;11116:119;11274:1;11299:51;11342:7;11333:6;11322:9;11318:22;11299:51;:::i;:::-;11289:61;;11245:115;11427:2;11416:9;11412:18;11399:32;11458:18;11450:6;11447:30;11444:117;;;11480:79;;:::i;:::-;11444:117;11593:80;11665:7;11656:6;11645:9;11641:22;11593:80;:::i;:::-;11575:98;;;;11370:313;10990:700;;;;;:::o;11696:118::-;11783:24;11801:5;11783:24;:::i;:::-;11778:3;11771:37;11696:118;;:::o;11820:157::-;11925:45;11945:24;11963:5;11945:24;:::i;:::-;11925:45;:::i;:::-;11920:3;11913:58;11820:157;;:::o;11983:109::-;12064:21;12079:5;12064:21;:::i;:::-;12059:3;12052:34;11983:109;;:::o;12098:118::-;12185:24;12203:5;12185:24;:::i;:::-;12180:3;12173:37;12098:118;;:::o;12222:360::-;12308:3;12336:38;12368:5;12336:38;:::i;:::-;12390:70;12453:6;12448:3;12390:70;:::i;:::-;12383:77;;12469:52;12514:6;12509:3;12502:4;12495:5;12491:16;12469:52;:::i;:::-;12546:29;12568:6;12546:29;:::i;:::-;12541:3;12537:39;12530:46;;12312:270;12222:360;;;;:::o;12588:364::-;12676:3;12704:39;12737:5;12704:39;:::i;:::-;12759:71;12823:6;12818:3;12759:71;:::i;:::-;12752:78;;12839:52;12884:6;12879:3;12872:4;12865:5;12861:16;12839:52;:::i;:::-;12916:29;12938:6;12916:29;:::i;:::-;12911:3;12907:39;12900:46;;12680:272;12588:364;;;;:::o;12958:377::-;13064:3;13092:39;13125:5;13092:39;:::i;:::-;13147:89;13229:6;13224:3;13147:89;:::i;:::-;13140:96;;13245:52;13290:6;13285:3;13278:4;13271:5;13267:16;13245:52;:::i;:::-;13322:6;13317:3;13313:16;13306:23;;13068:267;12958:377;;;;:::o;13365:845::-;13468:3;13505:5;13499:12;13534:36;13560:9;13534:36;:::i;:::-;13586:89;13668:6;13663:3;13586:89;:::i;:::-;13579:96;;13706:1;13695:9;13691:17;13722:1;13717:137;;;;13868:1;13863:341;;;;13684:520;;13717:137;13801:4;13797:9;13786;13782:25;13777:3;13770:38;13837:6;13832:3;13828:16;13821:23;;13717:137;;13863:341;13930:38;13962:5;13930:38;:::i;:::-;13990:1;14004:154;14018:6;14015:1;14012:13;14004:154;;;14092:7;14086:14;14082:1;14077:3;14073:11;14066:35;14142:1;14133:7;14129:15;14118:26;;14040:4;14037:1;14033:12;14028:17;;14004:154;;;14187:6;14182:3;14178:16;14171:23;;13870:334;;13684:520;;13472:738;;13365:845;;;;:::o;14216:366::-;14358:3;14379:67;14443:2;14438:3;14379:67;:::i;:::-;14372:74;;14455:93;14544:3;14455:93;:::i;:::-;14573:2;14568:3;14564:12;14557:19;;14216:366;;;:::o;14588:::-;14730:3;14751:67;14815:2;14810:3;14751:67;:::i;:::-;14744:74;;14827:93;14916:3;14827:93;:::i;:::-;14945:2;14940:3;14936:12;14929:19;;14588:366;;;:::o;14960:::-;15102:3;15123:67;15187:2;15182:3;15123:67;:::i;:::-;15116:74;;15199:93;15288:3;15199:93;:::i;:::-;15317:2;15312:3;15308:12;15301:19;;14960:366;;;:::o;15332:::-;15474:3;15495:67;15559:2;15554:3;15495:67;:::i;:::-;15488:74;;15571:93;15660:3;15571:93;:::i;:::-;15689:2;15684:3;15680:12;15673:19;;15332:366;;;:::o;15704:::-;15846:3;15867:67;15931:2;15926:3;15867:67;:::i;:::-;15860:74;;15943:93;16032:3;15943:93;:::i;:::-;16061:2;16056:3;16052:12;16045:19;;15704:366;;;:::o;16076:::-;16218:3;16239:67;16303:2;16298:3;16239:67;:::i;:::-;16232:74;;16315:93;16404:3;16315:93;:::i;:::-;16433:2;16428:3;16424:12;16417:19;;16076:366;;;:::o;16448:::-;16590:3;16611:67;16675:2;16670:3;16611:67;:::i;:::-;16604:74;;16687:93;16776:3;16687:93;:::i;:::-;16805:2;16800:3;16796:12;16789:19;;16448:366;;;:::o;16820:::-;16962:3;16983:67;17047:2;17042:3;16983:67;:::i;:::-;16976:74;;17059:93;17148:3;17059:93;:::i;:::-;17177:2;17172:3;17168:12;17161:19;;16820:366;;;:::o;17192:::-;17334:3;17355:67;17419:2;17414:3;17355:67;:::i;:::-;17348:74;;17431:93;17520:3;17431:93;:::i;:::-;17549:2;17544:3;17540:12;17533:19;;17192:366;;;:::o;17564:::-;17706:3;17727:67;17791:2;17786:3;17727:67;:::i;:::-;17720:74;;17803:93;17892:3;17803:93;:::i;:::-;17921:2;17916:3;17912:12;17905:19;;17564:366;;;:::o;17936:::-;18078:3;18099:67;18163:2;18158:3;18099:67;:::i;:::-;18092:74;;18175:93;18264:3;18175:93;:::i;:::-;18293:2;18288:3;18284:12;18277:19;;17936:366;;;:::o;18308:::-;18450:3;18471:67;18535:2;18530:3;18471:67;:::i;:::-;18464:74;;18547:93;18636:3;18547:93;:::i;:::-;18665:2;18660:3;18656:12;18649:19;;18308:366;;;:::o;18680:::-;18822:3;18843:67;18907:2;18902:3;18843:67;:::i;:::-;18836:74;;18919:93;19008:3;18919:93;:::i;:::-;19037:2;19032:3;19028:12;19021:19;;18680:366;;;:::o;19052:::-;19194:3;19215:67;19279:2;19274:3;19215:67;:::i;:::-;19208:74;;19291:93;19380:3;19291:93;:::i;:::-;19409:2;19404:3;19400:12;19393:19;;19052:366;;;:::o;19424:400::-;19584:3;19605:84;19687:1;19682:3;19605:84;:::i;:::-;19598:91;;19698:93;19787:3;19698:93;:::i;:::-;19816:1;19811:3;19807:11;19800:18;;19424:400;;;:::o;19830:366::-;19972:3;19993:67;20057:2;20052:3;19993:67;:::i;:::-;19986:74;;20069:93;20158:3;20069:93;:::i;:::-;20187:2;20182:3;20178:12;20171:19;;19830:366;;;:::o;20202:::-;20344:3;20365:67;20429:2;20424:3;20365:67;:::i;:::-;20358:74;;20441:93;20530:3;20441:93;:::i;:::-;20559:2;20554:3;20550:12;20543:19;;20202:366;;;:::o;20574:::-;20716:3;20737:67;20801:2;20796:3;20737:67;:::i;:::-;20730:74;;20813:93;20902:3;20813:93;:::i;:::-;20931:2;20926:3;20922:12;20915:19;;20574:366;;;:::o;20946:::-;21088:3;21109:67;21173:2;21168:3;21109:67;:::i;:::-;21102:74;;21185:93;21274:3;21185:93;:::i;:::-;21303:2;21298:3;21294:12;21287:19;;20946:366;;;:::o;21318:::-;21460:3;21481:67;21545:2;21540:3;21481:67;:::i;:::-;21474:74;;21557:93;21646:3;21557:93;:::i;:::-;21675:2;21670:3;21666:12;21659:19;;21318:366;;;:::o;21690:::-;21832:3;21853:67;21917:2;21912:3;21853:67;:::i;:::-;21846:74;;21929:93;22018:3;21929:93;:::i;:::-;22047:2;22042:3;22038:12;22031:19;;21690:366;;;:::o;22062:::-;22204:3;22225:67;22289:2;22284:3;22225:67;:::i;:::-;22218:74;;22301:93;22390:3;22301:93;:::i;:::-;22419:2;22414:3;22410:12;22403:19;;22062:366;;;:::o;22434:::-;22576:3;22597:67;22661:2;22656:3;22597:67;:::i;:::-;22590:74;;22673:93;22762:3;22673:93;:::i;:::-;22791:2;22786:3;22782:12;22775:19;;22434:366;;;:::o;22806:::-;22948:3;22969:67;23033:2;23028:3;22969:67;:::i;:::-;22962:74;;23045:93;23134:3;23045:93;:::i;:::-;23163:2;23158:3;23154:12;23147:19;;22806:366;;;:::o;23178:::-;23320:3;23341:67;23405:2;23400:3;23341:67;:::i;:::-;23334:74;;23417:93;23506:3;23417:93;:::i;:::-;23535:2;23530:3;23526:12;23519:19;;23178:366;;;:::o;23550:::-;23692:3;23713:67;23777:2;23772:3;23713:67;:::i;:::-;23706:74;;23789:93;23878:3;23789:93;:::i;:::-;23907:2;23902:3;23898:12;23891:19;;23550:366;;;:::o;24294:::-;24436:3;24457:67;24521:2;24516:3;24457:67;:::i;:::-;24450:74;;24533:93;24622:3;24533:93;:::i;:::-;24651:2;24646:3;24642:12;24635:19;;24294:366;;;:::o;24666:::-;24808:3;24829:67;24893:2;24888:3;24829:67;:::i;:::-;24822:74;;24905:93;24994:3;24905:93;:::i;:::-;25023:2;25018:3;25014:12;25007:19;;24666:366;;;:::o;25038:::-;25180:3;25201:67;25265:2;25260:3;25201:67;:::i;:::-;25194:74;;25277:93;25366:3;25277:93;:::i;:::-;25395:2;25390:3;25386:12;25379:19;;25038:366;;;:::o;25410:118::-;25497:24;25515:5;25497:24;:::i;:::-;25492:3;25485:37;25410:118;;:::o;25534:112::-;25617:22;25633:5;25617:22;:::i;:::-;25612:3;25605:35;25534:112;;:::o;25652:256::-;25764:3;25779:75;25850:3;25841:6;25779:75;:::i;:::-;25879:2;25874:3;25870:12;25863:19;;25899:3;25892:10;;25652:256;;;;:::o;25914:695::-;26192:3;26214:92;26302:3;26293:6;26214:92;:::i;:::-;26207:99;;26323:95;26414:3;26405:6;26323:95;:::i;:::-;26316:102;;26435:148;26579:3;26435:148;:::i;:::-;26428:155;;26600:3;26593:10;;25914:695;;;;;:::o;26615:222::-;26708:4;26746:2;26735:9;26731:18;26723:26;;26759:71;26827:1;26816:9;26812:17;26803:6;26759:71;:::i;:::-;26615:222;;;;:::o;26843:640::-;27038:4;27076:3;27065:9;27061:19;27053:27;;27090:71;27158:1;27147:9;27143:17;27134:6;27090:71;:::i;:::-;27171:72;27239:2;27228:9;27224:18;27215:6;27171:72;:::i;:::-;27253;27321:2;27310:9;27306:18;27297:6;27253:72;:::i;:::-;27372:9;27366:4;27362:20;27357:2;27346:9;27342:18;27335:48;27400:76;27471:4;27462:6;27400:76;:::i;:::-;27392:84;;26843:640;;;;;;;:::o;27489:210::-;27576:4;27614:2;27603:9;27599:18;27591:26;;27627:65;27689:1;27678:9;27674:17;27665:6;27627:65;:::i;:::-;27489:210;;;;:::o;27705:222::-;27798:4;27836:2;27825:9;27821:18;27813:26;;27849:71;27917:1;27906:9;27902:17;27893:6;27849:71;:::i;:::-;27705:222;;;;:::o;27933:313::-;28046:4;28084:2;28073:9;28069:18;28061:26;;28133:9;28127:4;28123:20;28119:1;28108:9;28104:17;28097:47;28161:78;28234:4;28225:6;28161:78;:::i;:::-;28153:86;;27933:313;;;;:::o;28252:419::-;28418:4;28456:2;28445:9;28441:18;28433:26;;28505:9;28499:4;28495:20;28491:1;28480:9;28476:17;28469:47;28533:131;28659:4;28533:131;:::i;:::-;28525:139;;28252:419;;;:::o;28677:::-;28843:4;28881:2;28870:9;28866:18;28858:26;;28930:9;28924:4;28920:20;28916:1;28905:9;28901:17;28894:47;28958:131;29084:4;28958:131;:::i;:::-;28950:139;;28677:419;;;:::o;29102:::-;29268:4;29306:2;29295:9;29291:18;29283:26;;29355:9;29349:4;29345:20;29341:1;29330:9;29326:17;29319:47;29383:131;29509:4;29383:131;:::i;:::-;29375:139;;29102:419;;;:::o;29527:::-;29693:4;29731:2;29720:9;29716:18;29708:26;;29780:9;29774:4;29770:20;29766:1;29755:9;29751:17;29744:47;29808:131;29934:4;29808:131;:::i;:::-;29800:139;;29527:419;;;:::o;29952:::-;30118:4;30156:2;30145:9;30141:18;30133:26;;30205:9;30199:4;30195:20;30191:1;30180:9;30176:17;30169:47;30233:131;30359:4;30233:131;:::i;:::-;30225:139;;29952:419;;;:::o;30377:::-;30543:4;30581:2;30570:9;30566:18;30558:26;;30630:9;30624:4;30620:20;30616:1;30605:9;30601:17;30594:47;30658:131;30784:4;30658:131;:::i;:::-;30650:139;;30377:419;;;:::o;30802:::-;30968:4;31006:2;30995:9;30991:18;30983:26;;31055:9;31049:4;31045:20;31041:1;31030:9;31026:17;31019:47;31083:131;31209:4;31083:131;:::i;:::-;31075:139;;30802:419;;;:::o;31227:::-;31393:4;31431:2;31420:9;31416:18;31408:26;;31480:9;31474:4;31470:20;31466:1;31455:9;31451:17;31444:47;31508:131;31634:4;31508:131;:::i;:::-;31500:139;;31227:419;;;:::o;31652:::-;31818:4;31856:2;31845:9;31841:18;31833:26;;31905:9;31899:4;31895:20;31891:1;31880:9;31876:17;31869:47;31933:131;32059:4;31933:131;:::i;:::-;31925:139;;31652:419;;;:::o;32077:::-;32243:4;32281:2;32270:9;32266:18;32258:26;;32330:9;32324:4;32320:20;32316:1;32305:9;32301:17;32294:47;32358:131;32484:4;32358:131;:::i;:::-;32350:139;;32077:419;;;:::o;32502:::-;32668:4;32706:2;32695:9;32691:18;32683:26;;32755:9;32749:4;32745:20;32741:1;32730:9;32726:17;32719:47;32783:131;32909:4;32783:131;:::i;:::-;32775:139;;32502:419;;;:::o;32927:::-;33093:4;33131:2;33120:9;33116:18;33108:26;;33180:9;33174:4;33170:20;33166:1;33155:9;33151:17;33144:47;33208:131;33334:4;33208:131;:::i;:::-;33200:139;;32927:419;;;:::o;33352:::-;33518:4;33556:2;33545:9;33541:18;33533:26;;33605:9;33599:4;33595:20;33591:1;33580:9;33576:17;33569:47;33633:131;33759:4;33633:131;:::i;:::-;33625:139;;33352:419;;;:::o;33777:::-;33943:4;33981:2;33970:9;33966:18;33958:26;;34030:9;34024:4;34020:20;34016:1;34005:9;34001:17;33994:47;34058:131;34184:4;34058:131;:::i;:::-;34050:139;;33777:419;;;:::o;34202:::-;34368:4;34406:2;34395:9;34391:18;34383:26;;34455:9;34449:4;34445:20;34441:1;34430:9;34426:17;34419:47;34483:131;34609:4;34483:131;:::i;:::-;34475:139;;34202:419;;;:::o;34627:::-;34793:4;34831:2;34820:9;34816:18;34808:26;;34880:9;34874:4;34870:20;34866:1;34855:9;34851:17;34844:47;34908:131;35034:4;34908:131;:::i;:::-;34900:139;;34627:419;;;:::o;35052:::-;35218:4;35256:2;35245:9;35241:18;35233:26;;35305:9;35299:4;35295:20;35291:1;35280:9;35276:17;35269:47;35333:131;35459:4;35333:131;:::i;:::-;35325:139;;35052:419;;;:::o;35477:::-;35643:4;35681:2;35670:9;35666:18;35658:26;;35730:9;35724:4;35720:20;35716:1;35705:9;35701:17;35694:47;35758:131;35884:4;35758:131;:::i;:::-;35750:139;;35477:419;;;:::o;35902:::-;36068:4;36106:2;36095:9;36091:18;36083:26;;36155:9;36149:4;36145:20;36141:1;36130:9;36126:17;36119:47;36183:131;36309:4;36183:131;:::i;:::-;36175:139;;35902:419;;;:::o;36327:::-;36493:4;36531:2;36520:9;36516:18;36508:26;;36580:9;36574:4;36570:20;36566:1;36555:9;36551:17;36544:47;36608:131;36734:4;36608:131;:::i;:::-;36600:139;;36327:419;;;:::o;36752:::-;36918:4;36956:2;36945:9;36941:18;36933:26;;37005:9;36999:4;36995:20;36991:1;36980:9;36976:17;36969:47;37033:131;37159:4;37033:131;:::i;:::-;37025:139;;36752:419;;;:::o;37177:::-;37343:4;37381:2;37370:9;37366:18;37358:26;;37430:9;37424:4;37420:20;37416:1;37405:9;37401:17;37394:47;37458:131;37584:4;37458:131;:::i;:::-;37450:139;;37177:419;;;:::o;37602:::-;37768:4;37806:2;37795:9;37791:18;37783:26;;37855:9;37849:4;37845:20;37841:1;37830:9;37826:17;37819:47;37883:131;38009:4;37883:131;:::i;:::-;37875:139;;37602:419;;;:::o;38027:::-;38193:4;38231:2;38220:9;38216:18;38208:26;;38280:9;38274:4;38270:20;38266:1;38255:9;38251:17;38244:47;38308:131;38434:4;38308:131;:::i;:::-;38300:139;;38027:419;;;:::o;38452:::-;38618:4;38656:2;38645:9;38641:18;38633:26;;38705:9;38699:4;38695:20;38691:1;38680:9;38676:17;38669:47;38733:131;38859:4;38733:131;:::i;:::-;38725:139;;38452:419;;;:::o;39302:::-;39468:4;39506:2;39495:9;39491:18;39483:26;;39555:9;39549:4;39545:20;39541:1;39530:9;39526:17;39519:47;39583:131;39709:4;39583:131;:::i;:::-;39575:139;;39302:419;;;:::o;39727:::-;39893:4;39931:2;39920:9;39916:18;39908:26;;39980:9;39974:4;39970:20;39966:1;39955:9;39951:17;39944:47;40008:131;40134:4;40008:131;:::i;:::-;40000:139;;39727:419;;;:::o;40152:::-;40318:4;40356:2;40345:9;40341:18;40333:26;;40405:9;40399:4;40395:20;40391:1;40380:9;40376:17;40369:47;40433:131;40559:4;40433:131;:::i;:::-;40425:139;;40152:419;;;:::o;40577:222::-;40670:4;40708:2;40697:9;40693:18;40685:26;;40721:71;40789:1;40778:9;40774:17;40765:6;40721:71;:::i;:::-;40577:222;;;;:::o;40805:214::-;40894:4;40932:2;40921:9;40917:18;40909:26;;40945:67;41009:1;40998:9;40994:17;40985:6;40945:67;:::i;:::-;40805:214;;;;:::o;41025:129::-;41059:6;41086:20;;:::i;:::-;41076:30;;41115:33;41143:4;41135:6;41115:33;:::i;:::-;41025:129;;;:::o;41160:75::-;41193:6;41226:2;41220:9;41210:19;;41160:75;:::o;41241:307::-;41302:4;41392:18;41384:6;41381:30;41378:56;;;41414:18;;:::i;:::-;41378:56;41452:29;41474:6;41452:29;:::i;:::-;41444:37;;41536:4;41530;41526:15;41518:23;;41241:307;;;:::o;41554:308::-;41616:4;41706:18;41698:6;41695:30;41692:56;;;41728:18;;:::i;:::-;41692:56;41766:29;41788:6;41766:29;:::i;:::-;41758:37;;41850:4;41844;41840:15;41832:23;;41554:308;;;:::o;41868:141::-;41917:4;41940:3;41932:11;;41963:3;41960:1;41953:14;41997:4;41994:1;41984:18;41976:26;;41868:141;;;:::o;42015:98::-;42066:6;42100:5;42094:12;42084:22;;42015:98;;;:::o;42119:99::-;42171:6;42205:5;42199:12;42189:22;;42119:99;;;:::o;42224:168::-;42307:11;42341:6;42336:3;42329:19;42381:4;42376:3;42372:14;42357:29;;42224:168;;;;:::o;42398:169::-;42482:11;42516:6;42511:3;42504:19;42556:4;42551:3;42547:14;42532:29;;42398:169;;;;:::o;42573:148::-;42675:11;42712:3;42697:18;;42573:148;;;;:::o;42727:273::-;42767:3;42786:20;42804:1;42786:20;:::i;:::-;42781:25;;42820:20;42838:1;42820:20;:::i;:::-;42815:25;;42942:1;42906:34;42902:42;42899:1;42896:49;42893:75;;;42948:18;;:::i;:::-;42893:75;42992:1;42989;42985:9;42978:16;;42727:273;;;;:::o;43006:305::-;43046:3;43065:20;43083:1;43065:20;:::i;:::-;43060:25;;43099:20;43117:1;43099:20;:::i;:::-;43094:25;;43253:1;43185:66;43181:74;43178:1;43175:81;43172:107;;;43259:18;;:::i;:::-;43172:107;43303:1;43300;43296:9;43289:16;;43006:305;;;;:::o;43317:185::-;43357:1;43374:20;43392:1;43374:20;:::i;:::-;43369:25;;43408:20;43426:1;43408:20;:::i;:::-;43403:25;;43447:1;43437:35;;43452:18;;:::i;:::-;43437:35;43494:1;43491;43487:9;43482:14;;43317:185;;;;:::o;43508:348::-;43548:7;43571:20;43589:1;43571:20;:::i;:::-;43566:25;;43605:20;43623:1;43605:20;:::i;:::-;43600:25;;43793:1;43725:66;43721:74;43718:1;43715:81;43710:1;43703:9;43696:17;43692:105;43689:131;;;43800:18;;:::i;:::-;43689:131;43848:1;43845;43841:9;43830:20;;43508:348;;;;:::o;43862:191::-;43902:4;43922:20;43940:1;43922:20;:::i;:::-;43917:25;;43956:20;43974:1;43956:20;:::i;:::-;43951:25;;43995:1;43992;43989:8;43986:34;;;44000:18;;:::i;:::-;43986:34;44045:1;44042;44038:9;44030:17;;43862:191;;;;:::o;44059:96::-;44096:7;44125:24;44143:5;44125:24;:::i;:::-;44114:35;;44059:96;;;:::o;44161:104::-;44206:7;44235:24;44253:5;44235:24;:::i;:::-;44224:35;;44161:104;;;:::o;44271:90::-;44305:7;44348:5;44341:13;44334:21;44323:32;;44271:90;;;:::o;44367:77::-;44404:7;44433:5;44422:16;;44367:77;;;:::o;44450:149::-;44486:7;44526:66;44519:5;44515:78;44504:89;;44450:149;;;:::o;44605:118::-;44642:7;44682:34;44675:5;44671:46;44660:57;;44605:118;;;:::o;44729:126::-;44766:7;44806:42;44799:5;44795:54;44784:65;;44729:126;;;:::o;44861:77::-;44898:7;44927:5;44916:16;;44861:77;;;:::o;44944:86::-;44979:7;45019:4;45012:5;45008:16;44997:27;;44944:86;;;:::o;45036:154::-;45120:6;45115:3;45110;45097:30;45182:1;45173:6;45168:3;45164:16;45157:27;45036:154;;;:::o;45196:307::-;45264:1;45274:113;45288:6;45285:1;45282:13;45274:113;;;45373:1;45368:3;45364:11;45358:18;45354:1;45349:3;45345:11;45338:39;45310:2;45307:1;45303:10;45298:15;;45274:113;;;45405:6;45402:1;45399:13;45396:101;;;45485:1;45476:6;45471:3;45467:16;45460:27;45396:101;45245:258;45196:307;;;:::o;45509:171::-;45548:3;45571:24;45589:5;45571:24;:::i;:::-;45562:33;;45617:4;45610:5;45607:15;45604:41;;;45625:18;;:::i;:::-;45604:41;45672:1;45665:5;45661:13;45654:20;;45509:171;;;:::o;45686:320::-;45730:6;45767:1;45761:4;45757:12;45747:22;;45814:1;45808:4;45804:12;45835:18;45825:81;;45891:4;45883:6;45879:17;45869:27;;45825:81;45953:2;45945:6;45942:14;45922:18;45919:38;45916:84;;;45972:18;;:::i;:::-;45916:84;45737:269;45686:320;;;:::o;46012:281::-;46095:27;46117:4;46095:27;:::i;:::-;46087:6;46083:40;46225:6;46213:10;46210:22;46189:18;46177:10;46174:34;46171:62;46168:88;;;46236:18;;:::i;:::-;46168:88;46276:10;46272:2;46265:22;46055:238;46012:281;;:::o;46299:233::-;46338:3;46361:24;46379:5;46361:24;:::i;:::-;46352:33;;46407:66;46400:5;46397:77;46394:103;;;46477:18;;:::i;:::-;46394:103;46524:1;46517:5;46513:13;46506:20;;46299:233;;;:::o;46538:100::-;46577:7;46606:26;46626:5;46606:26;:::i;:::-;46595:37;;46538:100;;;:::o;46644:94::-;46683:7;46712:20;46726:5;46712:20;:::i;:::-;46701:31;;46644:94;;;:::o;46744:176::-;46776:1;46793:20;46811:1;46793:20;:::i;:::-;46788:25;;46827:20;46845:1;46827:20;:::i;:::-;46822:25;;46866:1;46856:35;;46871:18;;:::i;:::-;46856:35;46912:1;46909;46905:9;46900:14;;46744:176;;;;:::o;46926:180::-;46974:77;46971:1;46964:88;47071:4;47068:1;47061:15;47095:4;47092:1;47085:15;47112:180;47160:77;47157:1;47150:88;47257:4;47254:1;47247:15;47281:4;47278:1;47271:15;47298:180;47346:77;47343:1;47336:88;47443:4;47440:1;47433:15;47467:4;47464:1;47457:15;47484:180;47532:77;47529:1;47522:88;47629:4;47626:1;47619:15;47653:4;47650:1;47643:15;47670:180;47718:77;47715:1;47708:88;47815:4;47812:1;47805:15;47839:4;47836:1;47829:15;47856:117;47965:1;47962;47955:12;47979:117;48088:1;48085;48078:12;48102:117;48211:1;48208;48201:12;48225:117;48334:1;48331;48324:12;48348:117;48457:1;48454;48447:12;48471:117;48580:1;48577;48570:12;48594:102;48635:6;48686:2;48682:7;48677:2;48670:5;48666:14;48662:28;48652:38;;48594:102;;;:::o;48702:94::-;48735:8;48783:5;48779:2;48775:14;48754:35;;48702:94;;;:::o;48802:221::-;48942:34;48938:1;48930:6;48926:14;48919:58;49011:4;49006:2;48998:6;48994:15;48987:29;48802:221;:::o;49029:164::-;49169:16;49165:1;49157:6;49153:14;49146:40;49029:164;:::o;49199:225::-;49339:34;49335:1;49327:6;49323:14;49316:58;49408:8;49403:2;49395:6;49391:15;49384:33;49199:225;:::o;49430:229::-;49570:34;49566:1;49558:6;49554:14;49547:58;49639:12;49634:2;49626:6;49622:15;49615:37;49430:229;:::o;49665:222::-;49805:34;49801:1;49793:6;49789:14;49782:58;49874:5;49869:2;49861:6;49857:15;49850:30;49665:222;:::o;49893:224::-;50033:34;50029:1;50021:6;50017:14;50010:58;50102:7;50097:2;50089:6;50085:15;50078:32;49893:224;:::o;50123:236::-;50263:34;50259:1;50251:6;50247:14;50240:58;50332:19;50327:2;50319:6;50315:15;50308:44;50123:236;:::o;50365:168::-;50505:20;50501:1;50493:6;50489:14;50482:44;50365:168;:::o;50539:228::-;50679:34;50675:1;50667:6;50663:14;50656:58;50748:11;50743:2;50735:6;50731:15;50724:36;50539:228;:::o;50773:244::-;50913:34;50909:1;50901:6;50897:14;50890:58;50982:27;50977:2;50969:6;50965:15;50958:52;50773:244;:::o;51023:167::-;51163:19;51159:1;51151:6;51147:14;51140:43;51023:167;:::o;51196:163::-;51336:15;51332:1;51324:6;51320:14;51313:39;51196:163;:::o;51365:230::-;51505:34;51501:1;51493:6;51489:14;51482:58;51574:13;51569:2;51561:6;51557:15;51550:38;51365:230;:::o;51601:225::-;51741:34;51737:1;51729:6;51725:14;51718:58;51810:8;51805:2;51797:6;51793:15;51786:33;51601:225;:::o;51832:155::-;51972:7;51968:1;51960:6;51956:14;51949:31;51832:155;:::o;51993:182::-;52133:34;52129:1;52121:6;52117:14;52110:58;51993:182;:::o;52181:234::-;52321:34;52317:1;52309:6;52305:14;52298:58;52390:17;52385:2;52377:6;52373:15;52366:42;52181:234;:::o;52421:176::-;52561:28;52557:1;52549:6;52545:14;52538:52;52421:176;:::o;52603:237::-;52743:34;52739:1;52731:6;52727:14;52720:58;52812:20;52807:2;52799:6;52795:15;52788:45;52603:237;:::o;52846:175::-;52986:27;52982:1;52974:6;52970:14;52963:51;52846:175;:::o;53027:221::-;53167:34;53163:1;53155:6;53151:14;53144:58;53236:4;53231:2;53223:6;53219:15;53212:29;53027:221;:::o;53254:222::-;53394:34;53390:1;53382:6;53378:14;53371:58;53463:5;53458:2;53450:6;53446:15;53439:30;53254:222;:::o;53482:238::-;53622:34;53618:1;53610:6;53606:14;53599:58;53691:21;53686:2;53678:6;53674:15;53667:46;53482:238;:::o;53726:179::-;53866:31;53862:1;53854:6;53850:14;53843:55;53726:179;:::o;53911:220::-;54051:34;54047:1;54039:6;54035:14;54028:58;54120:3;54115:2;54107:6;54103:15;54096:28;53911:220;:::o;54137:233::-;54277:34;54273:1;54265:6;54261:14;54254:58;54346:16;54341:2;54333:6;54329:15;54322:41;54137:233;:::o;54616:175::-;54756:27;54752:1;54744:6;54740:14;54733:51;54616:175;:::o;54797:162::-;54937:14;54933:1;54925:6;54921:14;54914:38;54797:162;:::o;54965:232::-;55105:34;55101:1;55093:6;55089:14;55082:58;55174:15;55169:2;55161:6;55157:15;55150:40;54965:232;:::o;55203:122::-;55276:24;55294:5;55276:24;:::i;:::-;55269:5;55266:35;55256:63;;55315:1;55312;55305:12;55256:63;55203:122;:::o;55331:138::-;55412:32;55438:5;55412:32;:::i;:::-;55405:5;55402:43;55392:71;;55459:1;55456;55449:12;55392:71;55331:138;:::o;55475:116::-;55545:21;55560:5;55545:21;:::i;:::-;55538:5;55535:32;55525:60;;55581:1;55578;55571:12;55525:60;55475:116;:::o;55597:122::-;55670:24;55688:5;55670:24;:::i;:::-;55663:5;55660:35;55650:63;;55709:1;55706;55699:12;55650:63;55597:122;:::o;55725:120::-;55797:23;55814:5;55797:23;:::i;:::-;55790:5;55787:34;55777:62;;55835:1;55832;55825:12;55777:62;55725:120;:::o;55851:122::-;55924:24;55942:5;55924:24;:::i;:::-;55917:5;55914:35;55904:63;;55963:1;55960;55953:12;55904:63;55851:122;:::o;55979:118::-;56050:22;56066:5;56050:22;:::i;:::-;56043:5;56040:33;56030:61;;56087:1;56084;56077:12;56030:61;55979:118;:::o

Swarm Source

ipfs://98ae2921be9f3dcd9420407db37b78249775d001be7a0f72c8c04822ddd9e465
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.