ETH Price: $3,370.85 (-3.23%)
Gas: 4 Gwei

Token

Open Head NFT (OH)
 

Overview

Max Total Supply

3,333 OH

Holders

1,294

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 OH
0x1522524828d8691887eac96794411cb945aae6ef
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:
OpenHeadToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2022-01-16
*/

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


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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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


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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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 || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// 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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

// File: OpenHeadToken.sol


pragma solidity ^0.8.0;




contract OpenHeadToken is ERC721Enumerable, Ownable {
  using Strings for uint256;

  uint256 public constant PUBLIC_TOKENS = 9750;
  uint256 public constant GIFT_TOKENS = 250;
  uint256 public constant MAX_TOKENS = 10000;
  uint256 public constant PRICE = 0.07 ether;
  uint256 public constant TO_RAFFLE = 10256410256410256 wei;
  uint256 public constant MAX_PER_MINT = 5;
  uint256 public constant PRESALE_LIMIT = 2;

  address payable public immutable teamAddr;
  address payable public immutable initialRaffle;
  string public provenance;
  string public tokenBaseURI;
  bytes32 public merkleRoot;

  bool public saleLive;
  bool public presaleLive;
  mapping(address => uint256) public presalePurchases;

  bool public revealed;
  uint256 public startingIndex;
  uint256 public startingIndexBlock;
  uint256 public giftedAmount;
  uint256 public publicAmount;


  constructor(address _teamAddr, address _initialRaffle, string memory _tokenBaseURI, string memory _provenance, bytes32 _merkleRoot) ERC721("Open Head NFT", "OH") {
    teamAddr = payable(_teamAddr);
    initialRaffle = payable(_initialRaffle);
    tokenBaseURI = _tokenBaseURI;
    provenance = _provenance;
    merkleRoot = _merkleRoot;
  }

  function allPublicMinted() view public returns (bool) {
    return publicAmount == PUBLIC_TOKENS;
  }

  function isWhitelisted(address account, bytes32[] calldata merkleProof) public view returns(bool) {
    bytes32 node = keccak256(abi.encodePacked(account));
    return MerkleProof.verify(merkleProof, merkleRoot, node);
  }

  function togglePresaleStatus() external onlyOwner {
    presaleLive = !presaleLive;
  }

  function toggleSaleStatus() external onlyOwner {
    saleLive = !saleLive;
  }

  function setTokenBaseURI(string calldata URI) external onlyOwner {
    tokenBaseURI = URI;
  }

  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function reveal() external onlyOwner {
    require(!revealed, "Already revealed!");
    revealed = true;
  }

  function setStartingIndex() public {
    require(startingIndex == 0, "Starting index is already set");
    require(startingIndexBlock != 0, "Starting index block must be set");

    startingIndex = uint(blockhash(startingIndexBlock)) % MAX_TOKENS;
    if (startingIndex == 0) {
      startingIndex = 1;
    }
  }

  function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
    require(_exists(tokenId), "Unexistent token");

    string memory sequenceId;

    if (startingIndex > 0) {
      sequenceId = ((tokenId + startingIndex) % MAX_TOKENS).toString();
    } else {
      sequenceId = "-1";
    }

    return string(abi.encodePacked(tokenBaseURI, sequenceId));
  }

  function mintHeads(uint amount) external payable {
    require(saleLive, "Sale is not active");
    require(totalSupply() < MAX_TOKENS, "Sold out");
    require(publicAmount + amount <= PUBLIC_TOKENS, "All public tokens sold out");
    require(amount > 0 && amount <= MAX_PER_MINT, "Invalid amount");
    require(PRICE * amount <= msg.value, "Insufficient ETH");

    uint toTransfer = TO_RAFFLE * amount;
    initialRaffle.transfer(toTransfer);
    teamAddr.transfer(msg.value - toTransfer);

    for(uint i = 0; i < amount; i++) {
      publicAmount++;
      _safeMint(msg.sender, totalSupply() + 1);
    }

    if (startingIndexBlock == 0 && (allPublicMinted() || revealed)) {
      startingIndexBlock = block.number;
    }
  }

  function mintPresaleHeads(uint amount, bytes32[] calldata proof) external payable {
    require(presaleLive, "Presale is not active");
    require(isWhitelisted(msg.sender, proof) == true, "Not in the whitelist");
    require(totalSupply() < MAX_TOKENS, "Sold out");
    require(publicAmount + amount <= PUBLIC_TOKENS, "All public tokens sold out");
    require(amount > 0 && amount <= PRESALE_LIMIT, "Invalid amount");
    require(presalePurchases[msg.sender] + amount <= PRESALE_LIMIT, "Exceeded presale limit");
    require(PRICE * amount <= msg.value, "Insufficient ETH");

    uint toTransfer = TO_RAFFLE * amount;
    initialRaffle.transfer(toTransfer);
    teamAddr.transfer(msg.value - toTransfer);

    for(uint i = 0; i < amount; i++) {
      publicAmount++;
      presalePurchases[msg.sender]++;
      _safeMint(msg.sender, totalSupply() + 1);
    }
  }

  function gift(address[] calldata receivers) external onlyOwner {
    require(totalSupply() < MAX_TOKENS, "Sold out");
    require(giftedAmount + receivers.length <= GIFT_TOKENS, "Run out of gift tokens");

    for (uint256 i = 0; i < receivers.length; i++) {
      giftedAmount++;
      _safeMint(receivers[i], totalSupply() + 1);
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_teamAddr","type":"address"},{"internalType":"address","name":"_initialRaffle","type":"address"},{"internalType":"string","name":"_tokenBaseURI","type":"string"},{"internalType":"string","name":"_provenance","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"GIFT_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TO_RAFFLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allPublicMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giftedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialRaffle","outputs":[{"internalType":"address payable","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":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintHeads","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintPresaleHeads","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalePurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAddr","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040523480156200001157600080fd5b5060405162005b8038038062005b808339818101604052810190620000379190620003d3565b6040518060400160405280600d81526020017f4f70656e2048656164204e4654000000000000000000000000000000000000008152506040518060400160405280600281526020017f4f480000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb92919062000277565b508060019080519060200190620000d492919062000277565b505050620000f7620000eb620001a960201b60201c565b620001b160201b60201c565b8473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508373ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b8152505082600c90805190602001906200017d92919062000277565b5081600b90805190602001906200019692919062000277565b5080600d8190555050505050506200068f565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000285906200056c565b90600052602060002090601f016020900481019282620002a95760008555620002f5565b82601f10620002c457805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f4578251825591602001919060010190620002d7565b5b50905062000304919062000308565b5090565b5b808211156200032357600081600090555060010162000309565b5090565b60006200033e6200033884620004c2565b62000499565b9050828152602081018484840111156200035d576200035c6200063b565b5b6200036a84828562000536565b509392505050565b60008151905062000383816200065b565b92915050565b6000815190506200039a8162000675565b92915050565b600082601f830112620003b857620003b762000636565b5b8151620003ca84826020860162000327565b91505092915050565b600080600080600060a08688031215620003f257620003f162000645565b5b6000620004028882890162000372565b9550506020620004158882890162000372565b945050604086015167ffffffffffffffff81111562000439576200043862000640565b5b6200044788828901620003a0565b935050606086015167ffffffffffffffff8111156200046b576200046a62000640565b5b6200047988828901620003a0565b92505060806200048c8882890162000389565b9150509295509295909350565b6000620004a5620004b8565b9050620004b38282620005a2565b919050565b6000604051905090565b600067ffffffffffffffff821115620004e057620004df62000607565b5b620004eb826200064a565b9050602081019050919050565b6000620005058262000516565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200055657808201518184015260208101905062000539565b8381111562000566576000848401525b50505050565b600060028204905060018216806200058557607f821691505b602082108114156200059c576200059b620005d8565b5b50919050565b620005ad826200064a565b810181811067ffffffffffffffff82111715620005cf57620005ce62000607565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200066681620004f8565b81146200067257600080fd5b50565b62000680816200050c565b81146200068c57600080fd5b50565b60805160601c60a05160601c6154a9620006d760003960008181610cfe0152818161155f0152611ccb015260008181610d650152818161153b0152611d3201526154a96000f3fe6080604052600436106102c95760003560e01c806370a0823111610175578063a475b5dd116100dc578063e36d649811610095578063e98665501161006f578063e986655014610abe578063f2fde38b14610ad5578063f3a04af414610afe578063f47c84c514610b29576102c9565b8063e36d649814610a2b578063e4d9acf514610a56578063e985e9c514610a81576102c9565b8063a475b5dd1461091b578063a68574d314610932578063b88d4fde1461096f578063c87b56dd14610998578063cb774d47146109d5578063e081b78114610a00576102c9565b80638d859f3e1161012e5780638d859f3e1461081d5780638da5cb5b146108485780638ef79e911461087357806395d89b411461089c578063a22cb465146108c7578063a27a9e7f146108f0576102c9565b806370a0823114610742578063715018a61461077f5780637bffb4ce146107965780637cb64759146107ad57806381ed9fdb146107d657806383a9e049146107f2576102c9565b806323b872dd116102345780634ce6a054116101ed57806351830227116101c757806351830227146106725780635a23dd991461069d5780635e957f93146106da5780636352211e14610705576102c9565b80634ce6a054146105df5780634e99b8001461060a5780634f6ccce714610635576102c9565b806323b872dd146104cf5780632eb4a7ab146104f85780632f745c591461052357806335a036e61461056057806342842e0e1461058b5780634a5ff749146105b4576102c9565b806309d42b301161028657806309d42b30146103cf5780630f7309e8146103fa578063163e1e611461042557806318160ddd1461044e5780631aee3f91146104795780631b57190e146104a4576102c9565b80630152f3f7146102ce57806301ffc9a7146102ea578063049c5c491461032757806306fdde031461033e578063081812fc14610369578063095ea7b3146103a6575b600080fd5b6102e860048036038101906102e39190613cec565b610b54565b005b3480156102f657600080fd5b50610311600480360381019061030c9190613c45565b610e67565b60405161031e919061441b565b60405180910390f35b34801561033357600080fd5b5061033c610ee1565b005b34801561034a57600080fd5b50610353610f89565b6040516103609190614451565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b9190613cec565b61101b565b60405161039d9190614399565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613b8b565b6110a0565b005b3480156103db57600080fd5b506103e46111b8565b6040516103f19190614833565b60405180910390f35b34801561040657600080fd5b5061040f6111bd565b60405161041c9190614451565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613bcb565b61124b565b005b34801561045a57600080fd5b506104636113e8565b6040516104709190614833565b60405180910390f35b34801561048557600080fd5b5061048e6113f5565b60405161049b9190614833565b60405180910390f35b3480156104b057600080fd5b506104b96113fa565b6040516104c69190614833565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613a15565b611400565b005b34801561050457600080fd5b5061050d611460565b60405161051a9190614436565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613b8b565b611466565b6040516105579190614833565b60405180910390f35b34801561056c57600080fd5b5061057561150b565b604051610582919061441b565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190613a15565b611519565b005b3480156105c057600080fd5b506105c9611539565b6040516105d691906143b4565b60405180910390f35b3480156105eb57600080fd5b506105f461155d565b60405161060191906143b4565b60405180910390f35b34801561061657600080fd5b5061061f611581565b60405161062c9190614451565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190613cec565b61160f565b6040516106699190614833565b60405180910390f35b34801561067e57600080fd5b50610687611680565b604051610694919061441b565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190613aeb565b611693565b6040516106d1919061441b565b60405180910390f35b3480156106e657600080fd5b506106ef611717565b6040516106fc9190614833565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190613cec565b611722565b6040516107399190614399565b60405180910390f35b34801561074e57600080fd5b50610769600480360381019061076491906139a8565b6117d4565b6040516107769190614833565b60405180910390f35b34801561078b57600080fd5b5061079461188c565b005b3480156107a257600080fd5b506107ab611914565b005b3480156107b957600080fd5b506107d460048036038101906107cf9190613c18565b6119bc565b005b6107f060048036038101906107eb9190613d19565b611a42565b005b3480156107fe57600080fd5b50610807611e51565b604051610814919061441b565b60405180910390f35b34801561082957600080fd5b50610832611e64565b60405161083f9190614833565b60405180910390f35b34801561085457600080fd5b5061085d611e6f565b60405161086a9190614399565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190613c9f565b611e99565b005b3480156108a857600080fd5b506108b1611f2b565b6040516108be9190614451565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e99190613b4b565b611fbd565b005b3480156108fc57600080fd5b50610905611fd3565b6040516109129190614833565b60405180910390f35b34801561092757600080fd5b50610930611fd9565b005b34801561093e57600080fd5b50610959600480360381019061095491906139a8565b6120c2565b6040516109669190614833565b60405180910390f35b34801561097b57600080fd5b5061099660048036038101906109919190613a68565b6120da565b005b3480156109a457600080fd5b506109bf60048036038101906109ba9190613cec565b61213c565b6040516109cc9190614451565b60405180910390f35b3480156109e157600080fd5b506109ea612221565b6040516109f79190614833565b60405180910390f35b348015610a0c57600080fd5b50610a15612227565b604051610a22919061441b565b60405180910390f35b348015610a3757600080fd5b50610a4061223a565b604051610a4d9190614833565b60405180910390f35b348015610a6257600080fd5b50610a6b612240565b604051610a789190614833565b60405180910390f35b348015610a8d57600080fd5b50610aa86004803603810190610aa391906139d5565b612245565b604051610ab5919061441b565b60405180910390f35b348015610aca57600080fd5b50610ad36122d9565b005b348015610ae157600080fd5b50610afc6004803603810190610af791906139a8565b612394565b005b348015610b0a57600080fd5b50610b1361248c565b604051610b209190614833565b60405180910390f35b348015610b3557600080fd5b50610b3e612492565b604051610b4b9190614833565b60405180910390f35b600e60009054906101000a900460ff16610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a906145b3565b60405180910390fd5b612710610bae6113e8565b10610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be5906147b3565b60405180910390fd5b61261681601454610bff91906148fc565b1115610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3790614493565b60405180910390fd5b600081118015610c51575060058111155b610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8790614553565b60405180910390fd5b348166f8b0a10e470000610ca49190614983565b1115610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90614473565b60405180910390fd5b600081662470269a010690610cfa9190614983565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d62573d6000803e3d6000fd5b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc8234610da991906149dd565b9081150290604051600060405180830381858888f19350505050158015610dd4573d6000803e3d6000fd5b5060005b82811015610e285760146000815480929190610df390614b46565b9190505550610e15336001610e066113e8565b610e1091906148fc565b612498565b8080610e2090614b46565b915050610dd8565b506000601254148015610e565750610e3e61150b565b80610e555750601060009054906101000a900460ff165b5b15610e6357436012819055505b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610eda5750610ed9826124b6565b5b9050919050565b610ee9612598565b73ffffffffffffffffffffffffffffffffffffffff16610f07611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f54906146d3565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b606060008054610f9890614ae3565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc490614ae3565b80156110115780601f10610fe657610100808354040283529160200191611011565b820191906000526020600020905b815481529060010190602001808311610ff457829003601f168201915b5050505050905090565b6000611026826125a0565b611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c906146b3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006110ab82611722565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390614733565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661113b612598565b73ffffffffffffffffffffffffffffffffffffffff16148061116a575061116981611164612598565b612245565b5b6111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090614613565b60405180910390fd5b6111b3838361260c565b505050565b600581565b600b80546111ca90614ae3565b80601f01602080910402602001604051908101604052809291908181526020018280546111f690614ae3565b80156112435780601f1061121857610100808354040283529160200191611243565b820191906000526020600020905b81548152906001019060200180831161122657829003601f168201915b505050505081565b611253612598565b73ffffffffffffffffffffffffffffffffffffffff16611271611e6f565b73ffffffffffffffffffffffffffffffffffffffff16146112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be906146d3565b60405180910390fd5b6127106112d26113e8565b10611312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611309906147b3565b60405180910390fd5b60fa8282905060135461132591906148fc565b1115611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90614693565b60405180910390fd5b60005b828290508110156113e3576013600081548092919061138790614b46565b91905055506113d08383838181106113a2576113a1614caa565b5b90506020020160208101906113b791906139a8565b60016113c16113e8565b6113cb91906148fc565b612498565b80806113db90614b46565b915050611369565b505050565b6000600880549050905090565b600281565b60135481565b61141161140b612598565b826126c5565b611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790614793565b60405180910390fd5b61145b8383836127a3565b505050565b600d5481565b6000611471836117d4565b82106114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a9906144b3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600061261660145414905090565b611534838383604051806020016040528060008152506120da565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c805461158e90614ae3565b80601f01602080910402602001604051908101604052809291908181526020018280546115ba90614ae3565b80156116075780601f106115dc57610100808354040283529160200191611607565b820191906000526020600020905b8154815290600101906020018083116115ea57829003601f168201915b505050505081565b60006116196113e8565b821061165a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611651906147d3565b60405180910390fd5b6008828154811061166e5761166d614caa565b5b90600052602060002001549050919050565b601060009054906101000a900460ff1681565b600080846040516020016116a7919061432e565b60405160208183030381529060405280519060200120905061170d848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54836129ff565b9150509392505050565b662470269a01069081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290614653565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90614633565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611894612598565b73ffffffffffffffffffffffffffffffffffffffff166118b2611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff906146d3565b60405180910390fd5b6119126000612a16565b565b61191c612598565b73ffffffffffffffffffffffffffffffffffffffff1661193a611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906146d3565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6119c4612598565b73ffffffffffffffffffffffffffffffffffffffff166119e2611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f906146d3565b60405180910390fd5b80600d8190555050565b600e60019054906101000a900460ff16611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a88906147f3565b60405180910390fd5b60011515611aa0338484611693565b151514611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad990614753565b60405180910390fd5b612710611aed6113e8565b10611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b24906147b3565b60405180910390fd5b61261683601454611b3e91906148fc565b1115611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690614493565b60405180910390fd5b600083118015611b90575060028311155b611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690614553565b60405180910390fd5b600283600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c1c91906148fc565b1115611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490614513565b60405180910390fd5b348366f8b0a10e470000611c719190614983565b1115611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca990614473565b60405180910390fd5b600083662470269a010690611cc79190614983565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611d2f573d6000803e3d6000fd5b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc8234611d7691906149dd565b9081150290604051600060405180830381858888f19350505050158015611da1573d6000803e3d6000fd5b5060005b84811015611e4a5760146000815480929190611dc090614b46565b9190505550600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e1590614b46565b9190505550611e37336001611e286113e8565b611e3291906148fc565b612498565b8080611e4290614b46565b915050611da5565b5050505050565b600e60019054906101000a900460ff1681565b66f8b0a10e47000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ea1612598565b73ffffffffffffffffffffffffffffffffffffffff16611ebf611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c906146d3565b60405180910390fd5b8181600c9190611f26929190613715565b505050565b606060018054611f3a90614ae3565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6690614ae3565b8015611fb35780601f10611f8857610100808354040283529160200191611fb3565b820191906000526020600020905b815481529060010190602001808311611f9657829003601f168201915b5050505050905090565b611fcf611fc8612598565b8383612adc565b5050565b60145481565b611fe1612598565b73ffffffffffffffffffffffffffffffffffffffff16611fff611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204c906146d3565b60405180910390fd5b601060009054906101000a900460ff16156120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90614713565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915090505481565b6120eb6120e5612598565b836126c5565b61212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212190614793565b60405180910390fd5b61213684848484612c49565b50505050565b6060612147826125a0565b612186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217d90614813565b60405180910390fd5b6060600060115411156121bd576121b6612710601154856121a791906148fc565b6121b19190614bbd565b612ca5565b90506121f6565b6040518060400160405280600281526020017f2d3100000000000000000000000000000000000000000000000000000000000081525090505b600c8160405160200161220a929190614375565b604051602081830303815290604052915050919050565b60115481565b600e60009054906101000a900460ff1681565b60125481565b60fa81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006011541461231e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612315906145f3565b60405180910390fd5b60006012541415612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90614773565b60405180910390fd5b6127106012544060001c6123789190614bbd565b601181905550600060115414156123925760016011819055505b565b61239c612598565b73ffffffffffffffffffffffffffffffffffffffff166123ba611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612407906146d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612477906144f3565b60405180910390fd5b61248981612a16565b50565b61261681565b61271081565b6124b2828260405180602001604052806000815250612e06565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061258157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612591575061259082612e61565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661267f83611722565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126d0826125a0565b61270f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612706906145d3565b60405180910390fd5b600061271a83611722565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061278957508373ffffffffffffffffffffffffffffffffffffffff166127718461101b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061279a57506127998185612245565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127c382611722565b73ffffffffffffffffffffffffffffffffffffffff1614612819576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612810906146f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288090614573565b60405180910390fd5b612894838383612ecb565b61289f60008261260c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128ef91906149dd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461294691906148fc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082612a0c8584612fdf565b1490509392505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4290614593565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c3c919061441b565b60405180910390a3505050565b612c548484846127a3565b612c6084848484613092565b612c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c96906144d3565b60405180910390fd5b50505050565b60606000821415612ced576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e01565b600082905060005b60008214612d1f578080612d0890614b46565b915050600a82612d189190614952565b9150612cf5565b60008167ffffffffffffffff811115612d3b57612d3a614cd9565b5b6040519080825280601f01601f191660200182016040528015612d6d5781602001600182028036833780820191505090505b5090505b60008514612dfa57600182612d8691906149dd565b9150600a85612d959190614bbd565b6030612da191906148fc565b60f81b818381518110612db757612db6614caa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612df39190614952565b9450612d71565b8093505050505b919050565b612e108383613229565b612e1d6000848484613092565b612e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e53906144d3565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ed68383836133f7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f1957612f14816133fc565b612f58565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f5757612f568382613445565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f9b57612f96816135b2565b612fda565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fd957612fd88282613683565b5b5b505050565b60008082905060005b845181101561308757600085828151811061300657613005614caa565b5b6020026020010151905080831161304757828160405160200161302a929190614349565b604051602081830303815290604052805190602001209250613073565b808360405160200161305a929190614349565b6040516020818303038152906040528051906020012092505b50808061307f90614b46565b915050612fe8565b508091505092915050565b60006130b38473ffffffffffffffffffffffffffffffffffffffff16613702565b1561321c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130dc612598565b8786866040518563ffffffff1660e01b81526004016130fe94939291906143cf565b602060405180830381600087803b15801561311857600080fd5b505af192505050801561314957506040513d601f19601f820116820180604052508101906131469190613c72565b60015b6131cc573d8060008114613179576040519150601f19603f3d011682016040523d82523d6000602084013e61317e565b606091505b506000815114156131c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bb906144d3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613221565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329090614673565b60405180910390fd5b6132a2816125a0565b156132e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d990614533565b60405180910390fd5b6132ee60008383612ecb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461333e91906148fc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613452846117d4565b61345c91906149dd565b9050600060076000848152602001908152602001600020549050818114613541576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135c691906149dd565b90506000600960008481526020019081526020016000205490506000600883815481106135f6576135f5614caa565b5b90600052602060002001549050806008838154811061361857613617614caa565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061366757613666614c7b565b5b6001900381819060005260206000200160009055905550505050565b600061368e836117d4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461372190614ae3565b90600052602060002090601f016020900481019282613743576000855561378a565b82601f1061375c57803560ff191683800117855561378a565b8280016001018555821561378a579182015b8281111561378957823582559160200191906001019061376e565b5b509050613797919061379b565b5090565b5b808211156137b457600081600090555060010161379c565b5090565b60006137cb6137c684614873565b61484e565b9050828152602081018484840111156137e7576137e6614d17565b5b6137f2848285614aa1565b509392505050565b60008135905061380981615400565b92915050565b60008083601f84011261382557613824614d0d565b5b8235905067ffffffffffffffff81111561384257613841614d08565b5b60208301915083602082028301111561385e5761385d614d12565b5b9250929050565b60008083601f84011261387b5761387a614d0d565b5b8235905067ffffffffffffffff81111561389857613897614d08565b5b6020830191508360208202830111156138b4576138b3614d12565b5b9250929050565b6000813590506138ca81615417565b92915050565b6000813590506138df8161542e565b92915050565b6000813590506138f481615445565b92915050565b60008151905061390981615445565b92915050565b600082601f83011261392457613923614d0d565b5b81356139348482602086016137b8565b91505092915050565b60008083601f84011261395357613952614d0d565b5b8235905067ffffffffffffffff8111156139705761396f614d08565b5b60208301915083600182028301111561398c5761398b614d12565b5b9250929050565b6000813590506139a28161545c565b92915050565b6000602082840312156139be576139bd614d21565b5b60006139cc848285016137fa565b91505092915050565b600080604083850312156139ec576139eb614d21565b5b60006139fa858286016137fa565b9250506020613a0b858286016137fa565b9150509250929050565b600080600060608486031215613a2e57613a2d614d21565b5b6000613a3c868287016137fa565b9350506020613a4d868287016137fa565b9250506040613a5e86828701613993565b9150509250925092565b60008060008060808587031215613a8257613a81614d21565b5b6000613a90878288016137fa565b9450506020613aa1878288016137fa565b9350506040613ab287828801613993565b925050606085013567ffffffffffffffff811115613ad357613ad2614d1c565b5b613adf8782880161390f565b91505092959194509250565b600080600060408486031215613b0457613b03614d21565b5b6000613b12868287016137fa565b935050602084013567ffffffffffffffff811115613b3357613b32614d1c565b5b613b3f86828701613865565b92509250509250925092565b60008060408385031215613b6257613b61614d21565b5b6000613b70858286016137fa565b9250506020613b81858286016138bb565b9150509250929050565b60008060408385031215613ba257613ba1614d21565b5b6000613bb0858286016137fa565b9250506020613bc185828601613993565b9150509250929050565b60008060208385031215613be257613be1614d21565b5b600083013567ffffffffffffffff811115613c0057613bff614d1c565b5b613c0c8582860161380f565b92509250509250929050565b600060208284031215613c2e57613c2d614d21565b5b6000613c3c848285016138d0565b91505092915050565b600060208284031215613c5b57613c5a614d21565b5b6000613c69848285016138e5565b91505092915050565b600060208284031215613c8857613c87614d21565b5b6000613c96848285016138fa565b91505092915050565b60008060208385031215613cb657613cb5614d21565b5b600083013567ffffffffffffffff811115613cd457613cd3614d1c565b5b613ce08582860161393d565b92509250509250929050565b600060208284031215613d0257613d01614d21565b5b6000613d1084828501613993565b91505092915050565b600080600060408486031215613d3257613d31614d21565b5b6000613d4086828701613993565b935050602084013567ffffffffffffffff811115613d6157613d60614d1c565b5b613d6d86828701613865565b92509250509250925092565b613d8281614a23565b82525050565b613d9181614a11565b82525050565b613da8613da382614a11565b614b8f565b82525050565b613db781614a35565b82525050565b613dc681614a41565b82525050565b613ddd613dd882614a41565b614ba1565b82525050565b6000613dee826148b9565b613df881856148cf565b9350613e08818560208601614ab0565b613e1181614d26565b840191505092915050565b6000613e27826148c4565b613e3181856148e0565b9350613e41818560208601614ab0565b613e4a81614d26565b840191505092915050565b6000613e60826148c4565b613e6a81856148f1565b9350613e7a818560208601614ab0565b80840191505092915050565b60008154613e9381614ae3565b613e9d81866148f1565b94506001821660008114613eb85760018114613ec957613efc565b60ff19831686528186019350613efc565b613ed2856148a4565b60005b83811015613ef457815481890152600182019150602081019050613ed5565b838801955050505b50505092915050565b6000613f126010836148e0565b9150613f1d82614d44565b602082019050919050565b6000613f35601a836148e0565b9150613f4082614d6d565b602082019050919050565b6000613f58602b836148e0565b9150613f6382614d96565b604082019050919050565b6000613f7b6032836148e0565b9150613f8682614de5565b604082019050919050565b6000613f9e6026836148e0565b9150613fa982614e34565b604082019050919050565b6000613fc16016836148e0565b9150613fcc82614e83565b602082019050919050565b6000613fe4601c836148e0565b9150613fef82614eac565b602082019050919050565b6000614007600e836148e0565b915061401282614ed5565b602082019050919050565b600061402a6024836148e0565b915061403582614efe565b604082019050919050565b600061404d6019836148e0565b915061405882614f4d565b602082019050919050565b60006140706012836148e0565b915061407b82614f76565b602082019050919050565b6000614093602c836148e0565b915061409e82614f9f565b604082019050919050565b60006140b6601d836148e0565b91506140c182614fee565b602082019050919050565b60006140d96038836148e0565b91506140e482615017565b604082019050919050565b60006140fc602a836148e0565b915061410782615066565b604082019050919050565b600061411f6029836148e0565b915061412a826150b5565b604082019050919050565b60006141426020836148e0565b915061414d82615104565b602082019050919050565b60006141656016836148e0565b91506141708261512d565b602082019050919050565b6000614188602c836148e0565b915061419382615156565b604082019050919050565b60006141ab6020836148e0565b91506141b6826151a5565b602082019050919050565b60006141ce6029836148e0565b91506141d9826151ce565b604082019050919050565b60006141f16011836148e0565b91506141fc8261521d565b602082019050919050565b60006142146021836148e0565b915061421f82615246565b604082019050919050565b60006142376014836148e0565b915061424282615295565b602082019050919050565b600061425a6020836148e0565b9150614265826152be565b602082019050919050565b600061427d6031836148e0565b9150614288826152e7565b604082019050919050565b60006142a06008836148e0565b91506142ab82615336565b602082019050919050565b60006142c3602c836148e0565b91506142ce8261535f565b604082019050919050565b60006142e66015836148e0565b91506142f1826153ae565b602082019050919050565b60006143096010836148e0565b9150614314826153d7565b602082019050919050565b61432881614a97565b82525050565b600061433a8284613d97565b60148201915081905092915050565b60006143558285613dcc565b6020820191506143658284613dcc565b6020820191508190509392505050565b60006143818285613e86565b915061438d8284613e55565b91508190509392505050565b60006020820190506143ae6000830184613d88565b92915050565b60006020820190506143c96000830184613d79565b92915050565b60006080820190506143e46000830187613d88565b6143f16020830186613d88565b6143fe604083018561431f565b81810360608301526144108184613de3565b905095945050505050565b60006020820190506144306000830184613dae565b92915050565b600060208201905061444b6000830184613dbd565b92915050565b6000602082019050818103600083015261446b8184613e1c565b905092915050565b6000602082019050818103600083015261448c81613f05565b9050919050565b600060208201905081810360008301526144ac81613f28565b9050919050565b600060208201905081810360008301526144cc81613f4b565b9050919050565b600060208201905081810360008301526144ec81613f6e565b9050919050565b6000602082019050818103600083015261450c81613f91565b9050919050565b6000602082019050818103600083015261452c81613fb4565b9050919050565b6000602082019050818103600083015261454c81613fd7565b9050919050565b6000602082019050818103600083015261456c81613ffa565b9050919050565b6000602082019050818103600083015261458c8161401d565b9050919050565b600060208201905081810360008301526145ac81614040565b9050919050565b600060208201905081810360008301526145cc81614063565b9050919050565b600060208201905081810360008301526145ec81614086565b9050919050565b6000602082019050818103600083015261460c816140a9565b9050919050565b6000602082019050818103600083015261462c816140cc565b9050919050565b6000602082019050818103600083015261464c816140ef565b9050919050565b6000602082019050818103600083015261466c81614112565b9050919050565b6000602082019050818103600083015261468c81614135565b9050919050565b600060208201905081810360008301526146ac81614158565b9050919050565b600060208201905081810360008301526146cc8161417b565b9050919050565b600060208201905081810360008301526146ec8161419e565b9050919050565b6000602082019050818103600083015261470c816141c1565b9050919050565b6000602082019050818103600083015261472c816141e4565b9050919050565b6000602082019050818103600083015261474c81614207565b9050919050565b6000602082019050818103600083015261476c8161422a565b9050919050565b6000602082019050818103600083015261478c8161424d565b9050919050565b600060208201905081810360008301526147ac81614270565b9050919050565b600060208201905081810360008301526147cc81614293565b9050919050565b600060208201905081810360008301526147ec816142b6565b9050919050565b6000602082019050818103600083015261480c816142d9565b9050919050565b6000602082019050818103600083015261482c816142fc565b9050919050565b6000602082019050614848600083018461431f565b92915050565b6000614858614869565b90506148648282614b15565b919050565b6000604051905090565b600067ffffffffffffffff82111561488e5761488d614cd9565b5b61489782614d26565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061490782614a97565b915061491283614a97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561494757614946614bee565b5b828201905092915050565b600061495d82614a97565b915061496883614a97565b92508261497857614977614c1d565b5b828204905092915050565b600061498e82614a97565b915061499983614a97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149d2576149d1614bee565b5b828202905092915050565b60006149e882614a97565b91506149f383614a97565b925082821015614a0657614a05614bee565b5b828203905092915050565b6000614a1c82614a77565b9050919050565b6000614a2e82614a77565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ace578082015181840152602081019050614ab3565b83811115614add576000848401525b50505050565b60006002820490506001821680614afb57607f821691505b60208210811415614b0f57614b0e614c4c565b5b50919050565b614b1e82614d26565b810181811067ffffffffffffffff82111715614b3d57614b3c614cd9565b5b80604052505050565b6000614b5182614a97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b8457614b83614bee565b5b600182019050919050565b6000614b9a82614bab565b9050919050565b6000819050919050565b6000614bb682614d37565b9050919050565b6000614bc882614a97565b9150614bd383614a97565b925082614be357614be2614c1d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b7f416c6c207075626c696320746f6b656e7320736f6c64206f7574000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656465642070726573616c65206c696d697400000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f52756e206f7574206f66206769667420746f6b656e7300000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f416c72656164792072657665616c656421000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420696e207468652077686974656c697374000000000000000000000000600082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f556e6578697374656e7420746f6b656e00000000000000000000000000000000600082015250565b61540981614a11565b811461541457600080fd5b50565b61542081614a35565b811461542b57600080fd5b50565b61543781614a41565b811461544257600080fd5b50565b61544e81614a4b565b811461545957600080fd5b50565b61546581614a97565b811461547057600080fd5b5056fea264697066735822122006672e8dffcc446f2e3de69ed5e2c7d901b81f72477a5a6e23b47d44058d219464736f6c63430008070033000000000000000000000000db6c92a9ccaa27b394f4f496557c319dc22ebc67000000000000000000000000bf8be372e828f6a7cd812062b715875215180c7000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100cc00dc5d0a93a92ca00ae2228777be5c4c52f0c86dbd254781c2800909c096a3000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6170692e6f70656e686561646e66742e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004035633263343135333435653436656336386635663937663839356261366534653230306537383739643363656539633139363663623234656131313130663333

Deployed Bytecode

0x6080604052600436106102c95760003560e01c806370a0823111610175578063a475b5dd116100dc578063e36d649811610095578063e98665501161006f578063e986655014610abe578063f2fde38b14610ad5578063f3a04af414610afe578063f47c84c514610b29576102c9565b8063e36d649814610a2b578063e4d9acf514610a56578063e985e9c514610a81576102c9565b8063a475b5dd1461091b578063a68574d314610932578063b88d4fde1461096f578063c87b56dd14610998578063cb774d47146109d5578063e081b78114610a00576102c9565b80638d859f3e1161012e5780638d859f3e1461081d5780638da5cb5b146108485780638ef79e911461087357806395d89b411461089c578063a22cb465146108c7578063a27a9e7f146108f0576102c9565b806370a0823114610742578063715018a61461077f5780637bffb4ce146107965780637cb64759146107ad57806381ed9fdb146107d657806383a9e049146107f2576102c9565b806323b872dd116102345780634ce6a054116101ed57806351830227116101c757806351830227146106725780635a23dd991461069d5780635e957f93146106da5780636352211e14610705576102c9565b80634ce6a054146105df5780634e99b8001461060a5780634f6ccce714610635576102c9565b806323b872dd146104cf5780632eb4a7ab146104f85780632f745c591461052357806335a036e61461056057806342842e0e1461058b5780634a5ff749146105b4576102c9565b806309d42b301161028657806309d42b30146103cf5780630f7309e8146103fa578063163e1e611461042557806318160ddd1461044e5780631aee3f91146104795780631b57190e146104a4576102c9565b80630152f3f7146102ce57806301ffc9a7146102ea578063049c5c491461032757806306fdde031461033e578063081812fc14610369578063095ea7b3146103a6575b600080fd5b6102e860048036038101906102e39190613cec565b610b54565b005b3480156102f657600080fd5b50610311600480360381019061030c9190613c45565b610e67565b60405161031e919061441b565b60405180910390f35b34801561033357600080fd5b5061033c610ee1565b005b34801561034a57600080fd5b50610353610f89565b6040516103609190614451565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b9190613cec565b61101b565b60405161039d9190614399565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613b8b565b6110a0565b005b3480156103db57600080fd5b506103e46111b8565b6040516103f19190614833565b60405180910390f35b34801561040657600080fd5b5061040f6111bd565b60405161041c9190614451565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613bcb565b61124b565b005b34801561045a57600080fd5b506104636113e8565b6040516104709190614833565b60405180910390f35b34801561048557600080fd5b5061048e6113f5565b60405161049b9190614833565b60405180910390f35b3480156104b057600080fd5b506104b96113fa565b6040516104c69190614833565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613a15565b611400565b005b34801561050457600080fd5b5061050d611460565b60405161051a9190614436565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613b8b565b611466565b6040516105579190614833565b60405180910390f35b34801561056c57600080fd5b5061057561150b565b604051610582919061441b565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190613a15565b611519565b005b3480156105c057600080fd5b506105c9611539565b6040516105d691906143b4565b60405180910390f35b3480156105eb57600080fd5b506105f461155d565b60405161060191906143b4565b60405180910390f35b34801561061657600080fd5b5061061f611581565b60405161062c9190614451565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190613cec565b61160f565b6040516106699190614833565b60405180910390f35b34801561067e57600080fd5b50610687611680565b604051610694919061441b565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190613aeb565b611693565b6040516106d1919061441b565b60405180910390f35b3480156106e657600080fd5b506106ef611717565b6040516106fc9190614833565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190613cec565b611722565b6040516107399190614399565b60405180910390f35b34801561074e57600080fd5b50610769600480360381019061076491906139a8565b6117d4565b6040516107769190614833565b60405180910390f35b34801561078b57600080fd5b5061079461188c565b005b3480156107a257600080fd5b506107ab611914565b005b3480156107b957600080fd5b506107d460048036038101906107cf9190613c18565b6119bc565b005b6107f060048036038101906107eb9190613d19565b611a42565b005b3480156107fe57600080fd5b50610807611e51565b604051610814919061441b565b60405180910390f35b34801561082957600080fd5b50610832611e64565b60405161083f9190614833565b60405180910390f35b34801561085457600080fd5b5061085d611e6f565b60405161086a9190614399565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190613c9f565b611e99565b005b3480156108a857600080fd5b506108b1611f2b565b6040516108be9190614451565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e99190613b4b565b611fbd565b005b3480156108fc57600080fd5b50610905611fd3565b6040516109129190614833565b60405180910390f35b34801561092757600080fd5b50610930611fd9565b005b34801561093e57600080fd5b50610959600480360381019061095491906139a8565b6120c2565b6040516109669190614833565b60405180910390f35b34801561097b57600080fd5b5061099660048036038101906109919190613a68565b6120da565b005b3480156109a457600080fd5b506109bf60048036038101906109ba9190613cec565b61213c565b6040516109cc9190614451565b60405180910390f35b3480156109e157600080fd5b506109ea612221565b6040516109f79190614833565b60405180910390f35b348015610a0c57600080fd5b50610a15612227565b604051610a22919061441b565b60405180910390f35b348015610a3757600080fd5b50610a4061223a565b604051610a4d9190614833565b60405180910390f35b348015610a6257600080fd5b50610a6b612240565b604051610a789190614833565b60405180910390f35b348015610a8d57600080fd5b50610aa86004803603810190610aa391906139d5565b612245565b604051610ab5919061441b565b60405180910390f35b348015610aca57600080fd5b50610ad36122d9565b005b348015610ae157600080fd5b50610afc6004803603810190610af791906139a8565b612394565b005b348015610b0a57600080fd5b50610b1361248c565b604051610b209190614833565b60405180910390f35b348015610b3557600080fd5b50610b3e612492565b604051610b4b9190614833565b60405180910390f35b600e60009054906101000a900460ff16610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a906145b3565b60405180910390fd5b612710610bae6113e8565b10610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be5906147b3565b60405180910390fd5b61261681601454610bff91906148fc565b1115610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3790614493565b60405180910390fd5b600081118015610c51575060058111155b610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8790614553565b60405180910390fd5b348166f8b0a10e470000610ca49190614983565b1115610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90614473565b60405180910390fd5b600081662470269a010690610cfa9190614983565b90507f000000000000000000000000bf8be372e828f6a7cd812062b715875215180c7073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d62573d6000803e3d6000fd5b507f000000000000000000000000db6c92a9ccaa27b394f4f496557c319dc22ebc6773ffffffffffffffffffffffffffffffffffffffff166108fc8234610da991906149dd565b9081150290604051600060405180830381858888f19350505050158015610dd4573d6000803e3d6000fd5b5060005b82811015610e285760146000815480929190610df390614b46565b9190505550610e15336001610e066113e8565b610e1091906148fc565b612498565b8080610e2090614b46565b915050610dd8565b506000601254148015610e565750610e3e61150b565b80610e555750601060009054906101000a900460ff165b5b15610e6357436012819055505b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610eda5750610ed9826124b6565b5b9050919050565b610ee9612598565b73ffffffffffffffffffffffffffffffffffffffff16610f07611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f54906146d3565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b606060008054610f9890614ae3565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc490614ae3565b80156110115780601f10610fe657610100808354040283529160200191611011565b820191906000526020600020905b815481529060010190602001808311610ff457829003601f168201915b5050505050905090565b6000611026826125a0565b611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c906146b3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006110ab82611722565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390614733565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661113b612598565b73ffffffffffffffffffffffffffffffffffffffff16148061116a575061116981611164612598565b612245565b5b6111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090614613565b60405180910390fd5b6111b3838361260c565b505050565b600581565b600b80546111ca90614ae3565b80601f01602080910402602001604051908101604052809291908181526020018280546111f690614ae3565b80156112435780601f1061121857610100808354040283529160200191611243565b820191906000526020600020905b81548152906001019060200180831161122657829003601f168201915b505050505081565b611253612598565b73ffffffffffffffffffffffffffffffffffffffff16611271611e6f565b73ffffffffffffffffffffffffffffffffffffffff16146112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be906146d3565b60405180910390fd5b6127106112d26113e8565b10611312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611309906147b3565b60405180910390fd5b60fa8282905060135461132591906148fc565b1115611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90614693565b60405180910390fd5b60005b828290508110156113e3576013600081548092919061138790614b46565b91905055506113d08383838181106113a2576113a1614caa565b5b90506020020160208101906113b791906139a8565b60016113c16113e8565b6113cb91906148fc565b612498565b80806113db90614b46565b915050611369565b505050565b6000600880549050905090565b600281565b60135481565b61141161140b612598565b826126c5565b611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790614793565b60405180910390fd5b61145b8383836127a3565b505050565b600d5481565b6000611471836117d4565b82106114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a9906144b3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600061261660145414905090565b611534838383604051806020016040528060008152506120da565b505050565b7f000000000000000000000000db6c92a9ccaa27b394f4f496557c319dc22ebc6781565b7f000000000000000000000000bf8be372e828f6a7cd812062b715875215180c7081565b600c805461158e90614ae3565b80601f01602080910402602001604051908101604052809291908181526020018280546115ba90614ae3565b80156116075780601f106115dc57610100808354040283529160200191611607565b820191906000526020600020905b8154815290600101906020018083116115ea57829003601f168201915b505050505081565b60006116196113e8565b821061165a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611651906147d3565b60405180910390fd5b6008828154811061166e5761166d614caa565b5b90600052602060002001549050919050565b601060009054906101000a900460ff1681565b600080846040516020016116a7919061432e565b60405160208183030381529060405280519060200120905061170d848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54836129ff565b9150509392505050565b662470269a01069081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290614653565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90614633565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611894612598565b73ffffffffffffffffffffffffffffffffffffffff166118b2611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff906146d3565b60405180910390fd5b6119126000612a16565b565b61191c612598565b73ffffffffffffffffffffffffffffffffffffffff1661193a611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906146d3565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6119c4612598565b73ffffffffffffffffffffffffffffffffffffffff166119e2611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f906146d3565b60405180910390fd5b80600d8190555050565b600e60019054906101000a900460ff16611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a88906147f3565b60405180910390fd5b60011515611aa0338484611693565b151514611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad990614753565b60405180910390fd5b612710611aed6113e8565b10611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b24906147b3565b60405180910390fd5b61261683601454611b3e91906148fc565b1115611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690614493565b60405180910390fd5b600083118015611b90575060028311155b611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690614553565b60405180910390fd5b600283600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c1c91906148fc565b1115611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490614513565b60405180910390fd5b348366f8b0a10e470000611c719190614983565b1115611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca990614473565b60405180910390fd5b600083662470269a010690611cc79190614983565b90507f000000000000000000000000bf8be372e828f6a7cd812062b715875215180c7073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611d2f573d6000803e3d6000fd5b507f000000000000000000000000db6c92a9ccaa27b394f4f496557c319dc22ebc6773ffffffffffffffffffffffffffffffffffffffff166108fc8234611d7691906149dd565b9081150290604051600060405180830381858888f19350505050158015611da1573d6000803e3d6000fd5b5060005b84811015611e4a5760146000815480929190611dc090614b46565b9190505550600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e1590614b46565b9190505550611e37336001611e286113e8565b611e3291906148fc565b612498565b8080611e4290614b46565b915050611da5565b5050505050565b600e60019054906101000a900460ff1681565b66f8b0a10e47000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ea1612598565b73ffffffffffffffffffffffffffffffffffffffff16611ebf611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c906146d3565b60405180910390fd5b8181600c9190611f26929190613715565b505050565b606060018054611f3a90614ae3565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6690614ae3565b8015611fb35780601f10611f8857610100808354040283529160200191611fb3565b820191906000526020600020905b815481529060010190602001808311611f9657829003601f168201915b5050505050905090565b611fcf611fc8612598565b8383612adc565b5050565b60145481565b611fe1612598565b73ffffffffffffffffffffffffffffffffffffffff16611fff611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204c906146d3565b60405180910390fd5b601060009054906101000a900460ff16156120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90614713565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915090505481565b6120eb6120e5612598565b836126c5565b61212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212190614793565b60405180910390fd5b61213684848484612c49565b50505050565b6060612147826125a0565b612186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217d90614813565b60405180910390fd5b6060600060115411156121bd576121b6612710601154856121a791906148fc565b6121b19190614bbd565b612ca5565b90506121f6565b6040518060400160405280600281526020017f2d3100000000000000000000000000000000000000000000000000000000000081525090505b600c8160405160200161220a929190614375565b604051602081830303815290604052915050919050565b60115481565b600e60009054906101000a900460ff1681565b60125481565b60fa81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006011541461231e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612315906145f3565b60405180910390fd5b60006012541415612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90614773565b60405180910390fd5b6127106012544060001c6123789190614bbd565b601181905550600060115414156123925760016011819055505b565b61239c612598565b73ffffffffffffffffffffffffffffffffffffffff166123ba611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612407906146d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612477906144f3565b60405180910390fd5b61248981612a16565b50565b61261681565b61271081565b6124b2828260405180602001604052806000815250612e06565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061258157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612591575061259082612e61565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661267f83611722565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126d0826125a0565b61270f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612706906145d3565b60405180910390fd5b600061271a83611722565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061278957508373ffffffffffffffffffffffffffffffffffffffff166127718461101b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061279a57506127998185612245565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127c382611722565b73ffffffffffffffffffffffffffffffffffffffff1614612819576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612810906146f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288090614573565b60405180910390fd5b612894838383612ecb565b61289f60008261260c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128ef91906149dd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461294691906148fc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082612a0c8584612fdf565b1490509392505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4290614593565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c3c919061441b565b60405180910390a3505050565b612c548484846127a3565b612c6084848484613092565b612c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c96906144d3565b60405180910390fd5b50505050565b60606000821415612ced576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e01565b600082905060005b60008214612d1f578080612d0890614b46565b915050600a82612d189190614952565b9150612cf5565b60008167ffffffffffffffff811115612d3b57612d3a614cd9565b5b6040519080825280601f01601f191660200182016040528015612d6d5781602001600182028036833780820191505090505b5090505b60008514612dfa57600182612d8691906149dd565b9150600a85612d959190614bbd565b6030612da191906148fc565b60f81b818381518110612db757612db6614caa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612df39190614952565b9450612d71565b8093505050505b919050565b612e108383613229565b612e1d6000848484613092565b612e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e53906144d3565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ed68383836133f7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f1957612f14816133fc565b612f58565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f5757612f568382613445565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f9b57612f96816135b2565b612fda565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fd957612fd88282613683565b5b5b505050565b60008082905060005b845181101561308757600085828151811061300657613005614caa565b5b6020026020010151905080831161304757828160405160200161302a929190614349565b604051602081830303815290604052805190602001209250613073565b808360405160200161305a929190614349565b6040516020818303038152906040528051906020012092505b50808061307f90614b46565b915050612fe8565b508091505092915050565b60006130b38473ffffffffffffffffffffffffffffffffffffffff16613702565b1561321c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130dc612598565b8786866040518563ffffffff1660e01b81526004016130fe94939291906143cf565b602060405180830381600087803b15801561311857600080fd5b505af192505050801561314957506040513d601f19601f820116820180604052508101906131469190613c72565b60015b6131cc573d8060008114613179576040519150601f19603f3d011682016040523d82523d6000602084013e61317e565b606091505b506000815114156131c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bb906144d3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613221565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329090614673565b60405180910390fd5b6132a2816125a0565b156132e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d990614533565b60405180910390fd5b6132ee60008383612ecb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461333e91906148fc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613452846117d4565b61345c91906149dd565b9050600060076000848152602001908152602001600020549050818114613541576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135c691906149dd565b90506000600960008481526020019081526020016000205490506000600883815481106135f6576135f5614caa565b5b90600052602060002001549050806008838154811061361857613617614caa565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061366757613666614c7b565b5b6001900381819060005260206000200160009055905550505050565b600061368e836117d4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461372190614ae3565b90600052602060002090601f016020900481019282613743576000855561378a565b82601f1061375c57803560ff191683800117855561378a565b8280016001018555821561378a579182015b8281111561378957823582559160200191906001019061376e565b5b509050613797919061379b565b5090565b5b808211156137b457600081600090555060010161379c565b5090565b60006137cb6137c684614873565b61484e565b9050828152602081018484840111156137e7576137e6614d17565b5b6137f2848285614aa1565b509392505050565b60008135905061380981615400565b92915050565b60008083601f84011261382557613824614d0d565b5b8235905067ffffffffffffffff81111561384257613841614d08565b5b60208301915083602082028301111561385e5761385d614d12565b5b9250929050565b60008083601f84011261387b5761387a614d0d565b5b8235905067ffffffffffffffff81111561389857613897614d08565b5b6020830191508360208202830111156138b4576138b3614d12565b5b9250929050565b6000813590506138ca81615417565b92915050565b6000813590506138df8161542e565b92915050565b6000813590506138f481615445565b92915050565b60008151905061390981615445565b92915050565b600082601f83011261392457613923614d0d565b5b81356139348482602086016137b8565b91505092915050565b60008083601f84011261395357613952614d0d565b5b8235905067ffffffffffffffff8111156139705761396f614d08565b5b60208301915083600182028301111561398c5761398b614d12565b5b9250929050565b6000813590506139a28161545c565b92915050565b6000602082840312156139be576139bd614d21565b5b60006139cc848285016137fa565b91505092915050565b600080604083850312156139ec576139eb614d21565b5b60006139fa858286016137fa565b9250506020613a0b858286016137fa565b9150509250929050565b600080600060608486031215613a2e57613a2d614d21565b5b6000613a3c868287016137fa565b9350506020613a4d868287016137fa565b9250506040613a5e86828701613993565b9150509250925092565b60008060008060808587031215613a8257613a81614d21565b5b6000613a90878288016137fa565b9450506020613aa1878288016137fa565b9350506040613ab287828801613993565b925050606085013567ffffffffffffffff811115613ad357613ad2614d1c565b5b613adf8782880161390f565b91505092959194509250565b600080600060408486031215613b0457613b03614d21565b5b6000613b12868287016137fa565b935050602084013567ffffffffffffffff811115613b3357613b32614d1c565b5b613b3f86828701613865565b92509250509250925092565b60008060408385031215613b6257613b61614d21565b5b6000613b70858286016137fa565b9250506020613b81858286016138bb565b9150509250929050565b60008060408385031215613ba257613ba1614d21565b5b6000613bb0858286016137fa565b9250506020613bc185828601613993565b9150509250929050565b60008060208385031215613be257613be1614d21565b5b600083013567ffffffffffffffff811115613c0057613bff614d1c565b5b613c0c8582860161380f565b92509250509250929050565b600060208284031215613c2e57613c2d614d21565b5b6000613c3c848285016138d0565b91505092915050565b600060208284031215613c5b57613c5a614d21565b5b6000613c69848285016138e5565b91505092915050565b600060208284031215613c8857613c87614d21565b5b6000613c96848285016138fa565b91505092915050565b60008060208385031215613cb657613cb5614d21565b5b600083013567ffffffffffffffff811115613cd457613cd3614d1c565b5b613ce08582860161393d565b92509250509250929050565b600060208284031215613d0257613d01614d21565b5b6000613d1084828501613993565b91505092915050565b600080600060408486031215613d3257613d31614d21565b5b6000613d4086828701613993565b935050602084013567ffffffffffffffff811115613d6157613d60614d1c565b5b613d6d86828701613865565b92509250509250925092565b613d8281614a23565b82525050565b613d9181614a11565b82525050565b613da8613da382614a11565b614b8f565b82525050565b613db781614a35565b82525050565b613dc681614a41565b82525050565b613ddd613dd882614a41565b614ba1565b82525050565b6000613dee826148b9565b613df881856148cf565b9350613e08818560208601614ab0565b613e1181614d26565b840191505092915050565b6000613e27826148c4565b613e3181856148e0565b9350613e41818560208601614ab0565b613e4a81614d26565b840191505092915050565b6000613e60826148c4565b613e6a81856148f1565b9350613e7a818560208601614ab0565b80840191505092915050565b60008154613e9381614ae3565b613e9d81866148f1565b94506001821660008114613eb85760018114613ec957613efc565b60ff19831686528186019350613efc565b613ed2856148a4565b60005b83811015613ef457815481890152600182019150602081019050613ed5565b838801955050505b50505092915050565b6000613f126010836148e0565b9150613f1d82614d44565b602082019050919050565b6000613f35601a836148e0565b9150613f4082614d6d565b602082019050919050565b6000613f58602b836148e0565b9150613f6382614d96565b604082019050919050565b6000613f7b6032836148e0565b9150613f8682614de5565b604082019050919050565b6000613f9e6026836148e0565b9150613fa982614e34565b604082019050919050565b6000613fc16016836148e0565b9150613fcc82614e83565b602082019050919050565b6000613fe4601c836148e0565b9150613fef82614eac565b602082019050919050565b6000614007600e836148e0565b915061401282614ed5565b602082019050919050565b600061402a6024836148e0565b915061403582614efe565b604082019050919050565b600061404d6019836148e0565b915061405882614f4d565b602082019050919050565b60006140706012836148e0565b915061407b82614f76565b602082019050919050565b6000614093602c836148e0565b915061409e82614f9f565b604082019050919050565b60006140b6601d836148e0565b91506140c182614fee565b602082019050919050565b60006140d96038836148e0565b91506140e482615017565b604082019050919050565b60006140fc602a836148e0565b915061410782615066565b604082019050919050565b600061411f6029836148e0565b915061412a826150b5565b604082019050919050565b60006141426020836148e0565b915061414d82615104565b602082019050919050565b60006141656016836148e0565b91506141708261512d565b602082019050919050565b6000614188602c836148e0565b915061419382615156565b604082019050919050565b60006141ab6020836148e0565b91506141b6826151a5565b602082019050919050565b60006141ce6029836148e0565b91506141d9826151ce565b604082019050919050565b60006141f16011836148e0565b91506141fc8261521d565b602082019050919050565b60006142146021836148e0565b915061421f82615246565b604082019050919050565b60006142376014836148e0565b915061424282615295565b602082019050919050565b600061425a6020836148e0565b9150614265826152be565b602082019050919050565b600061427d6031836148e0565b9150614288826152e7565b604082019050919050565b60006142a06008836148e0565b91506142ab82615336565b602082019050919050565b60006142c3602c836148e0565b91506142ce8261535f565b604082019050919050565b60006142e66015836148e0565b91506142f1826153ae565b602082019050919050565b60006143096010836148e0565b9150614314826153d7565b602082019050919050565b61432881614a97565b82525050565b600061433a8284613d97565b60148201915081905092915050565b60006143558285613dcc565b6020820191506143658284613dcc565b6020820191508190509392505050565b60006143818285613e86565b915061438d8284613e55565b91508190509392505050565b60006020820190506143ae6000830184613d88565b92915050565b60006020820190506143c96000830184613d79565b92915050565b60006080820190506143e46000830187613d88565b6143f16020830186613d88565b6143fe604083018561431f565b81810360608301526144108184613de3565b905095945050505050565b60006020820190506144306000830184613dae565b92915050565b600060208201905061444b6000830184613dbd565b92915050565b6000602082019050818103600083015261446b8184613e1c565b905092915050565b6000602082019050818103600083015261448c81613f05565b9050919050565b600060208201905081810360008301526144ac81613f28565b9050919050565b600060208201905081810360008301526144cc81613f4b565b9050919050565b600060208201905081810360008301526144ec81613f6e565b9050919050565b6000602082019050818103600083015261450c81613f91565b9050919050565b6000602082019050818103600083015261452c81613fb4565b9050919050565b6000602082019050818103600083015261454c81613fd7565b9050919050565b6000602082019050818103600083015261456c81613ffa565b9050919050565b6000602082019050818103600083015261458c8161401d565b9050919050565b600060208201905081810360008301526145ac81614040565b9050919050565b600060208201905081810360008301526145cc81614063565b9050919050565b600060208201905081810360008301526145ec81614086565b9050919050565b6000602082019050818103600083015261460c816140a9565b9050919050565b6000602082019050818103600083015261462c816140cc565b9050919050565b6000602082019050818103600083015261464c816140ef565b9050919050565b6000602082019050818103600083015261466c81614112565b9050919050565b6000602082019050818103600083015261468c81614135565b9050919050565b600060208201905081810360008301526146ac81614158565b9050919050565b600060208201905081810360008301526146cc8161417b565b9050919050565b600060208201905081810360008301526146ec8161419e565b9050919050565b6000602082019050818103600083015261470c816141c1565b9050919050565b6000602082019050818103600083015261472c816141e4565b9050919050565b6000602082019050818103600083015261474c81614207565b9050919050565b6000602082019050818103600083015261476c8161422a565b9050919050565b6000602082019050818103600083015261478c8161424d565b9050919050565b600060208201905081810360008301526147ac81614270565b9050919050565b600060208201905081810360008301526147cc81614293565b9050919050565b600060208201905081810360008301526147ec816142b6565b9050919050565b6000602082019050818103600083015261480c816142d9565b9050919050565b6000602082019050818103600083015261482c816142fc565b9050919050565b6000602082019050614848600083018461431f565b92915050565b6000614858614869565b90506148648282614b15565b919050565b6000604051905090565b600067ffffffffffffffff82111561488e5761488d614cd9565b5b61489782614d26565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061490782614a97565b915061491283614a97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561494757614946614bee565b5b828201905092915050565b600061495d82614a97565b915061496883614a97565b92508261497857614977614c1d565b5b828204905092915050565b600061498e82614a97565b915061499983614a97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149d2576149d1614bee565b5b828202905092915050565b60006149e882614a97565b91506149f383614a97565b925082821015614a0657614a05614bee565b5b828203905092915050565b6000614a1c82614a77565b9050919050565b6000614a2e82614a77565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ace578082015181840152602081019050614ab3565b83811115614add576000848401525b50505050565b60006002820490506001821680614afb57607f821691505b60208210811415614b0f57614b0e614c4c565b5b50919050565b614b1e82614d26565b810181811067ffffffffffffffff82111715614b3d57614b3c614cd9565b5b80604052505050565b6000614b5182614a97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b8457614b83614bee565b5b600182019050919050565b6000614b9a82614bab565b9050919050565b6000819050919050565b6000614bb682614d37565b9050919050565b6000614bc882614a97565b9150614bd383614a97565b925082614be357614be2614c1d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b7f416c6c207075626c696320746f6b656e7320736f6c64206f7574000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656465642070726573616c65206c696d697400000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f52756e206f7574206f66206769667420746f6b656e7300000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f416c72656164792072657665616c656421000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420696e207468652077686974656c697374000000000000000000000000600082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f556e6578697374656e7420746f6b656e00000000000000000000000000000000600082015250565b61540981614a11565b811461541457600080fd5b50565b61542081614a35565b811461542b57600080fd5b50565b61543781614a41565b811461544257600080fd5b50565b61544e81614a4b565b811461545957600080fd5b50565b61546581614a97565b811461547057600080fd5b5056fea264697066735822122006672e8dffcc446f2e3de69ed5e2c7d901b81f72477a5a6e23b47d44058d219464736f6c63430008070033

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

000000000000000000000000db6c92a9ccaa27b394f4f496557c319dc22ebc67000000000000000000000000bf8be372e828f6a7cd812062b715875215180c7000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100cc00dc5d0a93a92ca00ae2228777be5c4c52f0c86dbd254781c2800909c096a3000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6170692e6f70656e686561646e66742e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004035633263343135333435653436656336386635663937663839356261366534653230306537383739643363656539633139363663623234656131313130663333

-----Decoded View---------------
Arg [0] : _teamAddr (address): 0xdb6C92a9CCAa27B394F4f496557C319dC22eBc67
Arg [1] : _initialRaffle (address): 0xBF8Be372E828f6a7Cd812062B715875215180C70
Arg [2] : _tokenBaseURI (string): https://api.openheadnft.com/metadata/
Arg [3] : _provenance (string): 5c2c415345e46ec68f5f97f895ba6e4e200e7879d3cee9c1966cb24ea1110f33
Arg [4] : _merkleRoot (bytes32): 0xcc00dc5d0a93a92ca00ae2228777be5c4c52f0c86dbd254781c2800909c096a3

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000db6c92a9ccaa27b394f4f496557c319dc22ebc67
Arg [1] : 000000000000000000000000bf8be372e828f6a7cd812062b715875215180c70
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : cc00dc5d0a93a92ca00ae2228777be5c4c52f0c86dbd254781c2800909c096a3
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [6] : 68747470733a2f2f6170692e6f70656e686561646e66742e636f6d2f6d657461
Arg [7] : 646174612f000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [9] : 3563326334313533343565343665633638663566393766383935626136653465
Arg [10] : 3230306537383739643363656539633139363663623234656131313130663333


Deployed Bytecode Sourcemap

46647:4819:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49472:749;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35736:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48332:80;;;;;;;;;;;;;:::i;:::-;;23230:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24789:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24312:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46987:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47177:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51115:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36376:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47032:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47476:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25539:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47237:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36044:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47897:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25949:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47080:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47126:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47206:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36566:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47380:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48006:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46925:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22924:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22654:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43597:103;;;;;;;;;;;;;:::i;:::-;;48237:89;;;;;;;;;;;;;:::i;:::-;;48520:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50227:882;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47294:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46878:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42946:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48418:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23399:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25082:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47508:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48626:111;;;;;;;;;;;;;:::i;:::-;;47322:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26205:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49069:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47405:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47269:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47438:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46785:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25308:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48743:320;;;;;;;;;;;;;:::i;:::-;;43855:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46736:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46831:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49472:749;49536:8;;;;;;;;;;;49528:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;46868:5;49582:13;:11;:13::i;:::-;:26;49574:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;46776:4;49651:6;49636:12;;:21;;;;:::i;:::-;:38;;49628:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49729:1;49720:6;:10;:36;;;;;47026:1;49734:6;:22;;49720:36;49712:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49808:9;49798:6;46910:10;49790:14;;;;:::i;:::-;:27;;49782:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;49847:15;49877:6;46961:21;49865:18;;;;:::i;:::-;49847:36;;49890:13;:22;;:34;49913:10;49890:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49931:8;:17;;:41;49961:10;49949:9;:22;;;;:::i;:::-;49931:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49985:6;49981:113;50001:6;49997:1;:10;49981:113;;;50023:12;;:14;;;;;;;;;:::i;:::-;;;;;;50046:40;50056:10;50084:1;50068:13;:11;:13::i;:::-;:17;;;;:::i;:::-;50046:9;:40::i;:::-;50009:3;;;;;:::i;:::-;;;;49981:113;;;;50128:1;50106:18;;:23;:58;;;;;50134:17;:15;:17::i;:::-;:29;;;;50155:8;;;;;;;;;;;50134:29;50106:58;50102:114;;;50196:12;50175:18;:33;;;;50102:114;49521:700;49472:749;:::o;35736:224::-;35838:4;35877:35;35862:50;;;:11;:50;;;;:90;;;;35916:36;35940:11;35916:23;:36::i;:::-;35862:90;35855:97;;35736:224;;;:::o;48332:80::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48398:8:::1;;;;;;;;;;;48397:9;48386:8;;:20;;;;;;;;;;;;;;;;;;48332:80::o:0;23230:100::-;23284:13;23317:5;23310:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23230:100;:::o;24789:221::-;24865:7;24893:16;24901:7;24893;:16::i;:::-;24885:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24978:15;:24;24994:7;24978:24;;;;;;;;;;;;;;;;;;;;;24971:31;;24789:221;;;:::o;24312:411::-;24393:13;24409:23;24424:7;24409:14;:23::i;:::-;24393:39;;24457:5;24451:11;;:2;:11;;;;24443:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24551:5;24535:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24560:37;24577:5;24584:12;:10;:12::i;:::-;24560:16;:37::i;:::-;24535:62;24513:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24694:21;24703:2;24707:7;24694:8;:21::i;:::-;24382:341;24312:411;;:::o;46987:40::-;47026:1;46987:40;:::o;47177:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51115:348::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46868:5:::1;51193:13;:11;:13::i;:::-;:26;51185:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;46823:3;51262:9;;:16;;51247:12;;:31;;;;:::i;:::-;:46;;51239:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51334:9;51329:129;51353:9;;:16;;51349:1;:20;51329:129;;;51385:12;;:14;;;;;;;;;:::i;:::-;;;;;;51408:42;51418:9;;51428:1;51418:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;51448:1;51432:13;:11;:13::i;:::-;:17;;;;:::i;:::-;51408:9;:42::i;:::-;51371:3;;;;;:::i;:::-;;;;51329:129;;;;51115:348:::0;;:::o;36376:113::-;36437:7;36464:10;:17;;;;36457:24;;36376:113;:::o;47032:41::-;47072:1;47032:41;:::o;47476:27::-;;;;:::o;25539:339::-;25734:41;25753:12;:10;:12::i;:::-;25767:7;25734:18;:41::i;:::-;25726:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25842:28;25852:4;25858:2;25862:7;25842:9;:28::i;:::-;25539:339;;;:::o;47237:25::-;;;;:::o;36044:256::-;36141:7;36177:23;36194:5;36177:16;:23::i;:::-;36169:5;:31;36161:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36266:12;:19;36279:5;36266:19;;;;;;;;;;;;;;;:26;36286:5;36266:26;;;;;;;;;;;;36259:33;;36044:256;;;;:::o;47897:103::-;47945:4;46776;47965:12;;:29;47958:36;;47897:103;:::o;25949:185::-;26087:39;26104:4;26110:2;26114:7;26087:39;;;;;;;;;;;;:16;:39::i;:::-;25949:185;;;:::o;47080:41::-;;;:::o;47126:46::-;;;:::o;47206:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36566:233::-;36641:7;36677:30;:28;:30::i;:::-;36669:5;:38;36661:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36774:10;36785:5;36774:17;;;;;;;;:::i;:::-;;;;;;;;;;36767:24;;36566:233;;;:::o;47380:20::-;;;;;;;;;;;;;:::o;48006:225::-;48098:4;48111:12;48153:7;48136:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;48126:36;;;;;;48111:51;;48176:49;48195:11;;48176:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48208:10;;48220:4;48176:18;:49::i;:::-;48169:56;;;48006:225;;;;;:::o;46925:57::-;46961:21;46925:57;:::o;22924:239::-;22996:7;23016:13;23032:7;:16;23040:7;23032:16;;;;;;;;;;;;;;;;;;;;;23016:32;;23084:1;23067:19;;:5;:19;;;;23059:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23150:5;23143:12;;;22924:239;;;:::o;22654:208::-;22726:7;22771:1;22754:19;;:5;:19;;;;22746:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22838:9;:16;22848:5;22838:16;;;;;;;;;;;;;;;;22831:23;;22654:208;;;:::o;43597:103::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43662:30:::1;43689:1;43662:18;:30::i;:::-;43597:103::o:0;48237:89::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48309:11:::1;;;;;;;;;;;48308:12;48294:11;;:26;;;;;;;;;;;;;;;;;;48237:89::o:0;48520:100::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48603:11:::1;48590:10;:24;;;;48520:100:::0;:::o;50227:882::-;50324:11;;;;;;;;;;;50316:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;50412:4;50376:40;;:32;50390:10;50402:5;;50376:13;:32::i;:::-;:40;;;50368:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46868:5;50456:13;:11;:13::i;:::-;:26;50448:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;46776:4;50525:6;50510:12;;:21;;;;:::i;:::-;:38;;50502:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;50603:1;50594:6;:10;:37;;;;;47072:1;50608:6;:23;;50594:37;50586:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47072:1;50696:6;50665:16;:28;50682:10;50665:28;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:54;;50657:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;50779:9;50769:6;46910:10;50761:14;;;;:::i;:::-;:27;;50753:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;50818:15;50848:6;46961:21;50836:18;;;;:::i;:::-;50818:36;;50861:13;:22;;:34;50884:10;50861:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50902:8;:17;;:41;50932:10;50920:9;:22;;;;:::i;:::-;50902:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50956:6;50952:152;50972:6;50968:1;:10;50952:152;;;50994:12;;:14;;;;;;;;;:::i;:::-;;;;;;51017:16;:28;51034:10;51017:28;;;;;;;;;;;;;;;;:30;;;;;;;;;:::i;:::-;;;;;;51056:40;51066:10;51094:1;51078:13;:11;:13::i;:::-;:17;;;;:::i;:::-;51056:9;:40::i;:::-;50980:3;;;;;:::i;:::-;;;;50952:152;;;;50309:800;50227:882;;;:::o;47294:23::-;;;;;;;;;;;;;:::o;46878:42::-;46910:10;46878:42;:::o;42946:87::-;42992:7;43019:6;;;;;;;;;;;43012:13;;42946:87;:::o;48418:96::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48505:3:::1;;48490:12;:18;;;;;;;:::i;:::-;;48418:96:::0;;:::o;23399:104::-;23455:13;23488:7;23481:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23399:104;:::o;25082:155::-;25177:52;25196:12;:10;:12::i;:::-;25210:8;25220;25177:18;:52::i;:::-;25082:155;;:::o;47508:27::-;;;;:::o;48626:111::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48679:8:::1;;;;;;;;;;;48678:9;48670:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;48727:4;48716:8;;:15;;;;;;;;;;;;;;;;;;48626:111::o:0;47322:51::-;;;;;;;;;;;;;;;;;:::o;26205:328::-;26380:41;26399:12;:10;:12::i;:::-;26413:7;26380:18;:41::i;:::-;26372:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26486:39;26500:4;26506:2;26510:7;26519:5;26486:13;:39::i;:::-;26205:328;;;;:::o;49069:397::-;49142:13;49172:16;49180:7;49172;:16::i;:::-;49164:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49218:24;49271:1;49255:13;;:17;49251:144;;;49296:51;46868:5;49308:13;;49298:7;:23;;;;:::i;:::-;49297:38;;;;:::i;:::-;49296:49;:51::i;:::-;49283:64;;49251:144;;;49370:17;;;;;;;;;;;;;;;;;;;49251:144;49434:12;49448:10;49417:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49403:57;;;49069:397;;;:::o;47405:28::-;;;;:::o;47269:20::-;;;;;;;;;;;;;:::o;47438:33::-;;;;:::o;46785:41::-;46823:3;46785:41;:::o;25308:164::-;25405:4;25429:18;:25;25448:5;25429:25;;;;;;;;;;;;;;;:35;25455:8;25429:35;;;;;;;;;;;;;;;;;;;;;;;;;25422:42;;25308:164;;;;:::o;48743:320::-;48810:1;48793:13;;:18;48785:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;48882:1;48860:18;;:23;;48852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46868:5;48960:18;;48950:29;48945:35;;:48;;;;:::i;:::-;48929:13;:64;;;;49021:1;49004:13;;:18;49000:58;;;49049:1;49033:13;:17;;;;49000:58;48743:320::o;43855:201::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43964:1:::1;43944:22;;:8;:22;;;;43936:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44020:28;44039:8;44020:18;:28::i;:::-;43855:201:::0;:::o;46736:44::-;46776:4;46736:44;:::o;46831:42::-;46868:5;46831:42;:::o;29027:110::-;29103:26;29113:2;29117:7;29103:26;;;;;;;;;;;;:9;:26::i;:::-;29027:110;;:::o;22285:305::-;22387:4;22439:25;22424:40;;;:11;:40;;;;:105;;;;22496:33;22481:48;;;:11;:48;;;;22424:105;:158;;;;22546:36;22570:11;22546:23;:36::i;:::-;22424:158;22404:178;;22285:305;;;:::o;20679:98::-;20732:7;20759:10;20752:17;;20679:98;:::o;28043:127::-;28108:4;28160:1;28132:30;;:7;:16;28140:7;28132:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28125:37;;28043:127;;;:::o;32025:174::-;32127:2;32100:15;:24;32116:7;32100:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32183:7;32179:2;32145:46;;32154:23;32169:7;32154:14;:23::i;:::-;32145:46;;;;;;;;;;;;32025:174;;:::o;28337:348::-;28430:4;28455:16;28463:7;28455;:16::i;:::-;28447:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28531:13;28547:23;28562:7;28547:14;:23::i;:::-;28531:39;;28600:5;28589:16;;:7;:16;;;:51;;;;28633:7;28609:31;;:20;28621:7;28609:11;:20::i;:::-;:31;;;28589:51;:87;;;;28644:32;28661:5;28668:7;28644:16;:32::i;:::-;28589:87;28581:96;;;28337:348;;;;:::o;31329:578::-;31488:4;31461:31;;:23;31476:7;31461:14;:23::i;:::-;:31;;;31453:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31571:1;31557:16;;:2;:16;;;;31549:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31627:39;31648:4;31654:2;31658:7;31627:20;:39::i;:::-;31731:29;31748:1;31752:7;31731:8;:29::i;:::-;31792:1;31773:9;:15;31783:4;31773:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31821:1;31804:9;:13;31814:2;31804:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31852:2;31833:7;:16;31841:7;31833:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31891:7;31887:2;31872:27;;31881:4;31872:27;;;;;;;;;;;;31329:578;;;:::o;45322:190::-;45447:4;45500;45471:25;45484:5;45491:4;45471:12;:25::i;:::-;:33;45464:40;;45322:190;;;;;:::o;44216:191::-;44290:16;44309:6;;;;;;;;;;;44290:25;;44335:8;44326:6;;:17;;;;;;;;;;;;;;;;;;44390:8;44359:40;;44380:8;44359:40;;;;;;;;;;;;44279:128;44216:191;:::o;32341:315::-;32496:8;32487:17;;:5;:17;;;;32479:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32583:8;32545:18;:25;32564:5;32545:25;;;;;;;;;;;;;;;:35;32571:8;32545:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32629:8;32607:41;;32622:5;32607:41;;;32639:8;32607:41;;;;;;:::i;:::-;;;;;;;;32341:315;;;:::o;27415:::-;27572:28;27582:4;27588:2;27592:7;27572:9;:28::i;:::-;27619:48;27642:4;27648:2;27652:7;27661:5;27619:22;:48::i;:::-;27611:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27415:315;;;;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;29364:321::-;29494:18;29500:2;29504:7;29494:5;:18::i;:::-;29545:54;29576:1;29580:2;29584:7;29593:5;29545:22;:54::i;:::-;29523:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29364:321;;;:::o;13088:157::-;13173:4;13212:25;13197:40;;;:11;:40;;;;13190:47;;13088:157;;;:::o;37412:589::-;37556:45;37583:4;37589:2;37593:7;37556:26;:45::i;:::-;37634:1;37618:18;;:4;:18;;;37614:187;;;37653:40;37685:7;37653:31;:40::i;:::-;37614:187;;;37723:2;37715:10;;:4;:10;;;37711:90;;37742:47;37775:4;37781:7;37742:32;:47::i;:::-;37711:90;37614:187;37829:1;37815:16;;:2;:16;;;37811:183;;;37848:45;37885:7;37848:36;:45::i;:::-;37811:183;;;37921:4;37915:10;;:2;:10;;;37911:83;;37942:40;37970:2;37974:7;37942:27;:40::i;:::-;37911:83;37811:183;37412:589;;;:::o;45874:701::-;45957:7;45977:20;46000:4;45977:27;;46020:9;46015:523;46039:5;:12;46035:1;:16;46015:523;;;46073:20;46096:5;46102:1;46096:8;;;;;;;;:::i;:::-;;;;;;;;46073:31;;46139:12;46123;:28;46119:408;;46293:12;46307;46276:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46266:55;;;;;;46251:70;;46119:408;;;46483:12;46497;46466:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46456:55;;;;;;46441:70;;46119:408;46058:480;46053:3;;;;;:::i;:::-;;;;46015:523;;;;46555:12;46548:19;;;45874:701;;;;:::o;33221:799::-;33376:4;33397:15;:2;:13;;;:15::i;:::-;33393:620;;;33449:2;33433:36;;;33470:12;:10;:12::i;:::-;33484:4;33490:7;33499:5;33433:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33429:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33692:1;33675:6;:13;:18;33671:272;;;33718:60;;;;;;;;;;:::i;:::-;;;;;;;;33671:272;33893:6;33887:13;33878:6;33874:2;33870:15;33863:38;33429:529;33566:41;;;33556:51;;;:6;:51;;;;33549:58;;;;;33393:620;33997:4;33990:11;;33221:799;;;;;;;:::o;30021:382::-;30115:1;30101:16;;:2;:16;;;;30093:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30174:16;30182:7;30174;:16::i;:::-;30173:17;30165:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30236:45;30265:1;30269:2;30273:7;30236:20;:45::i;:::-;30311:1;30294:9;:13;30304:2;30294:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30342:2;30323:7;:16;30331:7;30323:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30387:7;30383:2;30362:33;;30379:1;30362:33;;;;;;;;;;;;30021:382;;:::o;34592:126::-;;;;:::o;38724:164::-;38828:10;:17;;;;38801:15;:24;38817:7;38801:24;;;;;;;;;;;:44;;;;38856:10;38872:7;38856:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38724:164;:::o;39515:988::-;39781:22;39831:1;39806:22;39823:4;39806:16;:22::i;:::-;:26;;;;:::i;:::-;39781:51;;39843:18;39864:17;:26;39882:7;39864:26;;;;;;;;;;;;39843:47;;40011:14;39997:10;:28;39993:328;;40042:19;40064:12;:18;40077:4;40064:18;;;;;;;;;;;;;;;:34;40083:14;40064:34;;;;;;;;;;;;40042:56;;40148:11;40115:12;:18;40128:4;40115:18;;;;;;;;;;;;;;;:30;40134:10;40115:30;;;;;;;;;;;:44;;;;40265:10;40232:17;:30;40250:11;40232:30;;;;;;;;;;;:43;;;;40027:294;39993:328;40417:17;:26;40435:7;40417:26;;;;;;;;;;;40410:33;;;40461:12;:18;40474:4;40461:18;;;;;;;;;;;;;;;:34;40480:14;40461:34;;;;;;;;;;;40454:41;;;39596:907;;39515:988;;:::o;40798:1079::-;41051:22;41096:1;41076:10;:17;;;;:21;;;;:::i;:::-;41051:46;;41108:18;41129:15;:24;41145:7;41129:24;;;;;;;;;;;;41108:45;;41480:19;41502:10;41513:14;41502:26;;;;;;;;:::i;:::-;;;;;;;;;;41480:48;;41566:11;41541:10;41552;41541:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;41677:10;41646:15;:28;41662:11;41646:28;;;;;;;;;;;:41;;;;41818:15;:24;41834:7;41818:24;;;;;;;;;;;41811:31;;;41853:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40869:1008;;;40798:1079;:::o;38302:221::-;38387:14;38404:20;38421:2;38404:16;:20::i;:::-;38387:37;;38462:7;38435:12;:16;38448:2;38435:16;;;;;;;;;;;;;;;:24;38452:6;38435:24;;;;;;;;;;;:34;;;;38509:6;38480:17;:26;38498:7;38480:26;;;;;;;;;;;:35;;;;38376:147;38302:221;;:::o;2944:387::-;3004:4;3212:12;3279:7;3267:20;3259:28;;3322:1;3315:4;:8;3308:15;;;2944:387;;;:::o;-1:-1:-1:-;;;;;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1176:::-;1249:8;1259:6;1309:3;1302:4;1294:6;1290:17;1286:27;1276:122;;1317:79;;:::i;:::-;1276:122;1430:6;1417:20;1407:30;;1460:18;1452:6;1449:30;1446:117;;;1482:79;;:::i;:::-;1446:117;1596:4;1588:6;1584:17;1572:29;;1650:3;1642:4;1634:6;1630:17;1620:8;1616:32;1613:41;1610:128;;;1657:79;;:::i;:::-;1610:128;1176:568;;;;;:::o;1750:133::-;1793:5;1831:6;1818:20;1809:29;;1847:30;1871:5;1847:30;:::i;:::-;1750:133;;;;:::o;1889:139::-;1935:5;1973:6;1960:20;1951:29;;1989:33;2016:5;1989:33;:::i;:::-;1889:139;;;;:::o;2034:137::-;2079:5;2117:6;2104:20;2095:29;;2133:32;2159:5;2133:32;:::i;:::-;2034:137;;;;:::o;2177:141::-;2233:5;2264:6;2258:13;2249:22;;2280:32;2306:5;2280:32;:::i;:::-;2177:141;;;;:::o;2337:338::-;2392:5;2441:3;2434:4;2426:6;2422:17;2418:27;2408:122;;2449:79;;:::i;:::-;2408:122;2566:6;2553:20;2591:78;2665:3;2657:6;2650:4;2642:6;2638:17;2591:78;:::i;:::-;2582:87;;2398:277;2337:338;;;;:::o;2695:553::-;2753:8;2763:6;2813:3;2806:4;2798:6;2794:17;2790:27;2780:122;;2821:79;;:::i;:::-;2780:122;2934:6;2921:20;2911:30;;2964:18;2956:6;2953:30;2950:117;;;2986:79;;:::i;:::-;2950:117;3100:4;3092:6;3088:17;3076:29;;3154:3;3146:4;3138:6;3134:17;3124:8;3120:32;3117:41;3114:128;;;3161:79;;:::i;:::-;3114:128;2695:553;;;;;:::o;3254:139::-;3300:5;3338:6;3325:20;3316:29;;3354:33;3381:5;3354:33;:::i;:::-;3254:139;;;;:::o;3399:329::-;3458:6;3507:2;3495:9;3486:7;3482:23;3478:32;3475:119;;;3513:79;;:::i;:::-;3475:119;3633:1;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3604:117;3399:329;;;;:::o;3734:474::-;3802:6;3810;3859:2;3847:9;3838:7;3834:23;3830:32;3827:119;;;3865:79;;:::i;:::-;3827:119;3985:1;4010:53;4055:7;4046:6;4035:9;4031:22;4010:53;:::i;:::-;4000:63;;3956:117;4112:2;4138:53;4183:7;4174:6;4163:9;4159:22;4138:53;:::i;:::-;4128:63;;4083:118;3734:474;;;;;:::o;4214:619::-;4291:6;4299;4307;4356:2;4344:9;4335:7;4331:23;4327:32;4324:119;;;4362:79;;:::i;:::-;4324:119;4482:1;4507:53;4552:7;4543:6;4532:9;4528:22;4507:53;:::i;:::-;4497:63;;4453:117;4609:2;4635:53;4680:7;4671:6;4660:9;4656:22;4635:53;:::i;:::-;4625:63;;4580:118;4737:2;4763:53;4808:7;4799:6;4788:9;4784:22;4763:53;:::i;:::-;4753:63;;4708:118;4214:619;;;;;:::o;4839:943::-;4934:6;4942;4950;4958;5007:3;4995:9;4986:7;4982:23;4978:33;4975:120;;;5014:79;;:::i;:::-;4975:120;5134:1;5159:53;5204:7;5195:6;5184:9;5180:22;5159:53;:::i;:::-;5149:63;;5105:117;5261:2;5287:53;5332:7;5323:6;5312:9;5308:22;5287:53;:::i;:::-;5277:63;;5232:118;5389:2;5415:53;5460:7;5451:6;5440:9;5436:22;5415:53;:::i;:::-;5405:63;;5360:118;5545:2;5534:9;5530:18;5517:32;5576:18;5568:6;5565:30;5562:117;;;5598:79;;:::i;:::-;5562:117;5703:62;5757:7;5748:6;5737:9;5733:22;5703:62;:::i;:::-;5693:72;;5488:287;4839:943;;;;;;;:::o;5788:704::-;5883:6;5891;5899;5948:2;5936:9;5927:7;5923:23;5919:32;5916:119;;;5954:79;;:::i;:::-;5916:119;6074:1;6099:53;6144:7;6135:6;6124:9;6120:22;6099:53;:::i;:::-;6089:63;;6045:117;6229:2;6218:9;6214:18;6201:32;6260:18;6252:6;6249:30;6246:117;;;6282:79;;:::i;:::-;6246:117;6395:80;6467:7;6458:6;6447:9;6443:22;6395:80;:::i;:::-;6377:98;;;;6172:313;5788:704;;;;;:::o;6498:468::-;6563:6;6571;6620:2;6608:9;6599:7;6595:23;6591:32;6588:119;;;6626:79;;:::i;:::-;6588:119;6746:1;6771:53;6816:7;6807:6;6796:9;6792:22;6771:53;:::i;:::-;6761:63;;6717:117;6873:2;6899:50;6941:7;6932:6;6921:9;6917:22;6899:50;:::i;:::-;6889:60;;6844:115;6498:468;;;;;:::o;6972:474::-;7040:6;7048;7097:2;7085:9;7076:7;7072:23;7068:32;7065:119;;;7103:79;;:::i;:::-;7065:119;7223:1;7248:53;7293:7;7284:6;7273:9;7269:22;7248:53;:::i;:::-;7238:63;;7194:117;7350:2;7376:53;7421:7;7412:6;7401:9;7397:22;7376:53;:::i;:::-;7366:63;;7321:118;6972:474;;;;;:::o;7452:559::-;7538:6;7546;7595:2;7583:9;7574:7;7570:23;7566:32;7563:119;;;7601:79;;:::i;:::-;7563:119;7749:1;7738:9;7734:17;7721:31;7779:18;7771:6;7768:30;7765:117;;;7801:79;;:::i;:::-;7765:117;7914:80;7986:7;7977:6;7966:9;7962:22;7914:80;:::i;:::-;7896:98;;;;7692:312;7452:559;;;;;:::o;8017:329::-;8076:6;8125:2;8113:9;8104:7;8100:23;8096:32;8093:119;;;8131:79;;:::i;:::-;8093:119;8251:1;8276:53;8321:7;8312:6;8301:9;8297:22;8276:53;:::i;:::-;8266:63;;8222:117;8017:329;;;;:::o;8352:327::-;8410:6;8459:2;8447:9;8438:7;8434:23;8430:32;8427:119;;;8465:79;;:::i;:::-;8427:119;8585:1;8610:52;8654:7;8645:6;8634:9;8630:22;8610:52;:::i;:::-;8600:62;;8556:116;8352:327;;;;:::o;8685:349::-;8754:6;8803:2;8791:9;8782:7;8778:23;8774:32;8771:119;;;8809:79;;:::i;:::-;8771:119;8929:1;8954:63;9009:7;9000:6;8989:9;8985:22;8954:63;:::i;:::-;8944:73;;8900:127;8685:349;;;;:::o;9040:529::-;9111:6;9119;9168:2;9156:9;9147:7;9143:23;9139:32;9136:119;;;9174:79;;:::i;:::-;9136:119;9322:1;9311:9;9307:17;9294:31;9352:18;9344:6;9341:30;9338:117;;;9374:79;;:::i;:::-;9338:117;9487:65;9544:7;9535:6;9524:9;9520:22;9487:65;:::i;:::-;9469:83;;;;9265:297;9040:529;;;;;:::o;9575:329::-;9634:6;9683:2;9671:9;9662:7;9658:23;9654:32;9651:119;;;9689:79;;:::i;:::-;9651:119;9809:1;9834:53;9879:7;9870:6;9859:9;9855:22;9834:53;:::i;:::-;9824:63;;9780:117;9575:329;;;;:::o;9910:704::-;10005:6;10013;10021;10070:2;10058:9;10049:7;10045:23;10041:32;10038:119;;;10076:79;;:::i;:::-;10038:119;10196:1;10221:53;10266:7;10257:6;10246:9;10242:22;10221:53;:::i;:::-;10211:63;;10167:117;10351:2;10340:9;10336:18;10323:32;10382:18;10374:6;10371:30;10368:117;;;10404:79;;:::i;:::-;10368:117;10517:80;10589:7;10580:6;10569:9;10565:22;10517:80;:::i;:::-;10499:98;;;;10294:313;9910:704;;;;;:::o;10620:142::-;10723:32;10749:5;10723:32;:::i;:::-;10718:3;10711:45;10620:142;;:::o;10768:118::-;10855:24;10873:5;10855:24;:::i;:::-;10850:3;10843:37;10768:118;;:::o;10892:157::-;10997:45;11017:24;11035:5;11017:24;:::i;:::-;10997:45;:::i;:::-;10992:3;10985:58;10892:157;;:::o;11055:109::-;11136:21;11151:5;11136:21;:::i;:::-;11131:3;11124:34;11055:109;;:::o;11170:118::-;11257:24;11275:5;11257:24;:::i;:::-;11252:3;11245:37;11170:118;;:::o;11294:157::-;11399:45;11419:24;11437:5;11419:24;:::i;:::-;11399:45;:::i;:::-;11394:3;11387:58;11294:157;;:::o;11457:360::-;11543:3;11571:38;11603:5;11571:38;:::i;:::-;11625:70;11688:6;11683:3;11625:70;:::i;:::-;11618:77;;11704:52;11749:6;11744:3;11737:4;11730:5;11726:16;11704:52;:::i;:::-;11781:29;11803:6;11781:29;:::i;:::-;11776:3;11772:39;11765:46;;11547:270;11457:360;;;;:::o;11823:364::-;11911:3;11939:39;11972:5;11939:39;:::i;:::-;11994:71;12058:6;12053:3;11994:71;:::i;:::-;11987:78;;12074:52;12119:6;12114:3;12107:4;12100:5;12096:16;12074:52;:::i;:::-;12151:29;12173:6;12151:29;:::i;:::-;12146:3;12142:39;12135:46;;11915:272;11823:364;;;;:::o;12193:377::-;12299:3;12327:39;12360:5;12327:39;:::i;:::-;12382:89;12464:6;12459:3;12382:89;:::i;:::-;12375:96;;12480:52;12525:6;12520:3;12513:4;12506:5;12502:16;12480:52;:::i;:::-;12557:6;12552:3;12548:16;12541:23;;12303:267;12193:377;;;;:::o;12600:845::-;12703:3;12740:5;12734:12;12769:36;12795:9;12769:36;:::i;:::-;12821:89;12903:6;12898:3;12821:89;:::i;:::-;12814:96;;12941:1;12930:9;12926:17;12957:1;12952:137;;;;13103:1;13098:341;;;;12919:520;;12952:137;13036:4;13032:9;13021;13017:25;13012:3;13005:38;13072:6;13067:3;13063:16;13056:23;;12952:137;;13098:341;13165:38;13197:5;13165:38;:::i;:::-;13225:1;13239:154;13253:6;13250:1;13247:13;13239:154;;;13327:7;13321:14;13317:1;13312:3;13308:11;13301:35;13377:1;13368:7;13364:15;13353:26;;13275:4;13272:1;13268:12;13263:17;;13239:154;;;13422:6;13417:3;13413:16;13406:23;;13105:334;;12919:520;;12707:738;;12600:845;;;;:::o;13451:366::-;13593:3;13614:67;13678:2;13673:3;13614:67;:::i;:::-;13607:74;;13690:93;13779:3;13690:93;:::i;:::-;13808:2;13803:3;13799:12;13792:19;;13451:366;;;:::o;13823:::-;13965:3;13986:67;14050:2;14045:3;13986:67;:::i;:::-;13979:74;;14062:93;14151:3;14062:93;:::i;:::-;14180:2;14175:3;14171:12;14164:19;;13823:366;;;:::o;14195:::-;14337:3;14358:67;14422:2;14417:3;14358:67;:::i;:::-;14351:74;;14434:93;14523:3;14434:93;:::i;:::-;14552:2;14547:3;14543:12;14536:19;;14195:366;;;:::o;14567:::-;14709:3;14730:67;14794:2;14789:3;14730:67;:::i;:::-;14723:74;;14806:93;14895:3;14806:93;:::i;:::-;14924:2;14919:3;14915:12;14908:19;;14567:366;;;:::o;14939:::-;15081:3;15102:67;15166:2;15161:3;15102:67;:::i;:::-;15095:74;;15178:93;15267:3;15178:93;:::i;:::-;15296:2;15291:3;15287:12;15280:19;;14939:366;;;:::o;15311:::-;15453:3;15474:67;15538:2;15533:3;15474:67;:::i;:::-;15467:74;;15550:93;15639:3;15550:93;:::i;:::-;15668:2;15663:3;15659:12;15652:19;;15311:366;;;:::o;15683:::-;15825:3;15846:67;15910:2;15905:3;15846:67;:::i;:::-;15839:74;;15922:93;16011:3;15922:93;:::i;:::-;16040:2;16035:3;16031:12;16024:19;;15683:366;;;:::o;16055:::-;16197:3;16218:67;16282:2;16277:3;16218:67;:::i;:::-;16211:74;;16294:93;16383:3;16294:93;:::i;:::-;16412:2;16407:3;16403:12;16396:19;;16055:366;;;:::o;16427:::-;16569:3;16590:67;16654:2;16649:3;16590:67;:::i;:::-;16583:74;;16666:93;16755:3;16666:93;:::i;:::-;16784:2;16779:3;16775:12;16768:19;;16427:366;;;:::o;16799:::-;16941:3;16962:67;17026:2;17021:3;16962:67;:::i;:::-;16955:74;;17038:93;17127:3;17038:93;:::i;:::-;17156:2;17151:3;17147:12;17140:19;;16799:366;;;:::o;17171:::-;17313:3;17334:67;17398:2;17393:3;17334:67;:::i;:::-;17327:74;;17410:93;17499:3;17410:93;:::i;:::-;17528:2;17523:3;17519:12;17512:19;;17171:366;;;:::o;17543:::-;17685:3;17706:67;17770:2;17765:3;17706:67;:::i;:::-;17699:74;;17782:93;17871:3;17782:93;:::i;:::-;17900:2;17895:3;17891:12;17884:19;;17543:366;;;:::o;17915:::-;18057:3;18078:67;18142:2;18137:3;18078:67;:::i;:::-;18071:74;;18154:93;18243:3;18154:93;:::i;:::-;18272:2;18267:3;18263:12;18256:19;;17915:366;;;:::o;18287:::-;18429:3;18450:67;18514:2;18509:3;18450:67;:::i;:::-;18443:74;;18526:93;18615:3;18526:93;:::i;:::-;18644:2;18639:3;18635:12;18628:19;;18287:366;;;:::o;18659:::-;18801:3;18822:67;18886:2;18881:3;18822:67;:::i;:::-;18815:74;;18898:93;18987:3;18898:93;:::i;:::-;19016:2;19011:3;19007:12;19000:19;;18659:366;;;:::o;19031:::-;19173:3;19194:67;19258:2;19253:3;19194:67;:::i;:::-;19187:74;;19270:93;19359:3;19270:93;:::i;:::-;19388:2;19383:3;19379:12;19372:19;;19031:366;;;:::o;19403:::-;19545:3;19566:67;19630:2;19625:3;19566:67;:::i;:::-;19559:74;;19642:93;19731:3;19642:93;:::i;:::-;19760:2;19755:3;19751:12;19744:19;;19403:366;;;:::o;19775:::-;19917:3;19938:67;20002:2;19997:3;19938:67;:::i;:::-;19931:74;;20014:93;20103:3;20014:93;:::i;:::-;20132:2;20127:3;20123:12;20116:19;;19775:366;;;:::o;20147:::-;20289:3;20310:67;20374:2;20369:3;20310:67;:::i;:::-;20303:74;;20386:93;20475:3;20386:93;:::i;:::-;20504:2;20499:3;20495:12;20488:19;;20147:366;;;:::o;20519:::-;20661:3;20682:67;20746:2;20741:3;20682:67;:::i;:::-;20675:74;;20758:93;20847:3;20758:93;:::i;:::-;20876:2;20871:3;20867:12;20860:19;;20519:366;;;:::o;20891:::-;21033:3;21054:67;21118:2;21113:3;21054:67;:::i;:::-;21047:74;;21130:93;21219:3;21130:93;:::i;:::-;21248:2;21243:3;21239:12;21232:19;;20891:366;;;:::o;21263:::-;21405:3;21426:67;21490:2;21485:3;21426:67;:::i;:::-;21419:74;;21502:93;21591:3;21502:93;:::i;:::-;21620:2;21615:3;21611:12;21604:19;;21263:366;;;:::o;21635:::-;21777:3;21798:67;21862:2;21857:3;21798:67;:::i;:::-;21791:74;;21874:93;21963:3;21874:93;:::i;:::-;21992:2;21987:3;21983:12;21976:19;;21635:366;;;:::o;22007:::-;22149:3;22170:67;22234:2;22229:3;22170:67;:::i;:::-;22163:74;;22246:93;22335:3;22246:93;:::i;:::-;22364:2;22359:3;22355:12;22348:19;;22007:366;;;:::o;22379:::-;22521:3;22542:67;22606:2;22601:3;22542:67;:::i;:::-;22535:74;;22618:93;22707:3;22618:93;:::i;:::-;22736:2;22731:3;22727:12;22720:19;;22379:366;;;:::o;22751:::-;22893:3;22914:67;22978:2;22973:3;22914:67;:::i;:::-;22907:74;;22990:93;23079:3;22990:93;:::i;:::-;23108:2;23103:3;23099:12;23092:19;;22751:366;;;:::o;23123:365::-;23265:3;23286:66;23350:1;23345:3;23286:66;:::i;:::-;23279:73;;23361:93;23450:3;23361:93;:::i;:::-;23479:2;23474:3;23470:12;23463:19;;23123:365;;;:::o;23494:366::-;23636:3;23657:67;23721:2;23716:3;23657:67;:::i;:::-;23650:74;;23733:93;23822:3;23733:93;:::i;:::-;23851:2;23846:3;23842:12;23835:19;;23494:366;;;:::o;23866:::-;24008:3;24029:67;24093:2;24088:3;24029:67;:::i;:::-;24022:74;;24105:93;24194:3;24105:93;:::i;:::-;24223:2;24218:3;24214:12;24207:19;;23866:366;;;:::o;24238:::-;24380:3;24401:67;24465:2;24460:3;24401:67;:::i;:::-;24394:74;;24477:93;24566:3;24477:93;:::i;:::-;24595:2;24590:3;24586:12;24579:19;;24238:366;;;:::o;24610:118::-;24697:24;24715:5;24697:24;:::i;:::-;24692:3;24685:37;24610:118;;:::o;24734:256::-;24846:3;24861:75;24932:3;24923:6;24861:75;:::i;:::-;24961:2;24956:3;24952:12;24945:19;;24981:3;24974:10;;24734:256;;;;:::o;24996:397::-;25136:3;25151:75;25222:3;25213:6;25151:75;:::i;:::-;25251:2;25246:3;25242:12;25235:19;;25264:75;25335:3;25326:6;25264:75;:::i;:::-;25364:2;25359:3;25355:12;25348:19;;25384:3;25377:10;;24996:397;;;;;:::o;25399:429::-;25576:3;25598:92;25686:3;25677:6;25598:92;:::i;:::-;25591:99;;25707:95;25798:3;25789:6;25707:95;:::i;:::-;25700:102;;25819:3;25812:10;;25399:429;;;;;:::o;25834:222::-;25927:4;25965:2;25954:9;25950:18;25942:26;;25978:71;26046:1;26035:9;26031:17;26022:6;25978:71;:::i;:::-;25834:222;;;;:::o;26062:254::-;26171:4;26209:2;26198:9;26194:18;26186:26;;26222:87;26306:1;26295:9;26291:17;26282:6;26222:87;:::i;:::-;26062:254;;;;:::o;26322:640::-;26517:4;26555:3;26544:9;26540:19;26532:27;;26569:71;26637:1;26626:9;26622:17;26613:6;26569:71;:::i;:::-;26650:72;26718:2;26707:9;26703:18;26694:6;26650:72;:::i;:::-;26732;26800:2;26789:9;26785:18;26776:6;26732:72;:::i;:::-;26851:9;26845:4;26841:20;26836:2;26825:9;26821:18;26814:48;26879:76;26950:4;26941:6;26879:76;:::i;:::-;26871:84;;26322:640;;;;;;;:::o;26968:210::-;27055:4;27093:2;27082:9;27078:18;27070:26;;27106:65;27168:1;27157:9;27153:17;27144:6;27106:65;:::i;:::-;26968:210;;;;:::o;27184:222::-;27277:4;27315:2;27304:9;27300:18;27292:26;;27328:71;27396:1;27385:9;27381:17;27372:6;27328:71;:::i;:::-;27184:222;;;;:::o;27412:313::-;27525:4;27563:2;27552:9;27548:18;27540:26;;27612:9;27606:4;27602:20;27598:1;27587:9;27583:17;27576:47;27640:78;27713:4;27704:6;27640:78;:::i;:::-;27632:86;;27412:313;;;;:::o;27731:419::-;27897:4;27935:2;27924:9;27920:18;27912:26;;27984:9;27978:4;27974:20;27970:1;27959:9;27955:17;27948:47;28012:131;28138:4;28012:131;:::i;:::-;28004:139;;27731:419;;;:::o;28156:::-;28322:4;28360:2;28349:9;28345:18;28337:26;;28409:9;28403:4;28399:20;28395:1;28384:9;28380:17;28373:47;28437:131;28563:4;28437:131;:::i;:::-;28429:139;;28156:419;;;:::o;28581:::-;28747:4;28785:2;28774:9;28770:18;28762:26;;28834:9;28828:4;28824:20;28820:1;28809:9;28805:17;28798:47;28862:131;28988:4;28862:131;:::i;:::-;28854:139;;28581:419;;;:::o;29006:::-;29172:4;29210:2;29199:9;29195:18;29187:26;;29259:9;29253:4;29249:20;29245:1;29234:9;29230:17;29223:47;29287:131;29413:4;29287:131;:::i;:::-;29279:139;;29006:419;;;:::o;29431:::-;29597:4;29635:2;29624:9;29620:18;29612:26;;29684:9;29678:4;29674:20;29670:1;29659:9;29655:17;29648:47;29712:131;29838:4;29712:131;:::i;:::-;29704:139;;29431:419;;;:::o;29856:::-;30022:4;30060:2;30049:9;30045:18;30037:26;;30109:9;30103:4;30099:20;30095:1;30084:9;30080:17;30073:47;30137:131;30263:4;30137:131;:::i;:::-;30129:139;;29856:419;;;:::o;30281:::-;30447:4;30485:2;30474:9;30470:18;30462:26;;30534:9;30528:4;30524:20;30520:1;30509:9;30505:17;30498:47;30562:131;30688:4;30562:131;:::i;:::-;30554:139;;30281:419;;;:::o;30706:::-;30872:4;30910:2;30899:9;30895:18;30887:26;;30959:9;30953:4;30949:20;30945:1;30934:9;30930:17;30923:47;30987:131;31113:4;30987:131;:::i;:::-;30979:139;;30706:419;;;:::o;31131:::-;31297:4;31335:2;31324:9;31320:18;31312:26;;31384:9;31378:4;31374:20;31370:1;31359:9;31355:17;31348:47;31412:131;31538:4;31412:131;:::i;:::-;31404:139;;31131:419;;;:::o;31556:::-;31722:4;31760:2;31749:9;31745:18;31737:26;;31809:9;31803:4;31799:20;31795:1;31784:9;31780:17;31773:47;31837:131;31963:4;31837:131;:::i;:::-;31829:139;;31556:419;;;:::o;31981:::-;32147:4;32185:2;32174:9;32170:18;32162:26;;32234:9;32228:4;32224:20;32220:1;32209:9;32205:17;32198:47;32262:131;32388:4;32262:131;:::i;:::-;32254:139;;31981:419;;;:::o;32406:::-;32572:4;32610:2;32599:9;32595:18;32587:26;;32659:9;32653:4;32649:20;32645:1;32634:9;32630:17;32623:47;32687:131;32813:4;32687:131;:::i;:::-;32679:139;;32406:419;;;:::o;32831:::-;32997:4;33035:2;33024:9;33020:18;33012:26;;33084:9;33078:4;33074:20;33070:1;33059:9;33055:17;33048:47;33112:131;33238:4;33112:131;:::i;:::-;33104:139;;32831:419;;;:::o;33256:::-;33422:4;33460:2;33449:9;33445:18;33437:26;;33509:9;33503:4;33499:20;33495:1;33484:9;33480:17;33473:47;33537:131;33663:4;33537:131;:::i;:::-;33529:139;;33256:419;;;:::o;33681:::-;33847:4;33885:2;33874:9;33870:18;33862:26;;33934:9;33928:4;33924:20;33920:1;33909:9;33905:17;33898:47;33962:131;34088:4;33962:131;:::i;:::-;33954:139;;33681:419;;;:::o;34106:::-;34272:4;34310:2;34299:9;34295:18;34287:26;;34359:9;34353:4;34349:20;34345:1;34334:9;34330:17;34323:47;34387:131;34513:4;34387:131;:::i;:::-;34379:139;;34106:419;;;:::o;34531:::-;34697:4;34735:2;34724:9;34720:18;34712:26;;34784:9;34778:4;34774:20;34770:1;34759:9;34755:17;34748:47;34812:131;34938:4;34812:131;:::i;:::-;34804:139;;34531:419;;;:::o;34956:::-;35122:4;35160:2;35149:9;35145:18;35137:26;;35209:9;35203:4;35199:20;35195:1;35184:9;35180:17;35173:47;35237:131;35363:4;35237:131;:::i;:::-;35229:139;;34956:419;;;:::o;35381:::-;35547:4;35585:2;35574:9;35570:18;35562:26;;35634:9;35628:4;35624:20;35620:1;35609:9;35605:17;35598:47;35662:131;35788:4;35662:131;:::i;:::-;35654:139;;35381:419;;;:::o;35806:::-;35972:4;36010:2;35999:9;35995:18;35987:26;;36059:9;36053:4;36049:20;36045:1;36034:9;36030:17;36023:47;36087:131;36213:4;36087:131;:::i;:::-;36079:139;;35806:419;;;:::o;36231:::-;36397:4;36435:2;36424:9;36420:18;36412:26;;36484:9;36478:4;36474:20;36470:1;36459:9;36455:17;36448:47;36512:131;36638:4;36512:131;:::i;:::-;36504:139;;36231:419;;;:::o;36656:::-;36822:4;36860:2;36849:9;36845:18;36837:26;;36909:9;36903:4;36899:20;36895:1;36884:9;36880:17;36873:47;36937:131;37063:4;36937:131;:::i;:::-;36929:139;;36656:419;;;:::o;37081:::-;37247:4;37285:2;37274:9;37270:18;37262:26;;37334:9;37328:4;37324:20;37320:1;37309:9;37305:17;37298:47;37362:131;37488:4;37362:131;:::i;:::-;37354:139;;37081:419;;;:::o;37506:::-;37672:4;37710:2;37699:9;37695:18;37687:26;;37759:9;37753:4;37749:20;37745:1;37734:9;37730:17;37723:47;37787:131;37913:4;37787:131;:::i;:::-;37779:139;;37506:419;;;:::o;37931:::-;38097:4;38135:2;38124:9;38120:18;38112:26;;38184:9;38178:4;38174:20;38170:1;38159:9;38155:17;38148:47;38212:131;38338:4;38212:131;:::i;:::-;38204:139;;37931:419;;;:::o;38356:::-;38522:4;38560:2;38549:9;38545:18;38537:26;;38609:9;38603:4;38599:20;38595:1;38584:9;38580:17;38573:47;38637:131;38763:4;38637:131;:::i;:::-;38629:139;;38356:419;;;:::o;38781:::-;38947:4;38985:2;38974:9;38970:18;38962:26;;39034:9;39028:4;39024:20;39020:1;39009:9;39005:17;38998:47;39062:131;39188:4;39062:131;:::i;:::-;39054:139;;38781:419;;;:::o;39206:::-;39372:4;39410:2;39399:9;39395:18;39387:26;;39459:9;39453:4;39449:20;39445:1;39434:9;39430:17;39423:47;39487:131;39613:4;39487:131;:::i;:::-;39479:139;;39206:419;;;:::o;39631:::-;39797:4;39835:2;39824:9;39820:18;39812:26;;39884:9;39878:4;39874:20;39870:1;39859:9;39855:17;39848:47;39912:131;40038:4;39912:131;:::i;:::-;39904:139;;39631:419;;;:::o;40056:::-;40222:4;40260:2;40249:9;40245:18;40237:26;;40309:9;40303:4;40299:20;40295:1;40284:9;40280:17;40273:47;40337:131;40463:4;40337:131;:::i;:::-;40329:139;;40056:419;;;:::o;40481:222::-;40574:4;40612:2;40601:9;40597:18;40589:26;;40625:71;40693:1;40682:9;40678:17;40669:6;40625:71;:::i;:::-;40481:222;;;;:::o;40709:129::-;40743:6;40770:20;;:::i;:::-;40760:30;;40799:33;40827:4;40819:6;40799:33;:::i;:::-;40709:129;;;:::o;40844:75::-;40877:6;40910:2;40904:9;40894:19;;40844:75;:::o;40925:307::-;40986:4;41076:18;41068:6;41065:30;41062:56;;;41098:18;;:::i;:::-;41062:56;41136:29;41158:6;41136:29;:::i;:::-;41128:37;;41220:4;41214;41210:15;41202:23;;40925:307;;;:::o;41238:141::-;41287:4;41310:3;41302:11;;41333:3;41330:1;41323:14;41367:4;41364:1;41354:18;41346:26;;41238:141;;;:::o;41385:98::-;41436:6;41470:5;41464:12;41454:22;;41385:98;;;:::o;41489:99::-;41541:6;41575:5;41569:12;41559:22;;41489:99;;;:::o;41594:168::-;41677:11;41711:6;41706:3;41699:19;41751:4;41746:3;41742:14;41727:29;;41594:168;;;;:::o;41768:169::-;41852:11;41886:6;41881:3;41874:19;41926:4;41921:3;41917:14;41902:29;;41768:169;;;;:::o;41943:148::-;42045:11;42082:3;42067:18;;41943:148;;;;:::o;42097:305::-;42137:3;42156:20;42174:1;42156:20;:::i;:::-;42151:25;;42190:20;42208:1;42190:20;:::i;:::-;42185:25;;42344:1;42276:66;42272:74;42269:1;42266:81;42263:107;;;42350:18;;:::i;:::-;42263:107;42394:1;42391;42387:9;42380:16;;42097:305;;;;:::o;42408:185::-;42448:1;42465:20;42483:1;42465:20;:::i;:::-;42460:25;;42499:20;42517:1;42499:20;:::i;:::-;42494:25;;42538:1;42528:35;;42543:18;;:::i;:::-;42528:35;42585:1;42582;42578:9;42573:14;;42408:185;;;;:::o;42599:348::-;42639:7;42662:20;42680:1;42662:20;:::i;:::-;42657:25;;42696:20;42714:1;42696:20;:::i;:::-;42691:25;;42884:1;42816:66;42812:74;42809:1;42806:81;42801:1;42794:9;42787:17;42783:105;42780:131;;;42891:18;;:::i;:::-;42780:131;42939:1;42936;42932:9;42921:20;;42599:348;;;;:::o;42953:191::-;42993:4;43013:20;43031:1;43013:20;:::i;:::-;43008:25;;43047:20;43065:1;43047:20;:::i;:::-;43042:25;;43086:1;43083;43080:8;43077:34;;;43091:18;;:::i;:::-;43077:34;43136:1;43133;43129:9;43121:17;;42953:191;;;;:::o;43150:96::-;43187:7;43216:24;43234:5;43216:24;:::i;:::-;43205:35;;43150:96;;;:::o;43252:104::-;43297:7;43326:24;43344:5;43326:24;:::i;:::-;43315:35;;43252:104;;;:::o;43362:90::-;43396:7;43439:5;43432:13;43425:21;43414:32;;43362:90;;;:::o;43458:77::-;43495:7;43524:5;43513:16;;43458:77;;;:::o;43541:149::-;43577:7;43617:66;43610:5;43606:78;43595:89;;43541:149;;;:::o;43696:126::-;43733:7;43773:42;43766:5;43762:54;43751:65;;43696:126;;;:::o;43828:77::-;43865:7;43894:5;43883:16;;43828:77;;;:::o;43911:154::-;43995:6;43990:3;43985;43972:30;44057:1;44048:6;44043:3;44039:16;44032:27;43911:154;;;:::o;44071:307::-;44139:1;44149:113;44163:6;44160:1;44157:13;44149:113;;;44248:1;44243:3;44239:11;44233:18;44229:1;44224:3;44220:11;44213:39;44185:2;44182:1;44178:10;44173:15;;44149:113;;;44280:6;44277:1;44274:13;44271:101;;;44360:1;44351:6;44346:3;44342:16;44335:27;44271:101;44120:258;44071:307;;;:::o;44384:320::-;44428:6;44465:1;44459:4;44455:12;44445:22;;44512:1;44506:4;44502:12;44533:18;44523:81;;44589:4;44581:6;44577:17;44567:27;;44523:81;44651:2;44643:6;44640:14;44620:18;44617:38;44614:84;;;44670:18;;:::i;:::-;44614:84;44435:269;44384:320;;;:::o;44710:281::-;44793:27;44815:4;44793:27;:::i;:::-;44785:6;44781:40;44923:6;44911:10;44908:22;44887:18;44875:10;44872:34;44869:62;44866:88;;;44934:18;;:::i;:::-;44866:88;44974:10;44970:2;44963:22;44753:238;44710:281;;:::o;44997:233::-;45036:3;45059:24;45077:5;45059:24;:::i;:::-;45050:33;;45105:66;45098:5;45095:77;45092:103;;;45175:18;;:::i;:::-;45092:103;45222:1;45215:5;45211:13;45204:20;;44997:233;;;:::o;45236:100::-;45275:7;45304:26;45324:5;45304:26;:::i;:::-;45293:37;;45236:100;;;:::o;45342:79::-;45381:7;45410:5;45399:16;;45342:79;;;:::o;45427:94::-;45466:7;45495:20;45509:5;45495:20;:::i;:::-;45484:31;;45427:94;;;:::o;45527:176::-;45559:1;45576:20;45594:1;45576:20;:::i;:::-;45571:25;;45610:20;45628:1;45610:20;:::i;:::-;45605:25;;45649:1;45639:35;;45654:18;;:::i;:::-;45639:35;45695:1;45692;45688:9;45683:14;;45527:176;;;;:::o;45709:180::-;45757:77;45754:1;45747:88;45854:4;45851:1;45844:15;45878:4;45875:1;45868:15;45895:180;45943:77;45940:1;45933:88;46040:4;46037:1;46030:15;46064:4;46061:1;46054:15;46081:180;46129:77;46126:1;46119:88;46226:4;46223:1;46216:15;46250:4;46247:1;46240:15;46267:180;46315:77;46312:1;46305:88;46412:4;46409:1;46402:15;46436:4;46433:1;46426:15;46453:180;46501:77;46498:1;46491:88;46598:4;46595:1;46588:15;46622:4;46619:1;46612:15;46639:180;46687:77;46684:1;46677:88;46784:4;46781:1;46774:15;46808:4;46805:1;46798:15;46825:117;46934:1;46931;46924:12;46948:117;47057:1;47054;47047:12;47071:117;47180:1;47177;47170:12;47194:117;47303:1;47300;47293:12;47317:117;47426:1;47423;47416:12;47440:117;47549:1;47546;47539:12;47563:102;47604:6;47655:2;47651:7;47646:2;47639:5;47635:14;47631:28;47621:38;;47563:102;;;:::o;47671:94::-;47704:8;47752:5;47748:2;47744:14;47723:35;;47671:94;;;:::o;47771:166::-;47911:18;47907:1;47899:6;47895:14;47888:42;47771:166;:::o;47943:176::-;48083:28;48079:1;48071:6;48067:14;48060:52;47943:176;:::o;48125:230::-;48265:34;48261:1;48253:6;48249:14;48242:58;48334:13;48329:2;48321:6;48317:15;48310:38;48125:230;:::o;48361:237::-;48501:34;48497:1;48489:6;48485:14;48478:58;48570:20;48565:2;48557:6;48553:15;48546:45;48361:237;:::o;48604:225::-;48744:34;48740:1;48732:6;48728:14;48721:58;48813:8;48808:2;48800:6;48796:15;48789:33;48604:225;:::o;48835:172::-;48975:24;48971:1;48963:6;48959:14;48952:48;48835:172;:::o;49013:178::-;49153:30;49149:1;49141:6;49137:14;49130:54;49013:178;:::o;49197:164::-;49337:16;49333:1;49325:6;49321:14;49314:40;49197:164;:::o;49367:223::-;49507:34;49503:1;49495:6;49491:14;49484:58;49576:6;49571:2;49563:6;49559:15;49552:31;49367:223;:::o;49596:175::-;49736:27;49732:1;49724:6;49720:14;49713:51;49596:175;:::o;49777:168::-;49917:20;49913:1;49905:6;49901:14;49894:44;49777:168;:::o;49951:231::-;50091:34;50087:1;50079:6;50075:14;50068:58;50160:14;50155:2;50147:6;50143:15;50136:39;49951:231;:::o;50188:179::-;50328:31;50324:1;50316:6;50312:14;50305:55;50188:179;:::o;50373:243::-;50513:34;50509:1;50501:6;50497:14;50490:58;50582:26;50577:2;50569:6;50565:15;50558:51;50373:243;:::o;50622:229::-;50762:34;50758:1;50750:6;50746:14;50739:58;50831:12;50826:2;50818:6;50814:15;50807:37;50622:229;:::o;50857:228::-;50997:34;50993:1;50985:6;50981:14;50974:58;51066:11;51061:2;51053:6;51049:15;51042:36;50857:228;:::o;51091:182::-;51231:34;51227:1;51219:6;51215:14;51208:58;51091:182;:::o;51279:172::-;51419:24;51415:1;51407:6;51403:14;51396:48;51279:172;:::o;51457:231::-;51597:34;51593:1;51585:6;51581:14;51574:58;51666:14;51661:2;51653:6;51649:15;51642:39;51457:231;:::o;51694:182::-;51834:34;51830:1;51822:6;51818:14;51811:58;51694:182;:::o;51882:228::-;52022:34;52018:1;52010:6;52006:14;51999:58;52091:11;52086:2;52078:6;52074:15;52067:36;51882:228;:::o;52116:167::-;52256:19;52252:1;52244:6;52240:14;52233:43;52116:167;:::o;52289:220::-;52429:34;52425:1;52417:6;52413:14;52406:58;52498:3;52493:2;52485:6;52481:15;52474:28;52289:220;:::o;52515:170::-;52655:22;52651:1;52643:6;52639:14;52632:46;52515:170;:::o;52691:182::-;52831:34;52827:1;52819:6;52815:14;52808:58;52691:182;:::o;52879:236::-;53019:34;53015:1;53007:6;53003:14;52996:58;53088:19;53083:2;53075:6;53071:15;53064:44;52879:236;:::o;53121:158::-;53261:10;53257:1;53249:6;53245:14;53238:34;53121:158;:::o;53285:231::-;53425:34;53421:1;53413:6;53409:14;53402:58;53494:14;53489:2;53481:6;53477:15;53470:39;53285:231;:::o;53522:171::-;53662:23;53658:1;53650:6;53646:14;53639:47;53522:171;:::o;53699:166::-;53839:18;53835:1;53827:6;53823:14;53816:42;53699:166;:::o;53871:122::-;53944:24;53962:5;53944:24;:::i;:::-;53937:5;53934:35;53924:63;;53983:1;53980;53973:12;53924:63;53871:122;:::o;53999:116::-;54069:21;54084:5;54069:21;:::i;:::-;54062:5;54059:32;54049:60;;54105:1;54102;54095:12;54049:60;53999:116;:::o;54121:122::-;54194:24;54212:5;54194:24;:::i;:::-;54187:5;54184:35;54174:63;;54233:1;54230;54223:12;54174:63;54121:122;:::o;54249:120::-;54321:23;54338:5;54321:23;:::i;:::-;54314:5;54311:34;54301:62;;54359:1;54356;54349:12;54301:62;54249:120;:::o;54375:122::-;54448:24;54466:5;54448:24;:::i;:::-;54441:5;54438:35;54428:63;;54487:1;54484;54477:12;54428:63;54375:122;:::o

Swarm Source

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