ETH Price: $3,465.04 (-1.47%)
Gas: 4 Gwei

Token

PokerGO Genesis NFT Collection (PGNFT)
 

Overview

Max Total Supply

1,326 PGNFT

Holders

562

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
patey.eth
Balance
1 PGNFT
0x9913be64013afcbfb86241783f80329449f75184
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:
PokerGO

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/PokerGo.sol



pragma solidity 0.8.13;





contract PokerGO is ERC721Enumerable, Ownable
{
    using Strings for uint256;
    using SafeMath for uint256;

    uint256 public nextTokenId = 1;

    uint256 public constant MAX_SUPPLY = 1326;

    // Public sale
    uint256 public PRICE = 0.10 ether;
    uint256 public publicsaleStartDate;
    mapping (address => uint256) public minted;
    mapping (address => uint256) public p1minted;
    mapping (address => uint256) public p2minted;
    mapping (address => uint256) public freeminted;
    mapping (address => uint256) private _canFreeMint;


    // Pre-sale
    uint256 public phase1StartDate;
    uint256 public phase2StartDate;
    mapping (address => bool) public isWhitelisted;

    uint256 public revealDate;

    string public baseTokenURI;
    string public baseExtension = ".json";
    string public unrevealedURI;

    address payable public payments;



    constructor(string memory baseURI, uint256 _phase1StartDate, uint256 _phase2StartDate, uint256 _publicsaleStartDate, string memory _unrevealedURI, uint256 _revealDate,address _payments, address[] memory _freeAddress, uint256[] memory _canMinttotal) ERC721("PokerGO Genesis NFT Collection", "PGNFT") {
        require(_payments != address(0), "Account is the zero address");
        require(_freeAddress.length == _canMinttotal.length, "Address and number length mismatch");
        require(_freeAddress.length > 0, "No Free Mint Address");

        for (uint256 i = 0; i < _freeAddress.length; i++) {
            
            _addFreeMint(_freeAddress[i], _canMinttotal[i]);
        }
        setBaseURI(baseURI);
        setUnrevealedURI(_unrevealedURI);
        phase1StartDate = _phase1StartDate;
        phase2StartDate = _phase2StartDate;
        publicsaleStartDate = _publicsaleStartDate;
        revealDate = _revealDate;
        payments = payable(_payments);
    }
    function _addFreeMint(address account, uint256 canminttotal_) private {
        require(account != address(0), "Account is the zero address");
        require(canminttotal_ > 0, "Cannot Free Mint 0 NFT");
        require(_canFreeMint[account] == 0, "Account already has shares");
        _canFreeMint[account] = canminttotal_;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        if (block.timestamp < revealDate) {
            return unrevealedURI;
        }
        return baseTokenURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        if (block.timestamp < revealDate) {
            return string(abi.encodePacked(unrevealedURI, tokenId.toString(), baseExtension));
        }
        
        else {
            string memory baseURI = _baseURI();
            return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), baseExtension)) : "";
        }    
    }

    function mint(uint256 _count) public payable {
        uint256 totalMinted = nextTokenId;
        require(totalMinted.add(_count) <= MAX_SUPPLY + 1, "Not enough NFTs left");
        require(_count > 0, "Cannot mint 0 NFTs");
        if (_canFreeMint[msg.sender]-freeminted[msg.sender]>0)
        {
            
            freeminted[msg.sender] += _count;
            require(freeminted[msg.sender] <= _canFreeMint[msg.sender], string(abi.encodePacked("Address can't mint more than ", _canFreeMint[msg.sender].toString(), " NFTs in Free mint")));
            for (uint256 i = 0; i < _count; i++) {
                _mintNFT();
            }  
        } else {

            require(block.timestamp > phase1StartDate, "Sale not started yet");
            //require(block.timestamp > phase2StartDate, "Phase 2 Sale not started yet");
            require(msg.value >= calculatePrice(_count),"Not enough ethereum to purchase NFTs");
            
            if  (block.timestamp > publicsaleStartDate) {
                minted[msg.sender] += _count;
                require(minted[msg.sender] <= 10, "Address can't mint more than 10 NFTs in Public sale");
            } else if (block.timestamp > phase2StartDate) {
                require(isWhitelisted[msg.sender], "Address is not whitelisted");
                p2minted[msg.sender] += _count;
                require(p2minted[msg.sender] <= 5, "Address can't mint more than 5 NFTs in Phase 2 sale");
            } else if (block.timestamp > phase1StartDate) {
                require(isWhitelisted[msg.sender], "Address is not whitelisted");
                p1minted[msg.sender] += _count;
                require(p1minted[msg.sender] <= 2, "Address can't mint more than 2 NFTs in Phase 1 sale");
            } 
            for (uint256 i = 0; i < _count; i++) {
                _mintNFT();
            }
        }
    }


    function calculatePrice(uint256 _count) public view returns(uint256) {
        return _count * PRICE;
    }

    function _mintNFT() private {
        uint256 tokenId = nextTokenId;
        _safeMint(msg.sender, tokenId, '');
        nextTokenId = tokenId + 1;
    }

    // Owner functions

    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No ethereum left to withdraw");

        (bool success, ) = payable(payments).call{value: balance}("");
        require(success, "Transfer failed.");
    }

    function setPhase2StartDate(uint256 _endDate) external onlyOwner {
        phase2StartDate = _endDate;
    }

    function setPhase1StartDate(uint256 _startDate) external onlyOwner {
        phase1StartDate = _startDate;
    }

    function setPublicSaleStartDate(uint256 _publicsaleStartDate) external onlyOwner {
        publicsaleStartDate = _publicsaleStartDate;
    }

    function addToWhitelist(address[] memory _addresses) external onlyOwner {
        for (uint256 i = 0;i < _addresses.length;i++) {
            require(_addresses[i] != address(0), "Account is the zero address");
            isWhitelisted[_addresses[i]] = true;
        }
    }

    function removeFromWhitelist (address[] memory _addresses) external onlyOwner {
        for (uint256 i = 0;i < _addresses.length;i++) {
            isWhitelisted[_addresses[i]] = false;
        }
    }

    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setUnrevealedURI(string memory _unrevealedURI) public onlyOwner {
        unrevealedURI = _unrevealedURI;
    }

    function setRevealDate(uint256 _revealDate) public onlyOwner {
        revealDate = _revealDate;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"_phase1StartDate","type":"uint256"},{"internalType":"uint256","name":"_phase2StartDate","type":"uint256"},{"internalType":"uint256","name":"_publicsaleStartDate","type":"uint256"},{"internalType":"string","name":"_unrevealedURI","type":"string"},{"internalType":"uint256","name":"_revealDate","type":"uint256"},{"internalType":"address","name":"_payments","type":"address"},{"internalType":"address[]","name":"_freeAddress","type":"address[]"},{"internalType":"uint256[]","name":"_canMinttotal","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"calculatePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeminted","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":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"p1minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"p2minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payments","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase1StartDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase2StartDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsaleStartDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealDate","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":"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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startDate","type":"uint256"}],"name":"setPhase1StartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_endDate","type":"uint256"}],"name":"setPhase2StartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicsaleStartDate","type":"uint256"}],"name":"setPublicSaleStartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revealDate","type":"uint256"}],"name":"setRevealDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unrevealedURI","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526001600b5567016345785d8a0000600c556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601890805190602001906200006292919062000727565b503480156200007057600080fd5b506040516200681538038062006815833981810160405281019062000096919062000bc5565b6040518060400160405280601e81526020017f506f6b6572474f2047656e65736973204e465420436f6c6c656374696f6e00008152506040518060400160405280600581526020017f50474e465400000000000000000000000000000000000000000000000000000081525081600090805190602001906200011a92919062000727565b5080600190805190602001906200013392919062000727565b505050620001566200014a6200035460201b60201c565b6200035c60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620001c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001bf9062000d81565b60405180910390fd5b80518251146200020f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002069062000e19565b60405180910390fd5b600082511162000256576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024d9062000e8b565b60405180910390fd5b60005b8251811015620002c557620002af8382815181106200027d576200027c62000ead565b5b60200260200101518383815181106200029b576200029a62000ead565b5b60200260200101516200042260201b60201c565b8080620002bc9062000f0b565b91505062000259565b50620002d789620005a760201b60201c565b620002e8856200065260201b60201c565b876013819055508660148190555085600d819055508360168190555082601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050505050505062001112565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000494576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048b9062000d81565b60405180910390fd5b60008111620004da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d19062000fa8565b60405180910390fd5b6000601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146200055f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000556906200101a565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b620005b76200035460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005dd620006fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000636576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062d906200108c565b60405180910390fd5b80601790805190602001906200064e92919062000727565b5050565b620006626200035460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000688620006fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006d8906200108c565b60405180910390fd5b8060199080519060200190620006f992919062000727565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200073590620010dd565b90600052602060002090601f016020900481019282620007595760008555620007a5565b82601f106200077457805160ff1916838001178555620007a5565b82800160010185558215620007a5579182015b82811115620007a457825182559160200191906001019062000787565b5b509050620007b49190620007b8565b5090565b5b80821115620007d3576000816000905550600101620007b9565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200084082620007f5565b810181811067ffffffffffffffff8211171562000862576200086162000806565b5b80604052505050565b600062000877620007d7565b905062000885828262000835565b919050565b600067ffffffffffffffff821115620008a857620008a762000806565b5b620008b382620007f5565b9050602081019050919050565b60005b83811015620008e0578082015181840152602081019050620008c3565b83811115620008f0576000848401525b50505050565b60006200090d62000907846200088a565b6200086b565b9050828152602081018484840111156200092c576200092b620007f0565b5b62000939848285620008c0565b509392505050565b600082601f830112620009595762000958620007eb565b5b81516200096b848260208601620008f6565b91505092915050565b6000819050919050565b620009898162000974565b81146200099557600080fd5b50565b600081519050620009a9816200097e565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009dc82620009af565b9050919050565b620009ee81620009cf565b8114620009fa57600080fd5b50565b60008151905062000a0e81620009e3565b92915050565b600067ffffffffffffffff82111562000a325762000a3162000806565b5b602082029050602081019050919050565b600080fd5b600062000a5f62000a598462000a14565b6200086b565b9050808382526020820190506020840283018581111562000a855762000a8462000a43565b5b835b8181101562000ab2578062000a9d8882620009fd565b84526020840193505060208101905062000a87565b5050509392505050565b600082601f83011262000ad45762000ad3620007eb565b5b815162000ae684826020860162000a48565b91505092915050565b600067ffffffffffffffff82111562000b0d5762000b0c62000806565b5b602082029050602081019050919050565b600062000b3562000b2f8462000aef565b6200086b565b9050808382526020820190506020840283018581111562000b5b5762000b5a62000a43565b5b835b8181101562000b88578062000b73888262000998565b84526020840193505060208101905062000b5d565b5050509392505050565b600082601f83011262000baa5762000ba9620007eb565b5b815162000bbc84826020860162000b1e565b91505092915050565b60008060008060008060008060006101208a8c03121562000beb5762000bea620007e1565b5b60008a015167ffffffffffffffff81111562000c0c5762000c0b620007e6565b5b62000c1a8c828d0162000941565b995050602062000c2d8c828d0162000998565b985050604062000c408c828d0162000998565b975050606062000c538c828d0162000998565b96505060808a015167ffffffffffffffff81111562000c775762000c76620007e6565b5b62000c858c828d0162000941565b95505060a062000c988c828d0162000998565b94505060c062000cab8c828d01620009fd565b93505060e08a015167ffffffffffffffff81111562000ccf5762000cce620007e6565b5b62000cdd8c828d0162000abc565b9250506101008a015167ffffffffffffffff81111562000d025762000d01620007e6565b5b62000d108c828d0162000b92565b9150509295985092959850929598565b600082825260208201905092915050565b7f4163636f756e7420697320746865207a65726f20616464726573730000000000600082015250565b600062000d69601b8362000d20565b915062000d768262000d31565b602082019050919050565b6000602082019050818103600083015262000d9c8162000d5a565b9050919050565b7f4164647265737320616e64206e756d626572206c656e677468206d69736d617460008201527f6368000000000000000000000000000000000000000000000000000000000000602082015250565b600062000e0160228362000d20565b915062000e0e8262000da3565b604082019050919050565b6000602082019050818103600083015262000e348162000df2565b9050919050565b7f4e6f2046726565204d696e742041646472657373000000000000000000000000600082015250565b600062000e7360148362000d20565b915062000e808262000e3b565b602082019050919050565b6000602082019050818103600083015262000ea68162000e64565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f188262000974565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000f4d5762000f4c62000edc565b5b600182019050919050565b7f43616e6e6f742046726565204d696e742030204e465400000000000000000000600082015250565b600062000f9060168362000d20565b915062000f9d8262000f58565b602082019050919050565b6000602082019050818103600083015262000fc38162000f81565b9050919050565b7f4163636f756e7420616c72656164792068617320736861726573000000000000600082015250565b600062001002601a8362000d20565b91506200100f8262000fca565b602082019050919050565b60006020820190508181036000830152620010358162000ff3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200107460208362000d20565b915062001081826200103c565b602082019050919050565b60006020820190508181036000830152620010a78162001065565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010f657607f821691505b6020821081036200110c576200110b620010ae565b5b50919050565b6156f380620011226000396000f3fe60806040526004361061027d5760003560e01c8063715018a61161014f578063ae104265116100c1578063d81d8ef01161007a578063d81d8ef0146109a4578063e985e9c5146109e1578063eb6426a914610a1e578063ef56267e14610a49578063f2fde38b14610a86578063fe2c7fee14610aaf5761027d565b8063ae10426514610880578063b88d4fde146108bd578063c504685e146108e6578063c668286214610911578063c87b56dd1461093c578063d547cfb7146109795761027d565b80638da5cb5b116101135780638da5cb5b1461077d578063918b933f146107a857806395d89b41146107e5578063a0712d6814610810578063a22cb4651461082c578063a6d23e10146108555761027d565b8063715018a6146106be57806375794a3c146106d55780637f649783146107005780638044741f146107295780638d859f3e146107525761027d565b80633775ddcc116101f35780634f6ccce7116101ac5780634f6ccce71461058a578063548db174146105c757806355f804b3146105f05780636352211e146106195780637035bf181461065657806370a08231146106815761027d565b80633775ddcc1461049d5780633af32abf146104c65780633c66485e146105035780633ccfd60b1461052e578063405200cd1461053857806342842e0e146105615761027d565b806318160ddd1161024557806318160ddd146103795780631e08a9e4146103a45780631e7269c5146103cf57806323b872dd1461040c5780632f745c591461043557806332cb6b0c146104725761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630c88b73114610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613a7d565b610ad8565b6040516102b69190613ac5565b60405180910390f35b3480156102cb57600080fd5b506102d4610b52565b6040516102e19190613b79565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613bd1565b610be4565b60405161031e9190613c3f565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613c86565b610c69565b005b34801561035c57600080fd5b5061037760048036038101906103729190613bd1565b610d80565b005b34801561038557600080fd5b5061038e610e06565b60405161039b9190613cd5565b60405180910390f35b3480156103b057600080fd5b506103b9610e13565b6040516103c69190613cd5565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613cf0565b610e19565b6040516104039190613cd5565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190613d1d565b610e31565b005b34801561044157600080fd5b5061045c60048036038101906104579190613c86565b610e91565b6040516104699190613cd5565b60405180910390f35b34801561047e57600080fd5b50610487610f36565b6040516104949190613cd5565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190613bd1565b610f3c565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613cf0565b610fc2565b6040516104fa9190613ac5565b60405180910390f35b34801561050f57600080fd5b50610518610fe2565b6040516105259190613cd5565b60405180910390f35b610536610fe8565b005b34801561054457600080fd5b5061055f600480360381019061055a9190613bd1565b61117e565b005b34801561056d57600080fd5b5061058860048036038101906105839190613d1d565b611204565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613bd1565b611224565b6040516105be9190613cd5565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613eb8565b611295565b005b3480156105fc57600080fd5b5061061760048036038101906106129190613fb6565b6113a6565b005b34801561062557600080fd5b50610640600480360381019061063b9190613bd1565b61143c565b60405161064d9190613c3f565b60405180910390f35b34801561066257600080fd5b5061066b6114ed565b6040516106789190613b79565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613cf0565b61157b565b6040516106b59190613cd5565b60405180910390f35b3480156106ca57600080fd5b506106d3611632565b005b3480156106e157600080fd5b506106ea6116ba565b6040516106f79190613cd5565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190613eb8565b6116c0565b005b34801561073557600080fd5b50610750600480360381019061074b9190613bd1565b61185a565b005b34801561075e57600080fd5b506107676118e0565b6040516107749190613cd5565b60405180910390f35b34801561078957600080fd5b506107926118e6565b60405161079f9190613c3f565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613cf0565b611910565b6040516107dc9190613cd5565b60405180910390f35b3480156107f157600080fd5b506107fa611928565b6040516108079190613b79565b60405180910390f35b61082a60048036038101906108259190613bd1565b6119ba565b005b34801561083857600080fd5b50610853600480360381019061084e919061402b565b61212f565b005b34801561086157600080fd5b5061086a612145565b604051610877919061408c565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190613bd1565b61216b565b6040516108b49190613cd5565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df9190614148565b612182565b005b3480156108f257600080fd5b506108fb6121e4565b6040516109089190613cd5565b60405180910390f35b34801561091d57600080fd5b506109266121ea565b6040516109339190613b79565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613bd1565b612278565b6040516109709190613b79565b60405180910390f35b34801561098557600080fd5b5061098e612362565b60405161099b9190613b79565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c69190613cf0565b6123f0565b6040516109d89190613cd5565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a0391906141cb565b612408565b604051610a159190613ac5565b60405180910390f35b348015610a2a57600080fd5b50610a3361249c565b604051610a409190613cd5565b60405180910390f35b348015610a5557600080fd5b50610a706004803603810190610a6b9190613cf0565b6124a2565b604051610a7d9190613cd5565b60405180910390f35b348015610a9257600080fd5b50610aad6004803603810190610aa89190613cf0565b6124ba565b005b348015610abb57600080fd5b50610ad66004803603810190610ad19190613fb6565b6125b1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4b5750610b4a82612647565b5b9050919050565b606060008054610b619061423a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8d9061423a565b8015610bda5780601f10610baf57610100808354040283529160200191610bda565b820191906000526020600020905b815481529060010190602001808311610bbd57829003601f168201915b5050505050905090565b6000610bef82612729565b610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c25906142dd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c748261143c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb9061436f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d03612795565b73ffffffffffffffffffffffffffffffffffffffff161480610d325750610d3181610d2c612795565b612408565b5b610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890614401565b60405180910390fd5b610d7b838361279d565b505050565b610d88612795565b73ffffffffffffffffffffffffffffffffffffffff16610da66118e6565b73ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df39061446d565b60405180910390fd5b8060168190555050565b6000600880549050905090565b60165481565b600e6020528060005260406000206000915090505481565b610e42610e3c612795565b82612856565b610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906144ff565b60405180910390fd5b610e8c838383612934565b505050565b6000610e9c8361157b565b8210610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490614591565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61052e81565b610f44612795565b73ffffffffffffffffffffffffffffffffffffffff16610f626118e6565b73ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf9061446d565b60405180910390fd5b8060138190555050565b60156020528060005260406000206000915054906101000a900460ff1681565b60145481565b610ff0612795565b73ffffffffffffffffffffffffffffffffffffffff1661100e6118e6565b73ffffffffffffffffffffffffffffffffffffffff1614611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b9061446d565b60405180910390fd5b6000479050600081116110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a3906145fd565b60405180910390fd5b6000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516110f49061464e565b60006040518083038185875af1925050503d8060008114611131576040519150601f19603f3d011682016040523d82523d6000602084013e611136565b606091505b505090508061117a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611171906146af565b60405180910390fd5b5050565b611186612795565b73ffffffffffffffffffffffffffffffffffffffff166111a46118e6565b73ffffffffffffffffffffffffffffffffffffffff16146111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f19061446d565b60405180910390fd5b80600d8190555050565b61121f83838360405180602001604052806000815250612182565b505050565b600061122e610e06565b821061126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690614741565b60405180910390fd5b6008828154811061128357611282614761565b5b90600052602060002001549050919050565b61129d612795565b73ffffffffffffffffffffffffffffffffffffffff166112bb6118e6565b73ffffffffffffffffffffffffffffffffffffffff1614611311576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113089061446d565b60405180910390fd5b60005b81518110156113a25760006015600084848151811061133657611335614761565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061139a906147bf565b915050611314565b5050565b6113ae612795565b73ffffffffffffffffffffffffffffffffffffffff166113cc6118e6565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114199061446d565b60405180910390fd5b806017908051906020019061143892919061396e565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90614879565b60405180910390fd5b80915050919050565b601980546114fa9061423a565b80601f01602080910402602001604051908101604052809291908181526020018280546115269061423a565b80156115735780601f1061154857610100808354040283529160200191611573565b820191906000526020600020905b81548152906001019060200180831161155657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e29061490b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61163a612795565b73ffffffffffffffffffffffffffffffffffffffff166116586118e6565b73ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a59061446d565b60405180910390fd5b6116b86000612b9a565b565b600b5481565b6116c8612795565b73ffffffffffffffffffffffffffffffffffffffff166116e66118e6565b73ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117339061446d565b60405180910390fd5b60005b815181101561185657600073ffffffffffffffffffffffffffffffffffffffff1682828151811061177357611772614761565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16036117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890614977565b60405180910390fd5b6001601560008484815181106117ea576117e9614761565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061184e906147bf565b91505061173f565b5050565b611862612795565b73ffffffffffffffffffffffffffffffffffffffff166118806118e6565b73ffffffffffffffffffffffffffffffffffffffff16146118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd9061446d565b60405180910390fd5b8060148190555050565b600c5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f6020528060005260406000206000915090505481565b6060600180546119379061423a565b80601f01602080910402602001604051908101604052809291908181526020018280546119639061423a565b80156119b05780601f10611985576101008083540402835291602001916119b0565b820191906000526020600020905b81548152906001019060200180831161199357829003601f168201915b5050505050905090565b6000600b549050600161052e6119d09190614997565b6119e38383612c6090919063ffffffff16565b1115611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90614a39565b60405180910390fd5b60008211611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90614aa5565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611af39190614ac5565b1115611ca65781601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b489190614997565b92505081905550601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611c19601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c76565b604051602001611c299190614bcd565b60405160208183030381529060405290611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c709190613b79565b60405180910390fd5b5060005b82811015611ca057611c8d612dd6565b8080611c98906147bf565b915050611c7d565b5061212b565b6013544211611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190614c46565b60405180910390fd5b611cf38261216b565b341015611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90614cd8565b60405180910390fd5b600d54421115611e1d5781600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d8e9190614997565b92505081905550600a600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90614d6a565b60405180910390fd5b612103565b601454421115611f9157601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaa90614dd6565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f029190614997565b925050819055506005601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8390614e68565b60405180910390fd5b612102565b60135442111561210157601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201e90614dd6565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120769190614997565b925050819055506002600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790614efa565b60405180910390fd5b5b5b5b60005b8281101561212957612116612dd6565b8080612121906147bf565b915050612106565b505b5050565b61214161213a612795565b8383612e0d565b5050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c548261217b9190614f1a565b9050919050565b61219361218d612795565b83612856565b6121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c9906144ff565b60405180910390fd5b6121de84848484612f79565b50505050565b60135481565b601880546121f79061423a565b80601f01602080910402602001604051908101604052809291908181526020018280546122239061423a565b80156122705780601f1061224557610100808354040283529160200191612270565b820191906000526020600020905b81548152906001019060200180831161225357829003601f168201915b505050505081565b606061228382612729565b6122c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b990614fe6565b60405180910390fd5b6016544210156123015760196122d783612c76565b60186040516020016122eb9392919061509a565b604051602081830303815290604052905061235d565b600061230b612fd5565b9050600081511161232b5760405180602001604052806000815250612359565b8061233584612c76565b6018604051602001612349939291906150cb565b6040516020818303038152906040525b9150505b919050565b6017805461236f9061423a565b80601f016020809104026020016040519081016040528092919081815260200182805461239b9061423a565b80156123e85780601f106123bd576101008083540402835291602001916123e8565b820191906000526020600020905b8154815290600101906020018083116123cb57829003601f168201915b505050505081565b60106020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b60116020528060005260406000206000915090505481565b6124c2612795565b73ffffffffffffffffffffffffffffffffffffffff166124e06118e6565b73ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d9061446d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061516e565b60405180910390fd5b6125ae81612b9a565b50565b6125b9612795565b73ffffffffffffffffffffffffffffffffffffffff166125d76118e6565b73ffffffffffffffffffffffffffffffffffffffff161461262d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126249061446d565b60405180910390fd5b806019908051906020019061264392919061396e565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061271257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612722575061272182613104565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128108361143c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061286182612729565b6128a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289790615200565b60405180910390fd5b60006128ab8361143c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128ed57506128ec8185612408565b5b8061292b57508373ffffffffffffffffffffffffffffffffffffffff1661291384610be4565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129548261143c565b73ffffffffffffffffffffffffffffffffffffffff16146129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a190615292565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1090615324565b60405180910390fd5b612a2483838361316e565b612a2f60008261279d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7f9190614ac5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ad69190614997565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b95838383613280565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612c6e9190614997565b905092915050565b606060008203612cbd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dd1565b600082905060005b60008214612cef578080612cd8906147bf565b915050600a82612ce89190615373565b9150612cc5565b60008167ffffffffffffffff811115612d0b57612d0a613d75565b5b6040519080825280601f01601f191660200182016040528015612d3d5781602001600182028036833780820191505090505b5090505b60008514612dca57600182612d569190614ac5565b9150600a85612d6591906153a4565b6030612d719190614997565b60f81b818381518110612d8757612d86614761565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dc39190615373565b9450612d41565b8093505050505b919050565b6000600b549050612df7338260405180602001604052806000815250613285565b600181612e049190614997565b600b8190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7290615421565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f6c9190613ac5565b60405180910390a3505050565b612f84848484612934565b612f90848484846132e0565b612fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc6906154b3565b60405180910390fd5b50505050565b60606016544210156130735760198054612fee9061423a565b80601f016020809104026020016040519081016040528092919081815260200182805461301a9061423a565b80156130675780601f1061303c57610100808354040283529160200191613067565b820191906000526020600020905b81548152906001019060200180831161304a57829003601f168201915b50505050509050613101565b601780546130809061423a565b80601f01602080910402602001604051908101604052809291908181526020018280546130ac9061423a565b80156130f95780601f106130ce576101008083540402835291602001916130f9565b820191906000526020600020905b8154815290600101906020018083116130dc57829003601f168201915b505050505090505b90565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613179838383613467565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036131bb576131b68161346c565b6131fa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131f9576131f883826134b5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361323c5761323781613622565b61327b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461327a5761327982826136f3565b5b5b505050565b505050565b61328f8383613772565b61329c60008484846132e0565b6132db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d2906154b3565b60405180910390fd5b505050565b60006133018473ffffffffffffffffffffffffffffffffffffffff1661394b565b1561345a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261332a612795565b8786866040518563ffffffff1660e01b815260040161334c9493929190615528565b6020604051808303816000875af192505050801561338857506040513d601f19601f820116820180604052508101906133859190615589565b60015b61340a573d80600081146133b8576040519150601f19603f3d011682016040523d82523d6000602084013e6133bd565b606091505b506000815103613402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f9906154b3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061345f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134c28461157b565b6134cc9190614ac5565b90506000600760008481526020019081526020016000205490508181146135b1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136369190614ac5565b905060006009600084815260200190815260200160002054905060006008838154811061366657613665614761565b5b90600052602060002001549050806008838154811061368857613687614761565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136d7576136d66155b6565b5b6001900381819060005260206000200160009055905550505050565b60006136fe8361157b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d890615631565b60405180910390fd5b6137ea81612729565b1561382a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138219061569d565b60405180910390fd5b6138366000838361316e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138869190614997565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461394760008383613280565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461397a9061423a565b90600052602060002090601f01602090048101928261399c57600085556139e3565b82601f106139b557805160ff19168380011785556139e3565b828001600101855582156139e3579182015b828111156139e25782518255916020019190600101906139c7565b5b5090506139f091906139f4565b5090565b5b80821115613a0d5760008160009055506001016139f5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a5a81613a25565b8114613a6557600080fd5b50565b600081359050613a7781613a51565b92915050565b600060208284031215613a9357613a92613a1b565b5b6000613aa184828501613a68565b91505092915050565b60008115159050919050565b613abf81613aaa565b82525050565b6000602082019050613ada6000830184613ab6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b1a578082015181840152602081019050613aff565b83811115613b29576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b4b82613ae0565b613b558185613aeb565b9350613b65818560208601613afc565b613b6e81613b2f565b840191505092915050565b60006020820190508181036000830152613b938184613b40565b905092915050565b6000819050919050565b613bae81613b9b565b8114613bb957600080fd5b50565b600081359050613bcb81613ba5565b92915050565b600060208284031215613be757613be6613a1b565b5b6000613bf584828501613bbc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c2982613bfe565b9050919050565b613c3981613c1e565b82525050565b6000602082019050613c546000830184613c30565b92915050565b613c6381613c1e565b8114613c6e57600080fd5b50565b600081359050613c8081613c5a565b92915050565b60008060408385031215613c9d57613c9c613a1b565b5b6000613cab85828601613c71565b9250506020613cbc85828601613bbc565b9150509250929050565b613ccf81613b9b565b82525050565b6000602082019050613cea6000830184613cc6565b92915050565b600060208284031215613d0657613d05613a1b565b5b6000613d1484828501613c71565b91505092915050565b600080600060608486031215613d3657613d35613a1b565b5b6000613d4486828701613c71565b9350506020613d5586828701613c71565b9250506040613d6686828701613bbc565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613dad82613b2f565b810181811067ffffffffffffffff82111715613dcc57613dcb613d75565b5b80604052505050565b6000613ddf613a11565b9050613deb8282613da4565b919050565b600067ffffffffffffffff821115613e0b57613e0a613d75565b5b602082029050602081019050919050565b600080fd5b6000613e34613e2f84613df0565b613dd5565b90508083825260208201905060208402830185811115613e5757613e56613e1c565b5b835b81811015613e805780613e6c8882613c71565b845260208401935050602081019050613e59565b5050509392505050565b600082601f830112613e9f57613e9e613d70565b5b8135613eaf848260208601613e21565b91505092915050565b600060208284031215613ece57613ecd613a1b565b5b600082013567ffffffffffffffff811115613eec57613eeb613a20565b5b613ef884828501613e8a565b91505092915050565b600080fd5b600067ffffffffffffffff821115613f2157613f20613d75565b5b613f2a82613b2f565b9050602081019050919050565b82818337600083830152505050565b6000613f59613f5484613f06565b613dd5565b905082815260208101848484011115613f7557613f74613f01565b5b613f80848285613f37565b509392505050565b600082601f830112613f9d57613f9c613d70565b5b8135613fad848260208601613f46565b91505092915050565b600060208284031215613fcc57613fcb613a1b565b5b600082013567ffffffffffffffff811115613fea57613fe9613a20565b5b613ff684828501613f88565b91505092915050565b61400881613aaa565b811461401357600080fd5b50565b60008135905061402581613fff565b92915050565b6000806040838503121561404257614041613a1b565b5b600061405085828601613c71565b925050602061406185828601614016565b9150509250929050565b600061407682613bfe565b9050919050565b6140868161406b565b82525050565b60006020820190506140a1600083018461407d565b92915050565b600067ffffffffffffffff8211156140c2576140c1613d75565b5b6140cb82613b2f565b9050602081019050919050565b60006140eb6140e6846140a7565b613dd5565b90508281526020810184848401111561410757614106613f01565b5b614112848285613f37565b509392505050565b600082601f83011261412f5761412e613d70565b5b813561413f8482602086016140d8565b91505092915050565b6000806000806080858703121561416257614161613a1b565b5b600061417087828801613c71565b945050602061418187828801613c71565b935050604061419287828801613bbc565b925050606085013567ffffffffffffffff8111156141b3576141b2613a20565b5b6141bf8782880161411a565b91505092959194509250565b600080604083850312156141e2576141e1613a1b565b5b60006141f085828601613c71565b925050602061420185828601613c71565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425257607f821691505b6020821081036142655761426461420b565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006142c7602c83613aeb565b91506142d28261426b565b604082019050919050565b600060208201905081810360008301526142f6816142ba565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614359602183613aeb565b9150614364826142fd565b604082019050919050565b600060208201905081810360008301526143888161434c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006143eb603883613aeb565b91506143f68261438f565b604082019050919050565b6000602082019050818103600083015261441a816143de565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614457602083613aeb565b915061446282614421565b602082019050919050565b600060208201905081810360008301526144868161444a565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006144e9603183613aeb565b91506144f48261448d565b604082019050919050565b60006020820190508181036000830152614518816144dc565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061457b602b83613aeb565b91506145868261451f565b604082019050919050565b600060208201905081810360008301526145aa8161456e565b9050919050565b7f4e6f20657468657265756d206c65667420746f20776974686472617700000000600082015250565b60006145e7601c83613aeb565b91506145f2826145b1565b602082019050919050565b60006020820190508181036000830152614616816145da565b9050919050565b600081905092915050565b50565b600061463860008361461d565b915061464382614628565b600082019050919050565b60006146598261462b565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614699601083613aeb565b91506146a482614663565b602082019050919050565b600060208201905081810360008301526146c88161468c565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061472b602c83613aeb565b9150614736826146cf565b604082019050919050565b6000602082019050818103600083015261475a8161471e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147ca82613b9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036147fc576147fb614790565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614863602983613aeb565b915061486e82614807565b604082019050919050565b6000602082019050818103600083015261489281614856565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006148f5602a83613aeb565b915061490082614899565b604082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b7f4163636f756e7420697320746865207a65726f20616464726573730000000000600082015250565b6000614961601b83613aeb565b915061496c8261492b565b602082019050919050565b6000602082019050818103600083015261499081614954565b9050919050565b60006149a282613b9b565b91506149ad83613b9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149e2576149e1614790565b5b828201905092915050565b7f4e6f7420656e6f756768204e465473206c656674000000000000000000000000600082015250565b6000614a23601483613aeb565b9150614a2e826149ed565b602082019050919050565b60006020820190508181036000830152614a5281614a16565b9050919050565b7f43616e6e6f74206d696e742030204e4654730000000000000000000000000000600082015250565b6000614a8f601283613aeb565b9150614a9a82614a59565b602082019050919050565b60006020820190508181036000830152614abe81614a82565b9050919050565b6000614ad082613b9b565b9150614adb83613b9b565b925082821015614aee57614aed614790565b5b828203905092915050565b600081905092915050565b7f416464726573732063616e2774206d696e74206d6f7265207468616e20000000600082015250565b6000614b3a601d83614af9565b9150614b4582614b04565b601d82019050919050565b6000614b5b82613ae0565b614b658185614af9565b9350614b75818560208601613afc565b80840191505092915050565b7f204e46547320696e2046726565206d696e740000000000000000000000000000600082015250565b6000614bb7601283614af9565b9150614bc282614b81565b601282019050919050565b6000614bd882614b2d565b9150614be48284614b50565b9150614bef82614baa565b915081905092915050565b7f53616c65206e6f74207374617274656420796574000000000000000000000000600082015250565b6000614c30601483613aeb565b9150614c3b82614bfa565b602082019050919050565b60006020820190508181036000830152614c5f81614c23565b9050919050565b7f4e6f7420656e6f75676820657468657265756d20746f2070757263686173652060008201527f4e46547300000000000000000000000000000000000000000000000000000000602082015250565b6000614cc2602483613aeb565b9150614ccd82614c66565b604082019050919050565b60006020820190508181036000830152614cf181614cb5565b9050919050565b7f416464726573732063616e2774206d696e74206d6f7265207468616e2031302060008201527f4e46547320696e205075626c69632073616c6500000000000000000000000000602082015250565b6000614d54603383613aeb565b9150614d5f82614cf8565b604082019050919050565b60006020820190508181036000830152614d8381614d47565b9050919050565b7f41646472657373206973206e6f742077686974656c6973746564000000000000600082015250565b6000614dc0601a83613aeb565b9150614dcb82614d8a565b602082019050919050565b60006020820190508181036000830152614def81614db3565b9050919050565b7f416464726573732063616e2774206d696e74206d6f7265207468616e2035204e60008201527f46547320696e20506861736520322073616c6500000000000000000000000000602082015250565b6000614e52603383613aeb565b9150614e5d82614df6565b604082019050919050565b60006020820190508181036000830152614e8181614e45565b9050919050565b7f416464726573732063616e2774206d696e74206d6f7265207468616e2032204e60008201527f46547320696e20506861736520312073616c6500000000000000000000000000602082015250565b6000614ee4603383613aeb565b9150614eef82614e88565b604082019050919050565b60006020820190508181036000830152614f1381614ed7565b9050919050565b6000614f2582613b9b565b9150614f3083613b9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f6957614f68614790565b5b828202905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614fd0602f83613aeb565b9150614fdb82614f74565b604082019050919050565b60006020820190508181036000830152614fff81614fc3565b9050919050565b60008190508160005260206000209050919050565b600081546150288161423a565b6150328186614af9565b9450600182166000811461504d576001811461505e57615091565b60ff19831686528186019350615091565b61506785615006565b60005b838110156150895781548189015260018201915060208101905061506a565b838801955050505b50505092915050565b60006150a6828661501b565b91506150b28285614b50565b91506150be828461501b565b9150819050949350505050565b60006150d78286614b50565b91506150e38285614b50565b91506150ef828461501b565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615158602683613aeb565b9150615163826150fc565b604082019050919050565b600060208201905081810360008301526151878161514b565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006151ea602c83613aeb565b91506151f58261518e565b604082019050919050565b60006020820190508181036000830152615219816151dd565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061527c602583613aeb565b915061528782615220565b604082019050919050565b600060208201905081810360008301526152ab8161526f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061530e602483613aeb565b9150615319826152b2565b604082019050919050565b6000602082019050818103600083015261533d81615301565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061537e82613b9b565b915061538983613b9b565b92508261539957615398615344565b5b828204905092915050565b60006153af82613b9b565b91506153ba83613b9b565b9250826153ca576153c9615344565b5b828206905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061540b601983613aeb565b9150615416826153d5565b602082019050919050565b6000602082019050818103600083015261543a816153fe565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061549d603283613aeb565b91506154a882615441565b604082019050919050565b600060208201905081810360008301526154cc81615490565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154fa826154d3565b61550481856154de565b9350615514818560208601613afc565b61551d81613b2f565b840191505092915050565b600060808201905061553d6000830187613c30565b61554a6020830186613c30565b6155576040830185613cc6565b818103606083015261556981846154ef565b905095945050505050565b60008151905061558381613a51565b92915050565b60006020828403121561559f5761559e613a1b565b5b60006155ad84828501615574565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061561b602083613aeb565b9150615626826155e5565b602082019050919050565b6000602082019050818103600083015261564a8161560e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615687601c83613aeb565b915061569282615651565b602082019050919050565b600060208201905081810360008301526156b68161567a565b905091905056fea2646970667358221220fff6d6d76f279c4105891b748b98f25f2c2eaea623e3259617dc9e5a4083077f64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000629665b000000000000000000000000000000000000000000000000000000000629908b000000000000000000000000000000000000000000000000000000000629babb000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000062bca130000000000000000000000000bc27b49d0731c8fd062e18c8a73bf20b52e3bd9500000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50316e34647564694e695153715a38465369564277446d66483435317577584b61374a334348554c6b6a33582f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50316e34647564694e695153715a38465369564277446d66483435317577584b61374a334348554c6b6a33582f000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000d6f6e642a49b3132628e958930a6e0e47ee2200200000000000000000000000020f04b9b1bc9a36e8802f6ee35ddf74126a26b0f000000000000000000000000373bbd6344a72bb1ec092cca240ffd5b63450f0e000000000000000000000000b1b74f5ee6cf6af34768785802ff90e8c5d5ad1500000000000000000000000065b8a8df696936ecfd5069622e7e961d2d73c1890000000000000000000000003bcd5de3777e4ee90ee0a1b8a57df46e096b7de00000000000000000000000006ec504ed5a783e587824700a34cf13895bb45210000000000000000000000000285300fff24ab9bdaa684c28b7f85d88d9cb09830000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063715018a61161014f578063ae104265116100c1578063d81d8ef01161007a578063d81d8ef0146109a4578063e985e9c5146109e1578063eb6426a914610a1e578063ef56267e14610a49578063f2fde38b14610a86578063fe2c7fee14610aaf5761027d565b8063ae10426514610880578063b88d4fde146108bd578063c504685e146108e6578063c668286214610911578063c87b56dd1461093c578063d547cfb7146109795761027d565b80638da5cb5b116101135780638da5cb5b1461077d578063918b933f146107a857806395d89b41146107e5578063a0712d6814610810578063a22cb4651461082c578063a6d23e10146108555761027d565b8063715018a6146106be57806375794a3c146106d55780637f649783146107005780638044741f146107295780638d859f3e146107525761027d565b80633775ddcc116101f35780634f6ccce7116101ac5780634f6ccce71461058a578063548db174146105c757806355f804b3146105f05780636352211e146106195780637035bf181461065657806370a08231146106815761027d565b80633775ddcc1461049d5780633af32abf146104c65780633c66485e146105035780633ccfd60b1461052e578063405200cd1461053857806342842e0e146105615761027d565b806318160ddd1161024557806318160ddd146103795780631e08a9e4146103a45780631e7269c5146103cf57806323b872dd1461040c5780632f745c591461043557806332cb6b0c146104725761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630c88b73114610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613a7d565b610ad8565b6040516102b69190613ac5565b60405180910390f35b3480156102cb57600080fd5b506102d4610b52565b6040516102e19190613b79565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613bd1565b610be4565b60405161031e9190613c3f565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613c86565b610c69565b005b34801561035c57600080fd5b5061037760048036038101906103729190613bd1565b610d80565b005b34801561038557600080fd5b5061038e610e06565b60405161039b9190613cd5565b60405180910390f35b3480156103b057600080fd5b506103b9610e13565b6040516103c69190613cd5565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613cf0565b610e19565b6040516104039190613cd5565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190613d1d565b610e31565b005b34801561044157600080fd5b5061045c60048036038101906104579190613c86565b610e91565b6040516104699190613cd5565b60405180910390f35b34801561047e57600080fd5b50610487610f36565b6040516104949190613cd5565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190613bd1565b610f3c565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613cf0565b610fc2565b6040516104fa9190613ac5565b60405180910390f35b34801561050f57600080fd5b50610518610fe2565b6040516105259190613cd5565b60405180910390f35b610536610fe8565b005b34801561054457600080fd5b5061055f600480360381019061055a9190613bd1565b61117e565b005b34801561056d57600080fd5b5061058860048036038101906105839190613d1d565b611204565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613bd1565b611224565b6040516105be9190613cd5565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613eb8565b611295565b005b3480156105fc57600080fd5b5061061760048036038101906106129190613fb6565b6113a6565b005b34801561062557600080fd5b50610640600480360381019061063b9190613bd1565b61143c565b60405161064d9190613c3f565b60405180910390f35b34801561066257600080fd5b5061066b6114ed565b6040516106789190613b79565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613cf0565b61157b565b6040516106b59190613cd5565b60405180910390f35b3480156106ca57600080fd5b506106d3611632565b005b3480156106e157600080fd5b506106ea6116ba565b6040516106f79190613cd5565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190613eb8565b6116c0565b005b34801561073557600080fd5b50610750600480360381019061074b9190613bd1565b61185a565b005b34801561075e57600080fd5b506107676118e0565b6040516107749190613cd5565b60405180910390f35b34801561078957600080fd5b506107926118e6565b60405161079f9190613c3f565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613cf0565b611910565b6040516107dc9190613cd5565b60405180910390f35b3480156107f157600080fd5b506107fa611928565b6040516108079190613b79565b60405180910390f35b61082a60048036038101906108259190613bd1565b6119ba565b005b34801561083857600080fd5b50610853600480360381019061084e919061402b565b61212f565b005b34801561086157600080fd5b5061086a612145565b604051610877919061408c565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190613bd1565b61216b565b6040516108b49190613cd5565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df9190614148565b612182565b005b3480156108f257600080fd5b506108fb6121e4565b6040516109089190613cd5565b60405180910390f35b34801561091d57600080fd5b506109266121ea565b6040516109339190613b79565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613bd1565b612278565b6040516109709190613b79565b60405180910390f35b34801561098557600080fd5b5061098e612362565b60405161099b9190613b79565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c69190613cf0565b6123f0565b6040516109d89190613cd5565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a0391906141cb565b612408565b604051610a159190613ac5565b60405180910390f35b348015610a2a57600080fd5b50610a3361249c565b604051610a409190613cd5565b60405180910390f35b348015610a5557600080fd5b50610a706004803603810190610a6b9190613cf0565b6124a2565b604051610a7d9190613cd5565b60405180910390f35b348015610a9257600080fd5b50610aad6004803603810190610aa89190613cf0565b6124ba565b005b348015610abb57600080fd5b50610ad66004803603810190610ad19190613fb6565b6125b1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4b5750610b4a82612647565b5b9050919050565b606060008054610b619061423a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8d9061423a565b8015610bda5780601f10610baf57610100808354040283529160200191610bda565b820191906000526020600020905b815481529060010190602001808311610bbd57829003601f168201915b5050505050905090565b6000610bef82612729565b610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c25906142dd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c748261143c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb9061436f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d03612795565b73ffffffffffffffffffffffffffffffffffffffff161480610d325750610d3181610d2c612795565b612408565b5b610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890614401565b60405180910390fd5b610d7b838361279d565b505050565b610d88612795565b73ffffffffffffffffffffffffffffffffffffffff16610da66118e6565b73ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df39061446d565b60405180910390fd5b8060168190555050565b6000600880549050905090565b60165481565b600e6020528060005260406000206000915090505481565b610e42610e3c612795565b82612856565b610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906144ff565b60405180910390fd5b610e8c838383612934565b505050565b6000610e9c8361157b565b8210610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490614591565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61052e81565b610f44612795565b73ffffffffffffffffffffffffffffffffffffffff16610f626118e6565b73ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf9061446d565b60405180910390fd5b8060138190555050565b60156020528060005260406000206000915054906101000a900460ff1681565b60145481565b610ff0612795565b73ffffffffffffffffffffffffffffffffffffffff1661100e6118e6565b73ffffffffffffffffffffffffffffffffffffffff1614611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b9061446d565b60405180910390fd5b6000479050600081116110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a3906145fd565b60405180910390fd5b6000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516110f49061464e565b60006040518083038185875af1925050503d8060008114611131576040519150601f19603f3d011682016040523d82523d6000602084013e611136565b606091505b505090508061117a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611171906146af565b60405180910390fd5b5050565b611186612795565b73ffffffffffffffffffffffffffffffffffffffff166111a46118e6565b73ffffffffffffffffffffffffffffffffffffffff16146111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f19061446d565b60405180910390fd5b80600d8190555050565b61121f83838360405180602001604052806000815250612182565b505050565b600061122e610e06565b821061126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690614741565b60405180910390fd5b6008828154811061128357611282614761565b5b90600052602060002001549050919050565b61129d612795565b73ffffffffffffffffffffffffffffffffffffffff166112bb6118e6565b73ffffffffffffffffffffffffffffffffffffffff1614611311576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113089061446d565b60405180910390fd5b60005b81518110156113a25760006015600084848151811061133657611335614761565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061139a906147bf565b915050611314565b5050565b6113ae612795565b73ffffffffffffffffffffffffffffffffffffffff166113cc6118e6565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114199061446d565b60405180910390fd5b806017908051906020019061143892919061396e565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90614879565b60405180910390fd5b80915050919050565b601980546114fa9061423a565b80601f01602080910402602001604051908101604052809291908181526020018280546115269061423a565b80156115735780601f1061154857610100808354040283529160200191611573565b820191906000526020600020905b81548152906001019060200180831161155657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e29061490b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61163a612795565b73ffffffffffffffffffffffffffffffffffffffff166116586118e6565b73ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a59061446d565b60405180910390fd5b6116b86000612b9a565b565b600b5481565b6116c8612795565b73ffffffffffffffffffffffffffffffffffffffff166116e66118e6565b73ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117339061446d565b60405180910390fd5b60005b815181101561185657600073ffffffffffffffffffffffffffffffffffffffff1682828151811061177357611772614761565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16036117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890614977565b60405180910390fd5b6001601560008484815181106117ea576117e9614761565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061184e906147bf565b91505061173f565b5050565b611862612795565b73ffffffffffffffffffffffffffffffffffffffff166118806118e6565b73ffffffffffffffffffffffffffffffffffffffff16146118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd9061446d565b60405180910390fd5b8060148190555050565b600c5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f6020528060005260406000206000915090505481565b6060600180546119379061423a565b80601f01602080910402602001604051908101604052809291908181526020018280546119639061423a565b80156119b05780601f10611985576101008083540402835291602001916119b0565b820191906000526020600020905b81548152906001019060200180831161199357829003601f168201915b5050505050905090565b6000600b549050600161052e6119d09190614997565b6119e38383612c6090919063ffffffff16565b1115611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90614a39565b60405180910390fd5b60008211611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90614aa5565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611af39190614ac5565b1115611ca65781601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b489190614997565b92505081905550601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611c19601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c76565b604051602001611c299190614bcd565b60405160208183030381529060405290611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c709190613b79565b60405180910390fd5b5060005b82811015611ca057611c8d612dd6565b8080611c98906147bf565b915050611c7d565b5061212b565b6013544211611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190614c46565b60405180910390fd5b611cf38261216b565b341015611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90614cd8565b60405180910390fd5b600d54421115611e1d5781600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d8e9190614997565b92505081905550600a600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90614d6a565b60405180910390fd5b612103565b601454421115611f9157601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaa90614dd6565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f029190614997565b925050819055506005601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8390614e68565b60405180910390fd5b612102565b60135442111561210157601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201e90614dd6565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120769190614997565b925050819055506002600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790614efa565b60405180910390fd5b5b5b5b60005b8281101561212957612116612dd6565b8080612121906147bf565b915050612106565b505b5050565b61214161213a612795565b8383612e0d565b5050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c548261217b9190614f1a565b9050919050565b61219361218d612795565b83612856565b6121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c9906144ff565b60405180910390fd5b6121de84848484612f79565b50505050565b60135481565b601880546121f79061423a565b80601f01602080910402602001604051908101604052809291908181526020018280546122239061423a565b80156122705780601f1061224557610100808354040283529160200191612270565b820191906000526020600020905b81548152906001019060200180831161225357829003601f168201915b505050505081565b606061228382612729565b6122c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b990614fe6565b60405180910390fd5b6016544210156123015760196122d783612c76565b60186040516020016122eb9392919061509a565b604051602081830303815290604052905061235d565b600061230b612fd5565b9050600081511161232b5760405180602001604052806000815250612359565b8061233584612c76565b6018604051602001612349939291906150cb565b6040516020818303038152906040525b9150505b919050565b6017805461236f9061423a565b80601f016020809104026020016040519081016040528092919081815260200182805461239b9061423a565b80156123e85780601f106123bd576101008083540402835291602001916123e8565b820191906000526020600020905b8154815290600101906020018083116123cb57829003601f168201915b505050505081565b60106020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b60116020528060005260406000206000915090505481565b6124c2612795565b73ffffffffffffffffffffffffffffffffffffffff166124e06118e6565b73ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d9061446d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061516e565b60405180910390fd5b6125ae81612b9a565b50565b6125b9612795565b73ffffffffffffffffffffffffffffffffffffffff166125d76118e6565b73ffffffffffffffffffffffffffffffffffffffff161461262d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126249061446d565b60405180910390fd5b806019908051906020019061264392919061396e565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061271257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612722575061272182613104565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128108361143c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061286182612729565b6128a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289790615200565b60405180910390fd5b60006128ab8361143c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128ed57506128ec8185612408565b5b8061292b57508373ffffffffffffffffffffffffffffffffffffffff1661291384610be4565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129548261143c565b73ffffffffffffffffffffffffffffffffffffffff16146129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a190615292565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1090615324565b60405180910390fd5b612a2483838361316e565b612a2f60008261279d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7f9190614ac5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ad69190614997565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b95838383613280565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612c6e9190614997565b905092915050565b606060008203612cbd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dd1565b600082905060005b60008214612cef578080612cd8906147bf565b915050600a82612ce89190615373565b9150612cc5565b60008167ffffffffffffffff811115612d0b57612d0a613d75565b5b6040519080825280601f01601f191660200182016040528015612d3d5781602001600182028036833780820191505090505b5090505b60008514612dca57600182612d569190614ac5565b9150600a85612d6591906153a4565b6030612d719190614997565b60f81b818381518110612d8757612d86614761565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dc39190615373565b9450612d41565b8093505050505b919050565b6000600b549050612df7338260405180602001604052806000815250613285565b600181612e049190614997565b600b8190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7290615421565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f6c9190613ac5565b60405180910390a3505050565b612f84848484612934565b612f90848484846132e0565b612fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc6906154b3565b60405180910390fd5b50505050565b60606016544210156130735760198054612fee9061423a565b80601f016020809104026020016040519081016040528092919081815260200182805461301a9061423a565b80156130675780601f1061303c57610100808354040283529160200191613067565b820191906000526020600020905b81548152906001019060200180831161304a57829003601f168201915b50505050509050613101565b601780546130809061423a565b80601f01602080910402602001604051908101604052809291908181526020018280546130ac9061423a565b80156130f95780601f106130ce576101008083540402835291602001916130f9565b820191906000526020600020905b8154815290600101906020018083116130dc57829003601f168201915b505050505090505b90565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613179838383613467565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036131bb576131b68161346c565b6131fa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131f9576131f883826134b5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361323c5761323781613622565b61327b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461327a5761327982826136f3565b5b5b505050565b505050565b61328f8383613772565b61329c60008484846132e0565b6132db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d2906154b3565b60405180910390fd5b505050565b60006133018473ffffffffffffffffffffffffffffffffffffffff1661394b565b1561345a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261332a612795565b8786866040518563ffffffff1660e01b815260040161334c9493929190615528565b6020604051808303816000875af192505050801561338857506040513d601f19601f820116820180604052508101906133859190615589565b60015b61340a573d80600081146133b8576040519150601f19603f3d011682016040523d82523d6000602084013e6133bd565b606091505b506000815103613402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f9906154b3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061345f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134c28461157b565b6134cc9190614ac5565b90506000600760008481526020019081526020016000205490508181146135b1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136369190614ac5565b905060006009600084815260200190815260200160002054905060006008838154811061366657613665614761565b5b90600052602060002001549050806008838154811061368857613687614761565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136d7576136d66155b6565b5b6001900381819060005260206000200160009055905550505050565b60006136fe8361157b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d890615631565b60405180910390fd5b6137ea81612729565b1561382a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138219061569d565b60405180910390fd5b6138366000838361316e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138869190614997565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461394760008383613280565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461397a9061423a565b90600052602060002090601f01602090048101928261399c57600085556139e3565b82601f106139b557805160ff19168380011785556139e3565b828001600101855582156139e3579182015b828111156139e25782518255916020019190600101906139c7565b5b5090506139f091906139f4565b5090565b5b80821115613a0d5760008160009055506001016139f5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a5a81613a25565b8114613a6557600080fd5b50565b600081359050613a7781613a51565b92915050565b600060208284031215613a9357613a92613a1b565b5b6000613aa184828501613a68565b91505092915050565b60008115159050919050565b613abf81613aaa565b82525050565b6000602082019050613ada6000830184613ab6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b1a578082015181840152602081019050613aff565b83811115613b29576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b4b82613ae0565b613b558185613aeb565b9350613b65818560208601613afc565b613b6e81613b2f565b840191505092915050565b60006020820190508181036000830152613b938184613b40565b905092915050565b6000819050919050565b613bae81613b9b565b8114613bb957600080fd5b50565b600081359050613bcb81613ba5565b92915050565b600060208284031215613be757613be6613a1b565b5b6000613bf584828501613bbc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c2982613bfe565b9050919050565b613c3981613c1e565b82525050565b6000602082019050613c546000830184613c30565b92915050565b613c6381613c1e565b8114613c6e57600080fd5b50565b600081359050613c8081613c5a565b92915050565b60008060408385031215613c9d57613c9c613a1b565b5b6000613cab85828601613c71565b9250506020613cbc85828601613bbc565b9150509250929050565b613ccf81613b9b565b82525050565b6000602082019050613cea6000830184613cc6565b92915050565b600060208284031215613d0657613d05613a1b565b5b6000613d1484828501613c71565b91505092915050565b600080600060608486031215613d3657613d35613a1b565b5b6000613d4486828701613c71565b9350506020613d5586828701613c71565b9250506040613d6686828701613bbc565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613dad82613b2f565b810181811067ffffffffffffffff82111715613dcc57613dcb613d75565b5b80604052505050565b6000613ddf613a11565b9050613deb8282613da4565b919050565b600067ffffffffffffffff821115613e0b57613e0a613d75565b5b602082029050602081019050919050565b600080fd5b6000613e34613e2f84613df0565b613dd5565b90508083825260208201905060208402830185811115613e5757613e56613e1c565b5b835b81811015613e805780613e6c8882613c71565b845260208401935050602081019050613e59565b5050509392505050565b600082601f830112613e9f57613e9e613d70565b5b8135613eaf848260208601613e21565b91505092915050565b600060208284031215613ece57613ecd613a1b565b5b600082013567ffffffffffffffff811115613eec57613eeb613a20565b5b613ef884828501613e8a565b91505092915050565b600080fd5b600067ffffffffffffffff821115613f2157613f20613d75565b5b613f2a82613b2f565b9050602081019050919050565b82818337600083830152505050565b6000613f59613f5484613f06565b613dd5565b905082815260208101848484011115613f7557613f74613f01565b5b613f80848285613f37565b509392505050565b600082601f830112613f9d57613f9c613d70565b5b8135613fad848260208601613f46565b91505092915050565b600060208284031215613fcc57613fcb613a1b565b5b600082013567ffffffffffffffff811115613fea57613fe9613a20565b5b613ff684828501613f88565b91505092915050565b61400881613aaa565b811461401357600080fd5b50565b60008135905061402581613fff565b92915050565b6000806040838503121561404257614041613a1b565b5b600061405085828601613c71565b925050602061406185828601614016565b9150509250929050565b600061407682613bfe565b9050919050565b6140868161406b565b82525050565b60006020820190506140a1600083018461407d565b92915050565b600067ffffffffffffffff8211156140c2576140c1613d75565b5b6140cb82613b2f565b9050602081019050919050565b60006140eb6140e6846140a7565b613dd5565b90508281526020810184848401111561410757614106613f01565b5b614112848285613f37565b509392505050565b600082601f83011261412f5761412e613d70565b5b813561413f8482602086016140d8565b91505092915050565b6000806000806080858703121561416257614161613a1b565b5b600061417087828801613c71565b945050602061418187828801613c71565b935050604061419287828801613bbc565b925050606085013567ffffffffffffffff8111156141b3576141b2613a20565b5b6141bf8782880161411a565b91505092959194509250565b600080604083850312156141e2576141e1613a1b565b5b60006141f085828601613c71565b925050602061420185828601613c71565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425257607f821691505b6020821081036142655761426461420b565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006142c7602c83613aeb565b91506142d28261426b565b604082019050919050565b600060208201905081810360008301526142f6816142ba565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614359602183613aeb565b9150614364826142fd565b604082019050919050565b600060208201905081810360008301526143888161434c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006143eb603883613aeb565b91506143f68261438f565b604082019050919050565b6000602082019050818103600083015261441a816143de565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614457602083613aeb565b915061446282614421565b602082019050919050565b600060208201905081810360008301526144868161444a565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006144e9603183613aeb565b91506144f48261448d565b604082019050919050565b60006020820190508181036000830152614518816144dc565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061457b602b83613aeb565b91506145868261451f565b604082019050919050565b600060208201905081810360008301526145aa8161456e565b9050919050565b7f4e6f20657468657265756d206c65667420746f20776974686472617700000000600082015250565b60006145e7601c83613aeb565b91506145f2826145b1565b602082019050919050565b60006020820190508181036000830152614616816145da565b9050919050565b600081905092915050565b50565b600061463860008361461d565b915061464382614628565b600082019050919050565b60006146598261462b565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614699601083613aeb565b91506146a482614663565b602082019050919050565b600060208201905081810360008301526146c88161468c565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061472b602c83613aeb565b9150614736826146cf565b604082019050919050565b6000602082019050818103600083015261475a8161471e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147ca82613b9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036147fc576147fb614790565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614863602983613aeb565b915061486e82614807565b604082019050919050565b6000602082019050818103600083015261489281614856565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006148f5602a83613aeb565b915061490082614899565b604082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b7f4163636f756e7420697320746865207a65726f20616464726573730000000000600082015250565b6000614961601b83613aeb565b915061496c8261492b565b602082019050919050565b6000602082019050818103600083015261499081614954565b9050919050565b60006149a282613b9b565b91506149ad83613b9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149e2576149e1614790565b5b828201905092915050565b7f4e6f7420656e6f756768204e465473206c656674000000000000000000000000600082015250565b6000614a23601483613aeb565b9150614a2e826149ed565b602082019050919050565b60006020820190508181036000830152614a5281614a16565b9050919050565b7f43616e6e6f74206d696e742030204e4654730000000000000000000000000000600082015250565b6000614a8f601283613aeb565b9150614a9a82614a59565b602082019050919050565b60006020820190508181036000830152614abe81614a82565b9050919050565b6000614ad082613b9b565b9150614adb83613b9b565b925082821015614aee57614aed614790565b5b828203905092915050565b600081905092915050565b7f416464726573732063616e2774206d696e74206d6f7265207468616e20000000600082015250565b6000614b3a601d83614af9565b9150614b4582614b04565b601d82019050919050565b6000614b5b82613ae0565b614b658185614af9565b9350614b75818560208601613afc565b80840191505092915050565b7f204e46547320696e2046726565206d696e740000000000000000000000000000600082015250565b6000614bb7601283614af9565b9150614bc282614b81565b601282019050919050565b6000614bd882614b2d565b9150614be48284614b50565b9150614bef82614baa565b915081905092915050565b7f53616c65206e6f74207374617274656420796574000000000000000000000000600082015250565b6000614c30601483613aeb565b9150614c3b82614bfa565b602082019050919050565b60006020820190508181036000830152614c5f81614c23565b9050919050565b7f4e6f7420656e6f75676820657468657265756d20746f2070757263686173652060008201527f4e46547300000000000000000000000000000000000000000000000000000000602082015250565b6000614cc2602483613aeb565b9150614ccd82614c66565b604082019050919050565b60006020820190508181036000830152614cf181614cb5565b9050919050565b7f416464726573732063616e2774206d696e74206d6f7265207468616e2031302060008201527f4e46547320696e205075626c69632073616c6500000000000000000000000000602082015250565b6000614d54603383613aeb565b9150614d5f82614cf8565b604082019050919050565b60006020820190508181036000830152614d8381614d47565b9050919050565b7f41646472657373206973206e6f742077686974656c6973746564000000000000600082015250565b6000614dc0601a83613aeb565b9150614dcb82614d8a565b602082019050919050565b60006020820190508181036000830152614def81614db3565b9050919050565b7f416464726573732063616e2774206d696e74206d6f7265207468616e2035204e60008201527f46547320696e20506861736520322073616c6500000000000000000000000000602082015250565b6000614e52603383613aeb565b9150614e5d82614df6565b604082019050919050565b60006020820190508181036000830152614e8181614e45565b9050919050565b7f416464726573732063616e2774206d696e74206d6f7265207468616e2032204e60008201527f46547320696e20506861736520312073616c6500000000000000000000000000602082015250565b6000614ee4603383613aeb565b9150614eef82614e88565b604082019050919050565b60006020820190508181036000830152614f1381614ed7565b9050919050565b6000614f2582613b9b565b9150614f3083613b9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f6957614f68614790565b5b828202905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614fd0602f83613aeb565b9150614fdb82614f74565b604082019050919050565b60006020820190508181036000830152614fff81614fc3565b9050919050565b60008190508160005260206000209050919050565b600081546150288161423a565b6150328186614af9565b9450600182166000811461504d576001811461505e57615091565b60ff19831686528186019350615091565b61506785615006565b60005b838110156150895781548189015260018201915060208101905061506a565b838801955050505b50505092915050565b60006150a6828661501b565b91506150b28285614b50565b91506150be828461501b565b9150819050949350505050565b60006150d78286614b50565b91506150e38285614b50565b91506150ef828461501b565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615158602683613aeb565b9150615163826150fc565b604082019050919050565b600060208201905081810360008301526151878161514b565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006151ea602c83613aeb565b91506151f58261518e565b604082019050919050565b60006020820190508181036000830152615219816151dd565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061527c602583613aeb565b915061528782615220565b604082019050919050565b600060208201905081810360008301526152ab8161526f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061530e602483613aeb565b9150615319826152b2565b604082019050919050565b6000602082019050818103600083015261533d81615301565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061537e82613b9b565b915061538983613b9b565b92508261539957615398615344565b5b828204905092915050565b60006153af82613b9b565b91506153ba83613b9b565b9250826153ca576153c9615344565b5b828206905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061540b601983613aeb565b9150615416826153d5565b602082019050919050565b6000602082019050818103600083015261543a816153fe565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061549d603283613aeb565b91506154a882615441565b604082019050919050565b600060208201905081810360008301526154cc81615490565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154fa826154d3565b61550481856154de565b9350615514818560208601613afc565b61551d81613b2f565b840191505092915050565b600060808201905061553d6000830187613c30565b61554a6020830186613c30565b6155576040830185613cc6565b818103606083015261556981846154ef565b905095945050505050565b60008151905061558381613a51565b92915050565b60006020828403121561559f5761559e613a1b565b5b60006155ad84828501615574565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061561b602083613aeb565b9150615626826155e5565b602082019050919050565b6000602082019050818103600083015261564a8161560e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615687601c83613aeb565b915061569282615651565b602082019050919050565b600060208201905081810360008301526156b68161567a565b905091905056fea2646970667358221220fff6d6d76f279c4105891b748b98f25f2c2eaea623e3259617dc9e5a4083077f64736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000629665b000000000000000000000000000000000000000000000000000000000629908b000000000000000000000000000000000000000000000000000000000629babb000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000062bca130000000000000000000000000bc27b49d0731c8fd062e18c8a73bf20b52e3bd9500000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50316e34647564694e695153715a38465369564277446d66483435317577584b61374a334348554c6b6a33582f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50316e34647564694e695153715a38465369564277446d66483435317577584b61374a334348554c6b6a33582f000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000d6f6e642a49b3132628e958930a6e0e47ee2200200000000000000000000000020f04b9b1bc9a36e8802f6ee35ddf74126a26b0f000000000000000000000000373bbd6344a72bb1ec092cca240ffd5b63450f0e000000000000000000000000b1b74f5ee6cf6af34768785802ff90e8c5d5ad1500000000000000000000000065b8a8df696936ecfd5069622e7e961d2d73c1890000000000000000000000003bcd5de3777e4ee90ee0a1b8a57df46e096b7de00000000000000000000000006ec504ed5a783e587824700a34cf13895bb45210000000000000000000000000285300fff24ab9bdaa684c28b7f85d88d9cb09830000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmP1n4dudiNiQSqZ8FSiVBwDmfH451uwXKa7J3CHULkj3X/
