ETH Price: $3,009.29 (+5.55%)
Gas: 2 Gwei

Token

Flekos (FLK)
 

Overview

Max Total Supply

0 FLK

Holders

847

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 FLK
0x0000000000000000000000000000000000000000
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:
flekos

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-05-28
*/

// 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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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/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/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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/utils/Strings.sol


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

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/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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) 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);
    }
}

// File: contracts/interfaces/ILayerZeroReceiver.sol



pragma solidity >=0.5.0;

interface ILayerZeroReceiver {
    // @notice LayerZero endpoint will invoke this function to deliver the message on the destination
    // @param _srcChainId - the source endpoint identifier
    // @param _srcAddress - the source sending contract address from the source chain
    // @param _nonce - the ordered message nonce
    // @param _payload - the signed payload is the UA bytes has encoded to be sent
    function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external;
}
// File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol



pragma solidity >=0.5.0;

interface ILayerZeroUserApplicationConfig {
    // @notice set the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _configType - type of configuration. every messaging library has its own convention.
    // @param _config - configuration in the bytes. can encode arbitrary content.
    function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external;

    // @notice set the send() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setSendVersion(uint16 _version) external;

    // @notice set the lzReceive() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setReceiveVersion(uint16 _version) external;

    // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
    // @param _srcChainId - the chainId of the source chain
    // @param _srcAddress - the contract address of the source contract at the source chain
    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
}

// File: contracts/interfaces/ILayerZeroEndpoint.sol



pragma solidity >=0.5.0;


interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
    // @notice send a LayerZero message to the specified address at a LayerZero endpoint.
    // @param _dstChainId - the destination chain identifier
    // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
    // @param _payload - a custom bytes payload to send to the destination contract
    // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
    // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
    // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
    function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;

    // @notice used by the messaging library to publish verified payload
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source contract (as bytes) at the source chain
    // @param _dstAddress - the address on destination chain
    // @param _nonce - the unbound message ordering nonce
    // @param _gasLimit - the gas limit for external contract execution
    // @param _payload - verified payload to send to the destination contract
    function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external;

    // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64);

    // @notice get the outboundNonce from this source chain which, consequently, is always an EVM
    // @param _srcAddress - the source chain contract address
    function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64);

    // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
    // @param _dstChainId - the destination chain identifier
    // @param _userApplication - the user app address on this EVM chain
    // @param _payload - the custom message to send over LayerZero
    // @param _payInZRO - if false, user app pays the protocol fee in native token
    // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
    function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee);

    // @notice get this Endpoint's immutable source identifier
    function getChainId() external view returns (uint16);

    // @notice the interface to retry failed message on this Endpoint destination
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    // @param _payload - the payload to be retried
    function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external;

    // @notice query if any STORED payload (message blocking) at the endpoint.
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);

    // @notice query if the _libraryAddress is valid for sending msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getSendLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the _libraryAddress is valid for receiving msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getReceiveLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the non-reentrancy guard for send() is on
    // @return true if the guard is on. false otherwise
    function isSendingPayload() external view returns (bool);

    // @notice query if the non-reentrancy guard for receive() is on
    // @return true if the guard is on. false otherwise
    function isReceivingPayload() external view returns (bool);

    // @notice get the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _userApplication - the contract address of the user application
    // @param _configType - type of configuration. every messaging library has its own convention.
    function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory);

    // @notice get the send() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getSendVersion(address _userApplication) external view returns (uint16);

    // @notice get the lzReceive() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getReceiveVersion(address _userApplication) external view returns (uint16);
}

// File: contracts/NonblockingReceiver.sol






pragma solidity ^0.8.6;

abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {
    ILayerZeroEndpoint internal endpoint;

    struct FailedMessages {
        uint256 payloadLength;
        bytes32 payloadHash;
    }

    mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages)))
        public failedMessages;
    mapping(uint16 => bytes) public trustedRemoteLookup;

    event MessageFailed(
        uint16 _srcChainId,
        bytes _srcAddress,
        uint64 _nonce,
        bytes _payload
    );

    function lzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) external override {
        require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security
        require(
            _srcAddress.length == trustedRemoteLookup[_srcChainId].length &&
                keccak256(_srcAddress) ==
                keccak256(trustedRemoteLookup[_srcChainId]),
            "NonblockingReceiver: invalid source sending contract"
        );

        // try-catch all errors/exceptions
        // having failed messages does not block messages passing
        try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) {
            // do nothing
        } catch {
            // error / exception
            failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(
                _payload.length,
                keccak256(_payload)
            );
            emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload);
        }
    }

    function onLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) public {
        // only internal transaction
        require(
            msg.sender == address(this),
            "NonblockingReceiver: caller must be Bridge."
        );

        // handle incoming message
        _LzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    // abstract function
    function _LzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual;

    function _lzSend(
        uint16 _dstChainId,
        bytes memory _payload,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes memory _txParam
    ) internal {
        endpoint.send{value: msg.value}(
            _dstChainId,
            trustedRemoteLookup[_dstChainId],
            _payload,
            _refundAddress,
            _zroPaymentAddress,
            _txParam
        );
    }

    function retryMessage(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) external payable {
        // assert there is message to retry
        FailedMessages storage failedMsg = failedMessages[_srcChainId][
            _srcAddress
        ][_nonce];
        require(
            failedMsg.payloadHash != bytes32(0),
            "NonblockingReceiver: no stored message"
        );
        require(
            _payload.length == failedMsg.payloadLength &&
                keccak256(_payload) == failedMsg.payloadHash,
            "LayerZero: invalid payload"
        );
        // clear the stored message
        failedMsg.payloadLength = 0;
        failedMsg.payloadHash = bytes32(0);
        // execute the message. revert if it fails again
        this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    function setTrustedRemote(uint16 _chainId, bytes calldata _trustedRemote)
        external
        onlyOwner
    {
        trustedRemoteLookup[_chainId] = _trustedRemote;
    }
}
// File: contracts/Flekos.sol



/*
................................................................................
.........&&&&&&.................................................................
.........&&&...............................&&&&&&....................&&&&&&.....
......&&&&&&&&&...&&&&&......&&&&&&........&&&.......................&&&........
......&&&&&&   ...&&.........&&&...........&&&...   .................&&&........
......   &&&......&&.........&&&&&&   .....&&&&&&......&&&&&%%%......&&&........
......   &&&......&&.........&&&&&&   .....&&&&&&......&&&&&%%%......&&&........
.........&&&......&&.........&&&...........   &&&......&&&..&&&......   ........
.........%%%......  &&&%%%...&&&&&&%%%..%%%&&&...%%%...&&&&&   ...%%%&&&........
................................................................................
An NFT collection minted across different chains.
*/












pragma solidity ^0.8.7;

contract flekos is Ownable, ERC721, NonblockingReceiver {
    using Strings for uint256;

    address public _owner;
    string private baseURI;
    string private fatherURI;
    uint256 nextTokenId = 6400;
    uint256 MAX_MINT = 10000;

    uint256 gasForDestinationLzReceive = 350000;

    constructor(string memory baseURI_, string memory fatherURI_, address _layerZeroEndpoint)
        ERC721("Flekos", "FLK")
    {
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        baseURI = baseURI_;
        fatherURI = fatherURI_;
    }

    // mint function
    // you can choose to mint 1 or 2
    // mint is free, but payments are accepted
    function mint(uint8 numTokens) external payable {
        require(numTokens < 3, "Flekos contract: Max 2 NFTs per transaction");
        require(
            nextTokenId + numTokens <= MAX_MINT,
            "Flekos contract: Mint exceeds supply"
        );
        _safeMint(msg.sender, ++nextTokenId);
        if (numTokens == 2) {
            _safeMint(msg.sender, ++nextTokenId);
        }
    }

    // This function transfers the nft from your address on the
    // source chain to the same address on the destination chain
    function traverseChains(uint16 _chainId, uint256 tokenId) public payable {
        require(
            msg.sender == ownerOf(tokenId),
            "You must own the token to traverse"
        );
        require(
            trustedRemoteLookup[_chainId].length > 0,
            "This chain is currently unavailable for travel"
        );

        // burn NFT, eliminating it from circulation on src chain
        _burn(tokenId);

        // abi.encode() the payload with the values to send
        bytes memory payload = abi.encode(msg.sender, tokenId);

        // encode adapterParams to specify more gas for the destination
        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(
            version,
            gasForDestinationLzReceive
        );

        // get the fees we need to pay to LayerZero + Relayer to cover message delivery
        // you will be refunded for extra gas paid
        (uint256 messageFee, ) = endpoint.estimateFees(
            _chainId,
            address(this),
            payload,
            false,
            adapterParams
        );

        require(
            msg.value >= messageFee,
            "Flekos contract: msg.value not enough to cover messageFee. Send gas for message fees"
        );

        endpoint.send{value: msg.value}(
            _chainId, // destination chainId
            trustedRemoteLookup[_chainId], // destination address of nft contract
            payload, // abi.encoded()'ed bytes
            payable(msg.sender), // refund address
            address(0x0), // 'zroPaymentAddress' unused for this
            adapterParams // txParameters
        );
    }

    // ERC721 tokenURI function override to allow a different URI for tokenId 0
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory bURI;
        if (tokenId == 0) { bURI = _fatherURI(); }
        else { bURI = _baseURI(); }
        return bytes(bURI).length > 0 ? string(abi.encodePacked(bURI, tokenId.toString())) : "";
    }

    function setBaseURI(string memory URI) external onlyOwner {
        baseURI = URI;
    }

    // Set URI for father fleko (with tokenId = 0)
    function setFatherURI(string memory URI) external onlyOwner {
        fatherURI = URI;
    }

    // You can claim the ownership of the contract if you are the owner of the fleko father.
    function claimOwnership() external {
        require(msg.sender == ownerOf(0), "Flekos contract: You have to be the owner of the fleko father");
        _transferOwnership(msg.sender);
    }

    function donate() external payable {
        // thank you! <3
    }

    // This allows the devs to receive kind donations
    function withdraw(uint256 amt) external onlyOwner {
        (bool sent, ) = payable(_owner).call{value: amt}("");
        require(sent, "Flekos contract: Failed to withdraw");
    }

    // Just in case this fixed variable limits us from future integrations
    function setGasForDestinationLzReceive(uint256 newVal) external onlyOwner {
        gasForDestinationLzReceive = newVal;
    }

    // ------------------
    // Internal Functions
    // ------------------

    function _LzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal override {
        // decode
        (address toAddr, uint256 tokenId) = abi.decode(
            _payload,
            (address, uint256)
        );

        // mint the tokens back into existence on destination chain
        _safeMint(toAddr, tokenId);
    }

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

    function _fatherURI() internal view returns (string memory) {
        return fatherURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"string","name":"fatherURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"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":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","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":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setFatherURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611900600d55612710600e5562055730600f553480156200002457600080fd5b50604051620056ef380380620056ef83398181016040528101906200004a9190620003d8565b6040518060400160405280600681526020017f466c656b6f7300000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f464c4b0000000000000000000000000000000000000000000000000000000000815250620000d6620000ca620001c760201b60201c565b620001cf60201b60201c565b8160019080519060200190620000ee92919062000293565b5080600290805190602001906200010792919062000293565b50505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600b9080519060200190620001a492919062000293565b5081600c9080519060200190620001bd92919062000293565b5050505062000644565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a1906200053b565b90600052602060002090601f016020900481019282620002c5576000855562000311565b82601f10620002e057805160ff191683800117855562000311565b8280016001018555821562000311579182015b8281111562000310578251825591602001919060010190620002f3565b5b50905062000320919062000324565b5090565b5b808211156200033f57600081600090555060010162000325565b5090565b60006200035a62000354846200049b565b62000472565b9050828152602081018484840111156200037957620003786200060a565b5b6200038684828562000505565b509392505050565b6000815190506200039f816200062a565b92915050565b600082601f830112620003bd57620003bc62000605565b5b8151620003cf84826020860162000343565b91505092915050565b600080600060608486031215620003f457620003f362000614565b5b600084015167ffffffffffffffff8111156200041557620004146200060f565b5b6200042386828701620003a5565b935050602084015167ffffffffffffffff8111156200044757620004466200060f565b5b6200045586828701620003a5565b925050604062000468868287016200038e565b9150509250925092565b60006200047e62000491565b90506200048c828262000571565b919050565b6000604051905090565b600067ffffffffffffffff821115620004b957620004b8620005d6565b5b620004c48262000619565b9050602081019050919050565b6000620004de82620004e5565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200052557808201518184015260208101905062000508565b8381111562000535576000848401525b50505050565b600060028204905060018216806200055457607f821691505b602082108114156200056b576200056a620005a7565b5b50919050565b6200057c8262000619565b810181811067ffffffffffffffff821117156200059e576200059d620005d6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200063581620004d1565b81146200064157600080fd5b50565b61509b80620006546000396000f3fe6080604052600436106101d75760003560e01c80637533d78811610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610679578063eb8d72b7146106b6578063ed88c68e146106df578063f2fde38b146106e9576101d7565b8063b88d4fde146105db578063c87b56dd14610604578063cf89fa0314610641578063d1deba1f1461065d576101d7565b8063943fb872116100d1578063943fb8721461053357806395d89b411461055c578063a22cb46514610587578063b2bdfa7b146105b0576101d7565b80637533d7881461046457806385ed726d146104a15780638da5cb5b146104ca5780638ee74912146104f5576101d7565b80632e1a7d4d1161017a5780636352211e116101495780636352211e146103b75780636ecd2306146103f457806370a0823114610410578063715018a61461044d576101d7565b80632e1a7d4d1461032557806342842e0e1461034e5780634e71e0c81461037757806355f804b31461038e576101d7565b8063081812fc116101b6578063081812fc1461026d578063095ea7b3146102aa5780631c37a822146102d357806323b872dd146102fc576101d7565b80621d3567146101dc57806301ffc9a71461020557806306fdde0314610242575b600080fd5b3480156101e857600080fd5b5061020360048036038101906101fe9190613460565b610712565b005b34801561021157600080fd5b5061022c6004803603810190610227919061321d565b610954565b6040516102399190613da5565b60405180910390f35b34801561024e57600080fd5b50610257610a36565b6040516102649190613de2565b60405180910390f35b34801561027957600080fd5b50610294600480360381019061028f919061353f565b610ac8565b6040516102a19190613d15565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc91906131dd565b610b4d565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190613460565b610c65565b005b34801561030857600080fd5b50610323600480360381019061031e91906130c7565b610ce5565b005b34801561033157600080fd5b5061034c6004803603810190610347919061353f565b610d45565b005b34801561035a57600080fd5b50610375600480360381019061037091906130c7565b610e93565b005b34801561038357600080fd5b5061038c610eb3565b005b34801561039a57600080fd5b506103b560048036038101906103b09190613277565b610f35565b005b3480156103c357600080fd5b506103de60048036038101906103d9919061353f565b610fcb565b6040516103eb9190613d15565b60405180910390f35b61040e600480360381019061040991906135ac565b61107d565b005b34801561041c57600080fd5b506104376004803603810190610432919061301a565b611164565b60405161044491906142e3565b60405180910390f35b34801561045957600080fd5b5061046261121c565b005b34801561047057600080fd5b5061048b600480360381019061048691906132c0565b6112a4565b6040516104989190613dc0565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190613277565b611344565b005b3480156104d657600080fd5b506104df6113da565b6040516104ec9190613d15565b60405180910390f35b34801561050157600080fd5b5061051c6004803603810190610517919061334d565b611403565b60405161052a9291906142fe565b60405180910390f35b34801561053f57600080fd5b5061055a6004803603810190610555919061353f565b611457565b005b34801561056857600080fd5b506105716114dd565b60405161057e9190613de2565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061319d565b61156f565b005b3480156105bc57600080fd5b506105c5611585565b6040516105d29190613d15565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd919061311a565b6115ab565b005b34801561061057600080fd5b5061062b6004803603810190610626919061353f565b61160d565b6040516106389190613de2565b60405180910390f35b61065b600480360381019061065691906134ff565b6116cd565b005b610677600480360381019061067291906133bc565b6119c0565b005b34801561068557600080fd5b506106a0600480360381019061069b9190613087565b611b60565b6040516106ad9190613da5565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d891906132ed565b611bf4565b005b6106e7611ca0565b005b3480156106f557600080fd5b50610710600480360381019061070b919061301a565b611ca2565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461076c57600080fd5b600960008561ffff1661ffff1681526020019081526020016000208054610792906145cd565b905083511480156107d85750600960008561ffff1661ffff1681526020019081526020016000206040516107c69190613c99565b60405180910390208380519060200120145b610817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080e90614064565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b8152600401610856949392919061421a565b600060405180830381600087803b15801561087057600080fd5b505af1925050508015610881575060015b61094d576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108cb9190613c82565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d84848484604051610940949392919061421a565b60405180910390a161094e565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2f5750610a2e82611d9a565b5b9050919050565b606060018054610a45906145cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a71906145cd565b8015610abe5780601f10610a9357610100808354040283529160200191610abe565b820191906000526020600020905b815481529060010190602001808311610aa157829003601f168201915b5050505050905090565b6000610ad382611e04565b610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990614024565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5882610fcb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc090614104565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be8611e70565b73ffffffffffffffffffffffffffffffffffffffff161480610c175750610c1681610c11611e70565b611b60565b5b610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613f84565b60405180910390fd5b610c608383611e78565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90613fe4565b60405180910390fd5b610cdf84848484611f31565b50505050565b610cf6610cf0611e70565b82611f5e565b610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90614124565b60405180910390fd5b610d4083838361203c565b505050565b610d4d611e70565b73ffffffffffffffffffffffffffffffffffffffff16610d6b6113da565b73ffffffffffffffffffffffffffffffffffffffff1614610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890614044565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610e0990613cd4565b60006040518083038185875af1925050503d8060008114610e46576040519150601f19603f3d011682016040523d82523d6000602084013e610e4b565b606091505b5050905080610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614084565b60405180910390fd5b5050565b610eae838383604051806020016040528060008152506115ab565b505050565b610ebd6000610fcb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190613e84565b60405180910390fd5b610f33336122a3565b565b610f3d611e70565b73ffffffffffffffffffffffffffffffffffffffff16610f5b6113da565b73ffffffffffffffffffffffffffffffffffffffff1614610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890614044565b60405180910390fd5b80600b9080519060200190610fc7929190612ce9565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90613fc4565b60405180910390fd5b80915050919050565b60038160ff16106110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba906140c4565b60405180910390fd5b600e548160ff16600d546110d79190614411565b1115611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906140e4565b60405180910390fd5b61113633600d6000815461112b90614630565b919050819055612367565b60028160ff1614156111615761116033600d6000815461115590614630565b919050819055612367565b5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613fa4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611224611e70565b73ffffffffffffffffffffffffffffffffffffffff166112426113da565b73ffffffffffffffffffffffffffffffffffffffff1614611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90614044565b60405180910390fd5b6112a260006122a3565b565b600960205280600052604060002060009150905080546112c3906145cd565b80601f01602080910402602001604051908101604052809291908181526020018280546112ef906145cd565b801561133c5780601f106113115761010080835404028352916020019161133c565b820191906000526020600020905b81548152906001019060200180831161131f57829003601f168201915b505050505081565b61134c611e70565b73ffffffffffffffffffffffffffffffffffffffff1661136a6113da565b73ffffffffffffffffffffffffffffffffffffffff16146113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b790614044565b60405180910390fd5b80600c90805190602001906113d6929190612ce9565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b61145f611e70565b73ffffffffffffffffffffffffffffffffffffffff1661147d6113da565b73ffffffffffffffffffffffffffffffffffffffff16146114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90614044565b60405180910390fd5b80600f8190555050565b6060600280546114ec906145cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611518906145cd565b80156115655780601f1061153a57610100808354040283529160200191611565565b820191906000526020600020905b81548152906001019060200180831161154857829003601f168201915b5050505050905090565b61158161157a611e70565b8383612385565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115bc6115b6611e70565b83611f5e565b6115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290614124565b60405180910390fd5b611607848484846124f2565b50505050565b606061161882611e04565b611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e906140a4565b60405180910390fd5b606060008314156116715761166a61254e565b905061167c565b6116796125e0565b90505b600081511161169a57604051806020016040528060008152506116c5565b806116a484612672565b6040516020016116b5929190613cb0565b6040516020818303038152906040525b915050919050565b6116d681610fcb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a90613f44565b60405180910390fd5b6000600960008461ffff1661ffff168152602001908152602001600020805461176b906145cd565b9050116117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490613f04565b60405180910390fd5b6117b6816127d3565b600033826040516020016117cb929190613d7c565b6040516020818303038152906040529050600060019050600081600f546040516020016117f9929190613ce9565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b8152600401611870959493929190614164565b604080518083038186803b15801561188757600080fd5b505afa15801561189b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118bf919061356c565b50905080341015611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90613ea4565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b81526004016119869695949392919061426d565b6000604051808303818588803b15801561199f57600080fd5b505af11580156119b3573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516119eb9190613c82565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b81600101541415611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790614144565b60405180910390fd5b806000015483839050148015611a90575080600101548383604051611a86929190613c69565b6040518091039020145b611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac690613f24565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611b269594939291906141c5565b600060405180830381600087803b158015611b4057600080fd5b505af1158015611b54573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bfc611e70565b73ffffffffffffffffffffffffffffffffffffffff16611c1a6113da565b73ffffffffffffffffffffffffffffffffffffffff1614611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6790614044565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611c9a929190612d6f565b50505050565b565b611caa611e70565b73ffffffffffffffffffffffffffffffffffffffff16611cc86113da565b73ffffffffffffffffffffffffffffffffffffffff1614611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590614044565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8590613e24565b60405180910390fd5b611d97816122a3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eeb83610fcb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611f489190613047565b91509150611f568282612367565b505050505050565b6000611f6982611e04565b611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90613f64565b60405180910390fd5b6000611fb383610fcb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ff55750611ff48185611b60565b5b8061203357508373ffffffffffffffffffffffffffffffffffffffff1661201b84610ac8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205c82610fcb565b73ffffffffffffffffffffffffffffffffffffffff16146120b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a990613e44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211990613ec4565b60405180910390fd5b61212d8383836128f0565b612138600082611e78565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121889190614498565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121df9190614411565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461229e8383836128f5565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123818282604051806020016040528060008152506128fa565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb90613ee4565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124e59190613da5565b60405180910390a3505050565b6124fd84848461203c565b61250984848484612955565b612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f90613e04565b60405180910390fd5b50505050565b6060600c805461255d906145cd565b80601f0160208091040260200160405190810160405280929190818152602001828054612589906145cd565b80156125d65780601f106125ab576101008083540402835291602001916125d6565b820191906000526020600020905b8154815290600101906020018083116125b957829003601f168201915b5050505050905090565b6060600b80546125ef906145cd565b80601f016020809104026020016040519081016040528092919081815260200182805461261b906145cd565b80156126685780601f1061263d57610100808354040283529160200191612668565b820191906000526020600020905b81548152906001019060200180831161264b57829003601f168201915b5050505050905090565b606060008214156126ba576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ce565b600082905060005b600082146126ec5780806126d590614630565b915050600a826126e59190614467565b91506126c2565b60008167ffffffffffffffff81111561270857612707614782565b5b6040519080825280601f01601f19166020018201604052801561273a5781602001600182028036833780820191505090505b5090505b600085146127c7576001826127539190614498565b9150600a856127629190614695565b603061276e9190614411565b60f81b81838151811061278457612783614753565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127c09190614467565b945061273e565b8093505050505b919050565b60006127de82610fcb565b90506127ec816000846128f0565b6127f7600083611e78565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128479190614498565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ec816000846128f5565b5050565b505050565b505050565b6129048383612aec565b6129116000848484612955565b612950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294790613e04565b60405180910390fd5b505050565b60006129768473ffffffffffffffffffffffffffffffffffffffff16612cc6565b15612adf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261299f611e70565b8786866040518563ffffffff1660e01b81526004016129c19493929190613d30565b602060405180830381600087803b1580156129db57600080fd5b505af1925050508015612a0c57506040513d601f19601f82011682018060405250810190612a09919061324a565b60015b612a8f573d8060008114612a3c576040519150601f19603f3d011682016040523d82523d6000602084013e612a41565b606091505b50600081511415612a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7e90613e04565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ae4565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5390614004565b60405180910390fd5b612b6581611e04565b15612ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9c90613e64565b60405180910390fd5b612bb1600083836128f0565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c019190614411565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cc2600083836128f5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612cf5906145cd565b90600052602060002090601f016020900481019282612d175760008555612d5e565b82601f10612d3057805160ff1916838001178555612d5e565b82800160010185558215612d5e579182015b82811115612d5d578251825591602001919060010190612d42565b5b509050612d6b9190612df5565b5090565b828054612d7b906145cd565b90600052602060002090601f016020900481019282612d9d5760008555612de4565b82601f10612db657803560ff1916838001178555612de4565b82800160010185558215612de4579182015b82811115612de3578235825591602001919060010190612dc8565b5b509050612df19190612df5565b5090565b5b80821115612e0e576000816000905550600101612df6565b5090565b6000612e25612e208461434c565b614327565b905082815260208101848484011115612e4157612e406147c0565b5b612e4c84828561458b565b509392505050565b6000612e67612e628461437d565b614327565b905082815260208101848484011115612e8357612e826147c0565b5b612e8e84828561458b565b509392505050565b600081359050612ea581614fad565b92915050565b600081519050612eba81614fc4565b92915050565b600081359050612ecf81614fdb565b92915050565b600081359050612ee481614ff2565b92915050565b600081519050612ef981614ff2565b92915050565b60008083601f840112612f1557612f146147b6565b5b8235905067ffffffffffffffff811115612f3257612f316147b1565b5b602083019150836001820283011115612f4e57612f4d6147bb565b5b9250929050565b600082601f830112612f6a57612f696147b6565b5b8135612f7a848260208601612e12565b91505092915050565b600082601f830112612f9857612f976147b6565b5b8135612fa8848260208601612e54565b91505092915050565b600081359050612fc081615009565b92915050565b600081359050612fd581615020565b92915050565b600081519050612fea81615020565b92915050565b600081359050612fff81615037565b92915050565b6000813590506130148161504e565b92915050565b6000602082840312156130305761302f6147ca565b5b600061303e84828501612e96565b91505092915050565b6000806040838503121561305e5761305d6147ca565b5b600061306c85828601612eab565b925050602061307d85828601612fdb565b9150509250929050565b6000806040838503121561309e5761309d6147ca565b5b60006130ac85828601612e96565b92505060206130bd85828601612e96565b9150509250929050565b6000806000606084860312156130e0576130df6147ca565b5b60006130ee86828701612e96565b93505060206130ff86828701612e96565b925050604061311086828701612fc6565b9150509250925092565b60008060008060808587031215613134576131336147ca565b5b600061314287828801612e96565b945050602061315387828801612e96565b935050604061316487828801612fc6565b925050606085013567ffffffffffffffff811115613185576131846147c5565b5b61319187828801612f55565b91505092959194509250565b600080604083850312156131b4576131b36147ca565b5b60006131c285828601612e96565b92505060206131d385828601612ec0565b9150509250929050565b600080604083850312156131f4576131f36147ca565b5b600061320285828601612e96565b925050602061321385828601612fc6565b9150509250929050565b600060208284031215613233576132326147ca565b5b600061324184828501612ed5565b91505092915050565b6000602082840312156132605761325f6147ca565b5b600061326e84828501612eea565b91505092915050565b60006020828403121561328d5761328c6147ca565b5b600082013567ffffffffffffffff8111156132ab576132aa6147c5565b5b6132b784828501612f83565b91505092915050565b6000602082840312156132d6576132d56147ca565b5b60006132e484828501612fb1565b91505092915050565b600080600060408486031215613306576133056147ca565b5b600061331486828701612fb1565b935050602084013567ffffffffffffffff811115613335576133346147c5565b5b61334186828701612eff565b92509250509250925092565b600080600060608486031215613366576133656147ca565b5b600061337486828701612fb1565b935050602084013567ffffffffffffffff811115613395576133946147c5565b5b6133a186828701612f55565b92505060406133b286828701612fc6565b9150509250925092565b6000806000806000608086880312156133d8576133d76147ca565b5b60006133e688828901612fb1565b955050602086013567ffffffffffffffff811115613407576134066147c5565b5b61341388828901612f55565b945050604061342488828901612ff0565b935050606086013567ffffffffffffffff811115613445576134446147c5565b5b61345188828901612eff565b92509250509295509295909350565b6000806000806080858703121561347a576134796147ca565b5b600061348887828801612fb1565b945050602085013567ffffffffffffffff8111156134a9576134a86147c5565b5b6134b587828801612f55565b93505060406134c687828801612ff0565b925050606085013567ffffffffffffffff8111156134e7576134e66147c5565b5b6134f387828801612f55565b91505092959194509250565b60008060408385031215613516576135156147ca565b5b600061352485828601612fb1565b925050602061353585828601612fc6565b9150509250929050565b600060208284031215613555576135546147ca565b5b600061356384828501612fc6565b91505092915050565b60008060408385031215613583576135826147ca565b5b600061359185828601612fdb565b92505060206135a285828601612fdb565b9150509250929050565b6000602082840312156135c2576135c16147ca565b5b60006135d084828501613005565b91505092915050565b6135e2816144de565b82525050565b6135f1816144cc565b82525050565b613600816144f0565b82525050565b61360f816144fc565b82525050565b600061362183856143d9565b935061362e83858461458b565b613637836147cf565b840190509392505050565b600061364e83856143ea565b935061365b83858461458b565b82840190509392505050565b6000613672826143c3565b61367c81856143d9565b935061368c81856020860161459a565b613695816147cf565b840191505092915050565b60006136ab826143c3565b6136b581856143ea565b93506136c581856020860161459a565b80840191505092915050565b600081546136de816145cd565b6136e881866143d9565b94506001821660008114613703576001811461371557613748565b60ff1983168652602086019350613748565b61371e856143ae565b60005b8381101561374057815481890152600182019150602081019050613721565b808801955050505b50505092915050565b6000815461375e816145cd565b61376881866143ea565b945060018216600081146137835760018114613794576137c7565b60ff198316865281860193506137c7565b61379d856143ae565b60005b838110156137bf578154818901526001820191506020810190506137a0565b838801955050505b50505092915050565b60006137db826143ce565b6137e581856143f5565b93506137f581856020860161459a565b6137fe816147cf565b840191505092915050565b6000613814826143ce565b61381e8185614406565b935061382e81856020860161459a565b80840191505092915050565b60006138476032836143f5565b9150613852826147ed565b604082019050919050565b600061386a6026836143f5565b91506138758261483c565b604082019050919050565b600061388d6025836143f5565b91506138988261488b565b604082019050919050565b60006138b0601c836143f5565b91506138bb826148da565b602082019050919050565b60006138d3603d836143f5565b91506138de82614903565b604082019050919050565b60006138f66054836143f5565b915061390182614952565b606082019050919050565b60006139196024836143f5565b9150613924826149c7565b604082019050919050565b600061393c6019836143f5565b915061394782614a16565b602082019050919050565b600061395f602e836143f5565b915061396a82614a3f565b604082019050919050565b6000613982601a836143f5565b915061398d82614a8e565b602082019050919050565b60006139a56022836143f5565b91506139b082614ab7565b604082019050919050565b60006139c8602c836143f5565b91506139d382614b06565b604082019050919050565b60006139eb6038836143f5565b91506139f682614b55565b604082019050919050565b6000613a0e602a836143f5565b9150613a1982614ba4565b604082019050919050565b6000613a316029836143f5565b9150613a3c82614bf3565b604082019050919050565b6000613a54602b836143f5565b9150613a5f82614c42565b604082019050919050565b6000613a776020836143f5565b9150613a8282614c91565b602082019050919050565b6000613a9a602c836143f5565b9150613aa582614cba565b604082019050919050565b6000613abd6020836143f5565b9150613ac882614d09565b602082019050919050565b6000613ae06034836143f5565b9150613aeb82614d32565b604082019050919050565b6000613b036023836143f5565b9150613b0e82614d81565b604082019050919050565b6000613b26602f836143f5565b9150613b3182614dd0565b604082019050919050565b6000613b49602b836143f5565b9150613b5482614e1f565b604082019050919050565b6000613b6c6024836143f5565b9150613b7782614e6e565b604082019050919050565b6000613b8f6021836143f5565b9150613b9a82614ebd565b604082019050919050565b6000613bb26000836143ea565b9150613bbd82614f0c565b600082019050919050565b6000613bd56031836143f5565b9150613be082614f0f565b604082019050919050565b6000613bf86026836143f5565b9150613c0382614f5e565b604082019050919050565b613c1781614532565b82525050565b613c2e613c2982614532565b614679565b82525050565b613c3d81614560565b82525050565b613c54613c4f82614560565b61468b565b82525050565b613c638161456a565b82525050565b6000613c76828486613642565b91508190509392505050565b6000613c8e82846136a0565b915081905092915050565b6000613ca58284613751565b915081905092915050565b6000613cbc8285613809565b9150613cc88284613809565b91508190509392505050565b6000613cdf82613ba5565b9150819050919050565b6000613cf58285613c1d565b600282019150613d058284613c43565b6020820191508190509392505050565b6000602082019050613d2a60008301846135e8565b92915050565b6000608082019050613d4560008301876135e8565b613d5260208301866135e8565b613d5f6040830185613c34565b8181036060830152613d718184613667565b905095945050505050565b6000604082019050613d9160008301856135e8565b613d9e6020830184613c34565b9392505050565b6000602082019050613dba60008301846135f7565b92915050565b60006020820190508181036000830152613dda8184613667565b905092915050565b60006020820190508181036000830152613dfc81846137d0565b905092915050565b60006020820190508181036000830152613e1d8161383a565b9050919050565b60006020820190508181036000830152613e3d8161385d565b9050919050565b60006020820190508181036000830152613e5d81613880565b9050919050565b60006020820190508181036000830152613e7d816138a3565b9050919050565b60006020820190508181036000830152613e9d816138c6565b9050919050565b60006020820190508181036000830152613ebd816138e9565b9050919050565b60006020820190508181036000830152613edd8161390c565b9050919050565b60006020820190508181036000830152613efd8161392f565b9050919050565b60006020820190508181036000830152613f1d81613952565b9050919050565b60006020820190508181036000830152613f3d81613975565b9050919050565b60006020820190508181036000830152613f5d81613998565b9050919050565b60006020820190508181036000830152613f7d816139bb565b9050919050565b60006020820190508181036000830152613f9d816139de565b9050919050565b60006020820190508181036000830152613fbd81613a01565b9050919050565b60006020820190508181036000830152613fdd81613a24565b9050919050565b60006020820190508181036000830152613ffd81613a47565b9050919050565b6000602082019050818103600083015261401d81613a6a565b9050919050565b6000602082019050818103600083015261403d81613a8d565b9050919050565b6000602082019050818103600083015261405d81613ab0565b9050919050565b6000602082019050818103600083015261407d81613ad3565b9050919050565b6000602082019050818103600083015261409d81613af6565b9050919050565b600060208201905081810360008301526140bd81613b19565b9050919050565b600060208201905081810360008301526140dd81613b3c565b9050919050565b600060208201905081810360008301526140fd81613b5f565b9050919050565b6000602082019050818103600083015261411d81613b82565b9050919050565b6000602082019050818103600083015261413d81613bc8565b9050919050565b6000602082019050818103600083015261415d81613beb565b9050919050565b600060a0820190506141796000830188613c0e565b61418660208301876135e8565b81810360408301526141988186613667565b90506141a760608301856135f7565b81810360808301526141b98184613667565b90509695505050505050565b60006080820190506141da6000830188613c0e565b81810360208301526141ec8187613667565b90506141fb6040830186613c5a565b818103606083015261420e818486613615565b90509695505050505050565b600060808201905061422f6000830187613c0e565b81810360208301526142418186613667565b90506142506040830185613c5a565b81810360608301526142628184613667565b905095945050505050565b600060c0820190506142826000830189613c0e565b818103602083015261429481886136d1565b905081810360408301526142a88187613667565b90506142b760608301866135d9565b6142c460808301856135e8565b81810360a08301526142d68184613667565b9050979650505050505050565b60006020820190506142f86000830184613c34565b92915050565b60006040820190506143136000830185613c34565b6143206020830184613606565b9392505050565b6000614331614342565b905061433d82826145ff565b919050565b6000604051905090565b600067ffffffffffffffff82111561436757614366614782565b5b614370826147cf565b9050602081019050919050565b600067ffffffffffffffff82111561439857614397614782565b5b6143a1826147cf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061441c82614560565b915061442783614560565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561445c5761445b6146c6565b5b828201905092915050565b600061447282614560565b915061447d83614560565b92508261448d5761448c6146f5565b5b828204905092915050565b60006144a382614560565b91506144ae83614560565b9250828210156144c1576144c06146c6565b5b828203905092915050565b60006144d782614540565b9050919050565b60006144e982614540565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156145b857808201518184015260208101905061459d565b838111156145c7576000848401525b50505050565b600060028204905060018216806145e557607f821691505b602082108114156145f9576145f8614724565b5b50919050565b614608826147cf565b810181811067ffffffffffffffff8211171561462757614626614782565b5b80604052505050565b600061463b82614560565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561466e5761466d6146c6565b5b600182019050919050565b6000614684826147e0565b9050919050565b6000819050919050565b60006146a082614560565b91506146ab83614560565b9250826146bb576146ba6146f5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f466c656b6f7320636f6e74726163743a20596f75206861766520746f2062652060008201527f746865206f776e6572206f662074686520666c656b6f20666174686572000000602082015250565b7f466c656b6f7320636f6e74726163743a206d73672e76616c7565206e6f74206560008201527f6e6f75676820746f20636f766572206d6573736167654665652e2053656e642060208201527f67617320666f72206d6573736167652066656573000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f466c656b6f7320636f6e74726163743a204661696c656420746f20776974686460008201527f7261770000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f466c656b6f7320636f6e74726163743a204d61782032204e465473207065722060008201527f7472616e73616374696f6e000000000000000000000000000000000000000000602082015250565b7f466c656b6f7320636f6e74726163743a204d696e74206578636565647320737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b614fb6816144cc565b8114614fc157600080fd5b50565b614fcd816144de565b8114614fd857600080fd5b50565b614fe4816144f0565b8114614fef57600080fd5b50565b614ffb81614506565b811461500657600080fd5b50565b61501281614532565b811461501d57600080fd5b50565b61502981614560565b811461503457600080fd5b50565b6150408161456a565b811461504b57600080fd5b50565b6150578161457e565b811461506257600080fd5b5056fea2646970667358221220f39a78ae2fa335c63f850b0b1fd2f0ee0cf2cc55d4d92ce718fe4a892b009f4a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d616d64484b4d32776a6473387645596d56316f797265426e733439416a395039626d476e4e64464650466b412f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57416b72643933645a4c675346707a63664b71674c317443786759574c644253613158776252774d596b71692f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d75760003560e01c80637533d78811610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610679578063eb8d72b7146106b6578063ed88c68e146106df578063f2fde38b146106e9576101d7565b8063b88d4fde146105db578063c87b56dd14610604578063cf89fa0314610641578063d1deba1f1461065d576101d7565b8063943fb872116100d1578063943fb8721461053357806395d89b411461055c578063a22cb46514610587578063b2bdfa7b146105b0576101d7565b80637533d7881461046457806385ed726d146104a15780638da5cb5b146104ca5780638ee74912146104f5576101d7565b80632e1a7d4d1161017a5780636352211e116101495780636352211e146103b75780636ecd2306146103f457806370a0823114610410578063715018a61461044d576101d7565b80632e1a7d4d1461032557806342842e0e1461034e5780634e71e0c81461037757806355f804b31461038e576101d7565b8063081812fc116101b6578063081812fc1461026d578063095ea7b3146102aa5780631c37a822146102d357806323b872dd146102fc576101d7565b80621d3567146101dc57806301ffc9a71461020557806306fdde0314610242575b600080fd5b3480156101e857600080fd5b5061020360048036038101906101fe9190613460565b610712565b005b34801561021157600080fd5b5061022c6004803603810190610227919061321d565b610954565b6040516102399190613da5565b60405180910390f35b34801561024e57600080fd5b50610257610a36565b6040516102649190613de2565b60405180910390f35b34801561027957600080fd5b50610294600480360381019061028f919061353f565b610ac8565b6040516102a19190613d15565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc91906131dd565b610b4d565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190613460565b610c65565b005b34801561030857600080fd5b50610323600480360381019061031e91906130c7565b610ce5565b005b34801561033157600080fd5b5061034c6004803603810190610347919061353f565b610d45565b005b34801561035a57600080fd5b50610375600480360381019061037091906130c7565b610e93565b005b34801561038357600080fd5b5061038c610eb3565b005b34801561039a57600080fd5b506103b560048036038101906103b09190613277565b610f35565b005b3480156103c357600080fd5b506103de60048036038101906103d9919061353f565b610fcb565b6040516103eb9190613d15565b60405180910390f35b61040e600480360381019061040991906135ac565b61107d565b005b34801561041c57600080fd5b506104376004803603810190610432919061301a565b611164565b60405161044491906142e3565b60405180910390f35b34801561045957600080fd5b5061046261121c565b005b34801561047057600080fd5b5061048b600480360381019061048691906132c0565b6112a4565b6040516104989190613dc0565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190613277565b611344565b005b3480156104d657600080fd5b506104df6113da565b6040516104ec9190613d15565b60405180910390f35b34801561050157600080fd5b5061051c6004803603810190610517919061334d565b611403565b60405161052a9291906142fe565b60405180910390f35b34801561053f57600080fd5b5061055a6004803603810190610555919061353f565b611457565b005b34801561056857600080fd5b506105716114dd565b60405161057e9190613de2565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061319d565b61156f565b005b3480156105bc57600080fd5b506105c5611585565b6040516105d29190613d15565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd919061311a565b6115ab565b005b34801561061057600080fd5b5061062b6004803603810190610626919061353f565b61160d565b6040516106389190613de2565b60405180910390f35b61065b600480360381019061065691906134ff565b6116cd565b005b610677600480360381019061067291906133bc565b6119c0565b005b34801561068557600080fd5b506106a0600480360381019061069b9190613087565b611b60565b6040516106ad9190613da5565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d891906132ed565b611bf4565b005b6106e7611ca0565b005b3480156106f557600080fd5b50610710600480360381019061070b919061301a565b611ca2565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461076c57600080fd5b600960008561ffff1661ffff1681526020019081526020016000208054610792906145cd565b905083511480156107d85750600960008561ffff1661ffff1681526020019081526020016000206040516107c69190613c99565b60405180910390208380519060200120145b610817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080e90614064565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b8152600401610856949392919061421a565b600060405180830381600087803b15801561087057600080fd5b505af1925050508015610881575060015b61094d576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108cb9190613c82565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d84848484604051610940949392919061421a565b60405180910390a161094e565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2f5750610a2e82611d9a565b5b9050919050565b606060018054610a45906145cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a71906145cd565b8015610abe5780601f10610a9357610100808354040283529160200191610abe565b820191906000526020600020905b815481529060010190602001808311610aa157829003601f168201915b5050505050905090565b6000610ad382611e04565b610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990614024565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5882610fcb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc090614104565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be8611e70565b73ffffffffffffffffffffffffffffffffffffffff161480610c175750610c1681610c11611e70565b611b60565b5b610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613f84565b60405180910390fd5b610c608383611e78565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90613fe4565b60405180910390fd5b610cdf84848484611f31565b50505050565b610cf6610cf0611e70565b82611f5e565b610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90614124565b60405180910390fd5b610d4083838361203c565b505050565b610d4d611e70565b73ffffffffffffffffffffffffffffffffffffffff16610d6b6113da565b73ffffffffffffffffffffffffffffffffffffffff1614610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890614044565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610e0990613cd4565b60006040518083038185875af1925050503d8060008114610e46576040519150601f19603f3d011682016040523d82523d6000602084013e610e4b565b606091505b5050905080610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614084565b60405180910390fd5b5050565b610eae838383604051806020016040528060008152506115ab565b505050565b610ebd6000610fcb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190613e84565b60405180910390fd5b610f33336122a3565b565b610f3d611e70565b73ffffffffffffffffffffffffffffffffffffffff16610f5b6113da565b73ffffffffffffffffffffffffffffffffffffffff1614610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890614044565b60405180910390fd5b80600b9080519060200190610fc7929190612ce9565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90613fc4565b60405180910390fd5b80915050919050565b60038160ff16106110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba906140c4565b60405180910390fd5b600e548160ff16600d546110d79190614411565b1115611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906140e4565b60405180910390fd5b61113633600d6000815461112b90614630565b919050819055612367565b60028160ff1614156111615761116033600d6000815461115590614630565b919050819055612367565b5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613fa4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611224611e70565b73ffffffffffffffffffffffffffffffffffffffff166112426113da565b73ffffffffffffffffffffffffffffffffffffffff1614611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90614044565b60405180910390fd5b6112a260006122a3565b565b600960205280600052604060002060009150905080546112c3906145cd565b80601f01602080910402602001604051908101604052809291908181526020018280546112ef906145cd565b801561133c5780601f106113115761010080835404028352916020019161133c565b820191906000526020600020905b81548152906001019060200180831161131f57829003601f168201915b505050505081565b61134c611e70565b73ffffffffffffffffffffffffffffffffffffffff1661136a6113da565b73ffffffffffffffffffffffffffffffffffffffff16146113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b790614044565b60405180910390fd5b80600c90805190602001906113d6929190612ce9565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b61145f611e70565b73ffffffffffffffffffffffffffffffffffffffff1661147d6113da565b73ffffffffffffffffffffffffffffffffffffffff16146114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90614044565b60405180910390fd5b80600f8190555050565b6060600280546114ec906145cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611518906145cd565b80156115655780601f1061153a57610100808354040283529160200191611565565b820191906000526020600020905b81548152906001019060200180831161154857829003601f168201915b5050505050905090565b61158161157a611e70565b8383612385565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115bc6115b6611e70565b83611f5e565b6115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290614124565b60405180910390fd5b611607848484846124f2565b50505050565b606061161882611e04565b611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e906140a4565b60405180910390fd5b606060008314156116715761166a61254e565b905061167c565b6116796125e0565b90505b600081511161169a57604051806020016040528060008152506116c5565b806116a484612672565b6040516020016116b5929190613cb0565b6040516020818303038152906040525b915050919050565b6116d681610fcb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a90613f44565b60405180910390fd5b6000600960008461ffff1661ffff168152602001908152602001600020805461176b906145cd565b9050116117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490613f04565b60405180910390fd5b6117b6816127d3565b600033826040516020016117cb929190613d7c565b6040516020818303038152906040529050600060019050600081600f546040516020016117f9929190613ce9565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b8152600401611870959493929190614164565b604080518083038186803b15801561188757600080fd5b505afa15801561189b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118bf919061356c565b50905080341015611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90613ea4565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b81526004016119869695949392919061426d565b6000604051808303818588803b15801561199f57600080fd5b505af11580156119b3573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516119eb9190613c82565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b81600101541415611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790614144565b60405180910390fd5b806000015483839050148015611a90575080600101548383604051611a86929190613c69565b6040518091039020145b611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac690613f24565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611b269594939291906141c5565b600060405180830381600087803b158015611b4057600080fd5b505af1158015611b54573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bfc611e70565b73ffffffffffffffffffffffffffffffffffffffff16611c1a6113da565b73ffffffffffffffffffffffffffffffffffffffff1614611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6790614044565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611c9a929190612d6f565b50505050565b565b611caa611e70565b73ffffffffffffffffffffffffffffffffffffffff16611cc86113da565b73ffffffffffffffffffffffffffffffffffffffff1614611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590614044565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8590613e24565b60405180910390fd5b611d97816122a3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eeb83610fcb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611f489190613047565b91509150611f568282612367565b505050505050565b6000611f6982611e04565b611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90613f64565b60405180910390fd5b6000611fb383610fcb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ff55750611ff48185611b60565b5b8061203357508373ffffffffffffffffffffffffffffffffffffffff1661201b84610ac8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205c82610fcb565b73ffffffffffffffffffffffffffffffffffffffff16146120b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a990613e44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211990613ec4565b60405180910390fd5b61212d8383836128f0565b612138600082611e78565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121889190614498565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121df9190614411565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461229e8383836128f5565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123818282604051806020016040528060008152506128fa565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb90613ee4565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124e59190613da5565b60405180910390a3505050565b6124fd84848461203c565b61250984848484612955565b612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f90613e04565b60405180910390fd5b50505050565b6060600c805461255d906145cd565b80601f0160208091040260200160405190810160405280929190818152602001828054612589906145cd565b80156125d65780601f106125ab576101008083540402835291602001916125d6565b820191906000526020600020905b8154815290600101906020018083116125b957829003601f168201915b5050505050905090565b6060600b80546125ef906145cd565b80601f016020809104026020016040519081016040528092919081815260200182805461261b906145cd565b80156126685780601f1061263d57610100808354040283529160200191612668565b820191906000526020600020905b81548152906001019060200180831161264b57829003601f168201915b5050505050905090565b606060008214156126ba576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ce565b600082905060005b600082146126ec5780806126d590614630565b915050600a826126e59190614467565b91506126c2565b60008167ffffffffffffffff81111561270857612707614782565b5b6040519080825280601f01601f19166020018201604052801561273a5781602001600182028036833780820191505090505b5090505b600085146127c7576001826127539190614498565b9150600a856127629190614695565b603061276e9190614411565b60f81b81838151811061278457612783614753565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127c09190614467565b945061273e565b8093505050505b919050565b60006127de82610fcb565b90506127ec816000846128f0565b6127f7600083611e78565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128479190614498565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ec816000846128f5565b5050565b505050565b505050565b6129048383612aec565b6129116000848484612955565b612950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294790613e04565b60405180910390fd5b505050565b60006129768473ffffffffffffffffffffffffffffffffffffffff16612cc6565b15612adf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261299f611e70565b8786866040518563ffffffff1660e01b81526004016129c19493929190613d30565b602060405180830381600087803b1580156129db57600080fd5b505af1925050508015612a0c57506040513d601f19601f82011682018060405250810190612a09919061324a565b60015b612a8f573d8060008114612a3c576040519150601f19603f3d011682016040523d82523d6000602084013e612a41565b606091505b50600081511415612a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7e90613e04565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ae4565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5390614004565b60405180910390fd5b612b6581611e04565b15612ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9c90613e64565b60405180910390fd5b612bb1600083836128f0565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c019190614411565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cc2600083836128f5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612cf5906145cd565b90600052602060002090601f016020900481019282612d175760008555612d5e565b82601f10612d3057805160ff1916838001178555612d5e565b82800160010185558215612d5e579182015b82811115612d5d578251825591602001919060010190612d42565b5b509050612d6b9190612df5565b5090565b828054612d7b906145cd565b90600052602060002090601f016020900481019282612d9d5760008555612de4565b82601f10612db657803560ff1916838001178555612de4565b82800160010185558215612de4579182015b82811115612de3578235825591602001919060010190612dc8565b5b509050612df19190612df5565b5090565b5b80821115612e0e576000816000905550600101612df6565b5090565b6000612e25612e208461434c565b614327565b905082815260208101848484011115612e4157612e406147c0565b5b612e4c84828561458b565b509392505050565b6000612e67612e628461437d565b614327565b905082815260208101848484011115612e8357612e826147c0565b5b612e8e84828561458b565b509392505050565b600081359050612ea581614fad565b92915050565b600081519050612eba81614fc4565b92915050565b600081359050612ecf81614fdb565b92915050565b600081359050612ee481614ff2565b92915050565b600081519050612ef981614ff2565b92915050565b60008083601f840112612f1557612f146147b6565b5b8235905067ffffffffffffffff811115612f3257612f316147b1565b5b602083019150836001820283011115612f4e57612f4d6147bb565b5b9250929050565b600082601f830112612f6a57612f696147b6565b5b8135612f7a848260208601612e12565b91505092915050565b600082601f830112612f9857612f976147b6565b5b8135612fa8848260208601612e54565b91505092915050565b600081359050612fc081615009565b92915050565b600081359050612fd581615020565b92915050565b600081519050612fea81615020565b92915050565b600081359050612fff81615037565b92915050565b6000813590506130148161504e565b92915050565b6000602082840312156130305761302f6147ca565b5b600061303e84828501612e96565b91505092915050565b6000806040838503121561305e5761305d6147ca565b5b600061306c85828601612eab565b925050602061307d85828601612fdb565b9150509250929050565b6000806040838503121561309e5761309d6147ca565b5b60006130ac85828601612e96565b92505060206130bd85828601612e96565b9150509250929050565b6000806000606084860312156130e0576130df6147ca565b5b60006130ee86828701612e96565b93505060206130ff86828701612e96565b925050604061311086828701612fc6565b9150509250925092565b60008060008060808587031215613134576131336147ca565b5b600061314287828801612e96565b945050602061315387828801612e96565b935050604061316487828801612fc6565b925050606085013567ffffffffffffffff811115613185576131846147c5565b5b61319187828801612f55565b91505092959194509250565b600080604083850312156131b4576131b36147ca565b5b60006131c285828601612e96565b92505060206131d385828601612ec0565b9150509250929050565b600080604083850312156131f4576131f36147ca565b5b600061320285828601612e96565b925050602061321385828601612fc6565b9150509250929050565b600060208284031215613233576132326147ca565b5b600061324184828501612ed5565b91505092915050565b6000602082840312156132605761325f6147ca565b5b600061326e84828501612eea565b91505092915050565b60006020828403121561328d5761328c6147ca565b5b600082013567ffffffffffffffff8111156132ab576132aa6147c5565b5b6132b784828501612f83565b91505092915050565b6000602082840312156132d6576132d56147ca565b5b60006132e484828501612fb1565b91505092915050565b600080600060408486031215613306576133056147ca565b5b600061331486828701612fb1565b935050602084013567ffffffffffffffff811115613335576133346147c5565b5b61334186828701612eff565b92509250509250925092565b600080600060608486031215613366576133656147ca565b5b600061337486828701612fb1565b935050602084013567ffffffffffffffff811115613395576133946147c5565b5b6133a186828701612f55565b92505060406133b286828701612fc6565b9150509250925092565b6000806000806000608086880312156133d8576133d76147ca565b5b60006133e688828901612fb1565b955050602086013567ffffffffffffffff811115613407576134066147c5565b5b61341388828901612f55565b945050604061342488828901612ff0565b935050606086013567ffffffffffffffff811115613445576134446147c5565b5b61345188828901612eff565b92509250509295509295909350565b6000806000806080858703121561347a576134796147ca565b5b600061348887828801612fb1565b945050602085013567ffffffffffffffff8111156134a9576134a86147c5565b5b6134b587828801612f55565b93505060406134c687828801612ff0565b925050606085013567ffffffffffffffff8111156134e7576134e66147c5565b5b6134f387828801612f55565b91505092959194509250565b60008060408385031215613516576135156147ca565b5b600061352485828601612fb1565b925050602061353585828601612fc6565b9150509250929050565b600060208284031215613555576135546147ca565b5b600061356384828501612fc6565b91505092915050565b60008060408385031215613583576135826147ca565b5b600061359185828601612fdb565b92505060206135a285828601612fdb565b9150509250929050565b6000602082840312156135c2576135c16147ca565b5b60006135d084828501613005565b91505092915050565b6135e2816144de565b82525050565b6135f1816144cc565b82525050565b613600816144f0565b82525050565b61360f816144fc565b82525050565b600061362183856143d9565b935061362e83858461458b565b613637836147cf565b840190509392505050565b600061364e83856143ea565b935061365b83858461458b565b82840190509392505050565b6000613672826143c3565b61367c81856143d9565b935061368c81856020860161459a565b613695816147cf565b840191505092915050565b60006136ab826143c3565b6136b581856143ea565b93506136c581856020860161459a565b80840191505092915050565b600081546136de816145cd565b6136e881866143d9565b94506001821660008114613703576001811461371557613748565b60ff1983168652602086019350613748565b61371e856143ae565b60005b8381101561374057815481890152600182019150602081019050613721565b808801955050505b50505092915050565b6000815461375e816145cd565b61376881866143ea565b945060018216600081146137835760018114613794576137c7565b60ff198316865281860193506137c7565b61379d856143ae565b60005b838110156137bf578154818901526001820191506020810190506137a0565b838801955050505b50505092915050565b60006137db826143ce565b6137e581856143f5565b93506137f581856020860161459a565b6137fe816147cf565b840191505092915050565b6000613814826143ce565b61381e8185614406565b935061382e81856020860161459a565b80840191505092915050565b60006138476032836143f5565b9150613852826147ed565b604082019050919050565b600061386a6026836143f5565b91506138758261483c565b604082019050919050565b600061388d6025836143f5565b91506138988261488b565b604082019050919050565b60006138b0601c836143f5565b91506138bb826148da565b602082019050919050565b60006138d3603d836143f5565b91506138de82614903565b604082019050919050565b60006138f66054836143f5565b915061390182614952565b606082019050919050565b60006139196024836143f5565b9150613924826149c7565b604082019050919050565b600061393c6019836143f5565b915061394782614a16565b602082019050919050565b600061395f602e836143f5565b915061396a82614a3f565b604082019050919050565b6000613982601a836143f5565b915061398d82614a8e565b602082019050919050565b60006139a56022836143f5565b91506139b082614ab7565b604082019050919050565b60006139c8602c836143f5565b91506139d382614b06565b604082019050919050565b60006139eb6038836143f5565b91506139f682614b55565b604082019050919050565b6000613a0e602a836143f5565b9150613a1982614ba4565b604082019050919050565b6000613a316029836143f5565b9150613a3c82614bf3565b604082019050919050565b6000613a54602b836143f5565b9150613a5f82614c42565b604082019050919050565b6000613a776020836143f5565b9150613a8282614c91565b602082019050919050565b6000613a9a602c836143f5565b9150613aa582614cba565b604082019050919050565b6000613abd6020836143f5565b9150613ac882614d09565b602082019050919050565b6000613ae06034836143f5565b9150613aeb82614d32565b604082019050919050565b6000613b036023836143f5565b9150613b0e82614d81565b604082019050919050565b6000613b26602f836143f5565b9150613b3182614dd0565b604082019050919050565b6000613b49602b836143f5565b9150613b5482614e1f565b604082019050919050565b6000613b6c6024836143f5565b9150613b7782614e6e565b604082019050919050565b6000613b8f6021836143f5565b9150613b9a82614ebd565b604082019050919050565b6000613bb26000836143ea565b9150613bbd82614f0c565b600082019050919050565b6000613bd56031836143f5565b9150613be082614f0f565b604082019050919050565b6000613bf86026836143f5565b9150613c0382614f5e565b604082019050919050565b613c1781614532565b82525050565b613c2e613c2982614532565b614679565b82525050565b613c3d81614560565b82525050565b613c54613c4f82614560565b61468b565b82525050565b613c638161456a565b82525050565b6000613c76828486613642565b91508190509392505050565b6000613c8e82846136a0565b915081905092915050565b6000613ca58284613751565b915081905092915050565b6000613cbc8285613809565b9150613cc88284613809565b91508190509392505050565b6000613cdf82613ba5565b9150819050919050565b6000613cf58285613c1d565b600282019150613d058284613c43565b6020820191508190509392505050565b6000602082019050613d2a60008301846135e8565b92915050565b6000608082019050613d4560008301876135e8565b613d5260208301866135e8565b613d5f6040830185613c34565b8181036060830152613d718184613667565b905095945050505050565b6000604082019050613d9160008301856135e8565b613d9e6020830184613c34565b9392505050565b6000602082019050613dba60008301846135f7565b92915050565b60006020820190508181036000830152613dda8184613667565b905092915050565b60006020820190508181036000830152613dfc81846137d0565b905092915050565b60006020820190508181036000830152613e1d8161383a565b9050919050565b60006020820190508181036000830152613e3d8161385d565b9050919050565b60006020820190508181036000830152613e5d81613880565b9050919050565b60006020820190508181036000830152613e7d816138a3565b9050919050565b60006020820190508181036000830152613e9d816138c6565b9050919050565b60006020820190508181036000830152613ebd816138e9565b9050919050565b60006020820190508181036000830152613edd8161390c565b9050919050565b60006020820190508181036000830152613efd8161392f565b9050919050565b60006020820190508181036000830152613f1d81613952565b9050919050565b60006020820190508181036000830152613f3d81613975565b9050919050565b60006020820190508181036000830152613f5d81613998565b9050919050565b60006020820190508181036000830152613f7d816139bb565b9050919050565b60006020820190508181036000830152613f9d816139de565b9050919050565b60006020820190508181036000830152613fbd81613a01565b9050919050565b60006020820190508181036000830152613fdd81613a24565b9050919050565b60006020820190508181036000830152613ffd81613a47565b9050919050565b6000602082019050818103600083015261401d81613a6a565b9050919050565b6000602082019050818103600083015261403d81613a8d565b9050919050565b6000602082019050818103600083015261405d81613ab0565b9050919050565b6000602082019050818103600083015261407d81613ad3565b9050919050565b6000602082019050818103600083015261409d81613af6565b9050919050565b600060208201905081810360008301526140bd81613b19565b9050919050565b600060208201905081810360008301526140dd81613b3c565b9050919050565b600060208201905081810360008301526140fd81613b5f565b9050919050565b6000602082019050818103600083015261411d81613b82565b9050919050565b6000602082019050818103600083015261413d81613bc8565b9050919050565b6000602082019050818103600083015261415d81613beb565b9050919050565b600060a0820190506141796000830188613c0e565b61418660208301876135e8565b81810360408301526141988186613667565b90506141a760608301856135f7565b81810360808301526141b98184613667565b90509695505050505050565b60006080820190506141da6000830188613c0e565b81810360208301526141ec8187613667565b90506141fb6040830186613c5a565b818103606083015261420e818486613615565b90509695505050505050565b600060808201905061422f6000830187613c0e565b81810360208301526142418186613667565b90506142506040830185613c5a565b81810360608301526142628184613667565b905095945050505050565b600060c0820190506142826000830189613c0e565b818103602083015261429481886136d1565b905081810360408301526142a88187613667565b90506142b760608301866135d9565b6142c460808301856135e8565b81810360a08301526142d68184613667565b9050979650505050505050565b60006020820190506142f86000830184613c34565b92915050565b60006040820190506143136000830185613c34565b6143206020830184613606565b9392505050565b6000614331614342565b905061433d82826145ff565b919050565b6000604051905090565b600067ffffffffffffffff82111561436757614366614782565b5b614370826147cf565b9050602081019050919050565b600067ffffffffffffffff82111561439857614397614782565b5b6143a1826147cf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061441c82614560565b915061442783614560565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561445c5761445b6146c6565b5b828201905092915050565b600061447282614560565b915061447d83614560565b92508261448d5761448c6146f5565b5b828204905092915050565b60006144a382614560565b91506144ae83614560565b9250828210156144c1576144c06146c6565b5b828203905092915050565b60006144d782614540565b9050919050565b60006144e982614540565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156145b857808201518184015260208101905061459d565b838111156145c7576000848401525b50505050565b600060028204905060018216806145e557607f821691505b602082108114156145f9576145f8614724565b5b50919050565b614608826147cf565b810181811067ffffffffffffffff8211171561462757614626614782565b5b80604052505050565b600061463b82614560565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561466e5761466d6146c6565b5b600182019050919050565b6000614684826147e0565b9050919050565b6000819050919050565b60006146a082614560565b91506146ab83614560565b9250826146bb576146ba6146f5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f466c656b6f7320636f6e74726163743a20596f75206861766520746f2062652060008201527f746865206f776e6572206f662074686520666c656b6f20666174686572000000602082015250565b7f466c656b6f7320636f6e74726163743a206d73672e76616c7565206e6f74206560008201527f6e6f75676820746f20636f766572206d6573736167654665652e2053656e642060208201527f67617320666f72206d6573736167652066656573000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f466c656b6f7320636f6e74726163743a204661696c656420746f20776974686460008201527f7261770000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f466c656b6f7320636f6e74726163743a204d61782032204e465473207065722060008201527f7472616e73616374696f6e000000000000000000000000000000000000000000602082015250565b7f466c656b6f7320636f6e74726163743a204d696e74206578636565647320737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b614fb6816144cc565b8114614fc157600080fd5b50565b614fcd816144de565b8114614fd857600080fd5b50565b614fe4816144f0565b8114614fef57600080fd5b50565b614ffb81614506565b811461500657600080fd5b50565b61501281614532565b811461501d57600080fd5b50565b61502981614560565b811461503457600080fd5b50565b6150408161456a565b811461504b57600080fd5b50565b6150578161457e565b811461506257600080fd5b5056fea2646970667358221220f39a78ae2fa335c63f850b0b1fd2f0ee0cf2cc55d4d92ce718fe4a892b009f4a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d616d64484b4d32776a6473387645596d56316f797265426e733439416a395039626d476e4e64464650466b412f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57416b72643933645a4c675346707a63664b71674c317443786759574c644253613158776252774d596b71692f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): ipfs://QmamdHKM2wjds8vEYmV1oyreBns49Aj9P9bmGnNdFFPFkA/
Arg [1] : fatherURI_ (string): ipfs://QmWAkrd93dZLgSFpzcfKqgL1tCxgYWLdBSa1XwbRwMYkqi/
Arg [2] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d616d64484b4d32776a6473387645596d56316f79726542
Arg [5] : 6e733439416a395039626d476e4e64464650466b412f00000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [7] : 697066733a2f2f516d57416b72643933645a4c675346707a63664b71674c3174
Arg [8] : 43786759574c644253613158776252774d596b71692f00000000000000000000


Deployed Bytecode Sourcemap

49967:5253:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45689:1098;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21617:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22562:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24122:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23645:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46795:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24872:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54095:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25282:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53762:193;;;;;;;;;;;;;:::i;:::-;;53416:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22256:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50674:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21986:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36445:103;;;;;;;;;;;;;:::i;:::-;;45488:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53566:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35794:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45379:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;54363:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22731:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24415:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50064:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25538:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53015:393;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51221:1705;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47890:916;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24641:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48814:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53963:69;;;:::i;:::-;;36703:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45689:1098;45894:8;;;;;;;;;;;45872:31;;:10;:31;;;45864:40;;;;;;46029:19;:32;46049:11;46029:32;;;;;;;;;;;;;;;:39;;;;;:::i;:::-;;;46007:11;:18;:61;:168;;;;;46142:19;:32;46162:11;46142:32;;;;;;;;;;;;;;;46132:43;;;;;;:::i;:::-;;;;;;;;46099:11;46089:22;;;;;;:86;46007:168;45985:270;;;;;;;;;;;;:::i;:::-;;;;;;;;;46383:4;:16;;;46400:11;46413;46426:6;46434:8;46383:60;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46379:401;;46590:101;;;;;;;;46623:8;:15;46590:101;;;;46667:8;46657:19;;;;;;46590:101;;;46539:14;:27;46554:11;46539:27;;;;;;;;;;;;;;;46567:11;46539:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;46580:6;46539:48;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;;;;;46711:57;46725:11;46738;46751:6;46759:8;46711:57;;;;;;;;;:::i;:::-;;;;;;;;46379:401;;;;45689:1098;;;;:::o;21617:305::-;21719:4;21771:25;21756:40;;;:11;:40;;;;:105;;;;21828:33;21813:48;;;:11;:48;;;;21756:105;:158;;;;21878:36;21902:11;21878:23;:36::i;:::-;21756:158;21736:178;;21617:305;;;:::o;22562:100::-;22616:13;22649:5;22642:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22562:100;:::o;24122:221::-;24198:7;24226:16;24234:7;24226;:16::i;:::-;24218:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24311:15;:24;24327:7;24311:24;;;;;;;;;;;;;;;;;;;;;24304:31;;24122:221;;;:::o;23645:411::-;23726:13;23742:23;23757:7;23742:14;:23::i;:::-;23726:39;;23790:5;23784:11;;:2;:11;;;;23776:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23884:5;23868:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23893:37;23910:5;23917:12;:10;:12::i;:::-;23893:16;:37::i;:::-;23868:62;23846:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24027:21;24036:2;24040:7;24027:8;:21::i;:::-;23715:341;23645:411;;:::o;46795:435::-;47043:4;47021:27;;:10;:27;;;46999:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;47168:54;47179:11;47192;47205:6;47213:8;47168:10;:54::i;:::-;46795:435;;;;:::o;24872:339::-;25067:41;25086:12;:10;:12::i;:::-;25100:7;25067:18;:41::i;:::-;25059:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25175:28;25185:4;25191:2;25195:7;25175:9;:28::i;:::-;24872:339;;;:::o;54095:184::-;36025:12;:10;:12::i;:::-;36014:23;;:7;:5;:7::i;:::-;:23;;;36006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54157:9:::1;54180:6;;;;;;;;;;;54172:20;;54200:3;54172:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54156:52;;;54227:4;54219:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;54145:134;54095:184:::0;:::o;25282:185::-;25420:39;25437:4;25443:2;25447:7;25420:39;;;;;;;;;;;;:16;:39::i;:::-;25282:185;;;:::o;53762:193::-;53830:10;53838:1;53830:7;:10::i;:::-;53816:24;;:10;:24;;;53808:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;53917:30;53936:10;53917:18;:30::i;:::-;53762:193::o;53416:90::-;36025:12;:10;:12::i;:::-;36014:23;;:7;:5;:7::i;:::-;:23;;;36006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53495:3:::1;53485:7;:13;;;;;;;;;;;;:::i;:::-;;53416:90:::0;:::o;22256:239::-;22328:7;22348:13;22364:7;:16;22372:7;22364:16;;;;;;;;;;;;;;;;;;;;;22348:32;;22416:1;22399:19;;:5;:19;;;;22391:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22482:5;22475:12;;;22256:239;;;:::o;50674:408::-;50753:1;50741:9;:13;;;50733:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50862:8;;50849:9;50835:23;;:11;;:23;;;;:::i;:::-;:35;;50813:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;50945:36;50955:10;50969:11;;50967:13;;;;;:::i;:::-;;;;;;;50945:9;:36::i;:::-;51009:1;50996:9;:14;;;50992:83;;;51027:36;51037:10;51051:11;;51049:13;;;;;:::i;:::-;;;;;;;51027:9;:36::i;:::-;50992:83;50674:408;:::o;21986:208::-;22058:7;22103:1;22086:19;;:5;:19;;;;22078:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22170:9;:16;22180:5;22170:16;;;;;;;;;;;;;;;;22163:23;;21986:208;;;:::o;36445:103::-;36025:12;:10;:12::i;:::-;36014:23;;:7;:5;:7::i;:::-;:23;;;36006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36510:30:::1;36537:1;36510:18;:30::i;:::-;36445:103::o:0;45488:51::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53566:94::-;36025:12;:10;:12::i;:::-;36014:23;;:7;:5;:7::i;:::-;:23;;;36006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53649:3:::1;53637:9;:15;;;;;;;;;;;;:::i;:::-;;53566:94:::0;:::o;35794:87::-;35840:7;35867:6;;;;;;;;;;;35860:13;;35794:87;:::o;45379:102::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54363:128::-;36025:12;:10;:12::i;:::-;36014:23;;:7;:5;:7::i;:::-;:23;;;36006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54477:6:::1;54448:26;:35;;;;54363:128:::0;:::o;22731:104::-;22787:13;22820:7;22813:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22731:104;:::o;24415:155::-;24510:52;24529:12;:10;:12::i;:::-;24543:8;24553;24510:18;:52::i;:::-;24415:155;;:::o;50064:21::-;;;;;;;;;;;;;:::o;25538:328::-;25713:41;25732:12;:10;:12::i;:::-;25746:7;25713:18;:41::i;:::-;25705:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25819:39;25833:4;25839:2;25843:7;25852:5;25819:13;:39::i;:::-;25538:328;;;;:::o;53015:393::-;53080:13;53114:16;53122:7;53114;:16::i;:::-;53106:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;53195:18;53239:1;53228:7;:12;53224:79;;;53251:12;:10;:12::i;:::-;53244:19;;53224:79;;;53290:10;:8;:10::i;:::-;53283:17;;53224:79;53341:1;53326:4;53320:18;:22;:80;;;;;;;;;;;;;;;;;53369:4;53375:18;:7;:16;:18::i;:::-;53352:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53320:80;53313:87;;;53015:393;;;:::o;51221:1705::-;51341:16;51349:7;51341;:16::i;:::-;51327:30;;:10;:30;;;51305:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;51491:1;51452:19;:29;51472:8;51452:29;;;;;;;;;;;;;;;:36;;;;;:::i;:::-;;;:40;51430:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;51646:14;51652:7;51646:5;:14::i;:::-;51734:20;51768:10;51780:7;51757:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51734:54;;51874:14;51891:1;51874:18;;51903:26;51963:7;51985:26;;51932:90;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51903:119;;52177:18;52201:8;;;;;;;;;;;:21;;;52237:8;52268:4;52288:7;52310:5;52330:13;52201:153;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52176:178;;;52402:10;52389:9;:23;;52367:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;52537:8;;;;;;;;;;;:13;;;52558:9;52583:8;52629:19;:29;52649:8;52629:29;;;;;;;;;;;;;;;52712:7;52768:10;52820:3;52878:13;52537:381;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51294:1632;;;;51221:1705;;:::o;47890:916::-;48114:32;48149:14;:27;48164:11;48149:27;;;;;;;;;;;;;;;48191:11;48149:64;;;;;;:::i;:::-;;;;;;;;;;;;;:72;48214:6;48149:72;;;;;;;;;;;;;48114:107;;48287:1;48279:10;;48254:9;:21;;;:35;;48232:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;48407:9;:23;;;48388:8;;:15;;:42;:107;;;;;48474:9;:21;;;48461:8;;48451:19;;;;;;;:::i;:::-;;;;;;;;:44;48388:107;48366:183;;;;;;;;;;;;:::i;:::-;;;;;;;;;48623:1;48597:9;:23;;:27;;;;48667:1;48659:10;;48635:9;:21;;:34;;;;48738:4;:16;;;48755:11;48768;48781:6;48789:8;;48738:60;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48058:748;47890:916;;;;;:::o;24641:164::-;24738:4;24762:18;:25;24781:5;24762:25;;;;;;;;;;;;;;;:35;24788:8;24762:35;;;;;;;;;;;;;;;;;;;;;;;;;24755:42;;24641:164;;;;:::o;48814:181::-;36025:12;:10;:12::i;:::-;36014:23;;:7;:5;:7::i;:::-;:23;;;36006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48973:14:::1;;48941:19;:29;48961:8;48941:29;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;48814:181:::0;;;:::o;53963:69::-;:::o;36703:201::-;36025:12;:10;:12::i;:::-;36014:23;;:7;:5;:7::i;:::-;:23;;;36006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36812:1:::1;36792:22;;:8;:22;;;;36784:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36868:28;36887:8;36868:18;:28::i;:::-;36703:201:::0;:::o;7472:157::-;7557:4;7596:25;7581:40;;;:11;:40;;;;7574:47;;7472:157;;;:::o;27376:127::-;27441:4;27493:1;27465:30;;:7;:16;27473:7;27465:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27458:37;;27376:127;;;:::o;19996:98::-;20049:7;20076:10;20069:17;;19996:98;:::o;31522:174::-;31624:2;31597:15;:24;31613:7;31597:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31680:7;31676:2;31642:46;;31651:23;31666:7;31651:14;:23::i;:::-;31642:46;;;;;;;;;;;;31522:174;;:::o;54582:424::-;54778:14;54794:15;54838:8;54813:77;;;;;;;;;;;;:::i;:::-;54777:113;;;;54972:26;54982:6;54990:7;54972:9;:26::i;:::-;54747:259;;54582:424;;;;:::o;27670:348::-;27763:4;27788:16;27796:7;27788;:16::i;:::-;27780:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27864:13;27880:23;27895:7;27880:14;:23::i;:::-;27864:39;;27933:5;27922:16;;:7;:16;;;:52;;;;27942:32;27959:5;27966:7;27942:16;:32::i;:::-;27922:52;:87;;;;28002:7;27978:31;;:20;27990:7;27978:11;:20::i;:::-;:31;;;27922:87;27914:96;;;27670:348;;;;:::o;30779:625::-;30938:4;30911:31;;:23;30926:7;30911:14;:23::i;:::-;:31;;;30903:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31017:1;31003:16;;:2;:16;;;;30995:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31073:39;31094:4;31100:2;31104:7;31073:20;:39::i;:::-;31177:29;31194:1;31198:7;31177:8;:29::i;:::-;31238:1;31219:9;:15;31229:4;31219:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31267:1;31250:9;:13;31260:2;31250:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31298:2;31279:7;:16;31287:7;31279:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31337:7;31333:2;31318:27;;31327:4;31318:27;;;;;;;;;;;;31358:38;31378:4;31384:2;31388:7;31358:19;:38::i;:::-;30779:625;;;:::o;37064:191::-;37138:16;37157:6;;;;;;;;;;;37138:25;;37183:8;37174:6;;:17;;;;;;;;;;;;;;;;;;37238:8;37207:40;;37228:8;37207:40;;;;;;;;;;;;37127:128;37064:191;:::o;28360:110::-;28436:26;28446:2;28450:7;28436:26;;;;;;;;;;;;:9;:26::i;:::-;28360:110;;:::o;31838:315::-;31993:8;31984:17;;:5;:17;;;;31976:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32080:8;32042:18;:25;32061:5;32042:25;;;;;;;;;;;;;;;:35;32068:8;32042:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32126:8;32104:41;;32119:5;32104:41;;;32136:8;32104:41;;;;;;:::i;:::-;;;;;;;;31838:315;;;:::o;26748:::-;26905:28;26915:4;26921:2;26925:7;26905:9;:28::i;:::-;26952:48;26975:4;26981:2;26985:7;26994:5;26952:22;:48::i;:::-;26944:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26748:315;;;;:::o;55122:95::-;55167:13;55200:9;55193:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55122:95;:::o;55014:100::-;55066:13;55099:7;55092:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55014:100;:::o;17558:723::-;17614:13;17844:1;17835:5;:10;17831:53;;;17862:10;;;;;;;;;;;;;;;;;;;;;17831:53;17894:12;17909:5;17894:20;;17925:14;17950:78;17965:1;17957:4;:9;17950:78;;17983:8;;;;;:::i;:::-;;;;18014:2;18006:10;;;;;:::i;:::-;;;17950:78;;;18038:19;18070:6;18060:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18038:39;;18088:154;18104:1;18095:5;:10;18088:154;;18132:1;18122:11;;;;;:::i;:::-;;;18199:2;18191:5;:10;;;;:::i;:::-;18178:2;:24;;;;:::i;:::-;18165:39;;18148:6;18155;18148:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18228:2;18219:11;;;;;:::i;:::-;;;18088:154;;;18266:6;18252:21;;;;;17558:723;;;;:::o;30022:420::-;30082:13;30098:23;30113:7;30098:14;:23::i;:::-;30082:39;;30134:48;30155:5;30170:1;30174:7;30134:20;:48::i;:::-;30223:29;30240:1;30244:7;30223:8;:29::i;:::-;30285:1;30265:9;:16;30275:5;30265:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;30304:7;:16;30312:7;30304:16;;;;;;;;;;;;30297:23;;;;;;;;;;;30366:7;30362:1;30338:36;;30347:5;30338:36;;;;;;;;;;;;30387:47;30407:5;30422:1;30426:7;30387:19;:47::i;:::-;30071:371;30022:420;:::o;34089:126::-;;;;:::o;34600:125::-;;;;:::o;28697:321::-;28827:18;28833:2;28837:7;28827:5;:18::i;:::-;28878:54;28909:1;28913:2;28917:7;28926:5;28878:22;:54::i;:::-;28856:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28697:321;;;:::o;32718:799::-;32873:4;32894:15;:2;:13;;;:15::i;:::-;32890:620;;;32946:2;32930:36;;;32967:12;:10;:12::i;:::-;32981:4;32987:7;32996:5;32930:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32926:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33189:1;33172:6;:13;:18;33168:272;;;33215:60;;;;;;;;;;:::i;:::-;;;;;;;;33168:272;33390:6;33384:13;33375:6;33371:2;33367:15;33360:38;32926:529;33063:41;;;33053:51;;;:6;:51;;;;33046:58;;;;;32890:620;33494:4;33487:11;;32718:799;;;;;;;:::o;29354:439::-;29448:1;29434:16;;:2;:16;;;;29426:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29507:16;29515:7;29507;:16::i;:::-;29506:17;29498:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29569:45;29598:1;29602:2;29606:7;29569:20;:45::i;:::-;29644:1;29627:9;:13;29637:2;29627:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29675:2;29656:7;:16;29664:7;29656:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29720:7;29716:2;29695:33;;29712:1;29695:33;;;;;;;;;;;;29741:44;29769:1;29773:2;29777:7;29741:19;:44::i;:::-;29354:439;;:::o;9923:326::-;9983:4;10240:1;10218:7;:19;;;:23;10211:30;;9923:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:159::-;1051:5;1082:6;1076:13;1067:22;;1098:41;1133:5;1098:41;:::i;:::-;986:159;;;;:::o;1151:133::-;1194:5;1232:6;1219:20;1210:29;;1248:30;1272:5;1248:30;:::i;:::-;1151:133;;;;:::o;1290:137::-;1335:5;1373:6;1360:20;1351:29;;1389:32;1415:5;1389:32;:::i;:::-;1290:137;;;;:::o;1433:141::-;1489:5;1520:6;1514:13;1505:22;;1536:32;1562:5;1536:32;:::i;:::-;1433:141;;;;:::o;1593:552::-;1650:8;1660:6;1710:3;1703:4;1695:6;1691:17;1687:27;1677:122;;1718:79;;:::i;:::-;1677:122;1831:6;1818:20;1808:30;;1861:18;1853:6;1850:30;1847:117;;;1883:79;;:::i;:::-;1847:117;1997:4;1989:6;1985:17;1973:29;;2051:3;2043:4;2035:6;2031:17;2021:8;2017:32;2014:41;2011:128;;;2058:79;;:::i;:::-;2011:128;1593:552;;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:137::-;2913:5;2951:6;2938:20;2929:29;;2967:32;2993:5;2967:32;:::i;:::-;2868:137;;;;:::o;3011:139::-;3057:5;3095:6;3082:20;3073:29;;3111:33;3138:5;3111:33;:::i;:::-;3011:139;;;;:::o;3156:143::-;3213:5;3244:6;3238:13;3229:22;;3260:33;3287:5;3260:33;:::i;:::-;3156:143;;;;:::o;3305:137::-;3350:5;3388:6;3375:20;3366:29;;3404:32;3430:5;3404:32;:::i;:::-;3305:137;;;;:::o;3448:135::-;3492:5;3530:6;3517:20;3508:29;;3546:31;3571:5;3546:31;:::i;:::-;3448:135;;;;:::o;3589:329::-;3648:6;3697:2;3685:9;3676:7;3672:23;3668:32;3665:119;;;3703:79;;:::i;:::-;3665:119;3823:1;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3794:117;3589:329;;;;:::o;3924:523::-;4011:6;4019;4068:2;4056:9;4047:7;4043:23;4039:32;4036:119;;;4074:79;;:::i;:::-;4036:119;4194:1;4219:72;4283:7;4274:6;4263:9;4259:22;4219:72;:::i;:::-;4209:82;;4165:136;4340:2;4366:64;4422:7;4413:6;4402:9;4398:22;4366:64;:::i;:::-;4356:74;;4311:129;3924:523;;;;;:::o;4453:474::-;4521:6;4529;4578:2;4566:9;4557:7;4553:23;4549:32;4546:119;;;4584:79;;:::i;:::-;4546:119;4704:1;4729:53;4774:7;4765:6;4754:9;4750:22;4729:53;:::i;:::-;4719:63;;4675:117;4831:2;4857:53;4902:7;4893:6;4882:9;4878:22;4857:53;:::i;:::-;4847:63;;4802:118;4453:474;;;;;:::o;4933:619::-;5010:6;5018;5026;5075:2;5063:9;5054:7;5050:23;5046:32;5043:119;;;5081:79;;:::i;:::-;5043:119;5201:1;5226:53;5271:7;5262:6;5251:9;5247:22;5226:53;:::i;:::-;5216:63;;5172:117;5328:2;5354:53;5399:7;5390:6;5379:9;5375:22;5354:53;:::i;:::-;5344:63;;5299:118;5456:2;5482:53;5527:7;5518:6;5507:9;5503:22;5482:53;:::i;:::-;5472:63;;5427:118;4933:619;;;;;:::o;5558:943::-;5653:6;5661;5669;5677;5726:3;5714:9;5705:7;5701:23;5697:33;5694:120;;;5733:79;;:::i;:::-;5694:120;5853:1;5878:53;5923:7;5914:6;5903:9;5899:22;5878:53;:::i;:::-;5868:63;;5824:117;5980:2;6006:53;6051:7;6042:6;6031:9;6027:22;6006:53;:::i;:::-;5996:63;;5951:118;6108:2;6134:53;6179:7;6170:6;6159:9;6155:22;6134:53;:::i;:::-;6124:63;;6079:118;6264:2;6253:9;6249:18;6236:32;6295:18;6287:6;6284:30;6281:117;;;6317:79;;:::i;:::-;6281:117;6422:62;6476:7;6467:6;6456:9;6452:22;6422:62;:::i;:::-;6412:72;;6207:287;5558:943;;;;;;;:::o;6507:468::-;6572:6;6580;6629:2;6617:9;6608:7;6604:23;6600:32;6597:119;;;6635:79;;:::i;:::-;6597:119;6755:1;6780:53;6825:7;6816:6;6805:9;6801:22;6780:53;:::i;:::-;6770:63;;6726:117;6882:2;6908:50;6950:7;6941:6;6930:9;6926:22;6908:50;:::i;:::-;6898:60;;6853:115;6507:468;;;;;:::o;6981:474::-;7049:6;7057;7106:2;7094:9;7085:7;7081:23;7077:32;7074:119;;;7112:79;;:::i;:::-;7074:119;7232:1;7257:53;7302:7;7293:6;7282:9;7278:22;7257:53;:::i;:::-;7247:63;;7203:117;7359:2;7385:53;7430:7;7421:6;7410:9;7406:22;7385:53;:::i;:::-;7375:63;;7330:118;6981:474;;;;;:::o;7461:327::-;7519:6;7568:2;7556:9;7547:7;7543:23;7539:32;7536:119;;;7574:79;;:::i;:::-;7536:119;7694:1;7719:52;7763:7;7754:6;7743:9;7739:22;7719:52;:::i;:::-;7709:62;;7665:116;7461:327;;;;:::o;7794:349::-;7863:6;7912:2;7900:9;7891:7;7887:23;7883:32;7880:119;;;7918:79;;:::i;:::-;7880:119;8038:1;8063:63;8118:7;8109:6;8098:9;8094:22;8063:63;:::i;:::-;8053:73;;8009:127;7794:349;;;;:::o;8149:509::-;8218:6;8267:2;8255:9;8246:7;8242:23;8238:32;8235:119;;;8273:79;;:::i;:::-;8235:119;8421:1;8410:9;8406:17;8393:31;8451:18;8443:6;8440:30;8437:117;;;8473:79;;:::i;:::-;8437:117;8578:63;8633:7;8624:6;8613:9;8609:22;8578:63;:::i;:::-;8568:73;;8364:287;8149:509;;;;:::o;8664:327::-;8722:6;8771:2;8759:9;8750:7;8746:23;8742:32;8739:119;;;8777:79;;:::i;:::-;8739:119;8897:1;8922:52;8966:7;8957:6;8946:9;8942:22;8922:52;:::i;:::-;8912:62;;8868:116;8664:327;;;;:::o;8997:670::-;9075:6;9083;9091;9140:2;9128:9;9119:7;9115:23;9111:32;9108:119;;;9146:79;;:::i;:::-;9108:119;9266:1;9291:52;9335:7;9326:6;9315:9;9311:22;9291:52;:::i;:::-;9281:62;;9237:116;9420:2;9409:9;9405:18;9392:32;9451:18;9443:6;9440:30;9437:117;;;9473:79;;:::i;:::-;9437:117;9586:64;9642:7;9633:6;9622:9;9618:22;9586:64;:::i;:::-;9568:82;;;;9363:297;8997:670;;;;;:::o;9673:795::-;9758:6;9766;9774;9823:2;9811:9;9802:7;9798:23;9794:32;9791:119;;;9829:79;;:::i;:::-;9791:119;9949:1;9974:52;10018:7;10009:6;9998:9;9994:22;9974:52;:::i;:::-;9964:62;;9920:116;10103:2;10092:9;10088:18;10075:32;10134:18;10126:6;10123:30;10120:117;;;10156:79;;:::i;:::-;10120:117;10261:62;10315:7;10306:6;10295:9;10291:22;10261:62;:::i;:::-;10251:72;;10046:287;10372:2;10398:53;10443:7;10434:6;10423:9;10419:22;10398:53;:::i;:::-;10388:63;;10343:118;9673:795;;;;;:::o;10474:1137::-;10578:6;10586;10594;10602;10610;10659:3;10647:9;10638:7;10634:23;10630:33;10627:120;;;10666:79;;:::i;:::-;10627:120;10786:1;10811:52;10855:7;10846:6;10835:9;10831:22;10811:52;:::i;:::-;10801:62;;10757:116;10940:2;10929:9;10925:18;10912:32;10971:18;10963:6;10960:30;10957:117;;;10993:79;;:::i;:::-;10957:117;11098:62;11152:7;11143:6;11132:9;11128:22;11098:62;:::i;:::-;11088:72;;10883:287;11209:2;11235:52;11279:7;11270:6;11259:9;11255:22;11235:52;:::i;:::-;11225:62;;11180:117;11364:2;11353:9;11349:18;11336:32;11395:18;11387:6;11384:30;11381:117;;;11417:79;;:::i;:::-;11381:117;11530:64;11586:7;11577:6;11566:9;11562:22;11530:64;:::i;:::-;11512:82;;;;11307:297;10474:1137;;;;;;;;:::o;11617:1117::-;11719:6;11727;11735;11743;11792:3;11780:9;11771:7;11767:23;11763:33;11760:120;;;11799:79;;:::i;:::-;11760:120;11919:1;11944:52;11988:7;11979:6;11968:9;11964:22;11944:52;:::i;:::-;11934:62;;11890:116;12073:2;12062:9;12058:18;12045:32;12104:18;12096:6;12093:30;12090:117;;;12126:79;;:::i;:::-;12090:117;12231:62;12285:7;12276:6;12265:9;12261:22;12231:62;:::i;:::-;12221:72;;12016:287;12342:2;12368:52;12412:7;12403:6;12392:9;12388:22;12368:52;:::i;:::-;12358:62;;12313:117;12497:2;12486:9;12482:18;12469:32;12528:18;12520:6;12517:30;12514:117;;;12550:79;;:::i;:::-;12514:117;12655:62;12709:7;12700:6;12689:9;12685:22;12655:62;:::i;:::-;12645:72;;12440:287;11617:1117;;;;;;;:::o;12740:472::-;12807:6;12815;12864:2;12852:9;12843:7;12839:23;12835:32;12832:119;;;12870:79;;:::i;:::-;12832:119;12990:1;13015:52;13059:7;13050:6;13039:9;13035:22;13015:52;:::i;:::-;13005:62;;12961:116;13116:2;13142:53;13187:7;13178:6;13167:9;13163:22;13142:53;:::i;:::-;13132:63;;13087:118;12740:472;;;;;:::o;13218:329::-;13277:6;13326:2;13314:9;13305:7;13301:23;13297:32;13294:119;;;13332:79;;:::i;:::-;13294:119;13452:1;13477:53;13522:7;13513:6;13502:9;13498:22;13477:53;:::i;:::-;13467:63;;13423:117;13218:329;;;;:::o;13553:507::-;13632:6;13640;13689:2;13677:9;13668:7;13664:23;13660:32;13657:119;;;13695:79;;:::i;:::-;13657:119;13815:1;13840:64;13896:7;13887:6;13876:9;13872:22;13840:64;:::i;:::-;13830:74;;13786:128;13953:2;13979:64;14035:7;14026:6;14015:9;14011:22;13979:64;:::i;:::-;13969:74;;13924:129;13553:507;;;;;:::o;14066:325::-;14123:6;14172:2;14160:9;14151:7;14147:23;14143:32;14140:119;;;14178:79;;:::i;:::-;14140:119;14298:1;14323:51;14366:7;14357:6;14346:9;14342:22;14323:51;:::i;:::-;14313:61;;14269:115;14066:325;;;;:::o;14397:142::-;14500:32;14526:5;14500:32;:::i;:::-;14495:3;14488:45;14397:142;;:::o;14545:118::-;14632:24;14650:5;14632:24;:::i;:::-;14627:3;14620:37;14545:118;;:::o;14669:109::-;14750:21;14765:5;14750:21;:::i;:::-;14745:3;14738:34;14669:109;;:::o;14784:118::-;14871:24;14889:5;14871:24;:::i;:::-;14866:3;14859:37;14784:118;;:::o;14930:301::-;15026:3;15047:70;15110:6;15105:3;15047:70;:::i;:::-;15040:77;;15127:43;15163:6;15158:3;15151:5;15127:43;:::i;:::-;15195:29;15217:6;15195:29;:::i;:::-;15190:3;15186:39;15179:46;;14930:301;;;;;:::o;15259:314::-;15373:3;15394:88;15475:6;15470:3;15394:88;:::i;:::-;15387:95;;15492:43;15528:6;15523:3;15516:5;15492:43;:::i;:::-;15560:6;15555:3;15551:16;15544:23;;15259:314;;;;;:::o;15579:360::-;15665:3;15693:38;15725:5;15693:38;:::i;:::-;15747:70;15810:6;15805:3;15747:70;:::i;:::-;15740:77;;15826:52;15871:6;15866:3;15859:4;15852:5;15848:16;15826:52;:::i;:::-;15903:29;15925:6;15903:29;:::i;:::-;15898:3;15894:39;15887:46;;15669:270;15579:360;;;;:::o;15945:373::-;16049:3;16077:38;16109:5;16077:38;:::i;:::-;16131:88;16212:6;16207:3;16131:88;:::i;:::-;16124:95;;16228:52;16273:6;16268:3;16261:4;16254:5;16250:16;16228:52;:::i;:::-;16305:6;16300:3;16296:16;16289:23;;16053:265;15945:373;;;;:::o;16346:798::-;16429:3;16466:5;16460:12;16495:36;16521:9;16495:36;:::i;:::-;16547:70;16610:6;16605:3;16547:70;:::i;:::-;16540:77;;16648:1;16637:9;16633:17;16664:1;16659:135;;;;16808:1;16803:335;;;;16626:512;;16659:135;16743:4;16739:9;16728;16724:25;16719:3;16712:38;16779:4;16774:3;16770:14;16763:21;;16659:135;;16803:335;16870:37;16901:5;16870:37;:::i;:::-;16929:1;16943:154;16957:6;16954:1;16951:13;16943:154;;;17031:7;17025:14;17021:1;17016:3;17012:11;17005:35;17081:1;17072:7;17068:15;17057:26;;16979:4;16976:1;16972:12;16967:17;;16943:154;;;17126:1;17121:3;17117:11;17110:18;;16810:328;;16626:512;;16433:711;;16346:798;;;;:::o;17172:841::-;17273:3;17310:5;17304:12;17339:36;17365:9;17339:36;:::i;:::-;17391:88;17472:6;17467:3;17391:88;:::i;:::-;17384:95;;17510:1;17499:9;17495:17;17526:1;17521:137;;;;17672:1;17667:340;;;;17488:519;;17521:137;17605:4;17601:9;17590;17586:25;17581:3;17574:38;17641:6;17636:3;17632:16;17625:23;;17521:137;;17667:340;17734:37;17765:5;17734:37;:::i;:::-;17793:1;17807:154;17821:6;17818:1;17815:13;17807:154;;;17895:7;17889:14;17885:1;17880:3;17876:11;17869:35;17945:1;17936:7;17932:15;17921:26;;17843:4;17840:1;17836:12;17831:17;;17807:154;;;17990:6;17985:3;17981:16;17974:23;;17674:333;;17488:519;;17277:736;;17172:841;;;;:::o;18019:364::-;18107:3;18135:39;18168:5;18135:39;:::i;:::-;18190:71;18254:6;18249:3;18190:71;:::i;:::-;18183:78;;18270:52;18315:6;18310:3;18303:4;18296:5;18292:16;18270:52;:::i;:::-;18347:29;18369:6;18347:29;:::i;:::-;18342:3;18338:39;18331:46;;18111:272;18019:364;;;;:::o;18389:377::-;18495:3;18523:39;18556:5;18523:39;:::i;:::-;18578:89;18660:6;18655:3;18578:89;:::i;:::-;18571:96;;18676:52;18721:6;18716:3;18709:4;18702:5;18698:16;18676:52;:::i;:::-;18753:6;18748:3;18744:16;18737:23;;18499:267;18389:377;;;;:::o;18772:366::-;18914:3;18935:67;18999:2;18994:3;18935:67;:::i;:::-;18928:74;;19011:93;19100:3;19011:93;:::i;:::-;19129:2;19124:3;19120:12;19113:19;;18772:366;;;:::o;19144:::-;19286:3;19307:67;19371:2;19366:3;19307:67;:::i;:::-;19300:74;;19383:93;19472:3;19383:93;:::i;:::-;19501:2;19496:3;19492:12;19485:19;;19144:366;;;:::o;19516:::-;19658:3;19679:67;19743:2;19738:3;19679:67;:::i;:::-;19672:74;;19755:93;19844:3;19755:93;:::i;:::-;19873:2;19868:3;19864:12;19857:19;;19516:366;;;:::o;19888:::-;20030:3;20051:67;20115:2;20110:3;20051:67;:::i;:::-;20044:74;;20127:93;20216:3;20127:93;:::i;:::-;20245:2;20240:3;20236:12;20229:19;;19888:366;;;:::o;20260:::-;20402:3;20423:67;20487:2;20482:3;20423:67;:::i;:::-;20416:74;;20499:93;20588:3;20499:93;:::i;:::-;20617:2;20612:3;20608:12;20601:19;;20260:366;;;:::o;20632:::-;20774:3;20795:67;20859:2;20854:3;20795:67;:::i;:::-;20788:74;;20871:93;20960:3;20871:93;:::i;:::-;20989:2;20984:3;20980:12;20973:19;;20632:366;;;:::o;21004:::-;21146:3;21167:67;21231:2;21226:3;21167:67;:::i;:::-;21160:74;;21243:93;21332:3;21243:93;:::i;:::-;21361:2;21356:3;21352:12;21345:19;;21004:366;;;:::o;21376:::-;21518:3;21539:67;21603:2;21598:3;21539:67;:::i;:::-;21532:74;;21615:93;21704:3;21615:93;:::i;:::-;21733:2;21728:3;21724:12;21717:19;;21376:366;;;:::o;21748:::-;21890:3;21911:67;21975:2;21970:3;21911:67;:::i;:::-;21904:74;;21987:93;22076:3;21987:93;:::i;:::-;22105:2;22100:3;22096:12;22089:19;;21748:366;;;:::o;22120:::-;22262:3;22283:67;22347:2;22342:3;22283:67;:::i;:::-;22276:74;;22359:93;22448:3;22359:93;:::i;:::-;22477:2;22472:3;22468:12;22461:19;;22120:366;;;:::o;22492:::-;22634:3;22655:67;22719:2;22714:3;22655:67;:::i;:::-;22648:74;;22731:93;22820:3;22731:93;:::i;:::-;22849:2;22844:3;22840:12;22833:19;;22492:366;;;:::o;22864:::-;23006:3;23027:67;23091:2;23086:3;23027:67;:::i;:::-;23020:74;;23103:93;23192:3;23103:93;:::i;:::-;23221:2;23216:3;23212:12;23205:19;;22864:366;;;:::o;23236:::-;23378:3;23399:67;23463:2;23458:3;23399:67;:::i;:::-;23392:74;;23475:93;23564:3;23475:93;:::i;:::-;23593:2;23588:3;23584:12;23577:19;;23236:366;;;:::o;23608:::-;23750:3;23771:67;23835:2;23830:3;23771:67;:::i;:::-;23764:74;;23847:93;23936:3;23847:93;:::i;:::-;23965:2;23960:3;23956:12;23949:19;;23608:366;;;:::o;23980:::-;24122:3;24143:67;24207:2;24202:3;24143:67;:::i;:::-;24136:74;;24219:93;24308:3;24219:93;:::i;:::-;24337:2;24332:3;24328:12;24321:19;;23980:366;;;:::o;24352:::-;24494:3;24515:67;24579:2;24574:3;24515:67;:::i;:::-;24508:74;;24591:93;24680:3;24591:93;:::i;:::-;24709:2;24704:3;24700:12;24693:19;;24352:366;;;:::o;24724:::-;24866:3;24887:67;24951:2;24946:3;24887:67;:::i;:::-;24880:74;;24963:93;25052:3;24963:93;:::i;:::-;25081:2;25076:3;25072:12;25065:19;;24724:366;;;:::o;25096:::-;25238:3;25259:67;25323:2;25318:3;25259:67;:::i;:::-;25252:74;;25335:93;25424:3;25335:93;:::i;:::-;25453:2;25448:3;25444:12;25437:19;;25096:366;;;:::o;25468:::-;25610:3;25631:67;25695:2;25690:3;25631:67;:::i;:::-;25624:74;;25707:93;25796:3;25707:93;:::i;:::-;25825:2;25820:3;25816:12;25809:19;;25468:366;;;:::o;25840:::-;25982:3;26003:67;26067:2;26062:3;26003:67;:::i;:::-;25996:74;;26079:93;26168:3;26079:93;:::i;:::-;26197:2;26192:3;26188:12;26181:19;;25840:366;;;:::o;26212:::-;26354:3;26375:67;26439:2;26434:3;26375:67;:::i;:::-;26368:74;;26451:93;26540:3;26451:93;:::i;:::-;26569:2;26564:3;26560:12;26553:19;;26212:366;;;:::o;26584:::-;26726:3;26747:67;26811:2;26806:3;26747:67;:::i;:::-;26740:74;;26823:93;26912:3;26823:93;:::i;:::-;26941:2;26936:3;26932:12;26925:19;;26584:366;;;:::o;26956:::-;27098:3;27119:67;27183:2;27178:3;27119:67;:::i;:::-;27112:74;;27195:93;27284:3;27195:93;:::i;:::-;27313:2;27308:3;27304:12;27297:19;;26956:366;;;:::o;27328:::-;27470:3;27491:67;27555:2;27550:3;27491:67;:::i;:::-;27484:74;;27567:93;27656:3;27567:93;:::i;:::-;27685:2;27680:3;27676:12;27669:19;;27328:366;;;:::o;27700:::-;27842:3;27863:67;27927:2;27922:3;27863:67;:::i;:::-;27856:74;;27939:93;28028:3;27939:93;:::i;:::-;28057:2;28052:3;28048:12;28041:19;;27700:366;;;:::o;28072:398::-;28231:3;28252:83;28333:1;28328:3;28252:83;:::i;:::-;28245:90;;28344:93;28433:3;28344:93;:::i;:::-;28462:1;28457:3;28453:11;28446:18;;28072:398;;;:::o;28476:366::-;28618:3;28639:67;28703:2;28698:3;28639:67;:::i;:::-;28632:74;;28715:93;28804:3;28715:93;:::i;:::-;28833:2;28828:3;28824:12;28817:19;;28476:366;;;:::o;28848:::-;28990:3;29011:67;29075:2;29070:3;29011:67;:::i;:::-;29004:74;;29087:93;29176:3;29087:93;:::i;:::-;29205:2;29200:3;29196:12;29189:19;;28848:366;;;:::o;29220:115::-;29305:23;29322:5;29305:23;:::i;:::-;29300:3;29293:36;29220:115;;:::o;29341:153::-;29444:43;29463:23;29480:5;29463:23;:::i;:::-;29444:43;:::i;:::-;29439:3;29432:56;29341:153;;:::o;29500:118::-;29587:24;29605:5;29587:24;:::i;:::-;29582:3;29575:37;29500:118;;:::o;29624:157::-;29729:45;29749:24;29767:5;29749:24;:::i;:::-;29729:45;:::i;:::-;29724:3;29717:58;29624:157;;:::o;29787:115::-;29872:23;29889:5;29872:23;:::i;:::-;29867:3;29860:36;29787:115;;:::o;29908:291::-;30048:3;30070:103;30169:3;30160:6;30152;30070:103;:::i;:::-;30063:110;;30190:3;30183:10;;29908:291;;;;;:::o;30205:271::-;30335:3;30357:93;30446:3;30437:6;30357:93;:::i;:::-;30350:100;;30467:3;30460:10;;30205:271;;;;:::o;30482:265::-;30609:3;30631:90;30717:3;30708:6;30631:90;:::i;:::-;30624:97;;30738:3;30731:10;;30482:265;;;;:::o;30753:435::-;30933:3;30955:95;31046:3;31037:6;30955:95;:::i;:::-;30948:102;;31067:95;31158:3;31149:6;31067:95;:::i;:::-;31060:102;;31179:3;31172:10;;30753:435;;;;;:::o;31194:379::-;31378:3;31400:147;31543:3;31400:147;:::i;:::-;31393:154;;31564:3;31557:10;;31194:379;;;:::o;31579:392::-;31717:3;31732:73;31801:3;31792:6;31732:73;:::i;:::-;31830:1;31825:3;31821:11;31814:18;;31842:75;31913:3;31904:6;31842:75;:::i;:::-;31942:2;31937:3;31933:12;31926:19;;31962:3;31955:10;;31579:392;;;;;:::o;31977:222::-;32070:4;32108:2;32097:9;32093:18;32085:26;;32121:71;32189:1;32178:9;32174:17;32165:6;32121:71;:::i;:::-;31977:222;;;;:::o;32205:640::-;32400:4;32438:3;32427:9;32423:19;32415:27;;32452:71;32520:1;32509:9;32505:17;32496:6;32452:71;:::i;:::-;32533:72;32601:2;32590:9;32586:18;32577:6;32533:72;:::i;:::-;32615;32683:2;32672:9;32668:18;32659:6;32615:72;:::i;:::-;32734:9;32728:4;32724:20;32719:2;32708:9;32704:18;32697:48;32762:76;32833:4;32824:6;32762:76;:::i;:::-;32754:84;;32205:640;;;;;;;:::o;32851:332::-;32972:4;33010:2;32999:9;32995:18;32987:26;;33023:71;33091:1;33080:9;33076:17;33067:6;33023:71;:::i;:::-;33104:72;33172:2;33161:9;33157:18;33148:6;33104:72;:::i;:::-;32851:332;;;;;:::o;33189:210::-;33276:4;33314:2;33303:9;33299:18;33291:26;;33327:65;33389:1;33378:9;33374:17;33365:6;33327:65;:::i;:::-;33189:210;;;;:::o;33405:309::-;33516:4;33554:2;33543:9;33539:18;33531:26;;33603:9;33597:4;33593:20;33589:1;33578:9;33574:17;33567:47;33631:76;33702:4;33693:6;33631:76;:::i;:::-;33623:84;;33405:309;;;;:::o;33720:313::-;33833:4;33871:2;33860:9;33856:18;33848:26;;33920:9;33914:4;33910:20;33906:1;33895:9;33891:17;33884:47;33948:78;34021:4;34012:6;33948:78;:::i;:::-;33940:86;;33720:313;;;;:::o;34039:419::-;34205:4;34243:2;34232:9;34228:18;34220:26;;34292:9;34286:4;34282:20;34278:1;34267:9;34263:17;34256:47;34320:131;34446:4;34320:131;:::i;:::-;34312:139;;34039:419;;;:::o;34464:::-;34630:4;34668:2;34657:9;34653:18;34645:26;;34717:9;34711:4;34707:20;34703:1;34692:9;34688:17;34681:47;34745:131;34871:4;34745:131;:::i;:::-;34737:139;;34464:419;;;:::o;34889:::-;35055:4;35093:2;35082:9;35078:18;35070:26;;35142:9;35136:4;35132:20;35128:1;35117:9;35113:17;35106:47;35170:131;35296:4;35170:131;:::i;:::-;35162:139;;34889:419;;;:::o;35314:::-;35480:4;35518:2;35507:9;35503:18;35495:26;;35567:9;35561:4;35557:20;35553:1;35542:9;35538:17;35531:47;35595:131;35721:4;35595:131;:::i;:::-;35587:139;;35314:419;;;:::o;35739:::-;35905:4;35943:2;35932:9;35928:18;35920:26;;35992:9;35986:4;35982:20;35978:1;35967:9;35963:17;35956:47;36020:131;36146:4;36020:131;:::i;:::-;36012:139;;35739:419;;;:::o;36164:::-;36330:4;36368:2;36357:9;36353:18;36345:26;;36417:9;36411:4;36407:20;36403:1;36392:9;36388:17;36381:47;36445:131;36571:4;36445:131;:::i;:::-;36437:139;;36164:419;;;:::o;36589:::-;36755:4;36793:2;36782:9;36778:18;36770:26;;36842:9;36836:4;36832:20;36828:1;36817:9;36813:17;36806:47;36870:131;36996:4;36870:131;:::i;:::-;36862:139;;36589:419;;;:::o;37014:::-;37180:4;37218:2;37207:9;37203:18;37195:26;;37267:9;37261:4;37257:20;37253:1;37242:9;37238:17;37231:47;37295:131;37421:4;37295:131;:::i;:::-;37287:139;;37014:419;;;:::o;37439:::-;37605:4;37643:2;37632:9;37628:18;37620:26;;37692:9;37686:4;37682:20;37678:1;37667:9;37663:17;37656:47;37720:131;37846:4;37720:131;:::i;:::-;37712:139;;37439:419;;;:::o;37864:::-;38030:4;38068:2;38057:9;38053:18;38045:26;;38117:9;38111:4;38107:20;38103:1;38092:9;38088:17;38081:47;38145:131;38271:4;38145:131;:::i;:::-;38137:139;;37864:419;;;:::o;38289:::-;38455:4;38493:2;38482:9;38478:18;38470:26;;38542:9;38536:4;38532:20;38528:1;38517:9;38513:17;38506:47;38570:131;38696:4;38570:131;:::i;:::-;38562:139;;38289:419;;;:::o;38714:::-;38880:4;38918:2;38907:9;38903:18;38895:26;;38967:9;38961:4;38957:20;38953:1;38942:9;38938:17;38931:47;38995:131;39121:4;38995:131;:::i;:::-;38987:139;;38714:419;;;:::o;39139:::-;39305:4;39343:2;39332:9;39328:18;39320:26;;39392:9;39386:4;39382:20;39378:1;39367:9;39363:17;39356:47;39420:131;39546:4;39420:131;:::i;:::-;39412:139;;39139:419;;;:::o;39564:::-;39730:4;39768:2;39757:9;39753:18;39745:26;;39817:9;39811:4;39807:20;39803:1;39792:9;39788:17;39781:47;39845:131;39971:4;39845:131;:::i;:::-;39837:139;;39564:419;;;:::o;39989:::-;40155:4;40193:2;40182:9;40178:18;40170:26;;40242:9;40236:4;40232:20;40228:1;40217:9;40213:17;40206:47;40270:131;40396:4;40270:131;:::i;:::-;40262:139;;39989:419;;;:::o;40414:::-;40580:4;40618:2;40607:9;40603:18;40595:26;;40667:9;40661:4;40657:20;40653:1;40642:9;40638:17;40631:47;40695:131;40821:4;40695:131;:::i;:::-;40687:139;;40414:419;;;:::o;40839:::-;41005:4;41043:2;41032:9;41028:18;41020:26;;41092:9;41086:4;41082:20;41078:1;41067:9;41063:17;41056:47;41120:131;41246:4;41120:131;:::i;:::-;41112:139;;40839:419;;;:::o;41264:::-;41430:4;41468:2;41457:9;41453:18;41445:26;;41517:9;41511:4;41507:20;41503:1;41492:9;41488:17;41481:47;41545:131;41671:4;41545:131;:::i;:::-;41537:139;;41264:419;;;:::o;41689:::-;41855:4;41893:2;41882:9;41878:18;41870:26;;41942:9;41936:4;41932:20;41928:1;41917:9;41913:17;41906:47;41970:131;42096:4;41970:131;:::i;:::-;41962:139;;41689:419;;;:::o;42114:::-;42280:4;42318:2;42307:9;42303:18;42295:26;;42367:9;42361:4;42357:20;42353:1;42342:9;42338:17;42331:47;42395:131;42521:4;42395:131;:::i;:::-;42387:139;;42114:419;;;:::o;42539:::-;42705:4;42743:2;42732:9;42728:18;42720:26;;42792:9;42786:4;42782:20;42778:1;42767:9;42763:17;42756:47;42820:131;42946:4;42820:131;:::i;:::-;42812:139;;42539:419;;;:::o;42964:::-;43130:4;43168:2;43157:9;43153:18;43145:26;;43217:9;43211:4;43207:20;43203:1;43192:9;43188:17;43181:47;43245:131;43371:4;43245:131;:::i;:::-;43237:139;;42964:419;;;:::o;43389:::-;43555:4;43593:2;43582:9;43578:18;43570:26;;43642:9;43636:4;43632:20;43628:1;43617:9;43613:17;43606:47;43670:131;43796:4;43670:131;:::i;:::-;43662:139;;43389:419;;;:::o;43814:::-;43980:4;44018:2;44007:9;44003:18;43995:26;;44067:9;44061:4;44057:20;44053:1;44042:9;44038:17;44031:47;44095:131;44221:4;44095:131;:::i;:::-;44087:139;;43814:419;;;:::o;44239:::-;44405:4;44443:2;44432:9;44428:18;44420:26;;44492:9;44486:4;44482:20;44478:1;44467:9;44463:17;44456:47;44520:131;44646:4;44520:131;:::i;:::-;44512:139;;44239:419;;;:::o;44664:::-;44830:4;44868:2;44857:9;44853:18;44845:26;;44917:9;44911:4;44907:20;44903:1;44892:9;44888:17;44881:47;44945:131;45071:4;44945:131;:::i;:::-;44937:139;;44664:419;;;:::o;45089:::-;45255:4;45293:2;45282:9;45278:18;45270:26;;45342:9;45336:4;45332:20;45328:1;45317:9;45313:17;45306:47;45370:131;45496:4;45370:131;:::i;:::-;45362:139;;45089:419;;;:::o;45514:822::-;45747:4;45785:3;45774:9;45770:19;45762:27;;45799:69;45865:1;45854:9;45850:17;45841:6;45799:69;:::i;:::-;45878:72;45946:2;45935:9;45931:18;45922:6;45878:72;:::i;:::-;45997:9;45991:4;45987:20;45982:2;45971:9;45967:18;45960:48;46025:76;46096:4;46087:6;46025:76;:::i;:::-;46017:84;;46111:66;46173:2;46162:9;46158:18;46149:6;46111:66;:::i;:::-;46225:9;46219:4;46215:20;46209:3;46198:9;46194:19;46187:49;46253:76;46324:4;46315:6;46253:76;:::i;:::-;46245:84;;45514:822;;;;;;;;:::o;46342:739::-;46561:4;46599:3;46588:9;46584:19;46576:27;;46613:69;46679:1;46668:9;46664:17;46655:6;46613:69;:::i;:::-;46729:9;46723:4;46719:20;46714:2;46703:9;46699:18;46692:48;46757:76;46828:4;46819:6;46757:76;:::i;:::-;46749:84;;46843:70;46909:2;46898:9;46894:18;46885:6;46843:70;:::i;:::-;46960:9;46954:4;46950:20;46945:2;46934:9;46930:18;46923:48;46988:86;47069:4;47060:6;47052;46988:86;:::i;:::-;46980:94;;46342:739;;;;;;;;:::o;47087:719::-;47296:4;47334:3;47323:9;47319:19;47311:27;;47348:69;47414:1;47403:9;47399:17;47390:6;47348:69;:::i;:::-;47464:9;47458:4;47454:20;47449:2;47438:9;47434:18;47427:48;47492:76;47563:4;47554:6;47492:76;:::i;:::-;47484:84;;47578:70;47644:2;47633:9;47629:18;47620:6;47578:70;:::i;:::-;47695:9;47689:4;47685:20;47680:2;47669:9;47665:18;47658:48;47723:76;47794:4;47785:6;47723:76;:::i;:::-;47715:84;;47087:719;;;;;;;:::o;47812:1058::-;48110:4;48148:3;48137:9;48133:19;48125:27;;48162:69;48228:1;48217:9;48213:17;48204:6;48162:69;:::i;:::-;48278:9;48272:4;48268:20;48263:2;48252:9;48248:18;48241:48;48306:73;48374:4;48365:6;48306:73;:::i;:::-;48298:81;;48426:9;48420:4;48416:20;48411:2;48400:9;48396:18;48389:48;48454:76;48525:4;48516:6;48454:76;:::i;:::-;48446:84;;48540:88;48624:2;48613:9;48609:18;48600:6;48540:88;:::i;:::-;48638:73;48706:3;48695:9;48691:19;48682:6;48638:73;:::i;:::-;48759:9;48753:4;48749:20;48743:3;48732:9;48728:19;48721:49;48787:76;48858:4;48849:6;48787:76;:::i;:::-;48779:84;;47812:1058;;;;;;;;;:::o;48876:222::-;48969:4;49007:2;48996:9;48992:18;48984:26;;49020:71;49088:1;49077:9;49073:17;49064:6;49020:71;:::i;:::-;48876:222;;;;:::o;49104:332::-;49225:4;49263:2;49252:9;49248:18;49240:26;;49276:71;49344:1;49333:9;49329:17;49320:6;49276:71;:::i;:::-;49357:72;49425:2;49414:9;49410:18;49401:6;49357:72;:::i;:::-;49104:332;;;;;:::o;49442:129::-;49476:6;49503:20;;:::i;:::-;49493:30;;49532:33;49560:4;49552:6;49532:33;:::i;:::-;49442:129;;;:::o;49577:75::-;49610:6;49643:2;49637:9;49627:19;;49577:75;:::o;49658:307::-;49719:4;49809:18;49801:6;49798:30;49795:56;;;49831:18;;:::i;:::-;49795:56;49869:29;49891:6;49869:29;:::i;:::-;49861:37;;49953:4;49947;49943:15;49935:23;;49658:307;;;:::o;49971:308::-;50033:4;50123:18;50115:6;50112:30;50109:56;;;50145:18;;:::i;:::-;50109:56;50183:29;50205:6;50183:29;:::i;:::-;50175:37;;50267:4;50261;50257:15;50249:23;;49971:308;;;:::o;50285:140::-;50333:4;50356:3;50348:11;;50379:3;50376:1;50369:14;50413:4;50410:1;50400:18;50392:26;;50285:140;;;:::o;50431:98::-;50482:6;50516:5;50510:12;50500:22;;50431:98;;;:::o;50535:99::-;50587:6;50621:5;50615:12;50605:22;;50535:99;;;:::o;50640:168::-;50723:11;50757:6;50752:3;50745:19;50797:4;50792:3;50788:14;50773:29;;50640:168;;;;:::o;50814:147::-;50915:11;50952:3;50937:18;;50814:147;;;;:::o;50967:169::-;51051:11;51085:6;51080:3;51073:19;51125:4;51120:3;51116:14;51101:29;;50967:169;;;;:::o;51142:148::-;51244:11;51281:3;51266:18;;51142:148;;;;:::o;51296:305::-;51336:3;51355:20;51373:1;51355:20;:::i;:::-;51350:25;;51389:20;51407:1;51389:20;:::i;:::-;51384:25;;51543:1;51475:66;51471:74;51468:1;51465:81;51462:107;;;51549:18;;:::i;:::-;51462:107;51593:1;51590;51586:9;51579:16;;51296:305;;;;:::o;51607:185::-;51647:1;51664:20;51682:1;51664:20;:::i;:::-;51659:25;;51698:20;51716:1;51698:20;:::i;:::-;51693:25;;51737:1;51727:35;;51742:18;;:::i;:::-;51727:35;51784:1;51781;51777:9;51772:14;;51607:185;;;;:::o;51798:191::-;51838:4;51858:20;51876:1;51858:20;:::i;:::-;51853:25;;51892:20;51910:1;51892:20;:::i;:::-;51887:25;;51931:1;51928;51925:8;51922:34;;;51936:18;;:::i;:::-;51922:34;51981:1;51978;51974:9;51966:17;;51798:191;;;;:::o;51995:96::-;52032:7;52061:24;52079:5;52061:24;:::i;:::-;52050:35;;51995:96;;;:::o;52097:104::-;52142:7;52171:24;52189:5;52171:24;:::i;:::-;52160:35;;52097:104;;;:::o;52207:90::-;52241:7;52284:5;52277:13;52270:21;52259:32;;52207:90;;;:::o;52303:77::-;52340:7;52369:5;52358:16;;52303:77;;;:::o;52386:149::-;52422:7;52462:66;52455:5;52451:78;52440:89;;52386:149;;;:::o;52541:89::-;52577:7;52617:6;52610:5;52606:18;52595:29;;52541:89;;;:::o;52636:126::-;52673:7;52713:42;52706:5;52702:54;52691:65;;52636:126;;;:::o;52768:77::-;52805:7;52834:5;52823:16;;52768:77;;;:::o;52851:101::-;52887:7;52927:18;52920:5;52916:30;52905:41;;52851:101;;;:::o;52958:86::-;52993:7;53033:4;53026:5;53022:16;53011:27;;52958:86;;;:::o;53050:154::-;53134:6;53129:3;53124;53111:30;53196:1;53187:6;53182:3;53178:16;53171:27;53050:154;;;:::o;53210:307::-;53278:1;53288:113;53302:6;53299:1;53296:13;53288:113;;;53387:1;53382:3;53378:11;53372:18;53368:1;53363:3;53359:11;53352:39;53324:2;53321:1;53317:10;53312:15;;53288:113;;;53419:6;53416:1;53413:13;53410:101;;;53499:1;53490:6;53485:3;53481:16;53474:27;53410:101;53259:258;53210:307;;;:::o;53523:320::-;53567:6;53604:1;53598:4;53594:12;53584:22;;53651:1;53645:4;53641:12;53672:18;53662:81;;53728:4;53720:6;53716:17;53706:27;;53662:81;53790:2;53782:6;53779:14;53759:18;53756:38;53753:84;;;53809:18;;:::i;:::-;53753:84;53574:269;53523:320;;;:::o;53849:281::-;53932:27;53954:4;53932:27;:::i;:::-;53924:6;53920:40;54062:6;54050:10;54047:22;54026:18;54014:10;54011:34;54008:62;54005:88;;;54073:18;;:::i;:::-;54005:88;54113:10;54109:2;54102:22;53892:238;53849:281;;:::o;54136:233::-;54175:3;54198:24;54216:5;54198:24;:::i;:::-;54189:33;;54244:66;54237:5;54234:77;54231:103;;;54314:18;;:::i;:::-;54231:103;54361:1;54354:5;54350:13;54343:20;;54136:233;;;:::o;54375:94::-;54413:7;54442:21;54457:5;54442:21;:::i;:::-;54431:32;;54375:94;;;:::o;54475:79::-;54514:7;54543:5;54532:16;;54475:79;;;:::o;54560:176::-;54592:1;54609:20;54627:1;54609:20;:::i;:::-;54604:25;;54643:20;54661:1;54643:20;:::i;:::-;54638:25;;54682:1;54672:35;;54687:18;;:::i;:::-;54672:35;54728:1;54725;54721:9;54716:14;;54560:176;;;;:::o;54742:180::-;54790:77;54787:1;54780:88;54887:4;54884:1;54877:15;54911:4;54908:1;54901:15;54928:180;54976:77;54973:1;54966:88;55073:4;55070:1;55063:15;55097:4;55094:1;55087:15;55114:180;55162:77;55159:1;55152:88;55259:4;55256:1;55249:15;55283:4;55280:1;55273:15;55300:180;55348:77;55345:1;55338:88;55445:4;55442:1;55435:15;55469:4;55466:1;55459:15;55486:180;55534:77;55531:1;55524:88;55631:4;55628:1;55621:15;55655:4;55652:1;55645:15;55672:117;55781:1;55778;55771:12;55795:117;55904:1;55901;55894:12;55918:117;56027:1;56024;56017:12;56041:117;56150:1;56147;56140:12;56164:117;56273:1;56270;56263:12;56287:117;56396:1;56393;56386:12;56410:102;56451:6;56502:2;56498:7;56493:2;56486:5;56482:14;56478:28;56468:38;;56410:102;;;:::o;56518:96::-;56552:8;56601:5;56596:3;56592:15;56571:36;;56518:96;;;:::o;56620:237::-;56760:34;56756:1;56748:6;56744:14;56737:58;56829:20;56824:2;56816:6;56812:15;56805:45;56620:237;:::o;56863:225::-;57003:34;56999:1;56991:6;56987:14;56980:58;57072:8;57067:2;57059:6;57055:15;57048:33;56863:225;:::o;57094:224::-;57234:34;57230:1;57222:6;57218:14;57211:58;57303:7;57298:2;57290:6;57286:15;57279:32;57094:224;:::o;57324:178::-;57464:30;57460:1;57452:6;57448:14;57441:54;57324:178;:::o;57508:248::-;57648:34;57644:1;57636:6;57632:14;57625:58;57717:31;57712:2;57704:6;57700:15;57693:56;57508:248;:::o;57762:308::-;57902:34;57898:1;57890:6;57886:14;57879:58;57971:34;57966:2;57958:6;57954:15;57947:59;58040:22;58035:2;58027:6;58023:15;58016:47;57762:308;:::o;58076:223::-;58216:34;58212:1;58204:6;58200:14;58193:58;58285:6;58280:2;58272:6;58268:15;58261:31;58076:223;:::o;58305:175::-;58445:27;58441:1;58433:6;58429:14;58422:51;58305:175;:::o;58486:233::-;58626:34;58622:1;58614:6;58610:14;58603:58;58695:16;58690:2;58682:6;58678:15;58671:41;58486:233;:::o;58725:176::-;58865:28;58861:1;58853:6;58849:14;58842:52;58725:176;:::o;58907:221::-;59047:34;59043:1;59035:6;59031:14;59024:58;59116:4;59111:2;59103:6;59099:15;59092:29;58907:221;:::o;59134:231::-;59274:34;59270:1;59262:6;59258:14;59251:58;59343:14;59338:2;59330:6;59326:15;59319:39;59134:231;:::o;59371:243::-;59511:34;59507:1;59499:6;59495:14;59488:58;59580:26;59575:2;59567:6;59563:15;59556:51;59371:243;:::o;59620:229::-;59760:34;59756:1;59748:6;59744:14;59737:58;59829:12;59824:2;59816:6;59812:15;59805:37;59620:229;:::o;59855:228::-;59995:34;59991:1;59983:6;59979:14;59972:58;60064:11;60059:2;60051:6;60047:15;60040:36;59855:228;:::o;60089:230::-;60229:34;60225:1;60217:6;60213:14;60206:58;60298:13;60293:2;60285:6;60281:15;60274:38;60089:230;:::o;60325:182::-;60465:34;60461:1;60453:6;60449:14;60442:58;60325:182;:::o;60513:231::-;60653:34;60649:1;60641:6;60637:14;60630:58;60722:14;60717:2;60709:6;60705:15;60698:39;60513:231;:::o;60750:182::-;60890:34;60886:1;60878:6;60874:14;60867:58;60750:182;:::o;60938:239::-;61078:34;61074:1;61066:6;61062:14;61055:58;61147:22;61142:2;61134:6;61130:15;61123:47;60938:239;:::o;61183:222::-;61323:34;61319:1;61311:6;61307:14;61300:58;61392:5;61387:2;61379:6;61375:15;61368:30;61183:222;:::o;61411:234::-;61551:34;61547:1;61539:6;61535:14;61528:58;61620:17;61615:2;61607:6;61603:15;61596:42;61411:234;:::o;61651:230::-;61791:34;61787:1;61779:6;61775:14;61768:58;61860:13;61855:2;61847:6;61843:15;61836:38;61651:230;:::o;61887:223::-;62027:34;62023:1;62015:6;62011:14;62004:58;62096:6;62091:2;62083:6;62079:15;62072:31;61887:223;:::o;62116:220::-;62256:34;62252:1;62244:6;62240:14;62233:58;62325:3;62320:2;62312:6;62308:15;62301:28;62116:220;:::o;62342:114::-;;:::o;62462:236::-;62602:34;62598:1;62590:6;62586:14;62579:58;62671:19;62666:2;62658:6;62654:15;62647:44;62462:236;:::o;62704:225::-;62844:34;62840:1;62832:6;62828:14;62821:58;62913:8;62908:2;62900:6;62896:15;62889:33;62704:225;:::o;62935:122::-;63008:24;63026:5;63008:24;:::i;:::-;63001:5;62998:35;62988:63;;63047:1;63044;63037:12;62988:63;62935:122;:::o;63063:138::-;63144:32;63170:5;63144:32;:::i;:::-;63137:5;63134:43;63124:71;;63191:1;63188;63181:12;63124:71;63063:138;:::o;63207:116::-;63277:21;63292:5;63277:21;:::i;:::-;63270:5;63267:32;63257:60;;63313:1;63310;63303:12;63257:60;63207:116;:::o;63329:120::-;63401:23;63418:5;63401:23;:::i;:::-;63394:5;63391:34;63381:62;;63439:1;63436;63429:12;63381:62;63329:120;:::o;63455:::-;63527:23;63544:5;63527:23;:::i;:::-;63520:5;63517:34;63507:62;;63565:1;63562;63555:12;63507:62;63455:120;:::o;63581:122::-;63654:24;63672:5;63654:24;:::i;:::-;63647:5;63644:35;63634:63;;63693:1;63690;63683:12;63634:63;63581:122;:::o;63709:120::-;63781:23;63798:5;63781:23;:::i;:::-;63774:5;63771:34;63761:62;;63819:1;63816;63809:12;63761:62;63709:120;:::o;63835:118::-;63906:22;63922:5;63906:22;:::i;:::-;63899:5;63896:33;63886:61;;63943:1;63940;63933:12;63886:61;63835:118;:::o

Swarm Source

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