ETH Price: $3,306.06 (-3.08%)
Gas: 14 Gwei

Token

pxMAYC (pxMAYC)
 

Overview

Max Total Supply

457 pxMAYC

Holders

118

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 pxMAYC
0x50e82c26f5133627d781a597db1fb9a6ccce381c
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:
pxMAYC

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//            __  __                  
 //          |  \/  |                 
 // _ ____  _| \  / | __ _ _   _  ___ 
 //| '_ \ \/ / |\/| |/ _` | | | |/ __|
 //| |_) >  <| |  | | (_| | |_| | (__ 
 //| .__/_/\_\_|  |_|\__,_|\__, |\___|
 //| |                      __/ |     
 //|_|                     |___/   



//First 400 Mints Free
//After 400 Free; .04 Per Transaction

// SPDX-License-Identifier: MIT
// 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);
}

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



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


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


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


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


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


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


// 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(), ".json")) : "";
    }

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


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



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

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

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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


pragma solidity ^0.8.0;


contract pxMAYC is ERC721Enumerable, Ownable {

    uint256 public pxMAYCPrice = 40000000000000000;
    uint public constant maxpxMAYCPurchase = 10;
    uint public pxMAYCSupply = 6666;
    bool public drop_is_active = false;
    string public baseURI = "";
    uint256 public tokensMinted = 0;
    uint256 public freeMints = 400;

    mapping(address => uint) addressesThatMinted;

    constructor() ERC721("pxMAYC", "pxMAYC"){
    
    }

    function withdraw() public onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function flipDropState() public onlyOwner {
        drop_is_active = !drop_is_active;
    }

    function freeMintpxMAYC(uint numberOfTokens) public {
        require(drop_is_active, "Please wait until the drop is active to mint");
        require(numberOfTokens > 0 && numberOfTokens <= maxpxMAYCPurchase, "Mint count is too little or too high");
        require(tokensMinted + numberOfTokens <= freeMints, "Purchase will exceed max supply of free mints");
        require(addressesThatMinted[msg.sender] + numberOfTokens <= 10, "You have already minted 10!");
        uint256 tokenIndex = tokensMinted;
        tokensMinted += numberOfTokens;
        addressesThatMinted[msg.sender] += numberOfTokens;

        for (uint i = 0; i < numberOfTokens; i++){
            _safeMint(msg.sender, tokenIndex);
            tokenIndex++;
        }
    }

    function mintpxMAYC(uint numberOfTokens) public payable {
        require(drop_is_active, "Please wait until the drop is active to mint");
        require(numberOfTokens > 0 && numberOfTokens <= maxpxMAYCPurchase, "Mint count is too little or too high");
        require(tokensMinted + numberOfTokens <= pxMAYCSupply, "Purchase would exceed max supply of pxMAYC");
        require(msg.value >= pxMAYCPrice * numberOfTokens, "ETH value sent is too little for this many pxMAYC");
        require(addressesThatMinted[msg.sender] + numberOfTokens <= 30, "You have already minted 30!");

        uint256 tokenIndex = tokensMinted;
        tokensMinted += numberOfTokens;
        addressesThatMinted[msg.sender] += numberOfTokens;

        for (uint i = 0; i < numberOfTokens; i++){
            _safeMint(msg.sender, tokenIndex);
            tokenIndex++;
        }
    }

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

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

    function setSupply(uint256 newSupply)public onlyOwner{
        pxMAYCSupply = newSupply;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drop_is_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipDropState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMintpxMAYC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMints","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxpxMAYCPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintpxMAYC","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":"pxMAYCPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pxMAYCSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052668e1bc9bf040000600b55611a0a600c556000600d60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600e90805190602001906200005792919062000205565b506000600f556101906010553480156200007057600080fd5b506040518060400160405280600681526020017f70784d41594300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f70784d41594300000000000000000000000000000000000000000000000000008152508160009080519060200190620000f592919062000205565b5080600190805190602001906200010e92919062000205565b50505062000131620001256200013760201b60201c565b6200013f60201b60201c565b6200031a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021390620002b5565b90600052602060002090601f01602090048101928262000237576000855562000283565b82601f106200025257805160ff191683800117855562000283565b8280016001018555821562000283579182015b828111156200028257825182559160200191906001019062000265565b5b50905062000292919062000296565b5090565b5b80821115620002b157600081600090555060010162000297565b5090565b60006002820490506001821680620002ce57607f821691505b60208210811415620002e557620002e4620002eb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614350806200032a6000396000f3fe6080604052600436106101e35760003560e01c80636352211e1161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd146106ad578063d0b7581e146106ea578063e985e9c514610715578063f2fde38b14610752576101e3565b806395d89b411461061957806396f8f6dd14610644578063a22cb4651461065b578063b88d4fde14610684576101e3565b8063715018a6116100d1578063715018a6146105835780637a80c6fc1461059a57806380b17335146105c35780638da5cb5b146105ee576101e3565b80636352211e146104b35780636c0360eb146104f05780636de9f32b1461051b57806370a0823114610546576101e3565b80632f745c591161017a57806342842e0e1161014957806342842e0e14610408578063485787b8146104315780634f6ccce71461044d57806355f804b31461048a576101e3565b80632f745c59146103605780633b4c4b251461039d5780633ccfd60b146103c65780634233dc20146103dd576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e15780631b92d0eb1461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e8578063052939051461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612fba565b61077b565b60405161021c9190613b2e565b60405180910390f35b34801561023157600080fd5b5061023a6107f5565b6040516102479190613b2e565b60405180910390f35b34801561025c57600080fd5b50610265610808565b6040516102729190613b49565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061304d565b61089a565b6040516102af9190613ac7565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612f7e565b61091f565b005b3480156102ed57600080fd5b506102f6610a37565b6040516103039190613e8b565b60405180910390f35b34801561031857600080fd5b50610321610a44565b60405161032e9190613e8b565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612e78565b610a4a565b005b34801561036c57600080fd5b5061038760048036038101906103829190612f7e565b610aaa565b6040516103949190613e8b565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf919061304d565b610b4f565b005b3480156103d257600080fd5b506103db610bd5565b005b3480156103e957600080fd5b506103f2610c91565b6040516103ff9190613e8b565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190612e78565b610c96565b005b61044b6004803603810190610446919061304d565b610cb6565b005b34801561045957600080fd5b50610474600480360381019061046f919061304d565b610f36565b6040516104819190613e8b565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac919061300c565b610fcd565b005b3480156104bf57600080fd5b506104da60048036038101906104d5919061304d565b611063565b6040516104e79190613ac7565b60405180910390f35b3480156104fc57600080fd5b50610505611115565b6040516105129190613b49565b60405180910390f35b34801561052757600080fd5b506105306111a3565b60405161053d9190613e8b565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612e13565b6111a9565b60405161057a9190613e8b565b60405180910390f35b34801561058f57600080fd5b50610598611261565b005b3480156105a657600080fd5b506105c160048036038101906105bc919061304d565b6112e9565b005b3480156105cf57600080fd5b506105d8611519565b6040516105e59190613e8b565b60405180910390f35b3480156105fa57600080fd5b5061060361151f565b6040516106109190613ac7565b60405180910390f35b34801561062557600080fd5b5061062e611549565b60405161063b9190613b49565b60405180910390f35b34801561065057600080fd5b506106596115db565b005b34801561066757600080fd5b50610682600480360381019061067d9190612f42565b611683565b005b34801561069057600080fd5b506106ab60048036038101906106a69190612ec7565b611699565b005b3480156106b957600080fd5b506106d460048036038101906106cf919061304d565b6116fb565b6040516106e19190613b49565b60405180910390f35b3480156106f657600080fd5b506106ff6117a2565b60405161070c9190613e8b565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190612e3c565b6117a8565b6040516107499190613b2e565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612e13565b61183c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ee57506107ed82611934565b5b9050919050565b600d60009054906101000a900460ff1681565b60606000805461081790614145565b80601f016020809104026020016040519081016040528092919081815260200182805461084390614145565b80156108905780601f1061086557610100808354040283529160200191610890565b820191906000526020600020905b81548152906001019060200180831161087357829003601f168201915b5050505050905090565b60006108a582611a16565b6108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db90613d4b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092a82611063565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290613deb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ba611a82565b73ffffffffffffffffffffffffffffffffffffffff1614806109e957506109e8816109e3611a82565b6117a8565b5b610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90613cab565b60405180910390fd5b610a328383611a8a565b505050565b6000600880549050905090565b600b5481565b610a5b610a55611a82565b82611b43565b610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190613e4b565b60405180910390fd5b610aa5838383611c21565b505050565b6000610ab5836111a9565b8210610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90613bab565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b57611a82565b73ffffffffffffffffffffffffffffffffffffffff16610b7561151f565b73ffffffffffffffffffffffffffffffffffffffff1614610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290613d6b565b60405180910390fd5b80600c8190555050565b610bdd611a82565b73ffffffffffffffffffffffffffffffffffffffff16610bfb61151f565b73ffffffffffffffffffffffffffffffffffffffff1614610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890613d6b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c8f57600080fd5b565b600a81565b610cb183838360405180602001604052806000815250611699565b505050565b600d60009054906101000a900460ff16610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90613e0b565b60405180910390fd5b600081118015610d165750600a8111155b610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613dcb565b60405180910390fd5b600c5481600f54610d669190613f7a565b1115610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90613d0b565b60405180910390fd5b80600b54610db59190614001565b341015610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90613c8b565b60405180910390fd5b601e81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e449190613f7a565b1115610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90613b6b565b60405180910390fd5b6000600f54905081600f6000828254610e9e9190613f7a565b9250508190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ef49190613f7a565b9250508190555060005b82811015610f3157610f103383611e7d565b8180610f1b90614177565b9250508080610f2990614177565b915050610efe565b505050565b6000610f40610a37565b8210610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890613e6b565b60405180910390fd5b60088281548110610fbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610fd5611a82565b73ffffffffffffffffffffffffffffffffffffffff16610ff361151f565b73ffffffffffffffffffffffffffffffffffffffff1614611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090613d6b565b60405180910390fd5b80600e908051906020019061105f929190612c37565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390613ceb565b60405180910390fd5b80915050919050565b600e805461112290614145565b80601f016020809104026020016040519081016040528092919081815260200182805461114e90614145565b801561119b5780601f106111705761010080835404028352916020019161119b565b820191906000526020600020905b81548152906001019060200180831161117e57829003601f168201915b505050505081565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190613ccb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611269611a82565b73ffffffffffffffffffffffffffffffffffffffff1661128761151f565b73ffffffffffffffffffffffffffffffffffffffff16146112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490613d6b565b60405180910390fd5b6112e76000611e9b565b565b600d60009054906101000a900460ff16611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613e0b565b60405180910390fd5b6000811180156113495750600a8111155b611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90613dcb565b60405180910390fd5b60105481600f546113999190613f7a565b11156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190613e2b565b60405180910390fd5b600a81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114279190613f7a565b1115611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f90613b8b565b60405180910390fd5b6000600f54905081600f60008282546114819190613f7a565b9250508190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114d79190613f7a565b9250508190555060005b82811015611514576114f33383611e7d565b81806114fe90614177565b925050808061150c90614177565b9150506114e1565b505050565b60105481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461155890614145565b80601f016020809104026020016040519081016040528092919081815260200182805461158490614145565b80156115d15780601f106115a6576101008083540402835291602001916115d1565b820191906000526020600020905b8154815290600101906020018083116115b457829003601f168201915b5050505050905090565b6115e3611a82565b73ffffffffffffffffffffffffffffffffffffffff1661160161151f565b73ffffffffffffffffffffffffffffffffffffffff1614611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90613d6b565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b61169561168e611a82565b8383611f61565b5050565b6116aa6116a4611a82565b83611b43565b6116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613e4b565b60405180910390fd5b6116f5848484846120ce565b50505050565b606061170682611a16565b611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90613dab565b60405180910390fd5b600061174f61212a565b9050600081511161176f576040518060200160405280600081525061179a565b80611779846121bc565b60405160200161178a929190613a98565b6040516020818303038152906040525b915050919050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611844611a82565b73ffffffffffffffffffffffffffffffffffffffff1661186261151f565b73ffffffffffffffffffffffffffffffffffffffff16146118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613d6b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90613beb565b60405180910390fd5b61193181611e9b565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119ff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a0f5750611a0e82612369565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611afd83611063565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b4e82611a16565b611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613c6b565b60405180910390fd5b6000611b9883611063565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c0757508373ffffffffffffffffffffffffffffffffffffffff16611bef8461089a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c185750611c1781856117a8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c4182611063565b73ffffffffffffffffffffffffffffffffffffffff1614611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e90613d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe90613c2b565b60405180910390fd5b611d128383836123d3565b611d1d600082611a8a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d6d919061405b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dc49190613f7a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e978282604051806020016040528060008152506124e7565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790613c4b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120c19190613b2e565b60405180910390a3505050565b6120d9848484611c21565b6120e584848484612542565b612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b90613bcb565b60405180910390fd5b50505050565b6060600e805461213990614145565b80601f016020809104026020016040519081016040528092919081815260200182805461216590614145565b80156121b25780601f10612187576101008083540402835291602001916121b2565b820191906000526020600020905b81548152906001019060200180831161219557829003601f168201915b5050505050905090565b60606000821415612204576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612364565b600082905060005b6000821461223657808061221f90614177565b915050600a8261222f9190613fd0565b915061220c565b60008167ffffffffffffffff811115612278577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122aa5781602001600182028036833780820191505090505b5090505b6000851461235d576001826122c3919061405b565b9150600a856122d291906141c0565b60306122de9190613f7a565b60f81b81838151811061231a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123569190613fd0565b94506122ae565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123de8383836126d9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124215761241c816126de565b612460565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461245f5761245e8382612727565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a35761249e81612894565b6124e2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124e1576124e082826129d7565b5b5b505050565b6124f18383612a56565b6124fe6000848484612542565b61253d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253490613bcb565b60405180910390fd5b505050565b60006125638473ffffffffffffffffffffffffffffffffffffffff16612c24565b156126cc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261258c611a82565b8786866040518563ffffffff1660e01b81526004016125ae9493929190613ae2565b602060405180830381600087803b1580156125c857600080fd5b505af19250505080156125f957506040513d601f19601f820116820180604052508101906125f69190612fe3565b60015b61267c573d8060008114612629576040519150601f19603f3d011682016040523d82523d6000602084013e61262e565b606091505b50600081511415612674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266b90613bcb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126d1565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612734846111a9565b61273e919061405b565b9050600060076000848152602001908152602001600020549050818114612823576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128a8919061405b565b90506000600960008481526020019081526020016000205490506000600883815481106128fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612946577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129e2836111a9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd90613d2b565b60405180910390fd5b612acf81611a16565b15612b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0690613c0b565b60405180910390fd5b612b1b600083836123d3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6b9190613f7a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c4390614145565b90600052602060002090601f016020900481019282612c655760008555612cac565b82601f10612c7e57805160ff1916838001178555612cac565b82800160010185558215612cac579182015b82811115612cab578251825591602001919060010190612c90565b5b509050612cb99190612cbd565b5090565b5b80821115612cd6576000816000905550600101612cbe565b5090565b6000612ced612ce884613ed7565b613ea6565b905082815260208101848484011115612d0557600080fd5b612d10848285614103565b509392505050565b6000612d2b612d2684613f07565b613ea6565b905082815260208101848484011115612d4357600080fd5b612d4e848285614103565b509392505050565b600081359050612d65816142be565b92915050565b600081359050612d7a816142d5565b92915050565b600081359050612d8f816142ec565b92915050565b600081519050612da4816142ec565b92915050565b600082601f830112612dbb57600080fd5b8135612dcb848260208601612cda565b91505092915050565b600082601f830112612de557600080fd5b8135612df5848260208601612d18565b91505092915050565b600081359050612e0d81614303565b92915050565b600060208284031215612e2557600080fd5b6000612e3384828501612d56565b91505092915050565b60008060408385031215612e4f57600080fd5b6000612e5d85828601612d56565b9250506020612e6e85828601612d56565b9150509250929050565b600080600060608486031215612e8d57600080fd5b6000612e9b86828701612d56565b9350506020612eac86828701612d56565b9250506040612ebd86828701612dfe565b9150509250925092565b60008060008060808587031215612edd57600080fd5b6000612eeb87828801612d56565b9450506020612efc87828801612d56565b9350506040612f0d87828801612dfe565b925050606085013567ffffffffffffffff811115612f2a57600080fd5b612f3687828801612daa565b91505092959194509250565b60008060408385031215612f5557600080fd5b6000612f6385828601612d56565b9250506020612f7485828601612d6b565b9150509250929050565b60008060408385031215612f9157600080fd5b6000612f9f85828601612d56565b9250506020612fb085828601612dfe565b9150509250929050565b600060208284031215612fcc57600080fd5b6000612fda84828501612d80565b91505092915050565b600060208284031215612ff557600080fd5b600061300384828501612d95565b91505092915050565b60006020828403121561301e57600080fd5b600082013567ffffffffffffffff81111561303857600080fd5b61304484828501612dd4565b91505092915050565b60006020828403121561305f57600080fd5b600061306d84828501612dfe565b91505092915050565b61307f8161408f565b82525050565b61308e816140a1565b82525050565b600061309f82613f37565b6130a98185613f4d565b93506130b9818560208601614112565b6130c2816142ad565b840191505092915050565b60006130d882613f42565b6130e28185613f5e565b93506130f2818560208601614112565b6130fb816142ad565b840191505092915050565b600061311182613f42565b61311b8185613f6f565b935061312b818560208601614112565b80840191505092915050565b6000613144601b83613f5e565b91507f596f75206861766520616c7265616479206d696e7465642033302100000000006000830152602082019050919050565b6000613184601b83613f5e565b91507f596f75206861766520616c7265616479206d696e7465642031302100000000006000830152602082019050919050565b60006131c4602b83613f5e565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061322a603283613f5e565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613290602683613f5e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132f6601c83613f5e565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613336602483613f5e565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061339c601983613f5e565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133dc602c83613f5e565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613442603183613f5e565b91507f4554482076616c75652073656e7420697320746f6f206c6974746c6520666f7260008301527f2074686973206d616e792070784d4159430000000000000000000000000000006020830152604082019050919050565b60006134a8603883613f5e565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061350e602a83613f5e565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613574602983613f5e565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006135da602a83613f5e565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662070784d415943000000000000000000000000000000000000000000006020830152604082019050919050565b6000613640602083613f5e565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613680602c83613f5e565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136e6600583613f6f565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000613726602083613f5e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613766602983613f5e565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006137cc602f83613f5e565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613832602483613f5e565b91507f4d696e7420636f756e7420697320746f6f206c6974746c65206f7220746f6f2060008301527f68696768000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613898602183613f5e565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138fe602c83613f5e565b91507f506c65617365207761697420756e74696c207468652064726f7020697320616360008301527f7469766520746f206d696e7400000000000000000000000000000000000000006020830152604082019050919050565b6000613964602d83613f5e565b91507f50757263686173652077696c6c20657863656564206d617820737570706c792060008301527f6f662066726565206d696e7473000000000000000000000000000000000000006020830152604082019050919050565b60006139ca603183613f5e565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613a30602c83613f5e565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b613a92816140f9565b82525050565b6000613aa48285613106565b9150613ab08284613106565b9150613abb826136d9565b91508190509392505050565b6000602082019050613adc6000830184613076565b92915050565b6000608082019050613af76000830187613076565b613b046020830186613076565b613b116040830185613a89565b8181036060830152613b238184613094565b905095945050505050565b6000602082019050613b436000830184613085565b92915050565b60006020820190508181036000830152613b6381846130cd565b905092915050565b60006020820190508181036000830152613b8481613137565b9050919050565b60006020820190508181036000830152613ba481613177565b9050919050565b60006020820190508181036000830152613bc4816131b7565b9050919050565b60006020820190508181036000830152613be48161321d565b9050919050565b60006020820190508181036000830152613c0481613283565b9050919050565b60006020820190508181036000830152613c24816132e9565b9050919050565b60006020820190508181036000830152613c4481613329565b9050919050565b60006020820190508181036000830152613c648161338f565b9050919050565b60006020820190508181036000830152613c84816133cf565b9050919050565b60006020820190508181036000830152613ca481613435565b9050919050565b60006020820190508181036000830152613cc48161349b565b9050919050565b60006020820190508181036000830152613ce481613501565b9050919050565b60006020820190508181036000830152613d0481613567565b9050919050565b60006020820190508181036000830152613d24816135cd565b9050919050565b60006020820190508181036000830152613d4481613633565b9050919050565b60006020820190508181036000830152613d6481613673565b9050919050565b60006020820190508181036000830152613d8481613719565b9050919050565b60006020820190508181036000830152613da481613759565b9050919050565b60006020820190508181036000830152613dc4816137bf565b9050919050565b60006020820190508181036000830152613de481613825565b9050919050565b60006020820190508181036000830152613e048161388b565b9050919050565b60006020820190508181036000830152613e24816138f1565b9050919050565b60006020820190508181036000830152613e4481613957565b9050919050565b60006020820190508181036000830152613e64816139bd565b9050919050565b60006020820190508181036000830152613e8481613a23565b9050919050565b6000602082019050613ea06000830184613a89565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613ecd57613ecc61427e565b5b8060405250919050565b600067ffffffffffffffff821115613ef257613ef161427e565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613f2257613f2161427e565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f85826140f9565b9150613f90836140f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fc557613fc46141f1565b5b828201905092915050565b6000613fdb826140f9565b9150613fe6836140f9565b925082613ff657613ff5614220565b5b828204905092915050565b600061400c826140f9565b9150614017836140f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140505761404f6141f1565b5b828202905092915050565b6000614066826140f9565b9150614071836140f9565b925082821015614084576140836141f1565b5b828203905092915050565b600061409a826140d9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614130578082015181840152602081019050614115565b8381111561413f576000848401525b50505050565b6000600282049050600182168061415d57607f821691505b602082108114156141715761417061424f565b5b50919050565b6000614182826140f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141b5576141b46141f1565b5b600182019050919050565b60006141cb826140f9565b91506141d6836140f9565b9250826141e6576141e5614220565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6142c78161408f565b81146142d257600080fd5b50565b6142de816140a1565b81146142e957600080fd5b50565b6142f5816140ad565b811461430057600080fd5b50565b61430c816140f9565b811461431757600080fd5b5056fea2646970667358221220db0f41101218e39bb1cbd99301b0eb7d17643f2dc0762af25cfd9b0d7778ae8164736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e1161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd146106ad578063d0b7581e146106ea578063e985e9c514610715578063f2fde38b14610752576101e3565b806395d89b411461061957806396f8f6dd14610644578063a22cb4651461065b578063b88d4fde14610684576101e3565b8063715018a6116100d1578063715018a6146105835780637a80c6fc1461059a57806380b17335146105c35780638da5cb5b146105ee576101e3565b80636352211e146104b35780636c0360eb146104f05780636de9f32b1461051b57806370a0823114610546576101e3565b80632f745c591161017a57806342842e0e1161014957806342842e0e14610408578063485787b8146104315780634f6ccce71461044d57806355f804b31461048a576101e3565b80632f745c59146103605780633b4c4b251461039d5780633ccfd60b146103c65780634233dc20146103dd576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e15780631b92d0eb1461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e8578063052939051461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612fba565b61077b565b60405161021c9190613b2e565b60405180910390f35b34801561023157600080fd5b5061023a6107f5565b6040516102479190613b2e565b60405180910390f35b34801561025c57600080fd5b50610265610808565b6040516102729190613b49565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061304d565b61089a565b6040516102af9190613ac7565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612f7e565b61091f565b005b3480156102ed57600080fd5b506102f6610a37565b6040516103039190613e8b565b60405180910390f35b34801561031857600080fd5b50610321610a44565b60405161032e9190613e8b565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612e78565b610a4a565b005b34801561036c57600080fd5b5061038760048036038101906103829190612f7e565b610aaa565b6040516103949190613e8b565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf919061304d565b610b4f565b005b3480156103d257600080fd5b506103db610bd5565b005b3480156103e957600080fd5b506103f2610c91565b6040516103ff9190613e8b565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190612e78565b610c96565b005b61044b6004803603810190610446919061304d565b610cb6565b005b34801561045957600080fd5b50610474600480360381019061046f919061304d565b610f36565b6040516104819190613e8b565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac919061300c565b610fcd565b005b3480156104bf57600080fd5b506104da60048036038101906104d5919061304d565b611063565b6040516104e79190613ac7565b60405180910390f35b3480156104fc57600080fd5b50610505611115565b6040516105129190613b49565b60405180910390f35b34801561052757600080fd5b506105306111a3565b60405161053d9190613e8b565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612e13565b6111a9565b60405161057a9190613e8b565b60405180910390f35b34801561058f57600080fd5b50610598611261565b005b3480156105a657600080fd5b506105c160048036038101906105bc919061304d565b6112e9565b005b3480156105cf57600080fd5b506105d8611519565b6040516105e59190613e8b565b60405180910390f35b3480156105fa57600080fd5b5061060361151f565b6040516106109190613ac7565b60405180910390f35b34801561062557600080fd5b5061062e611549565b60405161063b9190613b49565b60405180910390f35b34801561065057600080fd5b506106596115db565b005b34801561066757600080fd5b50610682600480360381019061067d9190612f42565b611683565b005b34801561069057600080fd5b506106ab60048036038101906106a69190612ec7565b611699565b005b3480156106b957600080fd5b506106d460048036038101906106cf919061304d565b6116fb565b6040516106e19190613b49565b60405180910390f35b3480156106f657600080fd5b506106ff6117a2565b60405161070c9190613e8b565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190612e3c565b6117a8565b6040516107499190613b2e565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612e13565b61183c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ee57506107ed82611934565b5b9050919050565b600d60009054906101000a900460ff1681565b60606000805461081790614145565b80601f016020809104026020016040519081016040528092919081815260200182805461084390614145565b80156108905780601f1061086557610100808354040283529160200191610890565b820191906000526020600020905b81548152906001019060200180831161087357829003601f168201915b5050505050905090565b60006108a582611a16565b6108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db90613d4b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092a82611063565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290613deb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ba611a82565b73ffffffffffffffffffffffffffffffffffffffff1614806109e957506109e8816109e3611a82565b6117a8565b5b610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90613cab565b60405180910390fd5b610a328383611a8a565b505050565b6000600880549050905090565b600b5481565b610a5b610a55611a82565b82611b43565b610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190613e4b565b60405180910390fd5b610aa5838383611c21565b505050565b6000610ab5836111a9565b8210610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90613bab565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b57611a82565b73ffffffffffffffffffffffffffffffffffffffff16610b7561151f565b73ffffffffffffffffffffffffffffffffffffffff1614610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290613d6b565b60405180910390fd5b80600c8190555050565b610bdd611a82565b73ffffffffffffffffffffffffffffffffffffffff16610bfb61151f565b73ffffffffffffffffffffffffffffffffffffffff1614610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890613d6b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c8f57600080fd5b565b600a81565b610cb183838360405180602001604052806000815250611699565b505050565b600d60009054906101000a900460ff16610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90613e0b565b60405180910390fd5b600081118015610d165750600a8111155b610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613dcb565b60405180910390fd5b600c5481600f54610d669190613f7a565b1115610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90613d0b565b60405180910390fd5b80600b54610db59190614001565b341015610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90613c8b565b60405180910390fd5b601e81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e449190613f7a565b1115610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90613b6b565b60405180910390fd5b6000600f54905081600f6000828254610e9e9190613f7a565b9250508190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ef49190613f7a565b9250508190555060005b82811015610f3157610f103383611e7d565b8180610f1b90614177565b9250508080610f2990614177565b915050610efe565b505050565b6000610f40610a37565b8210610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890613e6b565b60405180910390fd5b60088281548110610fbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610fd5611a82565b73ffffffffffffffffffffffffffffffffffffffff16610ff361151f565b73ffffffffffffffffffffffffffffffffffffffff1614611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090613d6b565b60405180910390fd5b80600e908051906020019061105f929190612c37565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390613ceb565b60405180910390fd5b80915050919050565b600e805461112290614145565b80601f016020809104026020016040519081016040528092919081815260200182805461114e90614145565b801561119b5780601f106111705761010080835404028352916020019161119b565b820191906000526020600020905b81548152906001019060200180831161117e57829003601f168201915b505050505081565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190613ccb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611269611a82565b73ffffffffffffffffffffffffffffffffffffffff1661128761151f565b73ffffffffffffffffffffffffffffffffffffffff16146112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490613d6b565b60405180910390fd5b6112e76000611e9b565b565b600d60009054906101000a900460ff16611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613e0b565b60405180910390fd5b6000811180156113495750600a8111155b611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90613dcb565b60405180910390fd5b60105481600f546113999190613f7a565b11156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190613e2b565b60405180910390fd5b600a81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114279190613f7a565b1115611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f90613b8b565b60405180910390fd5b6000600f54905081600f60008282546114819190613f7a565b9250508190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114d79190613f7a565b9250508190555060005b82811015611514576114f33383611e7d565b81806114fe90614177565b925050808061150c90614177565b9150506114e1565b505050565b60105481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461155890614145565b80601f016020809104026020016040519081016040528092919081815260200182805461158490614145565b80156115d15780601f106115a6576101008083540402835291602001916115d1565b820191906000526020600020905b8154815290600101906020018083116115b457829003601f168201915b5050505050905090565b6115e3611a82565b73ffffffffffffffffffffffffffffffffffffffff1661160161151f565b73ffffffffffffffffffffffffffffffffffffffff1614611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90613d6b565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b61169561168e611a82565b8383611f61565b5050565b6116aa6116a4611a82565b83611b43565b6116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613e4b565b60405180910390fd5b6116f5848484846120ce565b50505050565b606061170682611a16565b611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90613dab565b60405180910390fd5b600061174f61212a565b9050600081511161176f576040518060200160405280600081525061179a565b80611779846121bc565b60405160200161178a929190613a98565b6040516020818303038152906040525b915050919050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611844611a82565b73ffffffffffffffffffffffffffffffffffffffff1661186261151f565b73ffffffffffffffffffffffffffffffffffffffff16146118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613d6b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90613beb565b60405180910390fd5b61193181611e9b565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119ff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a0f5750611a0e82612369565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611afd83611063565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b4e82611a16565b611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613c6b565b60405180910390fd5b6000611b9883611063565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c0757508373ffffffffffffffffffffffffffffffffffffffff16611bef8461089a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c185750611c1781856117a8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c4182611063565b73ffffffffffffffffffffffffffffffffffffffff1614611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e90613d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe90613c2b565b60405180910390fd5b611d128383836123d3565b611d1d600082611a8a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d6d919061405b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dc49190613f7a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e978282604051806020016040528060008152506124e7565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790613c4b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120c19190613b2e565b60405180910390a3505050565b6120d9848484611c21565b6120e584848484612542565b612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b90613bcb565b60405180910390fd5b50505050565b6060600e805461213990614145565b80601f016020809104026020016040519081016040528092919081815260200182805461216590614145565b80156121b25780601f10612187576101008083540402835291602001916121b2565b820191906000526020600020905b81548152906001019060200180831161219557829003601f168201915b5050505050905090565b60606000821415612204576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612364565b600082905060005b6000821461223657808061221f90614177565b915050600a8261222f9190613fd0565b915061220c565b60008167ffffffffffffffff811115612278577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122aa5781602001600182028036833780820191505090505b5090505b6000851461235d576001826122c3919061405b565b9150600a856122d291906141c0565b60306122de9190613f7a565b60f81b81838151811061231a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123569190613fd0565b94506122ae565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123de8383836126d9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124215761241c816126de565b612460565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461245f5761245e8382612727565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a35761249e81612894565b6124e2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124e1576124e082826129d7565b5b5b505050565b6124f18383612a56565b6124fe6000848484612542565b61253d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253490613bcb565b60405180910390fd5b505050565b60006125638473ffffffffffffffffffffffffffffffffffffffff16612c24565b156126cc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261258c611a82565b8786866040518563ffffffff1660e01b81526004016125ae9493929190613ae2565b602060405180830381600087803b1580156125c857600080fd5b505af19250505080156125f957506040513d601f19601f820116820180604052508101906125f69190612fe3565b60015b61267c573d8060008114612629576040519150601f19603f3d011682016040523d82523d6000602084013e61262e565b606091505b50600081511415612674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266b90613bcb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126d1565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612734846111a9565b61273e919061405b565b9050600060076000848152602001908152602001600020549050818114612823576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128a8919061405b565b90506000600960008481526020019081526020016000205490506000600883815481106128fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612946577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129e2836111a9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd90613d2b565b60405180910390fd5b612acf81611a16565b15612b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0690613c0b565b60405180910390fd5b612b1b600083836123d3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6b9190613f7a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c4390614145565b90600052602060002090601f016020900481019282612c655760008555612cac565b82601f10612c7e57805160ff1916838001178555612cac565b82800160010185558215612cac579182015b82811115612cab578251825591602001919060010190612c90565b5b509050612cb99190612cbd565b5090565b5b80821115612cd6576000816000905550600101612cbe565b5090565b6000612ced612ce884613ed7565b613ea6565b905082815260208101848484011115612d0557600080fd5b612d10848285614103565b509392505050565b6000612d2b612d2684613f07565b613ea6565b905082815260208101848484011115612d4357600080fd5b612d4e848285614103565b509392505050565b600081359050612d65816142be565b92915050565b600081359050612d7a816142d5565b92915050565b600081359050612d8f816142ec565b92915050565b600081519050612da4816142ec565b92915050565b600082601f830112612dbb57600080fd5b8135612dcb848260208601612cda565b91505092915050565b600082601f830112612de557600080fd5b8135612df5848260208601612d18565b91505092915050565b600081359050612e0d81614303565b92915050565b600060208284031215612e2557600080fd5b6000612e3384828501612d56565b91505092915050565b60008060408385031215612e4f57600080fd5b6000612e5d85828601612d56565b9250506020612e6e85828601612d56565b9150509250929050565b600080600060608486031215612e8d57600080fd5b6000612e9b86828701612d56565b9350506020612eac86828701612d56565b9250506040612ebd86828701612dfe565b9150509250925092565b60008060008060808587031215612edd57600080fd5b6000612eeb87828801612d56565b9450506020612efc87828801612d56565b9350506040612f0d87828801612dfe565b925050606085013567ffffffffffffffff811115612f2a57600080fd5b612f3687828801612daa565b91505092959194509250565b60008060408385031215612f5557600080fd5b6000612f6385828601612d56565b9250506020612f7485828601612d6b565b9150509250929050565b60008060408385031215612f9157600080fd5b6000612f9f85828601612d56565b9250506020612fb085828601612dfe565b9150509250929050565b600060208284031215612fcc57600080fd5b6000612fda84828501612d80565b91505092915050565b600060208284031215612ff557600080fd5b600061300384828501612d95565b91505092915050565b60006020828403121561301e57600080fd5b600082013567ffffffffffffffff81111561303857600080fd5b61304484828501612dd4565b91505092915050565b60006020828403121561305f57600080fd5b600061306d84828501612dfe565b91505092915050565b61307f8161408f565b82525050565b61308e816140a1565b82525050565b600061309f82613f37565b6130a98185613f4d565b93506130b9818560208601614112565b6130c2816142ad565b840191505092915050565b60006130d882613f42565b6130e28185613f5e565b93506130f2818560208601614112565b6130fb816142ad565b840191505092915050565b600061311182613f42565b61311b8185613f6f565b935061312b818560208601614112565b80840191505092915050565b6000613144601b83613f5e565b91507f596f75206861766520616c7265616479206d696e7465642033302100000000006000830152602082019050919050565b6000613184601b83613f5e565b91507f596f75206861766520616c7265616479206d696e7465642031302100000000006000830152602082019050919050565b60006131c4602b83613f5e565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061322a603283613f5e565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613290602683613f5e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132f6601c83613f5e565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613336602483613f5e565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061339c601983613f5e565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133dc602c83613f5e565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613442603183613f5e565b91507f4554482076616c75652073656e7420697320746f6f206c6974746c6520666f7260008301527f2074686973206d616e792070784d4159430000000000000000000000000000006020830152604082019050919050565b60006134a8603883613f5e565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061350e602a83613f5e565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613574602983613f5e565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006135da602a83613f5e565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662070784d415943000000000000000000000000000000000000000000006020830152604082019050919050565b6000613640602083613f5e565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613680602c83613f5e565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136e6600583613f6f565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000613726602083613f5e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613766602983613f5e565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006137cc602f83613f5e565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613832602483613f5e565b91507f4d696e7420636f756e7420697320746f6f206c6974746c65206f7220746f6f2060008301527f68696768000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613898602183613f5e565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138fe602c83613f5e565b91507f506c65617365207761697420756e74696c207468652064726f7020697320616360008301527f7469766520746f206d696e7400000000000000000000000000000000000000006020830152604082019050919050565b6000613964602d83613f5e565b91507f50757263686173652077696c6c20657863656564206d617820737570706c792060008301527f6f662066726565206d696e7473000000000000000000000000000000000000006020830152604082019050919050565b60006139ca603183613f5e565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613a30602c83613f5e565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b613a92816140f9565b82525050565b6000613aa48285613106565b9150613ab08284613106565b9150613abb826136d9565b91508190509392505050565b6000602082019050613adc6000830184613076565b92915050565b6000608082019050613af76000830187613076565b613b046020830186613076565b613b116040830185613a89565b8181036060830152613b238184613094565b905095945050505050565b6000602082019050613b436000830184613085565b92915050565b60006020820190508181036000830152613b6381846130cd565b905092915050565b60006020820190508181036000830152613b8481613137565b9050919050565b60006020820190508181036000830152613ba481613177565b9050919050565b60006020820190508181036000830152613bc4816131b7565b9050919050565b60006020820190508181036000830152613be48161321d565b9050919050565b60006020820190508181036000830152613c0481613283565b9050919050565b60006020820190508181036000830152613c24816132e9565b9050919050565b60006020820190508181036000830152613c4481613329565b9050919050565b60006020820190508181036000830152613c648161338f565b9050919050565b60006020820190508181036000830152613c84816133cf565b9050919050565b60006020820190508181036000830152613ca481613435565b9050919050565b60006020820190508181036000830152613cc48161349b565b9050919050565b60006020820190508181036000830152613ce481613501565b9050919050565b60006020820190508181036000830152613d0481613567565b9050919050565b60006020820190508181036000830152613d24816135cd565b9050919050565b60006020820190508181036000830152613d4481613633565b9050919050565b60006020820190508181036000830152613d6481613673565b9050919050565b60006020820190508181036000830152613d8481613719565b9050919050565b60006020820190508181036000830152613da481613759565b9050919050565b60006020820190508181036000830152613dc4816137bf565b9050919050565b60006020820190508181036000830152613de481613825565b9050919050565b60006020820190508181036000830152613e048161388b565b9050919050565b60006020820190508181036000830152613e24816138f1565b9050919050565b60006020820190508181036000830152613e4481613957565b9050919050565b60006020820190508181036000830152613e64816139bd565b9050919050565b60006020820190508181036000830152613e8481613a23565b9050919050565b6000602082019050613ea06000830184613a89565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613ecd57613ecc61427e565b5b8060405250919050565b600067ffffffffffffffff821115613ef257613ef161427e565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613f2257613f2161427e565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f85826140f9565b9150613f90836140f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fc557613fc46141f1565b5b828201905092915050565b6000613fdb826140f9565b9150613fe6836140f9565b925082613ff657613ff5614220565b5b828204905092915050565b600061400c826140f9565b9150614017836140f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140505761404f6141f1565b5b828202905092915050565b6000614066826140f9565b9150614071836140f9565b925082821015614084576140836141f1565b5b828203905092915050565b600061409a826140d9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614130578082015181840152602081019050614115565b8381111561413f576000848401525b50505050565b6000600282049050600182168061415d57607f821691505b602082108114156141715761417061424f565b5b50919050565b6000614182826140f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141b5576141b46141f1565b5b600182019050919050565b60006141cb826140f9565b91506141d6836140f9565b9250826141e6576141e5614220565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6142c78161408f565b81146142d257600080fd5b50565b6142de816140a1565b81146142e957600080fd5b50565b6142f5816140ad565b811461430057600080fd5b50565b61430c816140f9565b811461431757600080fd5b5056fea2646970667358221220db0f41101218e39bb1cbd99301b0eb7d17643f2dc0762af25cfd9b0d7778ae8164736f6c63430008000033

Deployed Bytecode Sourcemap

43987:2663:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35335:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44182:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21995:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23563:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23086:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35975:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44041:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24313:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35643:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46549:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44448:112;;;;;;;;;;;;;:::i;:::-;;44094:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24723:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45437:880;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36165:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46441:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21689:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44223:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44256:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21419:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43139:103;;;;;;;;;;;;;:::i;:::-;;44669:760;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44294:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42488:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22164:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44568:93;;;;;;;;;;;;;:::i;:::-;;23856:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24979:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22339:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44144:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24082:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43397:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35335:224;35437:4;35476:35;35461:50;;;:11;:50;;;;:90;;;;35515:36;35539:11;35515:23;:36::i;:::-;35461:90;35454:97;;35335:224;;;:::o;44182:34::-;;;;;;;;;;;;;:::o;21995:100::-;22049:13;22082:5;22075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21995:100;:::o;23563:221::-;23639:7;23667:16;23675:7;23667;:16::i;:::-;23659:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23752:15;:24;23768:7;23752:24;;;;;;;;;;;;;;;;;;;;;23745:31;;23563:221;;;:::o;23086:411::-;23167:13;23183:23;23198:7;23183:14;:23::i;:::-;23167:39;;23231:5;23225:11;;:2;:11;;;;23217:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23325:5;23309:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23334:37;23351:5;23358:12;:10;:12::i;:::-;23334:16;:37::i;:::-;23309:62;23287:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23468:21;23477:2;23481:7;23468:8;:21::i;:::-;23086:411;;;:::o;35975:113::-;36036:7;36063:10;:17;;;;36056:24;;35975:113;:::o;44041:46::-;;;;:::o;24313:339::-;24508:41;24527:12;:10;:12::i;:::-;24541:7;24508:18;:41::i;:::-;24500:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24616:28;24626:4;24632:2;24636:7;24616:9;:28::i;:::-;24313:339;;;:::o;35643:256::-;35740:7;35776:23;35793:5;35776:16;:23::i;:::-;35768:5;:31;35760:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35865:12;:19;35878:5;35865:19;;;;;;;;;;;;;;;:26;35885:5;35865:26;;;;;;;;;;;;35858:33;;35643:256;;;;:::o;46549:96::-;42719:12;:10;:12::i;:::-;42708:23;;:7;:5;:7::i;:::-;:23;;;42700:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46628:9:::1;46613:12;:24;;;;46549:96:::0;:::o;44448:112::-;42719:12;:10;:12::i;:::-;42708:23;;:7;:5;:7::i;:::-;:23;;;42700:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44512:10:::1;44504:24;;:47;44529:21;44504:47;;;;;;;;;;;;;;;;;;;;;;;44496:56;;;::::0;::::1;;44448:112::o:0;44094:43::-;44135:2;44094:43;:::o;24723:185::-;24861:39;24878:4;24884:2;24888:7;24861:39;;;;;;;;;;;;:16;:39::i;:::-;24723:185;;;:::o;45437:880::-;45512:14;;;;;;;;;;;45504:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45611:1;45594:14;:18;:57;;;;;44135:2;45616:14;:35;;45594:57;45586:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;45744:12;;45726:14;45711:12;;:29;;;;:::i;:::-;:45;;45703:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;45849:14;45835:11;;:28;;;;:::i;:::-;45822:9;:41;;45814:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;45988:2;45970:14;45936:19;:31;45956:10;45936:31;;;;;;;;;;;;;;;;:48;;;;:::i;:::-;:54;;45928:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;46035:18;46056:12;;46035:33;;46095:14;46079:12;;:30;;;;;;;:::i;:::-;;;;;;;;46155:14;46120:19;:31;46140:10;46120:31;;;;;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;;46187:6;46182:128;46203:14;46199:1;:18;46182:128;;;46238:33;46248:10;46260;46238:9;:33::i;:::-;46286:12;;;;;:::i;:::-;;;;46219:3;;;;;:::i;:::-;;;;46182:128;;;;45437:880;;:::o;36165:233::-;36240:7;36276:30;:28;:30::i;:::-;36268:5;:38;36260:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36373:10;36384:5;36373:17;;;;;;;;;;;;;;;;;;;;;;;;36366:24;;36165:233;;;:::o;46441:100::-;42719:12;:10;:12::i;:::-;42708:23;;:7;:5;:7::i;:::-;:23;;;42700:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46523:10:::1;46513:7;:20;;;;;;;;;;;;:::i;:::-;;46441:100:::0;:::o;21689:239::-;21761:7;21781:13;21797:7;:16;21805:7;21797:16;;;;;;;;;;;;;;;;;;;;;21781:32;;21849:1;21832:19;;:5;:19;;;;21824:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21915:5;21908:12;;;21689:239;;;:::o;44223:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44256:31::-;;;;:::o;21419:208::-;21491:7;21536:1;21519:19;;:5;:19;;;;21511:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21603:9;:16;21613:5;21603:16;;;;;;;;;;;;;;;;21596:23;;21419:208;;;:::o;43139:103::-;42719:12;:10;:12::i;:::-;42708:23;;:7;:5;:7::i;:::-;:23;;;42700:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43204:30:::1;43231:1;43204:18;:30::i;:::-;43139:103::o:0;44669:760::-;44740:14;;;;;;;;;;;44732:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44839:1;44822:14;:18;:57;;;;;44135:2;44844:14;:35;;44822:57;44814:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;44972:9;;44954:14;44939:12;;:29;;;;:::i;:::-;:42;;44931:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;45102:2;45084:14;45050:19;:31;45070:10;45050:31;;;;;;;;;;;;;;;;:48;;;;:::i;:::-;:54;;45042:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;45147:18;45168:12;;45147:33;;45207:14;45191:12;;:30;;;;;;;:::i;:::-;;;;;;;;45267:14;45232:19;:31;45252:10;45232:31;;;;;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;;45299:6;45294:128;45315:14;45311:1;:18;45294:128;;;45350:33;45360:10;45372;45350:9;:33::i;:::-;45398:12;;;;;:::i;:::-;;;;45331:3;;;;;:::i;:::-;;;;45294:128;;;;44669:760;;:::o;44294:30::-;;;;:::o;42488:87::-;42534:7;42561:6;;;;;;;;;;;42554:13;;42488:87;:::o;22164:104::-;22220:13;22253:7;22246:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22164:104;:::o;44568:93::-;42719:12;:10;:12::i;:::-;42708:23;;:7;:5;:7::i;:::-;:23;;;42700:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44639:14:::1;;;;;;;;;;;44638:15;44621:14;;:32;;;;;;;;;;;;;;;;;;44568:93::o:0;23856:155::-;23951:52;23970:12;:10;:12::i;:::-;23984:8;23994;23951:18;:52::i;:::-;23856:155;;:::o;24979:328::-;25154:41;25173:12;:10;:12::i;:::-;25187:7;25154:18;:41::i;:::-;25146:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25260:39;25274:4;25280:2;25284:7;25293:5;25260:13;:39::i;:::-;24979:328;;;;:::o;22339:343::-;22412:13;22446:16;22454:7;22446;:16::i;:::-;22438:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22527:21;22551:10;:8;:10::i;:::-;22527:34;;22603:1;22585:7;22579:21;:25;:95;;;;;;;;;;;;;;;;;22631:7;22640:18;:7;:16;:18::i;:::-;22614:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22579:95;22572:102;;;22339:343;;;:::o;44144:31::-;;;;:::o;24082:164::-;24179:4;24203:18;:25;24222:5;24203:25;;;;;;;;;;;;;;;:35;24229:8;24203:35;;;;;;;;;;;;;;;;;;;;;;;;;24196:42;;24082:164;;;;:::o;43397:201::-;42719:12;:10;:12::i;:::-;42708:23;;:7;:5;:7::i;:::-;:23;;;42700:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43506:1:::1;43486:22;;:8;:22;;;;43478:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43562:28;43581:8;43562:18;:28::i;:::-;43397:201:::0;:::o;21050:305::-;21152:4;21204:25;21189:40;;;:11;:40;;;;:105;;;;21261:33;21246:48;;;:11;:48;;;;21189:105;:158;;;;21311:36;21335:11;21311:23;:36::i;:::-;21189:158;21169:178;;21050:305;;;:::o;26817:127::-;26882:4;26934:1;26906:30;;:7;:16;26914:7;26906:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26899:37;;26817:127;;;:::o;17446:98::-;17499:7;17526:10;17519:17;;17446:98;:::o;30799:174::-;30901:2;30874:15;:24;30890:7;30874:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30957:7;30953:2;30919:46;;30928:23;30943:7;30928:14;:23::i;:::-;30919:46;;;;;;;;;;;;30799:174;;:::o;27111:348::-;27204:4;27229:16;27237:7;27229;:16::i;:::-;27221:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27305:13;27321:23;27336:7;27321:14;:23::i;:::-;27305:39;;27374:5;27363:16;;:7;:16;;;:51;;;;27407:7;27383:31;;:20;27395:7;27383:11;:20::i;:::-;:31;;;27363:51;:87;;;;27418:32;27435:5;27442:7;27418:16;:32::i;:::-;27363:87;27355:96;;;27111:348;;;;:::o;30103:578::-;30262:4;30235:31;;:23;30250:7;30235:14;:23::i;:::-;:31;;;30227:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30345:1;30331:16;;:2;:16;;;;30323:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30401:39;30422:4;30428:2;30432:7;30401:20;:39::i;:::-;30505:29;30522:1;30526:7;30505:8;:29::i;:::-;30566:1;30547:9;:15;30557:4;30547:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30595:1;30578:9;:13;30588:2;30578:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30626:2;30607:7;:16;30615:7;30607:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30665:7;30661:2;30646:27;;30655:4;30646:27;;;;;;;;;;;;30103:578;;;:::o;27801:110::-;27877:26;27887:2;27891:7;27877:26;;;;;;;;;;;;:9;:26::i;:::-;27801:110;;:::o;43758:191::-;43832:16;43851:6;;;;;;;;;;;43832:25;;43877:8;43868:6;;:17;;;;;;;;;;;;;;;;;;43932:8;43901:40;;43922:8;43901:40;;;;;;;;;;;;43758:191;;:::o;31115:315::-;31270:8;31261:17;;:5;:17;;;;31253:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;31357:8;31319:18;:25;31338:5;31319:25;;;;;;;;;;;;;;;:35;31345:8;31319:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31403:8;31381:41;;31396:5;31381:41;;;31413:8;31381:41;;;;;;:::i;:::-;;;;;;;;31115:315;;;:::o;26189:::-;26346:28;26356:4;26362:2;26366:7;26346:9;:28::i;:::-;26393:48;26416:4;26422:2;26426:7;26435:5;26393:22;:48::i;:::-;26385:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26189:315;;;;:::o;46325:108::-;46385:13;46418:7;46411:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46325:108;:::o;17971:723::-;18027:13;18257:1;18248:5;:10;18244:53;;;18275:10;;;;;;;;;;;;;;;;;;;;;18244:53;18307:12;18322:5;18307:20;;18338:14;18363:78;18378:1;18370:4;:9;18363:78;;18396:8;;;;;:::i;:::-;;;;18427:2;18419:10;;;;;:::i;:::-;;;18363:78;;;18451:19;18483:6;18473:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18451:39;;18501:154;18517:1;18508:5;:10;18501:154;;18545:1;18535:11;;;;;:::i;:::-;;;18612:2;18604:5;:10;;;;:::i;:::-;18591:2;:24;;;;:::i;:::-;18578:39;;18561:6;18568;18561:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;18641:2;18632:11;;;;;:::i;:::-;;;18501:154;;;18679:6;18665:21;;;;;17971:723;;;;:::o;8560:157::-;8645:4;8684:25;8669:40;;;:11;:40;;;;8662:47;;8560:157;;;:::o;37011:589::-;37155:45;37182:4;37188:2;37192:7;37155:26;:45::i;:::-;37233:1;37217:18;;:4;:18;;;37213:187;;;37252:40;37284:7;37252:31;:40::i;:::-;37213:187;;;37322:2;37314:10;;:4;:10;;;37310:90;;37341:47;37374:4;37380:7;37341:32;:47::i;:::-;37310:90;37213:187;37428:1;37414:16;;:2;:16;;;37410:183;;;37447:45;37484:7;37447:36;:45::i;:::-;37410:183;;;37520:4;37514:10;;:2;:10;;;37510:83;;37541:40;37569:2;37573:7;37541:27;:40::i;:::-;37510:83;37410:183;37011:589;;;:::o;28138:321::-;28268:18;28274:2;28278:7;28268:5;:18::i;:::-;28319:54;28350:1;28354:2;28358:7;28367:5;28319:22;:54::i;:::-;28297:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28138:321;;;:::o;31995:799::-;32150:4;32171:15;:2;:13;;;:15::i;:::-;32167:620;;;32223:2;32207:36;;;32244:12;:10;:12::i;:::-;32258:4;32264:7;32273:5;32207:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32203:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32466:1;32449:6;:13;:18;32445:272;;;32492:60;;;;;;;;;;:::i;:::-;;;;;;;;32445:272;32667:6;32661:13;32652:6;32648:2;32644:15;32637:38;32203:529;32340:41;;;32330:51;;;:6;:51;;;;32323:58;;;;;32167:620;32771:4;32764:11;;31995:799;;;;;;;:::o;33366:126::-;;;;:::o;38323:164::-;38427:10;:17;;;;38400:15;:24;38416:7;38400:24;;;;;;;;;;;:44;;;;38455:10;38471:7;38455:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38323:164;:::o;39114:988::-;39380:22;39430:1;39405:22;39422:4;39405:16;:22::i;:::-;:26;;;;:::i;:::-;39380:51;;39442:18;39463:17;:26;39481:7;39463:26;;;;;;;;;;;;39442:47;;39610:14;39596:10;:28;39592:328;;39641:19;39663:12;:18;39676:4;39663:18;;;;;;;;;;;;;;;:34;39682:14;39663:34;;;;;;;;;;;;39641:56;;39747:11;39714:12;:18;39727:4;39714:18;;;;;;;;;;;;;;;:30;39733:10;39714:30;;;;;;;;;;;:44;;;;39864:10;39831:17;:30;39849:11;39831:30;;;;;;;;;;;:43;;;;39592:328;;40016:17;:26;40034:7;40016:26;;;;;;;;;;;40009:33;;;40060:12;:18;40073:4;40060:18;;;;;;;;;;;;;;;:34;40079:14;40060:34;;;;;;;;;;;40053:41;;;39114:988;;;;:::o;40397:1079::-;40650:22;40695:1;40675:10;:17;;;;:21;;;;:::i;:::-;40650:46;;40707:18;40728:15;:24;40744:7;40728:24;;;;;;;;;;;;40707:45;;41079:19;41101:10;41112:14;41101:26;;;;;;;;;;;;;;;;;;;;;;;;41079:48;;41165:11;41140:10;41151;41140:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;41276:10;41245:15;:28;41261:11;41245:28;;;;;;;;;;;:41;;;;41417:15;:24;41433:7;41417:24;;;;;;;;;;;41410:31;;;41452:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40397:1079;;;;:::o;37901:221::-;37986:14;38003:20;38020:2;38003:16;:20::i;:::-;37986:37;;38061:7;38034:12;:16;38047:2;38034:16;;;;;;;;;;;;;;;:24;38051:6;38034:24;;;;;;;;;;;:34;;;;38108:6;38079:17;:26;38097:7;38079:26;;;;;;;;;;;:35;;;;37901:221;;;:::o;28795:382::-;28889:1;28875:16;;:2;:16;;;;28867:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28948:16;28956:7;28948;:16::i;:::-;28947:17;28939:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29010:45;29039:1;29043:2;29047:7;29010:20;:45::i;:::-;29085:1;29068:9;:13;29078:2;29068:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29116:2;29097:7;:16;29105:7;29097:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29161:7;29157:2;29136:33;;29153:1;29136:33;;;;;;;;;;;;28795:382;;:::o;9490:387::-;9550:4;9758:12;9825:7;9813:20;9805:28;;9868:1;9861:4;:8;9854:15;;;9490:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:118::-;6171:24;6189:5;6171:24;:::i;:::-;6166:3;6159:37;6149:53;;:::o;6208:109::-;6289:21;6304:5;6289:21;:::i;:::-;6284:3;6277:34;6267:50;;:::o;6323:360::-;;6437:38;6469:5;6437:38;:::i;:::-;6491:70;6554:6;6549:3;6491:70;:::i;:::-;6484:77;;6570:52;6615:6;6610:3;6603:4;6596:5;6592:16;6570:52;:::i;:::-;6647:29;6669:6;6647:29;:::i;:::-;6642:3;6638:39;6631:46;;6413:270;;;;;:::o;6689:364::-;;6805:39;6838:5;6805:39;:::i;:::-;6860:71;6924:6;6919:3;6860:71;:::i;:::-;6853:78;;6940:52;6985:6;6980:3;6973:4;6966:5;6962:16;6940:52;:::i;:::-;7017:29;7039:6;7017:29;:::i;:::-;7012:3;7008:39;7001:46;;6781:272;;;;;:::o;7059:377::-;;7193:39;7226:5;7193:39;:::i;:::-;7248:89;7330:6;7325:3;7248:89;:::i;:::-;7241:96;;7346:52;7391:6;7386:3;7379:4;7372:5;7368:16;7346:52;:::i;:::-;7423:6;7418:3;7414:16;7407:23;;7169:267;;;;;:::o;7442:325::-;;7605:67;7669:2;7664:3;7605:67;:::i;:::-;7598:74;;7702:29;7698:1;7693:3;7689:11;7682:50;7758:2;7753:3;7749:12;7742:19;;7588:179;;;:::o;7773:325::-;;7936:67;8000:2;7995:3;7936:67;:::i;:::-;7929:74;;8033:29;8029:1;8024:3;8020:11;8013:50;8089:2;8084:3;8080:12;8073:19;;7919:179;;;:::o;8104:375::-;;8267:67;8331:2;8326:3;8267:67;:::i;:::-;8260:74;;8364:34;8360:1;8355:3;8351:11;8344:55;8430:13;8425:2;8420:3;8416:12;8409:35;8470:2;8465:3;8461:12;8454:19;;8250:229;;;:::o;8485:382::-;;8648:67;8712:2;8707:3;8648:67;:::i;:::-;8641:74;;8745:34;8741:1;8736:3;8732:11;8725:55;8811:20;8806:2;8801:3;8797:12;8790:42;8858:2;8853:3;8849:12;8842:19;;8631:236;;;:::o;8873:370::-;;9036:67;9100:2;9095:3;9036:67;:::i;:::-;9029:74;;9133:34;9129:1;9124:3;9120:11;9113:55;9199:8;9194:2;9189:3;9185:12;9178:30;9234:2;9229:3;9225:12;9218:19;;9019:224;;;:::o;9249:326::-;;9412:67;9476:2;9471:3;9412:67;:::i;:::-;9405:74;;9509:30;9505:1;9500:3;9496:11;9489:51;9566:2;9561:3;9557:12;9550:19;;9395:180;;;:::o;9581:368::-;;9744:67;9808:2;9803:3;9744:67;:::i;:::-;9737:74;;9841:34;9837:1;9832:3;9828:11;9821:55;9907:6;9902:2;9897:3;9893:12;9886:28;9940:2;9935:3;9931:12;9924:19;;9727:222;;;:::o;9955:323::-;;10118:67;10182:2;10177:3;10118:67;:::i;:::-;10111:74;;10215:27;10211:1;10206:3;10202:11;10195:48;10269:2;10264:3;10260:12;10253:19;;10101:177;;;:::o;10284:376::-;;10447:67;10511:2;10506:3;10447:67;:::i;:::-;10440:74;;10544:34;10540:1;10535:3;10531:11;10524:55;10610:14;10605:2;10600:3;10596:12;10589:36;10651:2;10646:3;10642:12;10635:19;;10430:230;;;:::o;10666:381::-;;10829:67;10893:2;10888:3;10829:67;:::i;:::-;10822:74;;10926:34;10922:1;10917:3;10913:11;10906:55;10992:19;10987:2;10982:3;10978:12;10971:41;11038:2;11033:3;11029:12;11022:19;;10812:235;;;:::o;11053:388::-;;11216:67;11280:2;11275:3;11216:67;:::i;:::-;11209:74;;11313:34;11309:1;11304:3;11300:11;11293:55;11379:26;11374:2;11369:3;11365:12;11358:48;11432:2;11427:3;11423:12;11416:19;;11199:242;;;:::o;11447:374::-;;11610:67;11674:2;11669:3;11610:67;:::i;:::-;11603:74;;11707:34;11703:1;11698:3;11694:11;11687:55;11773:12;11768:2;11763:3;11759:12;11752:34;11812:2;11807:3;11803:12;11796:19;;11593:228;;;:::o;11827:373::-;;11990:67;12054:2;12049:3;11990:67;:::i;:::-;11983:74;;12087:34;12083:1;12078:3;12074:11;12067:55;12153:11;12148:2;12143:3;12139:12;12132:33;12191:2;12186:3;12182:12;12175:19;;11973:227;;;:::o;12206:374::-;;12369:67;12433:2;12428:3;12369:67;:::i;:::-;12362:74;;12466:34;12462:1;12457:3;12453:11;12446:55;12532:12;12527:2;12522:3;12518:12;12511:34;12571:2;12566:3;12562:12;12555:19;;12352:228;;;:::o;12586:330::-;;12749:67;12813:2;12808:3;12749:67;:::i;:::-;12742:74;;12846:34;12842:1;12837:3;12833:11;12826:55;12907:2;12902:3;12898:12;12891:19;;12732:184;;;:::o;12922:376::-;;13085:67;13149:2;13144:3;13085:67;:::i;:::-;13078:74;;13182:34;13178:1;13173:3;13169:11;13162:55;13248:14;13243:2;13238:3;13234:12;13227:36;13289:2;13284:3;13280:12;13273:19;;13068:230;;;:::o;13304:337::-;;13485:84;13567:1;13562:3;13485:84;:::i;:::-;13478:91;;13599:7;13595:1;13590:3;13586:11;13579:28;13633:1;13628:3;13624:11;13617:18;;13468:173;;;:::o;13647:330::-;;13810:67;13874:2;13869:3;13810:67;:::i;:::-;13803:74;;13907:34;13903:1;13898:3;13894:11;13887:55;13968:2;13963:3;13959:12;13952:19;;13793:184;;;:::o;13983:373::-;;14146:67;14210:2;14205:3;14146:67;:::i;:::-;14139:74;;14243:34;14239:1;14234:3;14230:11;14223:55;14309:11;14304:2;14299:3;14295:12;14288:33;14347:2;14342:3;14338:12;14331:19;;14129:227;;;:::o;14362:379::-;;14525:67;14589:2;14584:3;14525:67;:::i;:::-;14518:74;;14622:34;14618:1;14613:3;14609:11;14602:55;14688:17;14683:2;14678:3;14674:12;14667:39;14732:2;14727:3;14723:12;14716:19;;14508:233;;;:::o;14747:368::-;;14910:67;14974:2;14969:3;14910:67;:::i;:::-;14903:74;;15007:34;15003:1;14998:3;14994:11;14987:55;15073:6;15068:2;15063:3;15059:12;15052:28;15106:2;15101:3;15097:12;15090:19;;14893:222;;;:::o;15121:365::-;;15284:67;15348:2;15343:3;15284:67;:::i;:::-;15277:74;;15381:34;15377:1;15372:3;15368:11;15361:55;15447:3;15442:2;15437:3;15433:12;15426:25;15477:2;15472:3;15468:12;15461:19;;15267:219;;;:::o;15492:376::-;;15655:67;15719:2;15714:3;15655:67;:::i;:::-;15648:74;;15752:34;15748:1;15743:3;15739:11;15732:55;15818:14;15813:2;15808:3;15804:12;15797:36;15859:2;15854:3;15850:12;15843:19;;15638:230;;;:::o;15874:377::-;;16037:67;16101:2;16096:3;16037:67;:::i;:::-;16030:74;;16134:34;16130:1;16125:3;16121:11;16114:55;16200:15;16195:2;16190:3;16186:12;16179:37;16242:2;16237:3;16233:12;16226:19;;16020:231;;;:::o;16257:381::-;;16420:67;16484:2;16479:3;16420:67;:::i;:::-;16413:74;;16517:34;16513:1;16508:3;16504:11;16497:55;16583:19;16578:2;16573:3;16569:12;16562:41;16629:2;16624:3;16620:12;16613:19;;16403:235;;;:::o;16644:376::-;;16807:67;16871:2;16866:3;16807:67;:::i;:::-;16800:74;;16904:34;16900:1;16895:3;16891:11;16884:55;16970:14;16965:2;16960:3;16956:12;16949:36;17011:2;17006:3;17002:12;16995:19;;16790:230;;;:::o;17026:118::-;17113:24;17131:5;17113:24;:::i;:::-;17108:3;17101:37;17091:53;;:::o;17150:701::-;;17453:95;17544:3;17535:6;17453:95;:::i;:::-;17446:102;;17565:95;17656:3;17647:6;17565:95;:::i;:::-;17558:102;;17677:148;17821:3;17677:148;:::i;:::-;17670:155;;17842:3;17835:10;;17435:416;;;;;:::o;17857:222::-;;17988:2;17977:9;17973:18;17965:26;;18001:71;18069:1;18058:9;18054:17;18045:6;18001:71;:::i;:::-;17955:124;;;;:::o;18085:640::-;;18318:3;18307:9;18303:19;18295:27;;18332:71;18400:1;18389:9;18385:17;18376:6;18332:71;:::i;:::-;18413:72;18481:2;18470:9;18466:18;18457:6;18413:72;:::i;:::-;18495;18563:2;18552:9;18548:18;18539:6;18495:72;:::i;:::-;18614:9;18608:4;18604:20;18599:2;18588:9;18584:18;18577:48;18642:76;18713:4;18704:6;18642:76;:::i;:::-;18634:84;;18285:440;;;;;;;:::o;18731:210::-;;18856:2;18845:9;18841:18;18833:26;;18869:65;18931:1;18920:9;18916:17;18907:6;18869:65;:::i;:::-;18823:118;;;;:::o;18947:313::-;;19098:2;19087:9;19083:18;19075:26;;19147:9;19141:4;19137:20;19133:1;19122:9;19118:17;19111:47;19175:78;19248:4;19239:6;19175:78;:::i;:::-;19167:86;;19065:195;;;;:::o;19266:419::-;;19470:2;19459:9;19455:18;19447:26;;19519:9;19513:4;19509:20;19505:1;19494:9;19490:17;19483:47;19547:131;19673:4;19547:131;:::i;:::-;19539:139;;19437:248;;;:::o;19691:419::-;;19895:2;19884:9;19880:18;19872:26;;19944:9;19938:4;19934:20;19930:1;19919:9;19915:17;19908:47;19972:131;20098:4;19972:131;:::i;:::-;19964:139;;19862:248;;;:::o;20116:419::-;;20320:2;20309:9;20305:18;20297:26;;20369:9;20363:4;20359:20;20355:1;20344:9;20340:17;20333:47;20397:131;20523:4;20397:131;:::i;:::-;20389:139;;20287:248;;;:::o;20541:419::-;;20745:2;20734:9;20730:18;20722:26;;20794:9;20788:4;20784:20;20780:1;20769:9;20765:17;20758:47;20822:131;20948:4;20822:131;:::i;:::-;20814:139;;20712:248;;;:::o;20966:419::-;;21170:2;21159:9;21155:18;21147:26;;21219:9;21213:4;21209:20;21205:1;21194:9;21190:17;21183:47;21247:131;21373:4;21247:131;:::i;:::-;21239:139;;21137:248;;;:::o;21391:419::-;;21595:2;21584:9;21580:18;21572:26;;21644:9;21638:4;21634:20;21630:1;21619:9;21615:17;21608:47;21672:131;21798:4;21672:131;:::i;:::-;21664:139;;21562:248;;;:::o;21816:419::-;;22020:2;22009:9;22005:18;21997:26;;22069:9;22063:4;22059:20;22055:1;22044:9;22040:17;22033:47;22097:131;22223:4;22097:131;:::i;:::-;22089:139;;21987:248;;;:::o;22241:419::-;;22445:2;22434:9;22430:18;22422:26;;22494:9;22488:4;22484:20;22480:1;22469:9;22465:17;22458:47;22522:131;22648:4;22522:131;:::i;:::-;22514:139;;22412:248;;;:::o;22666:419::-;;22870:2;22859:9;22855:18;22847:26;;22919:9;22913:4;22909:20;22905:1;22894:9;22890:17;22883:47;22947:131;23073:4;22947:131;:::i;:::-;22939:139;;22837:248;;;:::o;23091:419::-;;23295:2;23284:9;23280:18;23272:26;;23344:9;23338:4;23334:20;23330:1;23319:9;23315:17;23308:47;23372:131;23498:4;23372:131;:::i;:::-;23364:139;;23262:248;;;:::o;23516:419::-;;23720:2;23709:9;23705:18;23697:26;;23769:9;23763:4;23759:20;23755:1;23744:9;23740:17;23733:47;23797:131;23923:4;23797:131;:::i;:::-;23789:139;;23687:248;;;:::o;23941:419::-;;24145:2;24134:9;24130:18;24122:26;;24194:9;24188:4;24184:20;24180:1;24169:9;24165:17;24158:47;24222:131;24348:4;24222:131;:::i;:::-;24214:139;;24112:248;;;:::o;24366:419::-;;24570:2;24559:9;24555:18;24547:26;;24619:9;24613:4;24609:20;24605:1;24594:9;24590:17;24583:47;24647:131;24773:4;24647:131;:::i;:::-;24639:139;;24537:248;;;:::o;24791:419::-;;24995:2;24984:9;24980:18;24972:26;;25044:9;25038:4;25034:20;25030:1;25019:9;25015:17;25008:47;25072:131;25198:4;25072:131;:::i;:::-;25064:139;;24962:248;;;:::o;25216:419::-;;25420:2;25409:9;25405:18;25397:26;;25469:9;25463:4;25459:20;25455:1;25444:9;25440:17;25433:47;25497:131;25623:4;25497:131;:::i;:::-;25489:139;;25387:248;;;:::o;25641:419::-;;25845:2;25834:9;25830:18;25822:26;;25894:9;25888:4;25884:20;25880:1;25869:9;25865:17;25858:47;25922:131;26048:4;25922:131;:::i;:::-;25914:139;;25812:248;;;:::o;26066:419::-;;26270:2;26259:9;26255:18;26247:26;;26319:9;26313:4;26309:20;26305:1;26294:9;26290:17;26283:47;26347:131;26473:4;26347:131;:::i;:::-;26339:139;;26237:248;;;:::o;26491:419::-;;26695:2;26684:9;26680:18;26672:26;;26744:9;26738:4;26734:20;26730:1;26719:9;26715:17;26708:47;26772:131;26898:4;26772:131;:::i;:::-;26764:139;;26662:248;;;:::o;26916:419::-;;27120:2;27109:9;27105:18;27097:26;;27169:9;27163:4;27159:20;27155:1;27144:9;27140:17;27133:47;27197:131;27323:4;27197:131;:::i;:::-;27189:139;;27087:248;;;:::o;27341:419::-;;27545:2;27534:9;27530:18;27522:26;;27594:9;27588:4;27584:20;27580:1;27569:9;27565:17;27558:47;27622:131;27748:4;27622:131;:::i;:::-;27614:139;;27512:248;;;:::o;27766:419::-;;27970:2;27959:9;27955:18;27947:26;;28019:9;28013:4;28009:20;28005:1;27994:9;27990:17;27983:47;28047:131;28173:4;28047:131;:::i;:::-;28039:139;;27937:248;;;:::o;28191:419::-;;28395:2;28384:9;28380:18;28372:26;;28444:9;28438:4;28434:20;28430:1;28419:9;28415:17;28408:47;28472:131;28598:4;28472:131;:::i;:::-;28464:139;;28362:248;;;:::o;28616:419::-;;28820:2;28809:9;28805:18;28797:26;;28869:9;28863:4;28859:20;28855:1;28844:9;28840:17;28833:47;28897:131;29023:4;28897:131;:::i;:::-;28889:139;;28787:248;;;:::o;29041:419::-;;29245:2;29234:9;29230:18;29222:26;;29294:9;29288:4;29284:20;29280:1;29269:9;29265:17;29258:47;29322:131;29448:4;29322:131;:::i;:::-;29314:139;;29212:248;;;:::o;29466:419::-;;29670:2;29659:9;29655:18;29647:26;;29719:9;29713:4;29709:20;29705:1;29694:9;29690:17;29683:47;29747:131;29873:4;29747:131;:::i;:::-;29739:139;;29637:248;;;:::o;29891:222::-;;30022:2;30011:9;30007:18;29999:26;;30035:71;30103:1;30092:9;30088:17;30079:6;30035:71;:::i;:::-;29989:124;;;;:::o;30119:283::-;;30185:2;30179:9;30169:19;;30227:4;30219:6;30215:17;30334:6;30322:10;30319:22;30298:18;30286:10;30283:34;30280:62;30277:2;;;30345:18;;:::i;:::-;30277:2;30385:10;30381:2;30374:22;30159:243;;;;:::o;30408:331::-;;30559:18;30551:6;30548:30;30545:2;;;30581:18;;:::i;:::-;30545:2;30666:4;30662:9;30655:4;30647:6;30643:17;30639:33;30631:41;;30727:4;30721;30717:15;30709:23;;30474:265;;;:::o;30745:332::-;;30897:18;30889:6;30886:30;30883:2;;;30919:18;;:::i;:::-;30883:2;31004:4;31000:9;30993:4;30985:6;30981:17;30977:33;30969:41;;31065:4;31059;31055:15;31047:23;;30812:265;;;:::o;31083:98::-;;31168:5;31162:12;31152:22;;31141:40;;;:::o;31187:99::-;;31273:5;31267:12;31257:22;;31246:40;;;:::o;31292:168::-;;31409:6;31404:3;31397:19;31449:4;31444:3;31440:14;31425:29;;31387:73;;;;:::o;31466:169::-;;31584:6;31579:3;31572:19;31624:4;31619:3;31615:14;31600:29;;31562:73;;;;:::o;31641:148::-;;31780:3;31765:18;;31755:34;;;;:::o;31795:305::-;;31854:20;31872:1;31854:20;:::i;:::-;31849:25;;31888:20;31906:1;31888:20;:::i;:::-;31883:25;;32042:1;31974:66;31970:74;31967:1;31964:81;31961:2;;;32048:18;;:::i;:::-;31961:2;32092:1;32089;32085:9;32078:16;;31839:261;;;;:::o;32106:185::-;;32163:20;32181:1;32163:20;:::i;:::-;32158:25;;32197:20;32215:1;32197:20;:::i;:::-;32192:25;;32236:1;32226:2;;32241:18;;:::i;:::-;32226:2;32283:1;32280;32276:9;32271:14;;32148:143;;;;:::o;32297:348::-;;32360:20;32378:1;32360:20;:::i;:::-;32355:25;;32394:20;32412:1;32394:20;:::i;:::-;32389:25;;32582:1;32514:66;32510:74;32507:1;32504:81;32499:1;32492:9;32485:17;32481:105;32478:2;;;32589:18;;:::i;:::-;32478:2;32637:1;32634;32630:9;32619:20;;32345:300;;;;:::o;32651:191::-;;32711:20;32729:1;32711:20;:::i;:::-;32706:25;;32745:20;32763:1;32745:20;:::i;:::-;32740:25;;32784:1;32781;32778:8;32775:2;;;32789:18;;:::i;:::-;32775:2;32834:1;32831;32827:9;32819:17;;32696:146;;;;:::o;32848:96::-;;32914:24;32932:5;32914:24;:::i;:::-;32903:35;;32893:51;;;:::o;32950:90::-;;33027:5;33020:13;33013:21;33002:32;;32992:48;;;:::o;33046:149::-;;33122:66;33115:5;33111:78;33100:89;;33090:105;;;:::o;33201:126::-;;33278:42;33271:5;33267:54;33256:65;;33246:81;;;:::o;33333:77::-;;33399:5;33388:16;;33378:32;;;:::o;33416:154::-;33500:6;33495:3;33490;33477:30;33562:1;33553:6;33548:3;33544:16;33537:27;33467:103;;;:::o;33576:307::-;33644:1;33654:113;33668:6;33665:1;33662:13;33654:113;;;33753:1;33748:3;33744:11;33738:18;33734:1;33729:3;33725:11;33718:39;33690:2;33687:1;33683:10;33678:15;;33654:113;;;33785:6;33782:1;33779:13;33776:2;;;33865:1;33856:6;33851:3;33847:16;33840:27;33776:2;33625:258;;;;:::o;33889:320::-;;33970:1;33964:4;33960:12;33950:22;;34017:1;34011:4;34007:12;34038:18;34028:2;;34094:4;34086:6;34082:17;34072:27;;34028:2;34156;34148:6;34145:14;34125:18;34122:38;34119:2;;;34175:18;;:::i;:::-;34119:2;33940:269;;;;:::o;34215:233::-;;34277:24;34295:5;34277:24;:::i;:::-;34268:33;;34323:66;34316:5;34313:77;34310:2;;;34393:18;;:::i;:::-;34310:2;34440:1;34433:5;34429:13;34422:20;;34258:190;;;:::o;34454:176::-;;34503:20;34521:1;34503:20;:::i;:::-;34498:25;;34537:20;34555:1;34537:20;:::i;:::-;34532:25;;34576:1;34566:2;;34581:18;;:::i;:::-;34566:2;34622:1;34619;34615:9;34610:14;;34488:142;;;;:::o;34636:180::-;34684:77;34681:1;34674:88;34781:4;34778:1;34771:15;34805:4;34802:1;34795:15;34822:180;34870:77;34867:1;34860:88;34967:4;34964:1;34957:15;34991:4;34988:1;34981:15;35008:180;35056:77;35053:1;35046:88;35153:4;35150:1;35143:15;35177:4;35174:1;35167:15;35194:180;35242:77;35239:1;35232:88;35339:4;35336:1;35329:15;35363:4;35360:1;35353:15;35380:102;;35472:2;35468:7;35463:2;35456:5;35452:14;35448:28;35438:38;;35428:54;;;:::o;35488:122::-;35561:24;35579:5;35561:24;:::i;:::-;35554:5;35551:35;35541:2;;35600:1;35597;35590:12;35541:2;35531:79;:::o;35616:116::-;35686:21;35701:5;35686:21;:::i;:::-;35679:5;35676:32;35666:2;;35722:1;35719;35712:12;35666:2;35656:76;:::o;35738:120::-;35810:23;35827:5;35810:23;:::i;:::-;35803:5;35800:34;35790:2;;35848:1;35845;35838:12;35790:2;35780:78;:::o;35864:122::-;35937:24;35955:5;35937:24;:::i;:::-;35930:5;35927:35;35917:2;;35976:1;35973;35966:12;35917:2;35907:79;:::o

Swarm Source

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