Arg [1] : _phase1StartDate (uint256): 1654023600
Arg [2] : _phase2StartDate (uint256): 1654196400
Arg [3] : _publicsaleStartDate (uint256): 1654369200
Arg [4] : _unrevealedURI (string): ipfs://QmP1n4dudiNiQSqZ8FSiVBwDmfH451uwXKa7J3CHULkj3X/
Arg [5] : _revealDate (uint256): 1656529200
Arg [6] : _payments (address): 0xbC27b49d0731c8fD062e18C8a73bf20b52E3Bd95
Arg [7] : _freeAddress (address[]): 0xD6f6E642a49B3132628e958930A6e0e47EE22002,0x20f04b9b1BC9a36E8802F6eE35Ddf74126a26b0f,0x373BBd6344A72bb1EC092Cca240FfD5b63450f0e,0xb1b74F5EE6Cf6Af34768785802Ff90E8C5D5Ad15,0x65B8a8df696936ECfD5069622E7e961d2d73c189,0x3BCD5DE3777E4EE90ee0A1B8A57dF46E096B7dE0,0x6Ec504ed5A783E587824700a34Cf13895BB45210,0x285300fff24aB9BDaa684c28B7f85D88d9Cb0983
Arg [8] : _canMinttotal (uint256[]): 30,10,3,3,1,1,1,1

-----Encoded View---------------
33 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 00000000000000000000000000000000000000000000000000000000629665b0
Arg [2] : 00000000000000000000000000000000000000000000000000000000629908b0
Arg [3] : 00000000000000000000000000000000000000000000000000000000629babb0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 0000000000000000000000000000000000000000000000000000000062bca130
Arg [6] : 000000000000000000000000bc27b49d0731c8fd062e18c8a73bf20b52e3bd95
Arg [7] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000300
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d50316e34647564694e695153715a38465369564277446d
Arg [11] : 66483435317577584b61374a334348554c6b6a33582f00000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [13] : 697066733a2f2f516d50316e34647564694e695153715a38465369564277446d
Arg [14] : 66483435317577584b61374a334348554c6b6a33582f00000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [16] : 000000000000000000000000d6f6e642a49b3132628e958930a6e0e47ee22002
Arg [17] : 00000000000000000000000020f04b9b1bc9a36e8802f6ee35ddf74126a26b0f
Arg [18] : 000000000000000000000000373bbd6344a72bb1ec092cca240ffd5b63450f0e
Arg [19] : 000000000000000000000000b1b74f5ee6cf6af34768785802ff90e8c5d5ad15
Arg [20] : 00000000000000000000000065b8a8df696936ecfd5069622e7e961d2d73c189
Arg [21] : 0000000000000000000000003bcd5de3777e4ee90ee0a1b8a57df46e096b7de0
Arg [22] : 0000000000000000000000006ec504ed5a783e587824700a34cf13895bb45210
Arg [23] : 000000000000000000000000285300fff24ab9bdaa684c28b7f85d88d9cb0983
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [25] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [26] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [30] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000001


Deployed Bytecode Sourcemap

52615:6795:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46394:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33213:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34773:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34296:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59303:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47034:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53336:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52926:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35523:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46702:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52775:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58279:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53281:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53244:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57866:287;;;:::i;:::-;;58401:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35933:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47224:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58839:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59052:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32907:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53447:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32637:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11771:103;;;;;;;;;;;;;:::i;:::-;;52736:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58551:280;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58161:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52845:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11120:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52975:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33382:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55646:1902;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35066:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53483:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57558:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36189:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53207:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53403:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55080:558;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53370:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53026:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35292:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52885:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53077:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12029:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59173:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46394:224;46496:4;46535:35;46520:50;;;:11;:50;;;;:90;;;;46574:36;46598:11;46574:23;:36::i;:::-;46520:90;46513:97;;46394:224;;;:::o;33213:100::-;33267:13;33300:5;33293:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33213:100;:::o;34773:221::-;34849:7;34877:16;34885:7;34877;:16::i;:::-;34869:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34962:15;:24;34978:7;34962:24;;;;;;;;;;;;;;;;;;;;;34955:31;;34773:221;;;:::o;34296:411::-;34377:13;34393:23;34408:7;34393:14;:23::i;:::-;34377:39;;34441:5;34435:11;;:2;:11;;;34427:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;34535:5;34519:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;34544:37;34561:5;34568:12;:10;:12::i;:::-;34544:16;:37::i;:::-;34519:62;34497:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;34678:21;34687:2;34691:7;34678:8;:21::i;:::-;34366:341;34296:411;;:::o;59303:104::-;11351:12;:10;:12::i;:::-;11340:23;;:7;:5;:7::i;:::-;:23;;;11332:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59388:11:::1;59375:10;:24;;;;59303:104:::0;:::o;47034:113::-;47095:7;47122:10;:17;;;;47115:24;;47034:113;:::o;53336:25::-;;;;:::o;52926:42::-;;;;;;;;;;;;;;;;;:::o;35523:339::-;35718:41;35737:12;:10;:12::i;:::-;35751:7;35718:18;:41::i;:::-;35710:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;35826:28;35836:4;35842:2;35846:7;35826:9;:28::i;:::-;35523:339;;;:::o;46702:256::-;46799:7;46835:23;46852:5;46835:16;:23::i;:::-;46827:5;:31;46819:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;46924:12;:19;46937:5;46924:19;;;;;;;;;;;;;;;:26;46944:5;46924:26;;;;;;;;;;;;46917:33;;46702:256;;;;:::o;52775:41::-;52812:4;52775:41;:::o;58279:114::-;11351:12;:10;:12::i;:::-;11340:23;;:7;:5;:7::i;:::-;:23;;;11332:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58375:10:::1;58357:15;:28;;;;58279:114:::0;:::o;53281:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;53244:30::-;;;;:::o;57866:287::-;11351:12;:10;:12::i;:::-;11340:23;;:7;:5;:7::i;:::-;:23;;;11332:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57922:15:::1;57940:21;57922:39;;57990:1;57980:7;:11;57972:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;58038:12;58064:8;;;;;;;;;;;58056:22;;58086:7;58056:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58037:61;;;58117:7;58109:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;57911:242;;57866:287::o:0;58401:142::-;11351:12;:10;:12::i;:::-;11340:23;;:7;:5;:7::i;:::-;:23;;;11332:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58515:20:::1;58493:19;:42;;;;58401:142:::0;:::o;35933:185::-;36071:39;36088:4;36094:2;36098:7;36071:39;;;;;;;;;;;;:16;:39::i;:::-;35933:185;;;:::o;47224:233::-;47299:7;47335:30;:28;:30::i;:::-;47327:5;:38;47319:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;47432:10;47443:5;47432:17;;;;;;;;:::i;:::-;;;;;;;;;;47425:24;;47224:233;;;:::o;58839:205::-;11351:12;:10;:12::i;:::-;11340:23;;:7;:5;:7::i;:::-;:23;;;11332:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58933:9:::1;58928:109;58951:10;:17;58947:1;:21;58928:109;;;59020:5;58989:13;:28;59003:10;59014:1;59003:13;;;;;;;;:::i;:::-;;;;;;;;58989:28;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;58969:3;;;;;:::i;:::-;;;;58928:109;;;;58839:205:::0;:::o;59052:113::-;11351:12;:10;:12::i;:::-;11340:23;;:7;:5;:7::i;:::-;:23;;;11332:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59144:13:::1;59129:12;:28;;;;;;;;;;;;:::i;:::-;;59052:113:::0;:::o;32907:239::-;32979:7;32999:13;33015:7;:16;33023:7;33015:16;;;;;;;;;;;;;;;;;;;;;32999:32;;33067:1;33050:19;;:5;:19;;;33042:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33133:5;33126:12;;;32907:239;;;:::o;53447:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32637:208::-;32709:7;32754:1;32737:19;;:5;:19;;;32729:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;32821:9;:16;32831:5;32821:16;;;;;;;;;;;;;;;;32814:23;;32637:208;;;:::o;11771:103::-;11351:12;:10;:12::i;:::-;11340:23;;:7;:5;:7::i;:::-;:23;;;11332:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11836:30:::1;11863:1;11836:18;:30::i;:::-;11771:103::o:0;52736:30::-;;;;:::o;58551:280::-;11351:12;:10;:12::i;:::-;11340:23;;:7;:5;:7::i;:::-;:23;;;11332:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58639:9:::1;58634:190;58657:10;:17;58653:1;:21;58634:190;;;58728:1;58703:27;;:10;58714:1;58703:13;;;;;;;;:::i;:::-;;;;;;;;:27;;::::0;58695:67:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;58808:4;58777:13;:28;58791:10;58802:1;58791:13;;;;;;;;:::i;:::-;;;;;;;;58777:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;58675:3;;;;;:::i;:::-;;;;58634:190;;;;58551:280:::0;:::o;58161:110::-;11351:12;:10;:12::i;:::-;11340:23;;:7;:5;:7::i;:::-;:23;;;11332:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58255:8:::1;58237:15;:26;;;;58161:110:::0;:::o;52845:33::-;;;;:::o;11120:87::-;11166:7;11193:6;;;;;;;;;;;11186:13;;11120:87;:::o;52975:44::-;;;;;;;;;;;;;;;;;:::o;33382:104::-;33438:13;33471:7;33464:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33382:104;:::o;55646:1902::-;55702:19;55724:11;;55702:33;;55794:1;52812:4;55781:14;;;;:::i;:::-;55754:23;55770:6;55754:11;:15;;:23;;;;:::i;:::-;:41;;55746:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;55848:1;55839:6;:10;55831:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;55935:1;55912:10;:22;55923:10;55912:22;;;;;;;;;;;;;;;;55887:12;:24;55900:10;55887:24;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;:49;55883:1658;;;56002:6;55976:10;:22;55987:10;55976:22;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;56057:12;:24;56070:10;56057:24;;;;;;;;;;;;;;;;56031:10;:22;56042:10;56031:22;;;;;;;;;;;;;;;;:50;;56140:35;:12;:24;56153:10;56140:24;;;;;;;;;;;;;;;;:33;:35::i;:::-;56090:108;;;;;;;;:::i;:::-;;;;;;;;;;;;;56023:177;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;56220:9;56215:82;56239:6;56235:1;:10;56215:82;;;56271:10;:8;:10::i;:::-;56247:3;;;;;:::i;:::-;;;;56215:82;;;;55883:1658;;;56359:15;;56341;:33;56333:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;56526:22;56541:6;56526:14;:22::i;:::-;56513:9;:35;;56505:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;56640:19;;56622:15;:37;56617:816;;;56702:6;56680;:18;56687:10;56680:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;56757:2;56735:6;:18;56742:10;56735:18;;;;;;;;;;;;;;;;:24;;56727:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;56617:816;;;56859:15;;56841;:33;56837:596;;;56903:13;:25;56917:10;56903:25;;;;;;;;;;;;;;;;;;;;;;;;;56895:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;57002:6;56978:8;:20;56987:10;56978:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;57059:1;57035:8;:20;57044:10;57035:20;;;;;;;;;;;;;;;;:25;;57027:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;56837:596;;;57160:15;;57142;:33;57138:295;;;57204:13;:25;57218:10;57204:25;;;;;;;;;;;;;;;;;;;;;;;;;57196:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;57303:6;57279:8;:20;57288:10;57279:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;57360:1;57336:8;:20;57345:10;57336:20;;;;;;;;;;;;;;;;:25;;57328:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;57138:295;56837:596;56617:816;57453:9;57448:82;57472:6;57468:1;:10;57448:82;;;57504:10;:8;:10::i;:::-;57480:3;;;;;:::i;:::-;;;;57448:82;;;;55883:1658;55691:1857;55646:1902;:::o;35066:155::-;35161:52;35180:12;:10;:12::i;:::-;35194:8;35204;35161:18;:52::i;:::-;35066:155;;:::o;53483:31::-;;;;;;;;;;;;;:::o;57558:109::-;57618:7;57654:5;;57645:6;:14;;;;:::i;:::-;57638:21;;57558:109;;;:::o;36189:328::-;36364:41;36383:12;:10;:12::i;:::-;36397:7;36364:18;:41::i;:::-;36356:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;36470:39;36484:4;36490:2;36494:7;36503:5;36470:13;:39::i;:::-;36189:328;;;;:::o;53207:30::-;;;;:::o;53403:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55080:558::-;55153:13;55187:16;55195:7;55187;:16::i;:::-;55179:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;55298:10;;55280:15;:28;55276:351;;;55356:13;55371:18;:7;:16;:18::i;:::-;55391:13;55339:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55325:81;;;;55276:351;55458:21;55482:10;:8;:10::i;:::-;55458:34;;55538:1;55520:7;55514:21;:25;:101;;;;;;;;;;;;;;;;;55566:7;55575:18;:7;:16;:18::i;:::-;55595:13;55549:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55514:101;55507:108;;;55080:558;;;;:::o;53370:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53026:44::-;;;;;;;;;;;;;;;;;:::o;35292:164::-;35389:4;35413:18;:25;35432:5;35413:25;;;;;;;;;;;;;;;:35;35439:8;35413:35;;;;;;;;;;;;;;;;;;;;;;;;;35406:42;;35292:164;;;;:::o;52885:34::-;;;;:::o;53077:46::-;;;;;;;;;;;;;;;;;:::o;12029:201::-;11351:12;:10;:12::i;:::-;11340:23;;:7;:5;:7::i;:::-;:23;;;11332:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12138:1:::1;12118:22;;:8;:22;;::::0;12110:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;12194:28;12213:8;12194:18;:28::i;:::-;12029:201:::0;:::o;59173:122::-;11351:12;:10;:12::i;:::-;11340:23;;:7;:5;:7::i;:::-;:23;;;11332:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59273:14:::1;59257:13;:30;;;;;;;;;;;;:::i;:::-;;59173:122:::0;:::o;32268:305::-;32370:4;32422:25;32407:40;;;:11;:40;;;;:105;;;;32479:33;32464:48;;;:11;:48;;;;32407:105;:158;;;;32529:36;32553:11;32529:23;:36::i;:::-;32407:158;32387:178;;32268:305;;;:::o;38027:127::-;38092:4;38144:1;38116:30;;:7;:16;38124:7;38116:16;;;;;;;;;;;;;;;;;;;;;:30;;;;38109:37;;38027:127;;;:::o;9844:98::-;9897:7;9924:10;9917:17;;9844:98;:::o;42173:174::-;42275:2;42248:15;:24;42264:7;42248:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42331:7;42327:2;42293:46;;42302:23;42317:7;42302:14;:23::i;:::-;42293:46;;;;;;;;;;;;42173:174;;:::o;38321:348::-;38414:4;38439:16;38447:7;38439;:16::i;:::-;38431:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38515:13;38531:23;38546:7;38531:14;:23::i;:::-;38515:39;;38584:5;38573:16;;:7;:16;;;:52;;;;38593:32;38610:5;38617:7;38593:16;:32::i;:::-;38573:52;:87;;;;38653:7;38629:31;;:20;38641:7;38629:11;:20::i;:::-;:31;;;38573:87;38565:96;;;38321:348;;;;:::o;41430:625::-;41589:4;41562:31;;:23;41577:7;41562:14;:23::i;:::-;:31;;;41554:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;41668:1;41654:16;;:2;:16;;;41646:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41724:39;41745:4;41751:2;41755:7;41724:20;:39::i;:::-;41828:29;41845:1;41849:7;41828:8;:29::i;:::-;41889:1;41870:9;:15;41880:4;41870:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;41918:1;41901:9;:13;41911:2;41901:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41949:2;41930:7;:16;41938:7;41930:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41988:7;41984:2;41969:27;;41978:4;41969:27;;;;;;;;;;;;42009:38;42029:4;42035:2;42039:7;42009:19;:38::i;:::-;41430:625;;;:::o;12390:191::-;12464:16;12483:6;;;;;;;;;;;12464:25;;12509:8;12500:6;;:17;;;;;;;;;;;;;;;;;;12564:8;12533:40;;12554:8;12533:40;;;;;;;;;;;;12453:128;12390:191;:::o;2876:98::-;2934:7;2965:1;2961;:5;;;;:::i;:::-;2954:12;;2876:98;;;;:::o;7406:723::-;7462:13;7692:1;7683:5;:10;7679:53;;7710:10;;;;;;;;;;;;;;;;;;;;;7679:53;7742:12;7757:5;7742:20;;7773:14;7798:78;7813:1;7805:4;:9;7798:78;;7831:8;;;;;:::i;:::-;;;;7862:2;7854:10;;;;;:::i;:::-;;;7798:78;;;7886:19;7918:6;7908:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7886:39;;7936:154;7952:1;7943:5;:10;7936:154;;7980:1;7970:11;;;;;:::i;:::-;;;8047:2;8039:5;:10;;;;:::i;:::-;8026:2;:24;;;;:::i;:::-;8013:39;;7996:6;8003;7996:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8076:2;8067:11;;;;;:::i;:::-;;;7936:154;;;8114:6;8100:21;;;;;7406:723;;;;:::o;57675:157::-;57714:15;57732:11;;57714:29;;57754:34;57764:10;57776:7;57754:34;;;;;;;;;;;;:9;:34::i;:::-;57823:1;57813:7;:11;;;;:::i;:::-;57799;:25;;;;57703:129;57675:157::o;42489:315::-;42644:8;42635:17;;:5;:17;;;42627:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;42731:8;42693:18;:25;42712:5;42693:25;;;;;;;;;;;;;;;:35;42719:8;42693:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;42777:8;42755:41;;42770:5;42755:41;;;42787:8;42755:41;;;;;;:::i;:::-;;;;;;;;42489:315;;;:::o;37399:::-;37556:28;37566:4;37572:2;37576:7;37556:9;:28::i;:::-;37603:48;37626:4;37632:2;37636:7;37645:5;37603:22;:48::i;:::-;37595:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;37399:315;;;;:::o;54868:204::-;54928:13;54976:10;;54958:15;:28;54954:81;;;55010:13;55003:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54954:81;55052:12;55045:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54868:204;;:::o;23927:157::-;24012:4;24051:25;24036:40;;;:11;:40;;;;24029:47;;23927:157;;;:::o;48070:589::-;48214:45;48241:4;48247:2;48251:7;48214:26;:45::i;:::-;48292:1;48276:18;;:4;:18;;;48272:187;;48311:40;48343:7;48311:31;:40::i;:::-;48272:187;;;48381:2;48373:10;;:4;:10;;;48369:90;;48400:47;48433:4;48439:7;48400:32;:47::i;:::-;48369:90;48272:187;48487:1;48473:16;;:2;:16;;;48469:183;;48506:45;48543:7;48506:36;:45::i;:::-;48469:183;;;48579:4;48573:10;;:2;:10;;;48569:83;;48600:40;48628:2;48632:7;48600:27;:40::i;:::-;48569:83;48469:183;48070:589;;;:::o;45251:125::-;;;;:::o;39348:321::-;39478:18;39484:2;39488:7;39478:5;:18::i;:::-;39529:54;39560:1;39564:2;39568:7;39577:5;39529:22;:54::i;:::-;39507:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;39348:321;;;:::o;43369:799::-;43524:4;43545:15;:2;:13;;;:15::i;:::-;43541:620;;;43597:2;43581:36;;;43618:12;:10;:12::i;:::-;43632:4;43638:7;43647:5;43581:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43577:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43840:1;43823:6;:13;:18;43819:272;;43866:60;;;;;;;;;;:::i;:::-;;;;;;;;43819:272;44041:6;44035:13;44026:6;44022:2;44018:15;44011:38;43577:529;43714:41;;;43704:51;;;:6;:51;;;;43697:58;;;;;43541:620;44145:4;44138:11;;43369:799;;;;;;;:::o;44740:126::-;;;;:::o;49382:164::-;49486:10;:17;;;;49459:15;:24;49475:7;49459:24;;;;;;;;;;;:44;;;;49514:10;49530:7;49514:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49382:164;:::o;50173:988::-;50439:22;50489:1;50464:22;50481:4;50464:16;:22::i;:::-;:26;;;;:::i;:::-;50439:51;;50501:18;50522:17;:26;50540:7;50522:26;;;;;;;;;;;;50501:47;;50669:14;50655:10;:28;50651:328;;50700:19;50722:12;:18;50735:4;50722:18;;;;;;;;;;;;;;;:34;50741:14;50722:34;;;;;;;;;;;;50700:56;;50806:11;50773:12;:18;50786:4;50773:18;;;;;;;;;;;;;;;:30;50792:10;50773:30;;;;;;;;;;;:44;;;;50923:10;50890:17;:30;50908:11;50890:30;;;;;;;;;;;:43;;;;50685:294;50651:328;51075:17;:26;51093:7;51075:26;;;;;;;;;;;51068:33;;;51119:12;:18;51132:4;51119:18;;;;;;;;;;;;;;;:34;51138:14;51119:34;;;;;;;;;;;51112:41;;;50254:907;;50173:988;;:::o;51456:1079::-;51709:22;51754:1;51734:10;:17;;;;:21;;;;:::i;:::-;51709:46;;51766:18;51787:15;:24;51803:7;51787:24;;;;;;;;;;;;51766:45;;52138:19;52160:10;52171:14;52160:26;;;;;;;;:::i;:::-;;;;;;;;;;52138:48;;52224:11;52199:10;52210;52199:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;52335:10;52304:15;:28;52320:11;52304:28;;;;;;;;;;;:41;;;;52476:15;:24;52492:7;52476:24;;;;;;;;;;;52469:31;;;52511:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51527:1008;;;51456:1079;:::o;48960:221::-;49045:14;49062:20;49079:2;49062:16;:20::i;:::-;49045:37;;49120:7;49093:12;:16;49106:2;49093:16;;;;;;;;;;;;;;;:24;49110:6;49093:24;;;;;;;;;;;:34;;;;49167:6;49138:17;:26;49156:7;49138:26;;;;;;;;;;;:35;;;;49034:147;48960:221;;:::o;40005:439::-;40099:1;40085:16;;:2;:16;;;40077:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40158:16;40166:7;40158;:16::i;:::-;40157:17;40149:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40220:45;40249:1;40253:2;40257:7;40220:20;:45::i;:::-;40295:1;40278:9;:13;40288:2;40278:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40326:2;40307:7;:16;40315:7;40307:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40371:7;40367:2;40346:33;;40363:1;40346:33;;;;;;;;;;;;40392:44;40420:1;40424:2;40428:7;40392:19;:44::i;:::-;40005:439;;:::o;13821:326::-;13881:4;14138:1;14116:7;:19;;;:23;14109:30;;13821:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:180;6421:77;6418:1;6411:88;6518:4;6515:1;6508:15;6542:4;6539:1;6532:15;6559:281;6642:27;6664:4;6642:27;:::i;:::-;6634:6;6630:40;6772:6;6760:10;6757:22;6736:18;6724:10;6721:34;6718:62;6715:88;;;6783:18;;:::i;:::-;6715:88;6823:10;6819:2;6812:22;6602:238;6559:281;;:::o;6846:129::-;6880:6;6907:20;;:::i;:::-;6897:30;;6936:33;6964:4;6956:6;6936:33;:::i;:::-;6846:129;;;:::o;6981:311::-;7058:4;7148:18;7140:6;7137:30;7134:56;;;7170:18;;:::i;:::-;7134:56;7220:4;7212:6;7208:17;7200:25;;7280:4;7274;7270:15;7262:23;;6981:311;;;:::o;7298:117::-;7407:1;7404;7397:12;7438:710;7534:5;7559:81;7575:64;7632:6;7575:64;:::i;:::-;7559:81;:::i;:::-;7550:90;;7660:5;7689:6;7682:5;7675:21;7723:4;7716:5;7712:16;7705:23;;7776:4;7768:6;7764:17;7756:6;7752:30;7805:3;7797:6;7794:15;7791:122;;;7824:79;;:::i;:::-;7791:122;7939:6;7922:220;7956:6;7951:3;7948:15;7922:220;;;8031:3;8060:37;8093:3;8081:10;8060:37;:::i;:::-;8055:3;8048:50;8127:4;8122:3;8118:14;8111:21;;7998:144;7982:4;7977:3;7973:14;7966:21;;7922:220;;;7926:21;7540:608;;7438:710;;;;;:::o;8171:370::-;8242:5;8291:3;8284:4;8276:6;8272:17;8268:27;8258:122;;8299:79;;:::i;:::-;8258:122;8416:6;8403:20;8441:94;8531:3;8523:6;8516:4;8508:6;8504:17;8441:94;:::i;:::-;8432:103;;8248:293;8171:370;;;;:::o;8547:539::-;8631:6;8680:2;8668:9;8659:7;8655:23;8651:32;8648:119;;;8686:79;;:::i;:::-;8648:119;8834:1;8823:9;8819:17;8806:31;8864:18;8856:6;8853:30;8850:117;;;8886:79;;:::i;:::-;8850:117;8991:78;9061:7;9052:6;9041:9;9037:22;8991:78;:::i;:::-;8981:88;;8777:302;8547:539;;;;:::o;9092:117::-;9201:1;9198;9191:12;9215:308;9277:4;9367:18;9359:6;9356:30;9353:56;;;9389:18;;:::i;:::-;9353:56;9427:29;9449:6;9427:29;:::i;:::-;9419:37;;9511:4;9505;9501:15;9493:23;;9215:308;;;:::o;9529:154::-;9613:6;9608:3;9603;9590:30;9675:1;9666:6;9661:3;9657:16;9650:27;9529:154;;;:::o;9689:412::-;9767:5;9792:66;9808:49;9850:6;9808:49;:::i;:::-;9792:66;:::i;:::-;9783:75;;9881:6;9874:5;9867:21;9919:4;9912:5;9908:16;9957:3;9948:6;9943:3;9939:16;9936:25;9933:112;;;9964:79;;:::i;:::-;9933:112;10054:41;10088:6;10083:3;10078;10054:41;:::i;:::-;9773:328;9689:412;;;;;:::o;10121:340::-;10177:5;10226:3;10219:4;10211:6;10207:17;10203:27;10193:122;;10234:79;;:::i;:::-;10193:122;10351:6;10338:20;10376:79;10451:3;10443:6;10436:4;10428:6;10424:17;10376:79;:::i;:::-;10367:88;;10183:278;10121:340;;;;:::o;10467:509::-;10536:6;10585:2;10573:9;10564:7;10560:23;10556:32;10553:119;;;10591:79;;:::i;:::-;10553:119;10739:1;10728:9;10724:17;10711:31;10769:18;10761:6;10758:30;10755:117;;;10791:79;;:::i;:::-;10755:117;10896:63;10951:7;10942:6;10931:9;10927:22;10896:63;:::i;:::-;10886:73;;10682:287;10467:509;;;;:::o;10982:116::-;11052:21;11067:5;11052:21;:::i;:::-;11045:5;11042:32;11032:60;;11088:1;11085;11078:12;11032:60;10982:116;:::o;11104:133::-;11147:5;11185:6;11172:20;11163:29;;11201:30;11225:5;11201:30;:::i;:::-;11104:133;;;;:::o;11243:468::-;11308:6;11316;11365:2;11353:9;11344:7;11340:23;11336:32;11333:119;;;11371:79;;:::i;:::-;11333:119;11491:1;11516:53;11561:7;11552:6;11541:9;11537:22;11516:53;:::i;:::-;11506:63;;11462:117;11618:2;11644:50;11686:7;11677:6;11666:9;11662:22;11644:50;:::i;:::-;11634:60;;11589:115;11243:468;;;;;:::o;11717:104::-;11762:7;11791:24;11809:5;11791:24;:::i;:::-;11780:35;;11717:104;;;:::o;11827:142::-;11930:32;11956:5;11930:32;:::i;:::-;11925:3;11918:45;11827:142;;:::o;11975:254::-;12084:4;12122:2;12111:9;12107:18;12099:26;;12135:87;12219:1;12208:9;12204:17;12195:6;12135:87;:::i;:::-;11975:254;;;;:::o;12235:307::-;12296:4;12386:18;12378:6;12375:30;12372:56;;;12408:18;;:::i;:::-;12372:56;12446:29;12468:6;12446:29;:::i;:::-;12438:37;;12530:4;12524;12520:15;12512:23;;12235:307;;;:::o;12548:410::-;12625:5;12650:65;12666:48;12707:6;12666:48;:::i;:::-;12650:65;:::i;:::-;12641:74;;12738:6;12731:5;12724:21;12776:4;12769:5;12765:16;12814:3;12805:6;12800:3;12796:16;12793:25;12790:112;;;12821:79;;:::i;:::-;12790:112;12911:41;12945:6;12940:3;12935;12911:41;:::i;:::-;12631:327;12548:410;;;;;:::o;12977:338::-;13032:5;13081:3;13074:4;13066:6;13062:17;13058:27;13048:122;;13089:79;;:::i;:::-;13048:122;13206:6;13193:20;13231:78;13305:3;13297:6;13290:4;13282:6;13278:17;13231:78;:::i;:::-;13222:87;;13038:277;12977:338;;;;:::o;13321:943::-;13416:6;13424;13432;13440;13489:3;13477:9;13468:7;13464:23;13460:33;13457:120;;;13496:79;;:::i;:::-;13457:120;13616:1;13641:53;13686:7;13677:6;13666:9;13662:22;13641:53;:::i;:::-;13631:63;;13587:117;13743:2;13769:53;13814:7;13805:6;13794:9;13790:22;13769:53;:::i;:::-;13759:63;;13714:118;13871:2;13897:53;13942:7;13933:6;13922:9;13918:22;13897:53;:::i;:::-;13887:63;;13842:118;14027:2;14016:9;14012:18;13999:32;14058:18;14050:6;14047:30;14044:117;;;14080:79;;:::i;:::-;14044:117;14185:62;14239:7;14230:6;14219:9;14215:22;14185:62;:::i;:::-;14175:72;;13970:287;13321:943;;;;;;;:::o;14270:474::-;14338:6;14346;14395:2;14383:9;14374:7;14370:23;14366:32;14363:119;;;14401:79;;:::i;:::-;14363:119;14521:1;14546:53;14591:7;14582:6;14571:9;14567:22;14546:53;:::i;:::-;14536:63;;14492:117;14648:2;14674:53;14719:7;14710:6;14699:9;14695:22;14674:53;:::i;:::-;14664:63;;14619:118;14270:474;;;;;:::o;14750:180::-;14798:77;14795:1;14788:88;14895:4;14892:1;14885:15;14919:4;14916:1;14909:15;14936:320;14980:6;15017:1;15011:4;15007:12;14997:22;;15064:1;15058:4;15054:12;15085:18;15075:81;;15141:4;15133:6;15129:17;15119:27;;15075:81;15203:2;15195:6;15192:14;15172:18;15169:38;15166:84;;15222:18;;:::i;:::-;15166:84;14987:269;14936:320;;;:::o;15262:231::-;15402:34;15398:1;15390:6;15386:14;15379:58;15471:14;15466:2;15458:6;15454:15;15447:39;15262:231;:::o;15499:366::-;15641:3;15662:67;15726:2;15721:3;15662:67;:::i;:::-;15655:74;;15738:93;15827:3;15738:93;:::i;:::-;15856:2;15851:3;15847:12;15840:19;;15499:366;;;:::o;15871:419::-;16037:4;16075:2;16064:9;16060:18;16052:26;;16124:9;16118:4;16114:20;16110:1;16099:9;16095:17;16088:47;16152:131;16278:4;16152:131;:::i;:::-;16144:139;;15871:419;;;:::o;16296:220::-;16436:34;16432:1;16424:6;16420:14;16413:58;16505:3;16500:2;16492:6;16488:15;16481:28;16296:220;:::o;16522:366::-;16664:3;16685:67;16749:2;16744:3;16685:67;:::i;:::-;16678:74;;16761:93;16850:3;16761:93;:::i;:::-;16879:2;16874:3;16870:12;16863:19;;16522:366;;;:::o;16894:419::-;17060:4;17098:2;17087:9;17083:18;17075:26;;17147:9;17141:4;17137:20;17133:1;17122:9;17118:17;17111:47;17175:131;17301:4;17175:131;:::i;:::-;17167:139;;16894:419;;;:::o;17319:243::-;17459:34;17455:1;17447:6;17443:14;17436:58;17528:26;17523:2;17515:6;17511:15;17504:51;17319:243;:::o;17568:366::-;17710:3;17731:67;17795:2;17790:3;17731:67;:::i;:::-;17724:74;;17807:93;17896:3;17807:93;:::i;:::-;17925:2;17920:3;17916:12;17909:19;;17568:366;;;:::o;17940:419::-;18106:4;18144:2;18133:9;18129:18;18121:26;;18193:9;18187:4;18183:20;18179:1;18168:9;18164:17;18157:47;18221:131;18347:4;18221:131;:::i;:::-;18213:139;;17940:419;;;:::o;18365:182::-;18505:34;18501:1;18493:6;18489:14;18482:58;18365:182;:::o;18553:366::-;18695:3;18716:67;18780:2;18775:3;18716:67;:::i;:::-;18709:74;;18792:93;18881:3;18792:93;:::i;:::-;18910:2;18905:3;18901:12;18894:19;;18553:366;;;:::o;18925:419::-;19091:4;19129:2;19118:9;19114:18;19106:26;;19178:9;19172:4;19168:20;19164:1;19153:9;19149:17;19142:47;19206:131;19332:4;19206:131;:::i;:::-;19198:139;;18925:419;;;:::o;19350:236::-;19490:34;19486:1;19478:6;19474:14;19467:58;19559:19;19554:2;19546:6;19542:15;19535:44;19350:236;:::o;19592:366::-;19734:3;19755:67;19819:2;19814:3;19755:67;:::i;:::-;19748:74;;19831:93;19920:3;19831:93;:::i;:::-;19949:2;19944:3;19940:12;19933:19;;19592:366;;;:::o;19964:419::-;20130:4;20168:2;20157:9;20153:18;20145:26;;20217:9;20211:4;20207:20;20203:1;20192:9;20188:17;20181:47;20245:131;20371:4;20245:131;:::i;:::-;20237:139;;19964:419;;;:::o;20389:230::-;20529:34;20525:1;20517:6;20513:14;20506:58;20598:13;20593:2;20585:6;20581:15;20574:38;20389:230;:::o;20625:366::-;20767:3;20788:67;20852:2;20847:3;20788:67;:::i;:::-;20781:74;;20864:93;20953:3;20864:93;:::i;:::-;20982:2;20977:3;20973:12;20966:19;;20625:366;;;:::o;20997:419::-;21163:4;21201:2;21190:9;21186:18;21178:26;;21250:9;21244:4;21240:20;21236:1;21225:9;21221:17;21214:47;21278:131;21404:4;21278:131;:::i;:::-;21270:139;;20997:419;;;:::o;21422:178::-;21562:30;21558:1;21550:6;21546:14;21539:54;21422:178;:::o;21606:366::-;21748:3;21769:67;21833:2;21828:3;21769:67;:::i;:::-;21762:74;;21845:93;21934:3;21845:93;:::i;:::-;21963:2;21958:3;21954:12;21947:19;;21606:366;;;:::o;21978:419::-;22144:4;22182:2;22171:9;22167:18;22159:26;;22231:9;22225:4;22221:20;22217:1;22206:9;22202:17;22195:47;22259:131;22385:4;22259:131;:::i;:::-;22251:139;;21978:419;;;:::o;22403:147::-;22504:11;22541:3;22526:18;;22403:147;;;;:::o;22556:114::-;;:::o;22676:398::-;22835:3;22856:83;22937:1;22932:3;22856:83;:::i;:::-;22849:90;;22948:93;23037:3;22948:93;:::i;:::-;23066:1;23061:3;23057:11;23050:18;;22676:398;;;:::o;23080:379::-;23264:3;23286:147;23429:3;23286:147;:::i;:::-;23279:154;;23450:3;23443:10;;23080:379;;;:::o;23465:166::-;23605:18;23601:1;23593:6;23589:14;23582:42;23465:166;:::o;23637:366::-;23779:3;23800:67;23864:2;23859:3;23800:67;:::i;:::-;23793:74;;23876:93;23965:3;23876:93;:::i;:::-;23994:2;23989:3;23985:12;23978:19;;23637:366;;;:::o;24009:419::-;24175:4;24213:2;24202:9;24198:18;24190:26;;24262:9;24256:4;24252:20;24248:1;24237:9;24233:17;24226:47;24290:131;24416:4;24290:131;:::i;:::-;24282:139;;24009:419;;;:::o;24434:231::-;24574:34;24570:1;24562:6;24558:14;24551:58;24643:14;24638:2;24630:6;24626:15;24619:39;24434:231;:::o;24671:366::-;24813:3;24834:67;24898:2;24893:3;24834:67;:::i;:::-;24827:74;;24910:93;24999:3;24910:93;:::i;:::-;25028:2;25023:3;25019:12;25012:19;;24671:366;;;:::o;25043:419::-;25209:4;25247:2;25236:9;25232:18;25224:26;;25296:9;25290:4;25286:20;25282:1;25271:9;25267:17;25260:47;25324:131;25450:4;25324:131;:::i;:::-;25316:139;;25043:419;;;:::o;25468:180::-;25516:77;25513:1;25506:88;25613:4;25610:1;25603:15;25637:4;25634:1;25627:15;25654:180;25702:77;25699:1;25692:88;25799:4;25796:1;25789:15;25823:4;25820:1;25813:15;25840:233;25879:3;25902:24;25920:5;25902:24;:::i;:::-;25893:33;;25948:66;25941:5;25938:77;25935:103;;26018:18;;:::i;:::-;25935:103;26065:1;26058:5;26054:13;26047:20;;25840:233;;;:::o;26079:228::-;26219:34;26215:1;26207:6;26203:14;26196:58;26288:11;26283:2;26275:6;26271:15;26264:36;26079:228;:::o;26313:366::-;26455:3;26476:67;26540:2;26535:3;26476:67;:::i;:::-;26469:74;;26552:93;26641:3;26552:93;:::i;:::-;26670:2;26665:3;26661:12;26654:19;;26313:366;;;:::o;26685:419::-;26851:4;26889:2;26878:9;26874:18;26866:26;;26938:9;26932:4;26928:20;26924:1;26913:9;26909:17;26902:47;26966:131;27092:4;26966:131;:::i;:::-;26958:139;;26685:419;;;:::o;27110:229::-;27250:34;27246:1;27238:6;27234:14;27227:58;27319:12;27314:2;27306:6;27302:15;27295:37;27110:229;:::o;27345:366::-;27487:3;27508:67;27572:2;27567:3;27508:67;:::i;:::-;27501:74;;27584:93;27673:3;27584:93;:::i;:::-;27702:2;27697:3;27693:12;27686:19;;27345:366;;;:::o;27717:419::-;27883:4;27921:2;27910:9;27906:18;27898:26;;27970:9;27964:4;27960:20;27956:1;27945:9;27941:17;27934:47;27998:131;28124:4;27998:131;:::i;:::-;27990:139;;27717:419;;;:::o;28142:177::-;28282:29;28278:1;28270:6;28266:14;28259:53;28142:177;:::o;28325:366::-;28467:3;28488:67;28552:2;28547:3;28488:67;:::i;:::-;28481:74;;28564:93;28653:3;28564:93;:::i;:::-;28682:2;28677:3;28673:12;28666:19;;28325:366;;;:::o;28697:419::-;28863:4;28901:2;28890:9;28886:18;28878:26;;28950:9;28944:4;28940:20;28936:1;28925:9;28921:17;28914:47;28978:131;29104:4;28978:131;:::i;:::-;28970:139;;28697:419;;;:::o;29122:305::-;29162:3;29181:20;29199:1;29181:20;:::i;:::-;29176:25;;29215:20;29233:1;29215:20;:::i;:::-;29210:25;;29369:1;29301:66;29297:74;29294:1;29291:81;29288:107;;;29375:18;;:::i;:::-;29288:107;29419:1;29416;29412:9;29405:16;;29122:305;;;;:::o;29433:170::-;29573:22;29569:1;29561:6;29557:14;29550:46;29433:170;:::o;29609:366::-;29751:3;29772:67;29836:2;29831:3;29772:67;:::i;:::-;29765:74;;29848:93;29937:3;29848:93;:::i;:::-;29966:2;29961:3;29957:12;29950:19;;29609:366;;;:::o;29981:419::-;30147:4;30185:2;30174:9;30170:18;30162:26;;30234:9;30228:4;30224:20;30220:1;30209:9;30205:17;30198:47;30262:131;30388:4;30262:131;:::i;:::-;30254:139;;29981:419;;;:::o;30406:168::-;30546:20;30542:1;30534:6;30530:14;30523:44;30406:168;:::o;30580:366::-;30722:3;30743:67;30807:2;30802:3;30743:67;:::i;:::-;30736:74;;30819:93;30908:3;30819:93;:::i;:::-;30937:2;30932:3;30928:12;30921:19;;30580:366;;;:::o;30952:419::-;31118:4;31156:2;31145:9;31141:18;31133:26;;31205:9;31199:4;31195:20;31191:1;31180:9;31176:17;31169:47;31233:131;31359:4;31233:131;:::i;:::-;31225:139;;30952:419;;;:::o;31377:191::-;31417:4;31437:20;31455:1;31437:20;:::i;:::-;31432:25;;31471:20;31489:1;31471:20;:::i;:::-;31466:25;;31510:1;31507;31504:8;31501:34;;;31515:18;;:::i;:::-;31501:34;31560:1;31557;31553:9;31545:17;;31377:191;;;;:::o;31574:148::-;31676:11;31713:3;31698:18;;31574:148;;;;:::o;31728:179::-;31868:31;31864:1;31856:6;31852:14;31845:55;31728:179;:::o;31913:402::-;32073:3;32094:85;32176:2;32171:3;32094:85;:::i;:::-;32087:92;;32188:93;32277:3;32188:93;:::i;:::-;32306:2;32301:3;32297:12;32290:19;;31913:402;;;:::o;32321:377::-;32427:3;32455:39;32488:5;32455:39;:::i;:::-;32510:89;32592:6;32587:3;32510:89;:::i;:::-;32503:96;;32608:52;32653:6;32648:3;32641:4;32634:5;32630:16;32608:52;:::i;:::-;32685:6;32680:3;32676:16;32669:23;;32431:267;32321:377;;;;:::o;32704:168::-;32844:20;32840:1;32832:6;32828:14;32821:44;32704:168;:::o;32878:402::-;33038:3;33059:85;33141:2;33136:3;33059:85;:::i;:::-;33052:92;;33153:93;33242:3;33153:93;:::i;:::-;33271:2;33266:3;33262:12;33255:19;;32878:402;;;:::o;33286:807::-;33620:3;33642:148;33786:3;33642:148;:::i;:::-;33635:155;;33807:95;33898:3;33889:6;33807:95;:::i;:::-;33800:102;;33919:148;34063:3;33919:148;:::i;:::-;33912:155;;34084:3;34077:10;;33286:807;;;;:::o;34099:170::-;34239:22;34235:1;34227:6;34223:14;34216:46;34099:170;:::o;34275:366::-;34417:3;34438:67;34502:2;34497:3;34438:67;:::i;:::-;34431:74;;34514:93;34603:3;34514:93;:::i;:::-;34632:2;34627:3;34623:12;34616:19;;34275:366;;;:::o;34647:419::-;34813:4;34851:2;34840:9;34836:18;34828:26;;34900:9;34894:4;34890:20;34886:1;34875:9;34871:17;34864:47;34928:131;35054:4;34928:131;:::i;:::-;34920:139;;34647:419;;;:::o;35072:223::-;35212:34;35208:1;35200:6;35196:14;35189:58;35281:6;35276:2;35268:6;35264:15;35257:31;35072:223;:::o;35301:366::-;35443:3;35464:67;35528:2;35523:3;35464:67;:::i;:::-;35457:74;;35540:93;35629:3;35540:93;:::i;:::-;35658:2;35653:3;35649:12;35642:19;;35301:366;;;:::o;35673:419::-;35839:4;35877:2;35866:9;35862:18;35854:26;;35926:9;35920:4;35916:20;35912:1;35901:9;35897:17;35890:47;35954:131;36080:4;35954:131;:::i;:::-;35946:139;;35673:419;;;:::o;36098:238::-;36238:34;36234:1;36226:6;36222:14;36215:58;36307:21;36302:2;36294:6;36290:15;36283:46;36098:238;:::o;36342:366::-;36484:3;36505:67;36569:2;36564:3;36505:67;:::i;:::-;36498:74;;36581:93;36670:3;36581:93;:::i;:::-;36699:2;36694:3;36690:12;36683:19;;36342:366;;;:::o;36714:419::-;36880:4;36918:2;36907:9;36903:18;36895:26;;36967:9;36961:4;36957:20;36953:1;36942:9;36938:17;36931:47;36995:131;37121:4;36995:131;:::i;:::-;36987:139;;36714:419;;;:::o;37139:176::-;37279:28;37275:1;37267:6;37263:14;37256:52;37139:176;:::o;37321:366::-;37463:3;37484:67;37548:2;37543:3;37484:67;:::i;:::-;37477:74;;37560:93;37649:3;37560:93;:::i;:::-;37678:2;37673:3;37669:12;37662:19;;37321:366;;;:::o;37693:419::-;37859:4;37897:2;37886:9;37882:18;37874:26;;37946:9;37940:4;37936:20;37932:1;37921:9;37917:17;37910:47;37974:131;38100:4;37974:131;:::i;:::-;37966:139;;37693:419;;;:::o;38118:238::-;38258:34;38254:1;38246:6;38242:14;38235:58;38327:21;38322:2;38314:6;38310:15;38303:46;38118:238;:::o;38362:366::-;38504:3;38525:67;38589:2;38584:3;38525:67;:::i;:::-;38518:74;;38601:93;38690:3;38601:93;:::i;:::-;38719:2;38714:3;38710:12;38703:19;;38362:366;;;:::o;38734:419::-;38900:4;38938:2;38927:9;38923:18;38915:26;;38987:9;38981:4;38977:20;38973:1;38962:9;38958:17;38951:47;39015:131;39141:4;39015:131;:::i;:::-;39007:139;;38734:419;;;:::o;39159:238::-;39299:34;39295:1;39287:6;39283:14;39276:58;39368:21;39363:2;39355:6;39351:15;39344:46;39159:238;:::o;39403:366::-;39545:3;39566:67;39630:2;39625:3;39566:67;:::i;:::-;39559:74;;39642:93;39731:3;39642:93;:::i;:::-;39760:2;39755:3;39751:12;39744:19;;39403:366;;;:::o;39775:419::-;39941:4;39979:2;39968:9;39964:18;39956:26;;40028:9;40022:4;40018:20;40014:1;40003:9;39999:17;39992:47;40056:131;40182:4;40056:131;:::i;:::-;40048:139;;39775:419;;;:::o;40200:348::-;40240:7;40263:20;40281:1;40263:20;:::i;:::-;40258:25;;40297:20;40315:1;40297:20;:::i;:::-;40292:25;;40485:1;40417:66;40413:74;40410:1;40407:81;40402:1;40395:9;40388:17;40384:105;40381:131;;;40492:18;;:::i;:::-;40381:131;40540:1;40537;40533:9;40522:20;;40200:348;;;;:::o;40554:234::-;40694:34;40690:1;40682:6;40678:14;40671:58;40763:17;40758:2;40750:6;40746:15;40739:42;40554:234;:::o;40794:366::-;40936:3;40957:67;41021:2;41016:3;40957:67;:::i;:::-;40950:74;;41033:93;41122:3;41033:93;:::i;:::-;41151:2;41146:3;41142:12;41135:19;;40794:366;;;:::o;41166:419::-;41332:4;41370:2;41359:9;41355:18;41347:26;;41419:9;41413:4;41409:20;41405:1;41394:9;41390:17;41383:47;41447:131;41573:4;41447:131;:::i;:::-;41439:139;;41166:419;;;:::o;41591:141::-;41640:4;41663:3;41655:11;;41686:3;41683:1;41676:14;41720:4;41717:1;41707:18;41699:26;;41591:141;;;:::o;41762:845::-;41865:3;41902:5;41896:12;41931:36;41957:9;41931:36;:::i;:::-;41983:89;42065:6;42060:3;41983:89;:::i;:::-;41976:96;;42103:1;42092:9;42088:17;42119:1;42114:137;;;;42265:1;42260:341;;;;42081:520;;42114:137;42198:4;42194:9;42183;42179:25;42174:3;42167:38;42234:6;42229:3;42225:16;42218:23;;42114:137;;42260:341;42327:38;42359:5;42327:38;:::i;:::-;42387:1;42401:154;42415:6;42412:1;42409:13;42401:154;;;42489:7;42483:14;42479:1;42474:3;42470:11;42463:35;42539:1;42530:7;42526:15;42515:26;;42437:4;42434:1;42430:12;42425:17;;42401:154;;;42584:6;42579:3;42575:16;42568:23;;42267:334;;42081:520;;41869:738;;41762:845;;;;:::o;42613:583::-;42835:3;42857:92;42945:3;42936:6;42857:92;:::i;:::-;42850:99;;42966:95;43057:3;43048:6;42966:95;:::i;:::-;42959:102;;43078:92;43166:3;43157:6;43078:92;:::i;:::-;43071:99;;43187:3;43180:10;;42613:583;;;;;;:::o;43202:589::-;43427:3;43449:95;43540:3;43531:6;43449:95;:::i;:::-;43442:102;;43561:95;43652:3;43643:6;43561:95;:::i;:::-;43554:102;;43673:92;43761:3;43752:6;43673:92;:::i;:::-;43666:99;;43782:3;43775:10;;43202:589;;;;;;:::o;43797:225::-;43937:34;43933:1;43925:6;43921:14;43914:58;44006:8;44001:2;43993:6;43989:15;43982:33;43797:225;:::o;44028:366::-;44170:3;44191:67;44255:2;44250:3;44191:67;:::i;:::-;44184:74;;44267:93;44356:3;44267:93;:::i;:::-;44385:2;44380:3;44376:12;44369:19;;44028:366;;;:::o;44400:419::-;44566:4;44604:2;44593:9;44589:18;44581:26;;44653:9;44647:4;44643:20;44639:1;44628:9;44624:17;44617:47;44681:131;44807:4;44681:131;:::i;:::-;44673:139;;44400:419;;;:::o;44825:231::-;44965:34;44961:1;44953:6;44949:14;44942:58;45034:14;45029:2;45021:6;45017:15;45010:39;44825:231;:::o;45062:366::-;45204:3;45225:67;45289:2;45284:3;45225:67;:::i;:::-;45218:74;;45301:93;45390:3;45301:93;:::i;:::-;45419:2;45414:3;45410:12;45403:19;;45062:366;;;:::o;45434:419::-;45600:4;45638:2;45627:9;45623:18;45615:26;;45687:9;45681:4;45677:20;45673:1;45662:9;45658:17;45651:47;45715:131;45841:4;45715:131;:::i;:::-;45707:139;;45434:419;;;:::o;45859:224::-;45999:34;45995:1;45987:6;45983:14;45976:58;46068:7;46063:2;46055:6;46051:15;46044:32;45859:224;:::o;46089:366::-;46231:3;46252:67;46316:2;46311:3;46252:67;:::i;:::-;46245:74;;46328:93;46417:3;46328:93;:::i;:::-;46446:2;46441:3;46437:12;46430:19;;46089:366;;;:::o;46461:419::-;46627:4;46665:2;46654:9;46650:18;46642:26;;46714:9;46708:4;46704:20;46700:1;46689:9;46685:17;46678:47;46742:131;46868:4;46742:131;:::i;:::-;46734:139;;46461:419;;;:::o;46886:223::-;47026:34;47022:1;47014:6;47010:14;47003:58;47095:6;47090:2;47082:6;47078:15;47071:31;46886:223;:::o;47115:366::-;47257:3;47278:67;47342:2;47337:3;47278:67;:::i;:::-;47271:74;;47354:93;47443:3;47354:93;:::i;:::-;47472:2;47467:3;47463:12;47456:19;;47115:366;;;:::o;47487:419::-;47653:4;47691:2;47680:9;47676:18;47668:26;;47740:9;47734:4;47730:20;47726:1;47715:9;47711:17;47704:47;47768:131;47894:4;47768:131;:::i;:::-;47760:139;;47487:419;;;:::o;47912:180::-;47960:77;47957:1;47950:88;48057:4;48054:1;48047:15;48081:4;48078:1;48071:15;48098:185;48138:1;48155:20;48173:1;48155:20;:::i;:::-;48150:25;;48189:20;48207:1;48189:20;:::i;:::-;48184:25;;48228:1;48218:35;;48233:18;;:::i;:::-;48218:35;48275:1;48272;48268:9;48263:14;;48098:185;;;;:::o;48289:176::-;48321:1;48338:20;48356:1;48338:20;:::i;:::-;48333:25;;48372:20;48390:1;48372:20;:::i;:::-;48367:25;;48411:1;48401:35;;48416:18;;:::i;:::-;48401:35;48457:1;48454;48450:9;48445:14;;48289:176;;;;:::o;48471:175::-;48611:27;48607:1;48599:6;48595:14;48588:51;48471:175;:::o;48652:366::-;48794:3;48815:67;48879:2;48874:3;48815:67;:::i;:::-;48808:74;;48891:93;48980:3;48891:93;:::i;:::-;49009:2;49004:3;49000:12;48993:19;;48652:366;;;:::o;49024:419::-;49190:4;49228:2;49217:9;49213:18;49205:26;;49277:9;49271:4;49267:20;49263:1;49252:9;49248:17;49241:47;49305:131;49431:4;49305:131;:::i;:::-;49297:139;;49024:419;;;:::o;49449:237::-;49589:34;49585:1;49577:6;49573:14;49566:58;49658:20;49653:2;49645:6;49641:15;49634:45;49449:237;:::o;49692:366::-;49834:3;49855:67;49919:2;49914:3;49855:67;:::i;:::-;49848:74;;49931:93;50020:3;49931:93;:::i;:::-;50049:2;50044:3;50040:12;50033:19;;49692:366;;;:::o;50064:419::-;50230:4;50268:2;50257:9;50253:18;50245:26;;50317:9;50311:4;50307:20;50303:1;50292:9;50288:17;50281:47;50345:131;50471:4;50345:131;:::i;:::-;50337:139;;50064:419;;;:::o;50489:98::-;50540:6;50574:5;50568:12;50558:22;;50489:98;;;:::o;50593:168::-;50676:11;50710:6;50705:3;50698:19;50750:4;50745:3;50741:14;50726:29;;50593:168;;;;:::o;50767:360::-;50853:3;50881:38;50913:5;50881:38;:::i;:::-;50935:70;50998:6;50993:3;50935:70;:::i;:::-;50928:77;;51014:52;51059:6;51054:3;51047:4;51040:5;51036:16;51014:52;:::i;:::-;51091:29;51113:6;51091:29;:::i;:::-;51086:3;51082:39;51075:46;;50857:270;50767:360;;;;:::o;51133:640::-;51328:4;51366:3;51355:9;51351:19;51343:27;;51380:71;51448:1;51437:9;51433:17;51424:6;51380:71;:::i;:::-;51461:72;51529:2;51518:9;51514:18;51505:6;51461:72;:::i;:::-;51543;51611:2;51600:9;51596:18;51587:6;51543:72;:::i;:::-;51662:9;51656:4;51652:20;51647:2;51636:9;51632:18;51625:48;51690:76;51761:4;51752:6;51690:76;:::i;:::-;51682:84;;51133:640;;;;;;;:::o;51779:141::-;51835:5;51866:6;51860:13;51851:22;;51882:32;51908:5;51882:32;:::i;:::-;51779:141;;;;:::o;51926:349::-;51995:6;52044:2;52032:9;52023:7;52019:23;52015:32;52012:119;;;52050:79;;:::i;:::-;52012:119;52170:1;52195:63;52250:7;52241:6;52230:9;52226:22;52195:63;:::i;:::-;52185:73;;52141:127;51926:349;;;;:::o;52281:180::-;52329:77;52326:1;52319:88;52426:4;52423:1;52416:15;52450:4;52447:1;52440:15;52467:182;52607:34;52603:1;52595:6;52591:14;52584:58;52467:182;:::o;52655:366::-;52797:3;52818:67;52882:2;52877:3;52818:67;:::i;:::-;52811:74;;52894:93;52983:3;52894:93;:::i;:::-;53012:2;53007:3;53003:12;52996:19;;52655:366;;;:::o;53027:419::-;53193:4;53231:2;53220:9;53216:18;53208:26;;53280:9;53274:4;53270:20;53266:1;53255:9;53251:17;53244:47;53308:131;53434:4;53308:131;:::i;:::-;53300:139;;53027:419;;;:::o;53452:178::-;53592:30;53588:1;53580:6;53576:14;53569:54;53452:178;:::o;53636:366::-;53778:3;53799:67;53863:2;53858:3;53799:67;:::i;:::-;53792:74;;53875:93;53964:3;53875:93;:::i;:::-;53993:2;53988:3;53984:12;53977:19;;53636:366;;;:::o;54008:419::-;54174:4;54212:2;54201:9;54197:18;54189:26;;54261:9;54255:4;54251:20;54247:1;54236:9;54232:17;54225:47;54289:131;54415:4;54289:131;:::i;:::-;54281:139;;54008:419;;;:::o

Swarm Source

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