ETH Price: $3,895.43 (+0.28%)

Token

The Square Faces (Squared)
 

Overview

Max Total Supply

681 Squared

Holders

209

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Squared
0x5F6Ab6b511e90296428e88e5BCAfd07e4801c1C2
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:
TheSquareFaces

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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.7.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
                /// @solidity memory-safe-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.7.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 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.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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: thesquarefacescontract.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;




contract TheSquareFaces is ERC721Enumerable, Ownable, ReentrancyGuard{
    using Strings for uint256;
    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.1 ether;
    uint256 public presaleCost = 0.05 ether;
    uint256 public maxSupply = 10000;
    bool public paused = false;
    uint256 public maxMintAmount = 20;
    uint256 public RESERVED = 500;

    bool public revealed = false;
    string public notRevealedUri;

    bool public enforcePublicDropTime = true;
    uint256 public publicDropTime = 1668034860;
    bool public enforcePresaleDropTime = true;
    uint256 public presaleDropTime = 1672527660;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    // public
    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(_mintAmount > 0);
        require(supply + _mintAmount + RESERVED <= maxSupply);
        require(_mintAmount <= maxMintAmount);
        if (!publicDropTimePassed() && presaleDropTimePassed()) {
            //general public
            require(!paused);
            require(msg.value >= presaleCost * _mintAmount);
            for (uint256 i = 1; i <= _mintAmount; i++) {
                _safeMint(_to, supply + i);
            }
        } else if (presaleDropTimePassed()){
            //presale
            require(!paused);
            require(msg.value >= cost * _mintAmount);
            for (uint256 i = 1; i <= _mintAmount; i++) {
                _safeMint(_to, supply + i);
            }
        }else{
            revert();
        } 
    }
    function adminMintBatch(address[] memory addresses) public onlyOwner {
        
        require(RESERVED>0);
        require(addresses.length<=RESERVED);
        for (uint i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], maxSupply - RESERVED + 1);
            RESERVED -= 1;
        }
    }
    
    function adminEmergencyMintToWallet (address _to, uint256 _tokenId) public onlyOwner {
        require(RESERVED>0);
        _safeMint(_to, _tokenId);
        RESERVED -= 1;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if(revealed == false) {
            return notRevealedUri;
        }
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setPublicDropTime(uint256 _newDropTime) public onlyOwner {
        require(_newDropTime > block.timestamp, "Drop date must be in future! Otherwise call disablePublicDropTime!");
        publicDropTime = _newDropTime;
    }
    function usePublicDropTime() public onlyOwner {
        enforcePublicDropTime = true;
    }

    function disablePublicDropTime() public onlyOwner {
        enforcePublicDropTime = false;
    }
    function publicDropTimePassed() public view returns(bool) {
        if(enforcePublicDropTime == false) {
            return true;
        }
        return block.timestamp >= publicDropTime;
    }

    function setPresaleDropTime(uint256 _newDropTime) public onlyOwner {
        require(_newDropTime > block.timestamp, "Drop date must be in future! Otherwise call disablePresaleDropTime!");
        presaleDropTime = _newDropTime;
    }

    function usePresaleDropTime() public onlyOwner {
        enforcePresaleDropTime = true;
    }

    function disablePresaleDropTime() public onlyOwner {
        enforcePresaleDropTime = false;
    }

    function presaleDropTimePassed() public view returns(bool) {
        if(enforcePresaleDropTime == false) {
            return true;
        }
        return block.timestamp >= presaleDropTime;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setpresaleCost(uint256 _newCost) public onlyOwner {
        presaleCost = _newCost;
    }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"adminEmergencyMintToWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"adminMintBatch","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disablePresaleDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disablePublicDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enforcePresaleDropTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enforcePublicDropTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleDropTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleDropTimePassed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicDropTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicDropTimePassed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDropTime","type":"uint256"}],"name":"setPresaleDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDropTime","type":"uint256"}],"name":"setPublicDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setpresaleCost","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":"usePresaleDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usePublicDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90805190602001906200005192919062000394565b5067016345785d8a0000600e5566b1a2bc2ec50000600f556127106010556000601160006101000a81548160ff02191690831515021790555060146012556101f46013556000601460006101000a81548160ff0219169083151502179055506001601660006101000a81548160ff02191690831515021790555063636c312c6017556001601860006101000a81548160ff0219169083151502179055506363b0bf2c6019553480156200010357600080fd5b5060405162005025380380620050258339818101604052810190620001299190620004c2565b838381600090805190602001906200014392919062000394565b5080600190805190602001906200015c92919062000394565b5050506200017f62000173620001b360201b60201c565b620001bb60201b60201c565b6001600b8190555062000198826200028160201b60201c565b620001a981620002ad60201b60201c565b50505050620007b7565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000291620002d960201b60201c565b80600c9080519060200190620002a992919062000394565b5050565b620002bd620002d960201b60201c565b8060159080519060200190620002d592919062000394565b5050565b620002e9620001b360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200030f6200036a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000368576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035f90620005d7565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003a2906200069f565b90600052602060002090601f016020900481019282620003c6576000855562000412565b82601f10620003e157805160ff191683800117855562000412565b8280016001018555821562000412579182015b8281111562000411578251825591602001919060010190620003f4565b5b50905062000421919062000425565b5090565b5b808211156200044057600081600090555060010162000426565b5090565b60006200045b620004558462000622565b620005f9565b9050828152602081018484840111156200047a57620004796200076e565b5b6200048784828562000669565b509392505050565b600082601f830112620004a757620004a662000769565b5b8151620004b984826020860162000444565b91505092915050565b60008060008060808587031215620004df57620004de62000778565b5b600085015167ffffffffffffffff8111156200050057620004ff62000773565b5b6200050e878288016200048f565b945050602085015167ffffffffffffffff81111562000532576200053162000773565b5b62000540878288016200048f565b935050604085015167ffffffffffffffff81111562000564576200056362000773565b5b62000572878288016200048f565b925050606085015167ffffffffffffffff81111562000596576200059562000773565b5b620005a4878288016200048f565b91505092959194509250565b6000620005bf60208362000658565b9150620005cc826200078e565b602082019050919050565b60006020820190508181036000830152620005f281620005b0565b9050919050565b60006200060562000618565b9050620006138282620006d5565b919050565b6000604051905090565b600067ffffffffffffffff82111562000640576200063f6200073a565b5b6200064b826200077d565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006895780820151818401526020810190506200066c565b8381111562000699576000848401525b50505050565b60006002820490506001821680620006b857607f821691505b60208210811415620006cf57620006ce6200070b565b5b50919050565b620006e0826200077d565b810181811067ffffffffffffffff821117156200070257620007016200073a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61485e80620007c76000396000f3fe60806040526004361061031a5760003560e01c80635c975abb116101ab578063ac9354e7116100f7578063da3ef23f11610095578063e985e9c51161006f578063e985e9c514610b28578063ee54be9614610b65578063f2c4ce1e14610b8e578063f2fde38b14610bb75761031a565b8063da3ef23f14610abf578063de58d8e514610ae8578063e5473dae14610b115761031a565b8063c46e9f7c116100d1578063c46e9f7c14610a01578063c668286214610a2c578063c87b56dd14610a57578063d5abeb0114610a945761031a565b8063ac9354e714610998578063b88d4fde146109c1578063bc05748e146109ea5761031a565b806391c4b57411610164578063a475b5dd1161013e578063a475b5dd14610904578063a51139b11461091b578063aa592f2514610944578063aa7703271461096f5761031a565b806391c4b5741461088557806395d89b41146108b0578063a22cb465146108db5761031a565b80635c975abb146107735780636352211e1461079e5780636c0360eb146107db57806370a0823114610806578063715018a6146108435780638da5cb5b1461085a5761031a565b80632a23d07d1161026a57806344a0d68a1161022357806351830227116101fd57806351830227146106dd57806355f804b31461070857806358feaa59146107315780635c7706c2146107485761031a565b806344a0d68a1461064c57806344eed881146106755780634f6ccce7146106a05761031a565b80632a23d07d146105585780632f745c59146105835780633ccfd60b146105c057806340c10f19146105ca57806342842e0e146105e6578063438b63001461060f5761031a565b80630c863bb6116102d757806316ca0f97116102b157806316ca0f97146104ae57806318160ddd146104d9578063239c70ae1461050457806323b872dd1461052f5761031a565b80630c863bb614610441578063138c6d9f1461046c57806313faede6146104835761031a565b806301ffc9a71461031f57806302329a291461035c57806306fdde0314610385578063081812fc146103b0578063081c8c44146103ed578063095ea7b314610418575b600080fd5b34801561032b57600080fd5b50610346600480360381019061034191906134ce565b610be0565b6040516103539190613ada565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906134a1565b610c5a565b005b34801561039157600080fd5b5061039a610c7f565b6040516103a79190613af5565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190613571565b610d11565b6040516103e49190613a51565b60405180910390f35b3480156103f957600080fd5b50610402610d57565b60405161040f9190613af5565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613418565b610de5565b005b34801561044d57600080fd5b50610456610efd565b6040516104639190613ada565b60405180910390f35b34801561047857600080fd5b50610481610f2f565b005b34801561048f57600080fd5b50610498610f54565b6040516104a59190613d57565b60405180910390f35b3480156104ba57600080fd5b506104c3610f5a565b6040516104d09190613d57565b60405180910390f35b3480156104e557600080fd5b506104ee610f60565b6040516104fb9190613d57565b60405180910390f35b34801561051057600080fd5b50610519610f6d565b6040516105269190613d57565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190613302565b610f73565b005b34801561056457600080fd5b5061056d610fd3565b60405161057a9190613d57565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190613418565b610fd9565b6040516105b79190613d57565b60405180910390f35b6105c861107e565b005b6105e460048036038101906105df9190613418565b6110ff565b005b3480156105f257600080fd5b5061060d60048036038101906106089190613302565b611264565b005b34801561061b57600080fd5b5061063660048036038101906106319190613295565b611284565b6040516106439190613ab8565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e9190613571565b611332565b005b34801561068157600080fd5b5061068a611344565b6040516106979190613d57565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190613571565b61134a565b6040516106d49190613d57565b60405180910390f35b3480156106e957600080fd5b506106f26113bb565b6040516106ff9190613ada565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190613528565b6113ce565b005b34801561073d57600080fd5b506107466113f0565b005b34801561075457600080fd5b5061075d611415565b60405161076a9190613ada565b60405180910390f35b34801561077f57600080fd5b50610788611447565b6040516107959190613ada565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190613571565b61145a565b6040516107d29190613a51565b60405180910390f35b3480156107e757600080fd5b506107f061150c565b6040516107fd9190613af5565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190613295565b61159a565b60405161083a9190613d57565b60405180910390f35b34801561084f57600080fd5b50610858611652565b005b34801561086657600080fd5b5061086f611666565b60405161087c9190613a51565b60405180910390f35b34801561089157600080fd5b5061089a611690565b6040516108a79190613ada565b60405180910390f35b3480156108bc57600080fd5b506108c56116a3565b6040516108d29190613af5565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd91906133d8565b611735565b005b34801561091057600080fd5b5061091961174b565b005b34801561092757600080fd5b50610942600480360381019061093d9190613571565b611770565b005b34801561095057600080fd5b506109596117c4565b6040516109669190613d57565b60405180910390f35b34801561097b57600080fd5b5061099660048036038101906109919190613458565b6117ca565b005b3480156109a457600080fd5b506109bf60048036038101906109ba9190613571565b61186d565b005b3480156109cd57600080fd5b506109e860048036038101906109e39190613355565b61187f565b005b3480156109f657600080fd5b506109ff6118e1565b005b348015610a0d57600080fd5b50610a16611906565b604051610a239190613ada565b60405180910390f35b348015610a3857600080fd5b50610a41611919565b604051610a4e9190613af5565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190613571565b6119a7565b604051610a8b9190613af5565b60405180910390f35b348015610aa057600080fd5b50610aa9611b00565b604051610ab69190613d57565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae19190613528565b611b06565b005b348015610af457600080fd5b50610b0f6004803603810190610b0a9190613418565b611b28565b005b348015610b1d57600080fd5b50610b26611b67565b005b348015610b3457600080fd5b50610b4f6004803603810190610b4a91906132c2565b611b8c565b604051610b5c9190613ada565b60405180910390f35b348015610b7157600080fd5b50610b8c6004803603810190610b879190613571565b611c20565b005b348015610b9a57600080fd5b50610bb56004803603810190610bb09190613528565b611c74565b005b348015610bc357600080fd5b50610bde6004803603810190610bd99190613295565b611c96565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c535750610c5282611d1a565b5b9050919050565b610c62611dfc565b80601160006101000a81548160ff02191690831515021790555050565b606060008054610c8e9061408c565b80601f0160208091040260200160405190810160405280929190818152602001828054610cba9061408c565b8015610d075780601f10610cdc57610100808354040283529160200191610d07565b820191906000526020600020905b815481529060010190602001808311610cea57829003601f168201915b5050505050905090565b6000610d1c82611e7a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60158054610d649061408c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d909061408c565b8015610ddd5780601f10610db257610100808354040283529160200191610ddd565b820191906000526020600020905b815481529060010190602001808311610dc057829003601f168201915b505050505081565b6000610df08261145a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890613cf7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e80611ec5565b73ffffffffffffffffffffffffffffffffffffffff161480610eaf5750610eae81610ea9611ec5565b611b8c565b5b610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590613c57565b60405180910390fd5b610ef88383611ecd565b505050565b6000801515601660009054906101000a900460ff1615151415610f235760019050610f2c565b60175442101590505b90565b610f37611dfc565b6000601860006101000a81548160ff021916908315150217905550565b600e5481565b60195481565b6000600880549050905090565b60125481565b610f84610f7e611ec5565b82611f86565b610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613d37565b60405180910390fd5b610fce83838361201b565b505050565b600f5481565b6000610fe48361159a565b8210611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90613b57565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611086611dfc565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110ac90613a3c565b60006040518083038185875af1925050503d80600081146110e9576040519150601f19603f3d011682016040523d82523d6000602084013e6110ee565b606091505b50509050806110fc57600080fd5b50565b6000611109610f60565b90506000821161111857600080fd5b601054601354838361112a9190613ec1565b6111349190613ec1565b111561113f57600080fd5b60125482111561114e57600080fd5b611156610efd565b1580156111675750611166611415565b5b156111dc57601160009054906101000a900460ff161561118657600080fd5b81600f546111949190613f48565b3410156111a057600080fd5b6000600190505b8281116111d6576111c38482846111be9190613ec1565b612282565b80806111ce906140ef565b9150506111a7565b5061125f565b6111e4611415565b1561125957601160009054906101000a900460ff161561120357600080fd5b81600e546112119190613f48565b34101561121d57600080fd5b6000600190505b8281116112535761124084828461123b9190613ec1565b612282565b808061124b906140ef565b915050611224565b5061125e565b600080fd5b5b505050565b61127f8383836040518060200160405280600081525061187f565b505050565b606060006112918361159a565b905060008167ffffffffffffffff8111156112af576112ae614254565b5b6040519080825280602002602001820160405280156112dd5781602001602082028036833780820191505090505b50905060005b82811015611327576112f58582610fd9565b82828151811061130857611307614225565b5b602002602001018181525050808061131f906140ef565b9150506112e3565b508092505050919050565b61133a611dfc565b80600e8190555050565b60175481565b6000611354610f60565b8210611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90613d17565b60405180910390fd5b600882815481106113a9576113a8614225565b5b90600052602060002001549050919050565b601460009054906101000a900460ff1681565b6113d6611dfc565b80600c90805190602001906113ec92919061300b565b5050565b6113f8611dfc565b6000601660006101000a81548160ff021916908315150217905550565b6000801515601860009054906101000a900460ff161515141561143b5760019050611444565b60195442101590505b90565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90613cd7565b60405180910390fd5b80915050919050565b600c80546115199061408c565b80601f01602080910402602001604051908101604052809291908181526020018280546115459061408c565b80156115925780601f1061156757610100808354040283529160200191611592565b820191906000526020600020905b81548152906001019060200180831161157557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613c37565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61165a611dfc565b61166460006122a0565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601660009054906101000a900460ff1681565b6060600180546116b29061408c565b80601f01602080910402602001604051908101604052809291908181526020018280546116de9061408c565b801561172b5780601f106117005761010080835404028352916020019161172b565b820191906000526020600020905b81548152906001019060200180831161170e57829003601f168201915b5050505050905090565b611747611740611ec5565b8383612366565b5050565b611753611dfc565b6001601460006101000a81548160ff021916908315150217905550565b611778611dfc565b4281116117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b190613b37565b60405180910390fd5b8060198190555050565b60135481565b6117d2611dfc565b6000601354116117e157600080fd5b601354815111156117f157600080fd5b60005b81518110156118695761183c82828151811061181357611812614225565b5b6020026020010151600160135460105461182d9190613fa2565b6118379190613ec1565b612282565b60016013600082825461184f9190613fa2565b925050819055508080611861906140ef565b9150506117f4565b5050565b611875611dfc565b80600f8190555050565b61189061188a611ec5565b83611f86565b6118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690613d37565b60405180910390fd5b6118db848484846124d3565b50505050565b6118e9611dfc565b6001601660006101000a81548160ff021916908315150217905550565b601860009054906101000a900460ff1681565b600d80546119269061408c565b80601f01602080910402602001604051908101604052809291908181526020018280546119529061408c565b801561199f5780601f106119745761010080835404028352916020019161199f565b820191906000526020600020905b81548152906001019060200180831161198257829003601f168201915b505050505081565b60606119b28261252f565b6119f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e890613cb7565b60405180910390fd5b60001515601460009054906101000a900460ff1615151415611a9f5760158054611a1a9061408c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a469061408c565b8015611a935780601f10611a6857610100808354040283529160200191611a93565b820191906000526020600020905b815481529060010190602001808311611a7657829003601f168201915b50505050509050611afb565b6000611aa961259b565b90506000815111611ac95760405180602001604052806000815250611af7565b80611ad38461262d565b600d604051602001611ae793929190613a0b565b6040516020818303038152906040525b9150505b919050565b60105481565b611b0e611dfc565b80600d9080519060200190611b2492919061300b565b5050565b611b30611dfc565b600060135411611b3f57600080fd5b611b498282612282565b600160136000828254611b5c9190613fa2565b925050819055505050565b611b6f611dfc565b6001601860006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c28611dfc565b428111611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6190613b17565b60405180910390fd5b8060178190555050565b611c7c611dfc565b8060159080519060200190611c9292919061300b565b5050565b611c9e611dfc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590613b97565b60405180910390fd5b611d17816122a0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611de557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611df55750611df48261278e565b5b9050919050565b611e04611ec5565b73ffffffffffffffffffffffffffffffffffffffff16611e22611666565b73ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90613c97565b60405180910390fd5b565b611e838161252f565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613cd7565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f408361145a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611f928361145a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fd45750611fd38185611b8c565b5b8061201257508373ffffffffffffffffffffffffffffffffffffffff16611ffa84610d11565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661203b8261145a565b73ffffffffffffffffffffffffffffffffffffffff1614612091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208890613bb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f890613bf7565b60405180910390fd5b61210c8383836127f8565b612117600082611ecd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121679190613fa2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121be9190613ec1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461227d83838361290c565b505050565b61229c828260405180602001604052806000815250612911565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cc90613c17565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124c69190613ada565b60405180910390a3505050565b6124de84848461201b565b6124ea8484848461296c565b612529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252090613b77565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c80546125aa9061408c565b80601f01602080910402602001604051908101604052809291908181526020018280546125d69061408c565b80156126235780601f106125f857610100808354040283529160200191612623565b820191906000526020600020905b81548152906001019060200180831161260657829003601f168201915b5050505050905090565b60606000821415612675576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612789565b600082905060005b600082146126a7578080612690906140ef565b915050600a826126a09190613f17565b915061267d565b60008167ffffffffffffffff8111156126c3576126c2614254565b5b6040519080825280601f01601f1916602001820160405280156126f55781602001600182028036833780820191505090505b5090505b600085146127825760018261270e9190613fa2565b9150600a8561271d9190614138565b60306127299190613ec1565b60f81b81838151811061273f5761273e614225565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561277b9190613f17565b94506126f9565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612803838383612b03565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128465761284181612b08565b612885565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612884576128838382612b51565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c8576128c381612cbe565b612907565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612906576129058282612d8f565b5b5b505050565b505050565b61291b8383612e0e565b612928600084848461296c565b612967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295e90613b77565b60405180910390fd5b505050565b600061298d8473ffffffffffffffffffffffffffffffffffffffff16612fe8565b15612af6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129b6611ec5565b8786866040518563ffffffff1660e01b81526004016129d89493929190613a6c565b602060405180830381600087803b1580156129f257600080fd5b505af1925050508015612a2357506040513d601f19601f82011682018060405250810190612a2091906134fb565b60015b612aa6573d8060008114612a53576040519150601f19603f3d011682016040523d82523d6000602084013e612a58565b606091505b50600081511415612a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9590613b77565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612afb565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b5e8461159a565b612b689190613fa2565b9050600060076000848152602001908152602001600020549050818114612c4d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612cd29190613fa2565b9050600060096000848152602001908152602001600020549050600060088381548110612d0257612d01614225565b5b906000526020600020015490508060088381548110612d2457612d23614225565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d7357612d726141f6565b5b6001900381819060005260206000200160009055905550505050565b6000612d9a8361159a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7590613c77565b60405180910390fd5b612e878161252f565b15612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe90613bd7565b60405180910390fd5b612ed3600083836127f8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f239190613ec1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fe46000838361290c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546130179061408c565b90600052602060002090601f0160209004810192826130395760008555613080565b82601f1061305257805160ff1916838001178555613080565b82800160010185558215613080579182015b8281111561307f578251825591602001919060010190613064565b5b50905061308d9190613091565b5090565b5b808211156130aa576000816000905550600101613092565b5090565b60006130c16130bc84613d97565b613d72565b905080838252602082019050828560208602820111156130e4576130e3614288565b5b60005b8581101561311457816130fa88826131a2565b8452602084019350602083019250506001810190506130e7565b5050509392505050565b600061313161312c84613dc3565b613d72565b90508281526020810184848401111561314d5761314c61428d565b5b61315884828561404a565b509392505050565b600061317361316e84613df4565b613d72565b90508281526020810184848401111561318f5761318e61428d565b5b61319a84828561404a565b509392505050565b6000813590506131b1816147cc565b92915050565b600082601f8301126131cc576131cb614283565b5b81356131dc8482602086016130ae565b91505092915050565b6000813590506131f4816147e3565b92915050565b600081359050613209816147fa565b92915050565b60008151905061321e816147fa565b92915050565b600082601f83011261323957613238614283565b5b813561324984826020860161311e565b91505092915050565b600082601f83011261326757613266614283565b5b8135613277848260208601613160565b91505092915050565b60008135905061328f81614811565b92915050565b6000602082840312156132ab576132aa614297565b5b60006132b9848285016131a2565b91505092915050565b600080604083850312156132d9576132d8614297565b5b60006132e7858286016131a2565b92505060206132f8858286016131a2565b9150509250929050565b60008060006060848603121561331b5761331a614297565b5b6000613329868287016131a2565b935050602061333a868287016131a2565b925050604061334b86828701613280565b9150509250925092565b6000806000806080858703121561336f5761336e614297565b5b600061337d878288016131a2565b945050602061338e878288016131a2565b935050604061339f87828801613280565b925050606085013567ffffffffffffffff8111156133c0576133bf614292565b5b6133cc87828801613224565b91505092959194509250565b600080604083850312156133ef576133ee614297565b5b60006133fd858286016131a2565b925050602061340e858286016131e5565b9150509250929050565b6000806040838503121561342f5761342e614297565b5b600061343d858286016131a2565b925050602061344e85828601613280565b9150509250929050565b60006020828403121561346e5761346d614297565b5b600082013567ffffffffffffffff81111561348c5761348b614292565b5b613498848285016131b7565b91505092915050565b6000602082840312156134b7576134b6614297565b5b60006134c5848285016131e5565b91505092915050565b6000602082840312156134e4576134e3614297565b5b60006134f2848285016131fa565b91505092915050565b60006020828403121561351157613510614297565b5b600061351f8482850161320f565b91505092915050565b60006020828403121561353e5761353d614297565b5b600082013567ffffffffffffffff81111561355c5761355b614292565b5b61356884828501613252565b91505092915050565b60006020828403121561358757613586614297565b5b600061359584828501613280565b91505092915050565b60006135aa83836139ed565b60208301905092915050565b6135bf81613fd6565b82525050565b60006135d082613e4a565b6135da8185613e78565b93506135e583613e25565b8060005b838110156136165781516135fd888261359e565b975061360883613e6b565b9250506001810190506135e9565b5085935050505092915050565b61362c81613fe8565b82525050565b600061363d82613e55565b6136478185613e89565b9350613657818560208601614059565b6136608161429c565b840191505092915050565b600061367682613e60565b6136808185613ea5565b9350613690818560208601614059565b6136998161429c565b840191505092915050565b60006136af82613e60565b6136b98185613eb6565b93506136c9818560208601614059565b80840191505092915050565b600081546136e28161408c565b6136ec8186613eb6565b9450600182166000811461370757600181146137185761374b565b60ff1983168652818601935061374b565b61372185613e35565b60005b8381101561374357815481890152600182019150602081019050613724565b838801955050505b50505092915050565b6000613761604283613ea5565b915061376c826142ad565b606082019050919050565b6000613784604383613ea5565b915061378f82614322565b606082019050919050565b60006137a7602b83613ea5565b91506137b282614397565b604082019050919050565b60006137ca603283613ea5565b91506137d5826143e6565b604082019050919050565b60006137ed602683613ea5565b91506137f882614435565b604082019050919050565b6000613810602583613ea5565b915061381b82614484565b604082019050919050565b6000613833601c83613ea5565b915061383e826144d3565b602082019050919050565b6000613856602483613ea5565b9150613861826144fc565b604082019050919050565b6000613879601983613ea5565b91506138848261454b565b602082019050919050565b600061389c602983613ea5565b91506138a782614574565b604082019050919050565b60006138bf603e83613ea5565b91506138ca826145c3565b604082019050919050565b60006138e2602083613ea5565b91506138ed82614612565b602082019050919050565b6000613905602083613ea5565b91506139108261463b565b602082019050919050565b6000613928602f83613ea5565b915061393382614664565b604082019050919050565b600061394b601883613ea5565b9150613956826146b3565b602082019050919050565b600061396e602183613ea5565b9150613979826146dc565b604082019050919050565b6000613991600083613e9a565b915061399c8261472b565b600082019050919050565b60006139b4602c83613ea5565b91506139bf8261472e565b604082019050919050565b60006139d7602e83613ea5565b91506139e28261477d565b604082019050919050565b6139f681614040565b82525050565b613a0581614040565b82525050565b6000613a1782866136a4565b9150613a2382856136a4565b9150613a2f82846136d5565b9150819050949350505050565b6000613a4782613984565b9150819050919050565b6000602082019050613a6660008301846135b6565b92915050565b6000608082019050613a8160008301876135b6565b613a8e60208301866135b6565b613a9b60408301856139fc565b8181036060830152613aad8184613632565b905095945050505050565b60006020820190508181036000830152613ad281846135c5565b905092915050565b6000602082019050613aef6000830184613623565b92915050565b60006020820190508181036000830152613b0f818461366b565b905092915050565b60006020820190508181036000830152613b3081613754565b9050919050565b60006020820190508181036000830152613b5081613777565b9050919050565b60006020820190508181036000830152613b708161379a565b9050919050565b60006020820190508181036000830152613b90816137bd565b9050919050565b60006020820190508181036000830152613bb0816137e0565b9050919050565b60006020820190508181036000830152613bd081613803565b9050919050565b60006020820190508181036000830152613bf081613826565b9050919050565b60006020820190508181036000830152613c1081613849565b9050919050565b60006020820190508181036000830152613c308161386c565b9050919050565b60006020820190508181036000830152613c508161388f565b9050919050565b60006020820190508181036000830152613c70816138b2565b9050919050565b60006020820190508181036000830152613c90816138d5565b9050919050565b60006020820190508181036000830152613cb0816138f8565b9050919050565b60006020820190508181036000830152613cd08161391b565b9050919050565b60006020820190508181036000830152613cf08161393e565b9050919050565b60006020820190508181036000830152613d1081613961565b9050919050565b60006020820190508181036000830152613d30816139a7565b9050919050565b60006020820190508181036000830152613d50816139ca565b9050919050565b6000602082019050613d6c60008301846139fc565b92915050565b6000613d7c613d8d565b9050613d8882826140be565b919050565b6000604051905090565b600067ffffffffffffffff821115613db257613db1614254565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613dde57613ddd614254565b5b613de78261429c565b9050602081019050919050565b600067ffffffffffffffff821115613e0f57613e0e614254565b5b613e188261429c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ecc82614040565b9150613ed783614040565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f0c57613f0b614169565b5b828201905092915050565b6000613f2282614040565b9150613f2d83614040565b925082613f3d57613f3c614198565b5b828204905092915050565b6000613f5382614040565b9150613f5e83614040565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f9757613f96614169565b5b828202905092915050565b6000613fad82614040565b9150613fb883614040565b925082821015613fcb57613fca614169565b5b828203905092915050565b6000613fe182614020565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561407757808201518184015260208101905061405c565b83811115614086576000848401525b50505050565b600060028204905060018216806140a457607f821691505b602082108114156140b8576140b76141c7565b5b50919050565b6140c78261429c565b810181811067ffffffffffffffff821117156140e6576140e5614254565b5b80604052505050565b60006140fa82614040565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561412d5761412c614169565b5b600182019050919050565b600061414382614040565b915061414e83614040565b92508261415e5761415d614198565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f44726f702064617465206d75737420626520696e2066757475726521204f746860008201527f6572776973652063616c6c2064697361626c655075626c696344726f7054696d60208201527f6521000000000000000000000000000000000000000000000000000000000000604082015250565b7f44726f702064617465206d75737420626520696e2066757475726521204f746860008201527f6572776973652063616c6c2064697361626c6550726573616c6544726f70546960208201527f6d65210000000000000000000000000000000000000000000000000000000000604082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6147d581613fd6565b81146147e057600080fd5b50565b6147ec81613fe8565b81146147f757600080fd5b50565b61480381613ff4565b811461480e57600080fd5b50565b61481a81614040565b811461482557600080fd5b5056fea26469706673582212209897ecb8db9ddffdbf6e544dd481a9e4ee600856315b135f625d3fd5e4f4c80a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000010546865205371756172652046616365730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075371756172656400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e687474703a2f2f34362e3130312e3231332e34382f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000000024687474703a2f2f34362e3130312e3231332e34382f6d657461646174612f302e6a736f6e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061031a5760003560e01c80635c975abb116101ab578063ac9354e7116100f7578063da3ef23f11610095578063e985e9c51161006f578063e985e9c514610b28578063ee54be9614610b65578063f2c4ce1e14610b8e578063f2fde38b14610bb75761031a565b8063da3ef23f14610abf578063de58d8e514610ae8578063e5473dae14610b115761031a565b8063c46e9f7c116100d1578063c46e9f7c14610a01578063c668286214610a2c578063c87b56dd14610a57578063d5abeb0114610a945761031a565b8063ac9354e714610998578063b88d4fde146109c1578063bc05748e146109ea5761031a565b806391c4b57411610164578063a475b5dd1161013e578063a475b5dd14610904578063a51139b11461091b578063aa592f2514610944578063aa7703271461096f5761031a565b806391c4b5741461088557806395d89b41146108b0578063a22cb465146108db5761031a565b80635c975abb146107735780636352211e1461079e5780636c0360eb146107db57806370a0823114610806578063715018a6146108435780638da5cb5b1461085a5761031a565b80632a23d07d1161026a57806344a0d68a1161022357806351830227116101fd57806351830227146106dd57806355f804b31461070857806358feaa59146107315780635c7706c2146107485761031a565b806344a0d68a1461064c57806344eed881146106755780634f6ccce7146106a05761031a565b80632a23d07d146105585780632f745c59146105835780633ccfd60b146105c057806340c10f19146105ca57806342842e0e146105e6578063438b63001461060f5761031a565b80630c863bb6116102d757806316ca0f97116102b157806316ca0f97146104ae57806318160ddd146104d9578063239c70ae1461050457806323b872dd1461052f5761031a565b80630c863bb614610441578063138c6d9f1461046c57806313faede6146104835761031a565b806301ffc9a71461031f57806302329a291461035c57806306fdde0314610385578063081812fc146103b0578063081c8c44146103ed578063095ea7b314610418575b600080fd5b34801561032b57600080fd5b50610346600480360381019061034191906134ce565b610be0565b6040516103539190613ada565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906134a1565b610c5a565b005b34801561039157600080fd5b5061039a610c7f565b6040516103a79190613af5565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190613571565b610d11565b6040516103e49190613a51565b60405180910390f35b3480156103f957600080fd5b50610402610d57565b60405161040f9190613af5565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613418565b610de5565b005b34801561044d57600080fd5b50610456610efd565b6040516104639190613ada565b60405180910390f35b34801561047857600080fd5b50610481610f2f565b005b34801561048f57600080fd5b50610498610f54565b6040516104a59190613d57565b60405180910390f35b3480156104ba57600080fd5b506104c3610f5a565b6040516104d09190613d57565b60405180910390f35b3480156104e557600080fd5b506104ee610f60565b6040516104fb9190613d57565b60405180910390f35b34801561051057600080fd5b50610519610f6d565b6040516105269190613d57565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190613302565b610f73565b005b34801561056457600080fd5b5061056d610fd3565b60405161057a9190613d57565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190613418565b610fd9565b6040516105b79190613d57565b60405180910390f35b6105c861107e565b005b6105e460048036038101906105df9190613418565b6110ff565b005b3480156105f257600080fd5b5061060d60048036038101906106089190613302565b611264565b005b34801561061b57600080fd5b5061063660048036038101906106319190613295565b611284565b6040516106439190613ab8565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e9190613571565b611332565b005b34801561068157600080fd5b5061068a611344565b6040516106979190613d57565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190613571565b61134a565b6040516106d49190613d57565b60405180910390f35b3480156106e957600080fd5b506106f26113bb565b6040516106ff9190613ada565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190613528565b6113ce565b005b34801561073d57600080fd5b506107466113f0565b005b34801561075457600080fd5b5061075d611415565b60405161076a9190613ada565b60405180910390f35b34801561077f57600080fd5b50610788611447565b6040516107959190613ada565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190613571565b61145a565b6040516107d29190613a51565b60405180910390f35b3480156107e757600080fd5b506107f061150c565b6040516107fd9190613af5565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190613295565b61159a565b60405161083a9190613d57565b60405180910390f35b34801561084f57600080fd5b50610858611652565b005b34801561086657600080fd5b5061086f611666565b60405161087c9190613a51565b60405180910390f35b34801561089157600080fd5b5061089a611690565b6040516108a79190613ada565b60405180910390f35b3480156108bc57600080fd5b506108c56116a3565b6040516108d29190613af5565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd91906133d8565b611735565b005b34801561091057600080fd5b5061091961174b565b005b34801561092757600080fd5b50610942600480360381019061093d9190613571565b611770565b005b34801561095057600080fd5b506109596117c4565b6040516109669190613d57565b60405180910390f35b34801561097b57600080fd5b5061099660048036038101906109919190613458565b6117ca565b005b3480156109a457600080fd5b506109bf60048036038101906109ba9190613571565b61186d565b005b3480156109cd57600080fd5b506109e860048036038101906109e39190613355565b61187f565b005b3480156109f657600080fd5b506109ff6118e1565b005b348015610a0d57600080fd5b50610a16611906565b604051610a239190613ada565b60405180910390f35b348015610a3857600080fd5b50610a41611919565b604051610a4e9190613af5565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190613571565b6119a7565b604051610a8b9190613af5565b60405180910390f35b348015610aa057600080fd5b50610aa9611b00565b604051610ab69190613d57565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae19190613528565b611b06565b005b348015610af457600080fd5b50610b0f6004803603810190610b0a9190613418565b611b28565b005b348015610b1d57600080fd5b50610b26611b67565b005b348015610b3457600080fd5b50610b4f6004803603810190610b4a91906132c2565b611b8c565b604051610b5c9190613ada565b60405180910390f35b348015610b7157600080fd5b50610b8c6004803603810190610b879190613571565b611c20565b005b348015610b9a57600080fd5b50610bb56004803603810190610bb09190613528565b611c74565b005b348015610bc357600080fd5b50610bde6004803603810190610bd99190613295565b611c96565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c535750610c5282611d1a565b5b9050919050565b610c62611dfc565b80601160006101000a81548160ff02191690831515021790555050565b606060008054610c8e9061408c565b80601f0160208091040260200160405190810160405280929190818152602001828054610cba9061408c565b8015610d075780601f10610cdc57610100808354040283529160200191610d07565b820191906000526020600020905b815481529060010190602001808311610cea57829003601f168201915b5050505050905090565b6000610d1c82611e7a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60158054610d649061408c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d909061408c565b8015610ddd5780601f10610db257610100808354040283529160200191610ddd565b820191906000526020600020905b815481529060010190602001808311610dc057829003601f168201915b505050505081565b6000610df08261145a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890613cf7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e80611ec5565b73ffffffffffffffffffffffffffffffffffffffff161480610eaf5750610eae81610ea9611ec5565b611b8c565b5b610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590613c57565b60405180910390fd5b610ef88383611ecd565b505050565b6000801515601660009054906101000a900460ff1615151415610f235760019050610f2c565b60175442101590505b90565b610f37611dfc565b6000601860006101000a81548160ff021916908315150217905550565b600e5481565b60195481565b6000600880549050905090565b60125481565b610f84610f7e611ec5565b82611f86565b610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613d37565b60405180910390fd5b610fce83838361201b565b505050565b600f5481565b6000610fe48361159a565b8210611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90613b57565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611086611dfc565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110ac90613a3c565b60006040518083038185875af1925050503d80600081146110e9576040519150601f19603f3d011682016040523d82523d6000602084013e6110ee565b606091505b50509050806110fc57600080fd5b50565b6000611109610f60565b90506000821161111857600080fd5b601054601354838361112a9190613ec1565b6111349190613ec1565b111561113f57600080fd5b60125482111561114e57600080fd5b611156610efd565b1580156111675750611166611415565b5b156111dc57601160009054906101000a900460ff161561118657600080fd5b81600f546111949190613f48565b3410156111a057600080fd5b6000600190505b8281116111d6576111c38482846111be9190613ec1565b612282565b80806111ce906140ef565b9150506111a7565b5061125f565b6111e4611415565b1561125957601160009054906101000a900460ff161561120357600080fd5b81600e546112119190613f48565b34101561121d57600080fd5b6000600190505b8281116112535761124084828461123b9190613ec1565b612282565b808061124b906140ef565b915050611224565b5061125e565b600080fd5b5b505050565b61127f8383836040518060200160405280600081525061187f565b505050565b606060006112918361159a565b905060008167ffffffffffffffff8111156112af576112ae614254565b5b6040519080825280602002602001820160405280156112dd5781602001602082028036833780820191505090505b50905060005b82811015611327576112f58582610fd9565b82828151811061130857611307614225565b5b602002602001018181525050808061131f906140ef565b9150506112e3565b508092505050919050565b61133a611dfc565b80600e8190555050565b60175481565b6000611354610f60565b8210611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90613d17565b60405180910390fd5b600882815481106113a9576113a8614225565b5b90600052602060002001549050919050565b601460009054906101000a900460ff1681565b6113d6611dfc565b80600c90805190602001906113ec92919061300b565b5050565b6113f8611dfc565b6000601660006101000a81548160ff021916908315150217905550565b6000801515601860009054906101000a900460ff161515141561143b5760019050611444565b60195442101590505b90565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90613cd7565b60405180910390fd5b80915050919050565b600c80546115199061408c565b80601f01602080910402602001604051908101604052809291908181526020018280546115459061408c565b80156115925780601f1061156757610100808354040283529160200191611592565b820191906000526020600020905b81548152906001019060200180831161157557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613c37565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61165a611dfc565b61166460006122a0565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601660009054906101000a900460ff1681565b6060600180546116b29061408c565b80601f01602080910402602001604051908101604052809291908181526020018280546116de9061408c565b801561172b5780601f106117005761010080835404028352916020019161172b565b820191906000526020600020905b81548152906001019060200180831161170e57829003601f168201915b5050505050905090565b611747611740611ec5565b8383612366565b5050565b611753611dfc565b6001601460006101000a81548160ff021916908315150217905550565b611778611dfc565b4281116117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b190613b37565b60405180910390fd5b8060198190555050565b60135481565b6117d2611dfc565b6000601354116117e157600080fd5b601354815111156117f157600080fd5b60005b81518110156118695761183c82828151811061181357611812614225565b5b6020026020010151600160135460105461182d9190613fa2565b6118379190613ec1565b612282565b60016013600082825461184f9190613fa2565b925050819055508080611861906140ef565b9150506117f4565b5050565b611875611dfc565b80600f8190555050565b61189061188a611ec5565b83611f86565b6118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690613d37565b60405180910390fd5b6118db848484846124d3565b50505050565b6118e9611dfc565b6001601660006101000a81548160ff021916908315150217905550565b601860009054906101000a900460ff1681565b600d80546119269061408c565b80601f01602080910402602001604051908101604052809291908181526020018280546119529061408c565b801561199f5780601f106119745761010080835404028352916020019161199f565b820191906000526020600020905b81548152906001019060200180831161198257829003601f168201915b505050505081565b60606119b28261252f565b6119f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e890613cb7565b60405180910390fd5b60001515601460009054906101000a900460ff1615151415611a9f5760158054611a1a9061408c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a469061408c565b8015611a935780601f10611a6857610100808354040283529160200191611a93565b820191906000526020600020905b815481529060010190602001808311611a7657829003601f168201915b50505050509050611afb565b6000611aa961259b565b90506000815111611ac95760405180602001604052806000815250611af7565b80611ad38461262d565b600d604051602001611ae793929190613a0b565b6040516020818303038152906040525b9150505b919050565b60105481565b611b0e611dfc565b80600d9080519060200190611b2492919061300b565b5050565b611b30611dfc565b600060135411611b3f57600080fd5b611b498282612282565b600160136000828254611b5c9190613fa2565b925050819055505050565b611b6f611dfc565b6001601860006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c28611dfc565b428111611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6190613b17565b60405180910390fd5b8060178190555050565b611c7c611dfc565b8060159080519060200190611c9292919061300b565b5050565b611c9e611dfc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590613b97565b60405180910390fd5b611d17816122a0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611de557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611df55750611df48261278e565b5b9050919050565b611e04611ec5565b73ffffffffffffffffffffffffffffffffffffffff16611e22611666565b73ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90613c97565b60405180910390fd5b565b611e838161252f565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613cd7565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f408361145a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611f928361145a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fd45750611fd38185611b8c565b5b8061201257508373ffffffffffffffffffffffffffffffffffffffff16611ffa84610d11565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661203b8261145a565b73ffffffffffffffffffffffffffffffffffffffff1614612091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208890613bb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f890613bf7565b60405180910390fd5b61210c8383836127f8565b612117600082611ecd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121679190613fa2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121be9190613ec1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461227d83838361290c565b505050565b61229c828260405180602001604052806000815250612911565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cc90613c17565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124c69190613ada565b60405180910390a3505050565b6124de84848461201b565b6124ea8484848461296c565b612529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252090613b77565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c80546125aa9061408c565b80601f01602080910402602001604051908101604052809291908181526020018280546125d69061408c565b80156126235780601f106125f857610100808354040283529160200191612623565b820191906000526020600020905b81548152906001019060200180831161260657829003601f168201915b5050505050905090565b60606000821415612675576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612789565b600082905060005b600082146126a7578080612690906140ef565b915050600a826126a09190613f17565b915061267d565b60008167ffffffffffffffff8111156126c3576126c2614254565b5b6040519080825280601f01601f1916602001820160405280156126f55781602001600182028036833780820191505090505b5090505b600085146127825760018261270e9190613fa2565b9150600a8561271d9190614138565b60306127299190613ec1565b60f81b81838151811061273f5761273e614225565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561277b9190613f17565b94506126f9565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612803838383612b03565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128465761284181612b08565b612885565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612884576128838382612b51565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c8576128c381612cbe565b612907565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612906576129058282612d8f565b5b5b505050565b505050565b61291b8383612e0e565b612928600084848461296c565b612967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295e90613b77565b60405180910390fd5b505050565b600061298d8473ffffffffffffffffffffffffffffffffffffffff16612fe8565b15612af6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129b6611ec5565b8786866040518563ffffffff1660e01b81526004016129d89493929190613a6c565b602060405180830381600087803b1580156129f257600080fd5b505af1925050508015612a2357506040513d601f19601f82011682018060405250810190612a2091906134fb565b60015b612aa6573d8060008114612a53576040519150601f19603f3d011682016040523d82523d6000602084013e612a58565b606091505b50600081511415612a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9590613b77565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612afb565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b5e8461159a565b612b689190613fa2565b9050600060076000848152602001908152602001600020549050818114612c4d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612cd29190613fa2565b9050600060096000848152602001908152602001600020549050600060088381548110612d0257612d01614225565b5b906000526020600020015490508060088381548110612d2457612d23614225565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d7357612d726141f6565b5b6001900381819060005260206000200160009055905550505050565b6000612d9a8361159a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7590613c77565b60405180910390fd5b612e878161252f565b15612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe90613bd7565b60405180910390fd5b612ed3600083836127f8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f239190613ec1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fe46000838361290c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546130179061408c565b90600052602060002090601f0160209004810192826130395760008555613080565b82601f1061305257805160ff1916838001178555613080565b82800160010185558215613080579182015b8281111561307f578251825591602001919060010190613064565b5b50905061308d9190613091565b5090565b5b808211156130aa576000816000905550600101613092565b5090565b60006130c16130bc84613d97565b613d72565b905080838252602082019050828560208602820111156130e4576130e3614288565b5b60005b8581101561311457816130fa88826131a2565b8452602084019350602083019250506001810190506130e7565b5050509392505050565b600061313161312c84613dc3565b613d72565b90508281526020810184848401111561314d5761314c61428d565b5b61315884828561404a565b509392505050565b600061317361316e84613df4565b613d72565b90508281526020810184848401111561318f5761318e61428d565b5b61319a84828561404a565b509392505050565b6000813590506131b1816147cc565b92915050565b600082601f8301126131cc576131cb614283565b5b81356131dc8482602086016130ae565b91505092915050565b6000813590506131f4816147e3565b92915050565b600081359050613209816147fa565b92915050565b60008151905061321e816147fa565b92915050565b600082601f83011261323957613238614283565b5b813561324984826020860161311e565b91505092915050565b600082601f83011261326757613266614283565b5b8135613277848260208601613160565b91505092915050565b60008135905061328f81614811565b92915050565b6000602082840312156132ab576132aa614297565b5b60006132b9848285016131a2565b91505092915050565b600080604083850312156132d9576132d8614297565b5b60006132e7858286016131a2565b92505060206132f8858286016131a2565b9150509250929050565b60008060006060848603121561331b5761331a614297565b5b6000613329868287016131a2565b935050602061333a868287016131a2565b925050604061334b86828701613280565b9150509250925092565b6000806000806080858703121561336f5761336e614297565b5b600061337d878288016131a2565b945050602061338e878288016131a2565b935050604061339f87828801613280565b925050606085013567ffffffffffffffff8111156133c0576133bf614292565b5b6133cc87828801613224565b91505092959194509250565b600080604083850312156133ef576133ee614297565b5b60006133fd858286016131a2565b925050602061340e858286016131e5565b9150509250929050565b6000806040838503121561342f5761342e614297565b5b600061343d858286016131a2565b925050602061344e85828601613280565b9150509250929050565b60006020828403121561346e5761346d614297565b5b600082013567ffffffffffffffff81111561348c5761348b614292565b5b613498848285016131b7565b91505092915050565b6000602082840312156134b7576134b6614297565b5b60006134c5848285016131e5565b91505092915050565b6000602082840312156134e4576134e3614297565b5b60006134f2848285016131fa565b91505092915050565b60006020828403121561351157613510614297565b5b600061351f8482850161320f565b91505092915050565b60006020828403121561353e5761353d614297565b5b600082013567ffffffffffffffff81111561355c5761355b614292565b5b61356884828501613252565b91505092915050565b60006020828403121561358757613586614297565b5b600061359584828501613280565b91505092915050565b60006135aa83836139ed565b60208301905092915050565b6135bf81613fd6565b82525050565b60006135d082613e4a565b6135da8185613e78565b93506135e583613e25565b8060005b838110156136165781516135fd888261359e565b975061360883613e6b565b9250506001810190506135e9565b5085935050505092915050565b61362c81613fe8565b82525050565b600061363d82613e55565b6136478185613e89565b9350613657818560208601614059565b6136608161429c565b840191505092915050565b600061367682613e60565b6136808185613ea5565b9350613690818560208601614059565b6136998161429c565b840191505092915050565b60006136af82613e60565b6136b98185613eb6565b93506136c9818560208601614059565b80840191505092915050565b600081546136e28161408c565b6136ec8186613eb6565b9450600182166000811461370757600181146137185761374b565b60ff1983168652818601935061374b565b61372185613e35565b60005b8381101561374357815481890152600182019150602081019050613724565b838801955050505b50505092915050565b6000613761604283613ea5565b915061376c826142ad565b606082019050919050565b6000613784604383613ea5565b915061378f82614322565b606082019050919050565b60006137a7602b83613ea5565b91506137b282614397565b604082019050919050565b60006137ca603283613ea5565b91506137d5826143e6565b604082019050919050565b60006137ed602683613ea5565b91506137f882614435565b604082019050919050565b6000613810602583613ea5565b915061381b82614484565b604082019050919050565b6000613833601c83613ea5565b915061383e826144d3565b602082019050919050565b6000613856602483613ea5565b9150613861826144fc565b604082019050919050565b6000613879601983613ea5565b91506138848261454b565b602082019050919050565b600061389c602983613ea5565b91506138a782614574565b604082019050919050565b60006138bf603e83613ea5565b91506138ca826145c3565b604082019050919050565b60006138e2602083613ea5565b91506138ed82614612565b602082019050919050565b6000613905602083613ea5565b91506139108261463b565b602082019050919050565b6000613928602f83613ea5565b915061393382614664565b604082019050919050565b600061394b601883613ea5565b9150613956826146b3565b602082019050919050565b600061396e602183613ea5565b9150613979826146dc565b604082019050919050565b6000613991600083613e9a565b915061399c8261472b565b600082019050919050565b60006139b4602c83613ea5565b91506139bf8261472e565b604082019050919050565b60006139d7602e83613ea5565b91506139e28261477d565b604082019050919050565b6139f681614040565b82525050565b613a0581614040565b82525050565b6000613a1782866136a4565b9150613a2382856136a4565b9150613a2f82846136d5565b9150819050949350505050565b6000613a4782613984565b9150819050919050565b6000602082019050613a6660008301846135b6565b92915050565b6000608082019050613a8160008301876135b6565b613a8e60208301866135b6565b613a9b60408301856139fc565b8181036060830152613aad8184613632565b905095945050505050565b60006020820190508181036000830152613ad281846135c5565b905092915050565b6000602082019050613aef6000830184613623565b92915050565b60006020820190508181036000830152613b0f818461366b565b905092915050565b60006020820190508181036000830152613b3081613754565b9050919050565b60006020820190508181036000830152613b5081613777565b9050919050565b60006020820190508181036000830152613b708161379a565b9050919050565b60006020820190508181036000830152613b90816137bd565b9050919050565b60006020820190508181036000830152613bb0816137e0565b9050919050565b60006020820190508181036000830152613bd081613803565b9050919050565b60006020820190508181036000830152613bf081613826565b9050919050565b60006020820190508181036000830152613c1081613849565b9050919050565b60006020820190508181036000830152613c308161386c565b9050919050565b60006020820190508181036000830152613c508161388f565b9050919050565b60006020820190508181036000830152613c70816138b2565b9050919050565b60006020820190508181036000830152613c90816138d5565b9050919050565b60006020820190508181036000830152613cb0816138f8565b9050919050565b60006020820190508181036000830152613cd08161391b565b9050919050565b60006020820190508181036000830152613cf08161393e565b9050919050565b60006020820190508181036000830152613d1081613961565b9050919050565b60006020820190508181036000830152613d30816139a7565b9050919050565b60006020820190508181036000830152613d50816139ca565b9050919050565b6000602082019050613d6c60008301846139fc565b92915050565b6000613d7c613d8d565b9050613d8882826140be565b919050565b6000604051905090565b600067ffffffffffffffff821115613db257613db1614254565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613dde57613ddd614254565b5b613de78261429c565b9050602081019050919050565b600067ffffffffffffffff821115613e0f57613e0e614254565b5b613e188261429c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ecc82614040565b9150613ed783614040565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f0c57613f0b614169565b5b828201905092915050565b6000613f2282614040565b9150613f2d83614040565b925082613f3d57613f3c614198565b5b828204905092915050565b6000613f5382614040565b9150613f5e83614040565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f9757613f96614169565b5b828202905092915050565b6000613fad82614040565b9150613fb883614040565b925082821015613fcb57613fca614169565b5b828203905092915050565b6000613fe182614020565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561407757808201518184015260208101905061405c565b83811115614086576000848401525b50505050565b600060028204905060018216806140a457607f821691505b602082108114156140b8576140b76141c7565b5b50919050565b6140c78261429c565b810181811067ffffffffffffffff821117156140e6576140e5614254565b5b80604052505050565b60006140fa82614040565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561412d5761412c614169565b5b600182019050919050565b600061414382614040565b915061414e83614040565b92508261415e5761415d614198565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f44726f702064617465206d75737420626520696e2066757475726521204f746860008201527f6572776973652063616c6c2064697361626c655075626c696344726f7054696d60208201527f6521000000000000000000000000000000000000000000000000000000000000604082015250565b7f44726f702064617465206d75737420626520696e2066757475726521204f746860008201527f6572776973652063616c6c2064697361626c6550726573616c6544726f70546960208201527f6d65210000000000000000000000000000000000000000000000000000000000604082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6147d581613fd6565b81146147e057600080fd5b50565b6147ec81613fe8565b81146147f757600080fd5b50565b61480381613ff4565b811461480e57600080fd5b50565b61481a81614040565b811461482557600080fd5b5056fea26469706673582212209897ecb8db9ddffdbf6e544dd481a9e4ee600856315b135f625d3fd5e4f4c80a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000010546865205371756172652046616365730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075371756172656400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e687474703a2f2f34362e3130312e3231332e34382f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000000024687474703a2f2f34362e3130312e3231332e34382f6d657461646174612f302e6a736f6e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): The Square Faces
Arg [1] : _symbol (string): Squared
Arg [2] : _initBaseURI (string): http://46.101.213.48/metadata/
Arg [3] : _initNotRevealedUri (string): http://46.101.213.48/metadata/0.json

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [5] : 5468652053717561726520466163657300000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 5371756172656400000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [9] : 687474703a2f2f34362e3130312e3231332e34382f6d657461646174612f0000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [11] : 687474703a2f2f34362e3130312e3231332e34382f6d657461646174612f302e
Arg [12] : 6a736f6e00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49023:5951:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42769:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54692:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29503:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31016:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49472:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30533:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53344:200;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53900:100;;;;;;;;;;;;;:::i;:::-;;49203:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49653:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43409:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49359:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31716:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49241:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43077:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54779:192;;;:::i;:::-;;50142:891;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32123:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51562:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54219:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49556:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43599:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49437:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54421:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53240:98;;;;;;;;;;;;;:::i;:::-;;54008:203;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49326:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29214:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49131:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28945:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8032:103;;;;;;;;;;;;;:::i;:::-;;7384:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49509:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29672:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31259:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52688:69;;;;;;;;;;;;;:::i;:::-;;53552:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49399:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51039:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54313:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32379:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53139:93;;;;;;;;;;;;;:::i;:::-;;49605:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49159:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51960:720;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49287:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54533:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51372:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53797:95;;;;;;;;;;;;;:::i;:::-;;31485:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52899:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52765:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8290:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42769:224;42871:4;42910:35;42895:50;;;:11;:50;;;;:90;;;;42949:36;42973:11;42949:23;:36::i;:::-;42895:90;42888:97;;42769:224;;;:::o;54692:79::-;7270:13;:11;:13::i;:::-;54757:6:::1;54748;;:15;;;;;;;;;;;;;;;;;;54692:79:::0;:::o;29503:100::-;29557:13;29590:5;29583:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29503:100;:::o;31016:171::-;31092:7;31112:23;31127:7;31112:14;:23::i;:::-;31155:15;:24;31171:7;31155:24;;;;;;;;;;;;;;;;;;;;;31148:31;;31016:171;;;:::o;49472:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30533:417::-;30614:13;30630:23;30645:7;30630:14;:23::i;:::-;30614:39;;30678:5;30672:11;;:2;:11;;;;30664:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;30772:5;30756:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30781:37;30798:5;30805:12;:10;:12::i;:::-;30781:16;:37::i;:::-;30756:62;30734:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;30921:21;30930:2;30934:7;30921:8;:21::i;:::-;30603:347;30533:417;;:::o;53344:200::-;53396:4;53441:5;53416:30;;:21;;;;;;;;;;;:30;;;53413:73;;;53470:4;53463:11;;;;53413:73;53522:14;;53503:15;:33;;53496:40;;53344:200;;:::o;53900:100::-;7270:13;:11;:13::i;:::-;53987:5:::1;53962:22;;:30;;;;;;;;;;;;;;;;;;53900:100::o:0;49203:31::-;;;;:::o;49653:43::-;;;;:::o;43409:113::-;43470:7;43497:10;:17;;;;43490:24;;43409:113;:::o;49359:33::-;;;;:::o;31716:336::-;31911:41;31930:12;:10;:12::i;:::-;31944:7;31911:18;:41::i;:::-;31903:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;32016:28;32026:4;32032:2;32036:7;32016:9;:28::i;:::-;31716:336;;;:::o;49241:39::-;;;;:::o;43077:256::-;43174:7;43210:23;43227:5;43210:16;:23::i;:::-;43202:5;:31;43194:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;43299:12;:19;43312:5;43299:19;;;;;;;;;;;;;;;:26;43319:5;43299:26;;;;;;;;;;;;43292:33;;43077:256;;;;:::o;54779:192::-;7270:13;:11;:13::i;:::-;54836:12:::1;54862:10;54854:24;;54900:21;54854:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54835:101;;;54955:7;54947:16;;;::::0;::::1;;54824:147;54779:192::o:0;50142:891::-;50216:14;50233:13;:11;:13::i;:::-;50216:30;;50279:1;50265:11;:15;50257:24;;;;;;50335:9;;50323:8;;50309:11;50300:6;:20;;;;:::i;:::-;:31;;;;:::i;:::-;:44;;50292:53;;;;;;50379:13;;50364:11;:28;;50356:37;;;;;;50409:22;:20;:22::i;:::-;50408:23;:50;;;;;50435:23;:21;:23::i;:::-;50408:50;50404:621;;;50514:6;;;;;;;;;;;50513:7;50505:16;;;;;;50571:11;50557;;:25;;;;:::i;:::-;50544:9;:38;;50536:47;;;;;;50603:9;50615:1;50603:13;;50598:104;50623:11;50618:1;:16;50598:104;;50660:26;50670:3;50684:1;50675:6;:10;;;;:::i;:::-;50660:9;:26::i;:::-;50636:3;;;;;:::i;:::-;;;;50598:104;;;;50404:621;;;50723:23;:21;:23::i;:::-;50719:306;;;50794:6;;;;;;;;;;;50793:7;50785:16;;;;;;50844:11;50837:4;;:18;;;;:::i;:::-;50824:9;:31;;50816:40;;;;;;50876:9;50888:1;50876:13;;50871:104;50896:11;50891:1;:16;50871:104;;50933:26;50943:3;50957:1;50948:6;:10;;;;:::i;:::-;50933:9;:26::i;:::-;50909:3;;;;;:::i;:::-;;;;50871:104;;;;50719:306;;;51005:8;;;50719:306;50404:621;50205:828;50142:891;;:::o;32123:185::-;32261:39;32278:4;32284:2;32288:7;32261:39;;;;;;;;;;;;:16;:39::i;:::-;32123:185;;;:::o;51562:390::-;51649:16;51683:23;51709:17;51719:6;51709:9;:17::i;:::-;51683:43;;51737:25;51779:15;51765:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51737:58;;51811:9;51806:113;51826:15;51822:1;:19;51806:113;;;51877:30;51897:6;51905:1;51877:19;:30::i;:::-;51863:8;51872:1;51863:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;51843:3;;;;;:::i;:::-;;;;51806:113;;;;51936:8;51929:15;;;;51562:390;;;:::o;54219:86::-;7270:13;:11;:13::i;:::-;54289:8:::1;54282:4;:15;;;;54219:86:::0;:::o;49556:42::-;;;;:::o;43599:233::-;43674:7;43710:30;:28;:30::i;:::-;43702:5;:38;43694:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;43807:10;43818:5;43807:17;;;;;;;;:::i;:::-;;;;;;;;;;43800:24;;43599:233;;;:::o;49437:28::-;;;;;;;;;;;;;:::o;54421:104::-;7270:13;:11;:13::i;:::-;54506:11:::1;54496:7;:21;;;;;;;;;;;;:::i;:::-;;54421:104:::0;:::o;53240:98::-;7270:13;:11;:13::i;:::-;53325:5:::1;53301:21;;:29;;;;;;;;;;;;;;;;;;53240:98::o:0;54008:203::-;54061:4;54107:5;54081:31;;:22;;;;;;;;;;;:31;;;54078:74;;;54136:4;54129:11;;;;54078:74;54188:15;;54169;:34;;54162:41;;54008:203;;:::o;49326:26::-;;;;;;;;;;;;;:::o;29214:222::-;29286:7;29306:13;29322:7;:16;29330:7;29322:16;;;;;;;;;;;;;;;;;;;;;29306:32;;29374:1;29357:19;;:5;:19;;;;29349:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;29423:5;29416:12;;;29214:222;;;:::o;49131:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28945:207::-;29017:7;29062:1;29045:19;;:5;:19;;;;29037:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29128:9;:16;29138:5;29128:16;;;;;;;;;;;;;;;;29121:23;;28945:207;;;:::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;7384:87::-;7430:7;7457:6;;;;;;;;;;;7450:13;;7384:87;:::o;49509:40::-;;;;;;;;;;;;;:::o;29672:104::-;29728:13;29761:7;29754:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29672:104;:::o;31259:155::-;31354:52;31373:12;:10;:12::i;:::-;31387:8;31397;31354:18;:52::i;:::-;31259:155;;:::o;52688:69::-;7270:13;:11;:13::i;:::-;52745:4:::1;52734:8;;:15;;;;;;;;;;;;;;;;;;52688:69::o:0;53552:237::-;7270:13;:11;:13::i;:::-;53653:15:::1;53638:12;:30;53630:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;53769:12;53751:15;:30;;;;53552:237:::0;:::o;49399:29::-;;;;:::o;51039:321::-;7270:13;:11;:13::i;:::-;51146:1:::1;51137:8;;:10;51129:19;;;::::0;::::1;;51185:8;;51167:9;:16;:26;;51159:35;;;::::0;::::1;;51210:6;51205:148;51226:9;:16;51222:1;:20;51205:148;;;51264:49;51274:9;51284:1;51274:12;;;;;;;;:::i;:::-;;;;;;;;51311:1;51300:8;;51288:9;;:20;;;;:::i;:::-;:24;;;;:::i;:::-;51264:9;:49::i;:::-;51340:1;51328:8;;:13;;;;;;;:::i;:::-;;;;;;;;51244:3;;;;;:::i;:::-;;;;51205:148;;;;51039:321:::0;:::o;54313:100::-;7270:13;:11;:13::i;:::-;54397:8:::1;54383:11;:22;;;;54313:100:::0;:::o;32379:323::-;32553:41;32572:12;:10;:12::i;:::-;32586:7;32553:18;:41::i;:::-;32545:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;32656:38;32670:4;32676:2;32680:7;32689:4;32656:13;:38::i;:::-;32379:323;;;;:::o;53139:93::-;7270:13;:11;:13::i;:::-;53220:4:::1;53196:21;;:28;;;;;;;;;;;;;;;;;;53139:93::o:0;49605:41::-;;;;;;;;;;;;;:::o;49159:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51960:720::-;52078:13;52131:16;52139:7;52131;:16::i;:::-;52109:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;52248:5;52236:17;;:8;;;;;;;;;;;:17;;;52233:70;;;52277:14;52270:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52233:70;52313:28;52344:10;:8;:10::i;:::-;52313:41;;52416:1;52391:14;52385:28;:32;:287;;;;;;;;;;;;;;;;;52509:14;52550:18;:7;:16;:18::i;:::-;52595:13;52466:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52385:287;52365:307;;;51960:720;;;;:::o;49287:32::-;;;;:::o;54533:151::-;7270:13;:11;:13::i;:::-;54659:17:::1;54643:13;:33;;;;;;;;;;;;:::i;:::-;;54533:151:::0;:::o;51372:182::-;7270:13;:11;:13::i;:::-;51485:1:::1;51476:8;;:10;51468:19;;;::::0;::::1;;51498:24;51508:3;51513:8;51498:9;:24::i;:::-;51545:1;51533:8;;:13;;;;;;;:::i;:::-;;;;;;;;51372:182:::0;;:::o;53797:95::-;7270:13;:11;:13::i;:::-;53880:4:::1;53855:22;;:29;;;;;;;;;;;;;;;;;;53797:95::o:0;31485:164::-;31582:4;31606:18;:25;31625:5;31606:25;;;;;;;;;;;;;;;:35;31632:8;31606:35;;;;;;;;;;;;;;;;;;;;;;;;;31599:42;;31485:164;;;;:::o;52899:234::-;7270:13;:11;:13::i;:::-;52999:15:::1;52984:12;:30;52976:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;53113:12;53096:14;:29;;;;52899:234:::0;:::o;52765:126::-;7270:13;:11;:13::i;:::-;52868:15:::1;52851:14;:32;;;;;;;;;;;;:::i;:::-;;52765:126:::0;:::o;8290:201::-;7270:13;:11;:13::i;:::-;8399:1:::1;8379:22;;:8;:22;;;;8371:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8455:28;8474:8;8455:18;:28::i;:::-;8290:201:::0;:::o;28576:305::-;28678:4;28730:25;28715:40;;;:11;:40;;;;:105;;;;28787:33;28772:48;;;:11;:48;;;;28715:105;:158;;;;28837:36;28861:11;28837:23;:36::i;:::-;28715:158;28695:178;;28576:305;;;:::o;7549:132::-;7624:12;:10;:12::i;:::-;7613:23;;:7;:5;:7::i;:::-;:23;;;7605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7549:132::o;38991:135::-;39073:16;39081:7;39073;:16::i;:::-;39065:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;38991:135;:::o;5935:98::-;5988:7;6015:10;6008:17;;5935:98;:::o;38270:174::-;38372:2;38345:15;:24;38361:7;38345:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38428:7;38424:2;38390:46;;38399:23;38414:7;38399:14;:23::i;:::-;38390:46;;;;;;;;;;;;38270:174;;:::o;34503:264::-;34596:4;34613:13;34629:23;34644:7;34629:14;:23::i;:::-;34613:39;;34682:5;34671:16;;:7;:16;;;:52;;;;34691:32;34708:5;34715:7;34691:16;:32::i;:::-;34671:52;:87;;;;34751:7;34727:31;;:20;34739:7;34727:11;:20::i;:::-;:31;;;34671:87;34663:96;;;34503:264;;;;:::o;37526:625::-;37685:4;37658:31;;:23;37673:7;37658:14;:23::i;:::-;:31;;;37650:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37764:1;37750:16;;:2;:16;;;;37742:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37820:39;37841:4;37847:2;37851:7;37820:20;:39::i;:::-;37924:29;37941:1;37945:7;37924:8;:29::i;:::-;37985:1;37966:9;:15;37976:4;37966:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38014:1;37997:9;:13;38007:2;37997:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38045:2;38026:7;:16;38034:7;38026:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38084:7;38080:2;38065:27;;38074:4;38065:27;;;;;;;;;;;;38105:38;38125:4;38131:2;38135:7;38105:19;:38::i;:::-;37526:625;;;:::o;35109:110::-;35185:26;35195:2;35199:7;35185:26;;;;;;;;;;;;:9;:26::i;:::-;35109:110;;:::o;8651:191::-;8725:16;8744:6;;;;;;;;;;;8725:25;;8770:8;8761:6;;:17;;;;;;;;;;;;;;;;;;8825:8;8794:40;;8815:8;8794:40;;;;;;;;;;;;8714:128;8651:191;:::o;38587:315::-;38742:8;38733:17;;:5;:17;;;;38725:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;38829:8;38791:18;:25;38810:5;38791:25;;;;;;;;;;;;;;;:35;38817:8;38791:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38875:8;38853:41;;38868:5;38853:41;;;38885:8;38853:41;;;;;;:::i;:::-;;;;;;;;38587:315;;;:::o;33583:313::-;33739:28;33749:4;33755:2;33759:7;33739:9;:28::i;:::-;33786:47;33809:4;33815:2;33819:7;33828:4;33786:22;:47::i;:::-;33778:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;33583:313;;;;:::o;34209:127::-;34274:4;34326:1;34298:30;;:7;:16;34306:7;34298:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34291:37;;34209:127;;;:::o;50007:108::-;50067:13;50100:7;50093:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50007:108;:::o;3189:723::-;3245:13;3475:1;3466:5;:10;3462:53;;;3493:10;;;;;;;;;;;;;;;;;;;;;3462:53;3525:12;3540:5;3525:20;;3556:14;3581:78;3596:1;3588:4;:9;3581:78;;3614:8;;;;;:::i;:::-;;;;3645:2;3637:10;;;;;:::i;:::-;;;3581:78;;;3669:19;3701:6;3691:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3669:39;;3719:154;3735:1;3726:5;:10;3719:154;;3763:1;3753:11;;;;;:::i;:::-;;;3830:2;3822:5;:10;;;;:::i;:::-;3809:2;:24;;;;:::i;:::-;3796:39;;3779:6;3786;3779:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3859:2;3850:11;;;;;:::i;:::-;;;3719:154;;;3897:6;3883:21;;;;;3189:723;;;;:::o;20238:157::-;20323:4;20362:25;20347:40;;;:11;:40;;;;20340:47;;20238:157;;;:::o;44445:589::-;44589:45;44616:4;44622:2;44626:7;44589:26;:45::i;:::-;44667:1;44651:18;;:4;:18;;;44647:187;;;44686:40;44718:7;44686:31;:40::i;:::-;44647:187;;;44756:2;44748:10;;:4;:10;;;44744:90;;44775:47;44808:4;44814:7;44775:32;:47::i;:::-;44744:90;44647:187;44862:1;44848:16;;:2;:16;;;44844:183;;;44881:45;44918:7;44881:36;:45::i;:::-;44844:183;;;44954:4;44948:10;;:2;:10;;;44944:83;;44975:40;45003:2;45007:7;44975:27;:40::i;:::-;44944:83;44844:183;44445:589;;;:::o;41626:125::-;;;;:::o;35446:319::-;35575:18;35581:2;35585:7;35575:5;:18::i;:::-;35626:53;35657:1;35661:2;35665:7;35674:4;35626:22;:53::i;:::-;35604:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;35446:319;;;:::o;39690:853::-;39844:4;39865:15;:2;:13;;;:15::i;:::-;39861:675;;;39917:2;39901:36;;;39938:12;:10;:12::i;:::-;39952:4;39958:7;39967:4;39901:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39897:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40159:1;40142:6;:13;:18;40138:328;;;40185:60;;;;;;;;;;:::i;:::-;;;;;;;;40138:328;40416:6;40410:13;40401:6;40397:2;40393:15;40386:38;39897:584;40033:41;;;40023:51;;;:6;:51;;;;40016:58;;;;;39861:675;40520:4;40513:11;;39690:853;;;;;;;:::o;41115:126::-;;;;:::o;45757:164::-;45861:10;:17;;;;45834:15;:24;45850:7;45834:24;;;;;;;;;;;:44;;;;45889:10;45905:7;45889:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45757:164;:::o;46548:988::-;46814:22;46864:1;46839:22;46856:4;46839:16;:22::i;:::-;:26;;;;:::i;:::-;46814:51;;46876:18;46897:17;:26;46915:7;46897:26;;;;;;;;;;;;46876:47;;47044:14;47030:10;:28;47026:328;;47075:19;47097:12;:18;47110:4;47097:18;;;;;;;;;;;;;;;:34;47116:14;47097:34;;;;;;;;;;;;47075:56;;47181:11;47148:12;:18;47161:4;47148:18;;;;;;;;;;;;;;;:30;47167:10;47148:30;;;;;;;;;;;:44;;;;47298:10;47265:17;:30;47283:11;47265:30;;;;;;;;;;;:43;;;;47060:294;47026:328;47450:17;:26;47468:7;47450:26;;;;;;;;;;;47443:33;;;47494:12;:18;47507:4;47494:18;;;;;;;;;;;;;;;:34;47513:14;47494:34;;;;;;;;;;;47487:41;;;46629:907;;46548:988;;:::o;47831:1079::-;48084:22;48129:1;48109:10;:17;;;;:21;;;;:::i;:::-;48084:46;;48141:18;48162:15;:24;48178:7;48162:24;;;;;;;;;;;;48141:45;;48513:19;48535:10;48546:14;48535:26;;;;;;;;:::i;:::-;;;;;;;;;;48513:48;;48599:11;48574:10;48585;48574:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;48710:10;48679:15;:28;48695:11;48679:28;;;;;;;;;;;:41;;;;48851:15;:24;48867:7;48851:24;;;;;;;;;;;48844:31;;;48886:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47902:1008;;;47831:1079;:::o;45335:221::-;45420:14;45437:20;45454:2;45437:16;:20::i;:::-;45420:37;;45495:7;45468:12;:16;45481:2;45468:16;;;;;;;;;;;;;;;:24;45485:6;45468:24;;;;;;;;;;;:34;;;;45542:6;45513:17;:26;45531:7;45513:26;;;;;;;;;;;:35;;;;45409:147;45335:221;;:::o;36101:439::-;36195:1;36181:16;;:2;:16;;;;36173:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36254:16;36262:7;36254;:16::i;:::-;36253:17;36245:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36316:45;36345:1;36349:2;36353:7;36316:20;:45::i;:::-;36391:1;36374:9;:13;36384:2;36374:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36422:2;36403:7;:16;36411:7;36403:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36467:7;36463:2;36442:33;;36459:1;36442:33;;;;;;;;;;;;36488:44;36516:1;36520:2;36524:7;36488:19;:44::i;:::-;36101:439;;:::o;10082:326::-;10142:4;10399:1;10377:7;:19;;;:23;10370:30;;10082:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:179::-;9239:10;9260:46;9302:3;9294:6;9260:46;:::i;:::-;9338:4;9333:3;9329:14;9315:28;;9170:179;;;;:::o;9355:118::-;9442:24;9460:5;9442:24;:::i;:::-;9437:3;9430:37;9355:118;;:::o;9509:732::-;9628:3;9657:54;9705:5;9657:54;:::i;:::-;9727:86;9806:6;9801:3;9727:86;:::i;:::-;9720:93;;9837:56;9887:5;9837:56;:::i;:::-;9916:7;9947:1;9932:284;9957:6;9954:1;9951:13;9932:284;;;10033:6;10027:13;10060:63;10119:3;10104:13;10060:63;:::i;:::-;10053:70;;10146:60;10199:6;10146:60;:::i;:::-;10136:70;;9992:224;9979:1;9976;9972:9;9967:14;;9932:284;;;9936:14;10232:3;10225:10;;9633:608;;;9509:732;;;;:::o;10247:109::-;10328:21;10343:5;10328:21;:::i;:::-;10323:3;10316:34;10247:109;;:::o;10362:360::-;10448:3;10476:38;10508:5;10476:38;:::i;:::-;10530:70;10593:6;10588:3;10530:70;:::i;:::-;10523:77;;10609:52;10654:6;10649:3;10642:4;10635:5;10631:16;10609:52;:::i;:::-;10686:29;10708:6;10686:29;:::i;:::-;10681:3;10677:39;10670:46;;10452:270;10362:360;;;;:::o;10728:364::-;10816:3;10844:39;10877:5;10844:39;:::i;:::-;10899:71;10963:6;10958:3;10899:71;:::i;:::-;10892:78;;10979:52;11024:6;11019:3;11012:4;11005:5;11001:16;10979:52;:::i;:::-;11056:29;11078:6;11056:29;:::i;:::-;11051:3;11047:39;11040:46;;10820:272;10728:364;;;;:::o;11098:377::-;11204:3;11232:39;11265:5;11232:39;:::i;:::-;11287:89;11369:6;11364:3;11287:89;:::i;:::-;11280:96;;11385:52;11430:6;11425:3;11418:4;11411:5;11407:16;11385:52;:::i;:::-;11462:6;11457:3;11453:16;11446:23;;11208:267;11098:377;;;;:::o;11505:845::-;11608:3;11645:5;11639:12;11674:36;11700:9;11674:36;:::i;:::-;11726:89;11808:6;11803:3;11726:89;:::i;:::-;11719:96;;11846:1;11835:9;11831:17;11862:1;11857:137;;;;12008:1;12003:341;;;;11824:520;;11857:137;11941:4;11937:9;11926;11922:25;11917:3;11910:38;11977:6;11972:3;11968:16;11961:23;;11857:137;;12003:341;12070:38;12102:5;12070:38;:::i;:::-;12130:1;12144:154;12158:6;12155:1;12152:13;12144:154;;;12232:7;12226:14;12222:1;12217:3;12213:11;12206:35;12282:1;12273:7;12269:15;12258:26;;12180:4;12177:1;12173:12;12168:17;;12144:154;;;12327:6;12322:3;12318:16;12311:23;;12010:334;;11824:520;;11612:738;;11505:845;;;;:::o;12356:366::-;12498:3;12519:67;12583:2;12578:3;12519:67;:::i;:::-;12512:74;;12595:93;12684:3;12595:93;:::i;:::-;12713:2;12708:3;12704:12;12697:19;;12356:366;;;:::o;12728:::-;12870:3;12891:67;12955:2;12950:3;12891:67;:::i;:::-;12884:74;;12967:93;13056:3;12967:93;:::i;:::-;13085:2;13080:3;13076:12;13069:19;;12728:366;;;:::o;13100:::-;13242:3;13263:67;13327:2;13322:3;13263:67;:::i;:::-;13256:74;;13339:93;13428:3;13339:93;:::i;:::-;13457:2;13452:3;13448:12;13441:19;;13100:366;;;:::o;13472:::-;13614:3;13635:67;13699:2;13694:3;13635:67;:::i;:::-;13628:74;;13711:93;13800:3;13711:93;:::i;:::-;13829:2;13824:3;13820:12;13813:19;;13472:366;;;:::o;13844:::-;13986:3;14007:67;14071:2;14066:3;14007:67;:::i;:::-;14000:74;;14083:93;14172:3;14083:93;:::i;:::-;14201:2;14196:3;14192:12;14185:19;;13844:366;;;:::o;14216:::-;14358:3;14379:67;14443:2;14438:3;14379:67;:::i;:::-;14372:74;;14455:93;14544:3;14455:93;:::i;:::-;14573:2;14568:3;14564:12;14557:19;;14216:366;;;:::o;14588:::-;14730:3;14751:67;14815:2;14810:3;14751:67;:::i;:::-;14744:74;;14827:93;14916:3;14827:93;:::i;:::-;14945:2;14940:3;14936:12;14929:19;;14588:366;;;:::o;14960:::-;15102:3;15123:67;15187:2;15182:3;15123:67;:::i;:::-;15116:74;;15199:93;15288:3;15199:93;:::i;:::-;15317:2;15312:3;15308:12;15301:19;;14960:366;;;:::o;15332:::-;15474:3;15495:67;15559:2;15554:3;15495:67;:::i;:::-;15488:74;;15571:93;15660:3;15571:93;:::i;:::-;15689:2;15684:3;15680:12;15673:19;;15332:366;;;:::o;15704:::-;15846:3;15867:67;15931:2;15926:3;15867:67;:::i;:::-;15860:74;;15943:93;16032:3;15943:93;:::i;:::-;16061:2;16056:3;16052:12;16045:19;;15704:366;;;:::o;16076:::-;16218:3;16239:67;16303:2;16298:3;16239:67;:::i;:::-;16232:74;;16315:93;16404:3;16315:93;:::i;:::-;16433:2;16428:3;16424:12;16417:19;;16076:366;;;:::o;16448:::-;16590:3;16611:67;16675:2;16670:3;16611:67;:::i;:::-;16604:74;;16687:93;16776:3;16687:93;:::i;:::-;16805:2;16800:3;16796:12;16789:19;;16448:366;;;:::o;16820:::-;16962:3;16983:67;17047:2;17042:3;16983:67;:::i;:::-;16976:74;;17059:93;17148:3;17059:93;:::i;:::-;17177:2;17172:3;17168:12;17161:19;;16820:366;;;:::o;17192:::-;17334:3;17355:67;17419:2;17414:3;17355:67;:::i;:::-;17348:74;;17431:93;17520:3;17431:93;:::i;:::-;17549:2;17544:3;17540:12;17533:19;;17192:366;;;:::o;17564:::-;17706:3;17727:67;17791:2;17786:3;17727:67;:::i;:::-;17720:74;;17803:93;17892:3;17803:93;:::i;:::-;17921:2;17916:3;17912:12;17905:19;;17564:366;;;:::o;17936:::-;18078:3;18099:67;18163:2;18158:3;18099:67;:::i;:::-;18092:74;;18175:93;18264:3;18175:93;:::i;:::-;18293:2;18288:3;18284:12;18277:19;;17936:366;;;:::o;18308:398::-;18467:3;18488:83;18569:1;18564:3;18488:83;:::i;:::-;18481:90;;18580:93;18669:3;18580:93;:::i;:::-;18698:1;18693:3;18689:11;18682:18;;18308:398;;;:::o;18712:366::-;18854:3;18875:67;18939:2;18934:3;18875:67;:::i;:::-;18868:74;;18951:93;19040:3;18951:93;:::i;:::-;19069:2;19064:3;19060:12;19053:19;;18712:366;;;:::o;19084:::-;19226:3;19247:67;19311:2;19306:3;19247:67;:::i;:::-;19240:74;;19323:93;19412:3;19323:93;:::i;:::-;19441:2;19436:3;19432:12;19425:19;;19084:366;;;:::o;19456:108::-;19533:24;19551:5;19533:24;:::i;:::-;19528:3;19521:37;19456:108;;:::o;19570:118::-;19657:24;19675:5;19657:24;:::i;:::-;19652:3;19645:37;19570:118;;:::o;19694:589::-;19919:3;19941:95;20032:3;20023:6;19941:95;:::i;:::-;19934:102;;20053:95;20144:3;20135:6;20053:95;:::i;:::-;20046:102;;20165:92;20253:3;20244:6;20165:92;:::i;:::-;20158:99;;20274:3;20267:10;;19694:589;;;;;;:::o;20289:379::-;20473:3;20495:147;20638:3;20495:147;:::i;:::-;20488:154;;20659:3;20652:10;;20289:379;;;:::o;20674:222::-;20767:4;20805:2;20794:9;20790:18;20782:26;;20818:71;20886:1;20875:9;20871:17;20862:6;20818:71;:::i;:::-;20674:222;;;;:::o;20902:640::-;21097:4;21135:3;21124:9;21120:19;21112:27;;21149:71;21217:1;21206:9;21202:17;21193:6;21149:71;:::i;:::-;21230:72;21298:2;21287:9;21283:18;21274:6;21230:72;:::i;:::-;21312;21380:2;21369:9;21365:18;21356:6;21312:72;:::i;:::-;21431:9;21425:4;21421:20;21416:2;21405:9;21401:18;21394:48;21459:76;21530:4;21521:6;21459:76;:::i;:::-;21451:84;;20902:640;;;;;;;:::o;21548:373::-;21691:4;21729:2;21718:9;21714:18;21706:26;;21778:9;21772:4;21768:20;21764:1;21753:9;21749:17;21742:47;21806:108;21909:4;21900:6;21806:108;:::i;:::-;21798:116;;21548:373;;;;:::o;21927:210::-;22014:4;22052:2;22041:9;22037:18;22029:26;;22065:65;22127:1;22116:9;22112:17;22103:6;22065:65;:::i;:::-;21927:210;;;;:::o;22143:313::-;22256:4;22294:2;22283:9;22279:18;22271:26;;22343:9;22337:4;22333:20;22329:1;22318:9;22314:17;22307:47;22371:78;22444:4;22435:6;22371:78;:::i;:::-;22363:86;;22143:313;;;;:::o;22462:419::-;22628:4;22666:2;22655:9;22651:18;22643:26;;22715:9;22709:4;22705:20;22701:1;22690:9;22686:17;22679:47;22743:131;22869:4;22743:131;:::i;:::-;22735:139;;22462:419;;;:::o;22887:::-;23053:4;23091:2;23080:9;23076:18;23068:26;;23140:9;23134:4;23130:20;23126:1;23115:9;23111:17;23104:47;23168:131;23294:4;23168:131;:::i;:::-;23160:139;;22887:419;;;:::o;23312:::-;23478:4;23516:2;23505:9;23501:18;23493:26;;23565:9;23559:4;23555:20;23551:1;23540:9;23536:17;23529:47;23593:131;23719:4;23593:131;:::i;:::-;23585:139;;23312:419;;;:::o;23737:::-;23903:4;23941:2;23930:9;23926:18;23918:26;;23990:9;23984:4;23980:20;23976:1;23965:9;23961:17;23954:47;24018:131;24144:4;24018:131;:::i;:::-;24010:139;;23737:419;;;:::o;24162:::-;24328:4;24366:2;24355:9;24351:18;24343:26;;24415:9;24409:4;24405:20;24401:1;24390:9;24386:17;24379:47;24443:131;24569:4;24443:131;:::i;:::-;24435:139;;24162:419;;;:::o;24587:::-;24753:4;24791:2;24780:9;24776:18;24768:26;;24840:9;24834:4;24830:20;24826:1;24815:9;24811:17;24804:47;24868:131;24994:4;24868:131;:::i;:::-;24860:139;;24587:419;;;:::o;25012:::-;25178:4;25216:2;25205:9;25201:18;25193:26;;25265:9;25259:4;25255:20;25251:1;25240:9;25236:17;25229:47;25293:131;25419:4;25293:131;:::i;:::-;25285:139;;25012:419;;;:::o;25437:::-;25603:4;25641:2;25630:9;25626:18;25618:26;;25690:9;25684:4;25680:20;25676:1;25665:9;25661:17;25654:47;25718:131;25844:4;25718:131;:::i;:::-;25710:139;;25437:419;;;:::o;25862:::-;26028:4;26066:2;26055:9;26051:18;26043:26;;26115:9;26109:4;26105:20;26101:1;26090:9;26086:17;26079:47;26143:131;26269:4;26143:131;:::i;:::-;26135:139;;25862:419;;;:::o;26287:::-;26453:4;26491:2;26480:9;26476:18;26468:26;;26540:9;26534:4;26530:20;26526:1;26515:9;26511:17;26504:47;26568:131;26694:4;26568:131;:::i;:::-;26560:139;;26287:419;;;:::o;26712:::-;26878:4;26916:2;26905:9;26901:18;26893:26;;26965:9;26959:4;26955:20;26951:1;26940:9;26936:17;26929:47;26993:131;27119:4;26993:131;:::i;:::-;26985:139;;26712:419;;;:::o;27137:::-;27303:4;27341:2;27330:9;27326:18;27318:26;;27390:9;27384:4;27380:20;27376:1;27365:9;27361:17;27354:47;27418:131;27544:4;27418:131;:::i;:::-;27410:139;;27137:419;;;:::o;27562:::-;27728:4;27766:2;27755:9;27751:18;27743:26;;27815:9;27809:4;27805:20;27801:1;27790:9;27786:17;27779:47;27843:131;27969:4;27843:131;:::i;:::-;27835:139;;27562:419;;;:::o;27987:::-;28153:4;28191:2;28180:9;28176:18;28168:26;;28240:9;28234:4;28230:20;28226:1;28215:9;28211:17;28204:47;28268:131;28394:4;28268:131;:::i;:::-;28260:139;;27987:419;;;:::o;28412:::-;28578:4;28616:2;28605:9;28601:18;28593:26;;28665:9;28659:4;28655:20;28651:1;28640:9;28636:17;28629:47;28693:131;28819:4;28693:131;:::i;:::-;28685:139;;28412:419;;;:::o;28837:::-;29003:4;29041:2;29030:9;29026:18;29018:26;;29090:9;29084:4;29080:20;29076:1;29065:9;29061:17;29054:47;29118:131;29244:4;29118:131;:::i;:::-;29110:139;;28837:419;;;:::o;29262:::-;29428:4;29466:2;29455:9;29451:18;29443:26;;29515:9;29509:4;29505:20;29501:1;29490:9;29486:17;29479:47;29543:131;29669:4;29543:131;:::i;:::-;29535:139;;29262:419;;;:::o;29687:::-;29853:4;29891:2;29880:9;29876:18;29868:26;;29940:9;29934:4;29930:20;29926:1;29915:9;29911:17;29904:47;29968:131;30094:4;29968:131;:::i;:::-;29960:139;;29687:419;;;:::o;30112:222::-;30205:4;30243:2;30232:9;30228:18;30220:26;;30256:71;30324:1;30313:9;30309:17;30300:6;30256:71;:::i;:::-;30112:222;;;;:::o;30340:129::-;30374:6;30401:20;;:::i;:::-;30391:30;;30430:33;30458:4;30450:6;30430:33;:::i;:::-;30340:129;;;:::o;30475:75::-;30508:6;30541:2;30535:9;30525:19;;30475:75;:::o;30556:311::-;30633:4;30723:18;30715:6;30712:30;30709:56;;;30745:18;;:::i;:::-;30709:56;30795:4;30787:6;30783:17;30775:25;;30855:4;30849;30845:15;30837:23;;30556:311;;;:::o;30873:307::-;30934:4;31024:18;31016:6;31013:30;31010:56;;;31046:18;;:::i;:::-;31010:56;31084:29;31106:6;31084:29;:::i;:::-;31076:37;;31168:4;31162;31158:15;31150:23;;30873:307;;;:::o;31186:308::-;31248:4;31338:18;31330:6;31327:30;31324:56;;;31360:18;;:::i;:::-;31324:56;31398:29;31420:6;31398:29;:::i;:::-;31390:37;;31482:4;31476;31472:15;31464:23;;31186:308;;;:::o;31500:132::-;31567:4;31590:3;31582:11;;31620:4;31615:3;31611:14;31603:22;;31500:132;;;:::o;31638:141::-;31687:4;31710:3;31702:11;;31733:3;31730:1;31723:14;31767:4;31764:1;31754:18;31746:26;;31638:141;;;:::o;31785:114::-;31852:6;31886:5;31880:12;31870:22;;31785:114;;;:::o;31905:98::-;31956:6;31990:5;31984:12;31974:22;;31905:98;;;:::o;32009:99::-;32061:6;32095:5;32089:12;32079:22;;32009:99;;;:::o;32114:113::-;32184:4;32216;32211:3;32207:14;32199:22;;32114:113;;;:::o;32233:184::-;32332:11;32366:6;32361:3;32354:19;32406:4;32401:3;32397:14;32382:29;;32233:184;;;;:::o;32423:168::-;32506:11;32540:6;32535:3;32528:19;32580:4;32575:3;32571:14;32556:29;;32423:168;;;;:::o;32597:147::-;32698:11;32735:3;32720:18;;32597:147;;;;:::o;32750:169::-;32834:11;32868:6;32863:3;32856:19;32908:4;32903:3;32899:14;32884:29;;32750:169;;;;:::o;32925:148::-;33027:11;33064:3;33049:18;;32925:148;;;;:::o;33079:305::-;33119:3;33138:20;33156:1;33138:20;:::i;:::-;33133:25;;33172:20;33190:1;33172:20;:::i;:::-;33167:25;;33326:1;33258:66;33254:74;33251:1;33248:81;33245:107;;;33332:18;;:::i;:::-;33245:107;33376:1;33373;33369:9;33362:16;;33079:305;;;;:::o;33390:185::-;33430:1;33447:20;33465:1;33447:20;:::i;:::-;33442:25;;33481:20;33499:1;33481:20;:::i;:::-;33476:25;;33520:1;33510:35;;33525:18;;:::i;:::-;33510:35;33567:1;33564;33560:9;33555:14;;33390:185;;;;:::o;33581:348::-;33621:7;33644:20;33662:1;33644:20;:::i;:::-;33639:25;;33678:20;33696:1;33678:20;:::i;:::-;33673:25;;33866:1;33798:66;33794:74;33791:1;33788:81;33783:1;33776:9;33769:17;33765:105;33762:131;;;33873:18;;:::i;:::-;33762:131;33921:1;33918;33914:9;33903:20;;33581:348;;;;:::o;33935:191::-;33975:4;33995:20;34013:1;33995:20;:::i;:::-;33990:25;;34029:20;34047:1;34029:20;:::i;:::-;34024:25;;34068:1;34065;34062:8;34059:34;;;34073:18;;:::i;:::-;34059:34;34118:1;34115;34111:9;34103:17;;33935:191;;;;:::o;34132:96::-;34169:7;34198:24;34216:5;34198:24;:::i;:::-;34187:35;;34132:96;;;:::o;34234:90::-;34268:7;34311:5;34304:13;34297:21;34286:32;;34234:90;;;:::o;34330:149::-;34366:7;34406:66;34399:5;34395:78;34384:89;;34330:149;;;:::o;34485:126::-;34522:7;34562:42;34555:5;34551:54;34540:65;;34485:126;;;:::o;34617:77::-;34654:7;34683:5;34672:16;;34617:77;;;:::o;34700:154::-;34784:6;34779:3;34774;34761:30;34846:1;34837:6;34832:3;34828:16;34821:27;34700:154;;;:::o;34860:307::-;34928:1;34938:113;34952:6;34949:1;34946:13;34938:113;;;35037:1;35032:3;35028:11;35022:18;35018:1;35013:3;35009:11;35002:39;34974:2;34971:1;34967:10;34962:15;;34938:113;;;35069:6;35066:1;35063:13;35060:101;;;35149:1;35140:6;35135:3;35131:16;35124:27;35060:101;34909:258;34860:307;;;:::o;35173:320::-;35217:6;35254:1;35248:4;35244:12;35234:22;;35301:1;35295:4;35291:12;35322:18;35312:81;;35378:4;35370:6;35366:17;35356:27;;35312:81;35440:2;35432:6;35429:14;35409:18;35406:38;35403:84;;;35459:18;;:::i;:::-;35403:84;35224:269;35173:320;;;:::o;35499:281::-;35582:27;35604:4;35582:27;:::i;:::-;35574:6;35570:40;35712:6;35700:10;35697:22;35676:18;35664:10;35661:34;35658:62;35655:88;;;35723:18;;:::i;:::-;35655:88;35763:10;35759:2;35752:22;35542:238;35499:281;;:::o;35786:233::-;35825:3;35848:24;35866:5;35848:24;:::i;:::-;35839:33;;35894:66;35887:5;35884:77;35881:103;;;35964:18;;:::i;:::-;35881:103;36011:1;36004:5;36000:13;35993:20;;35786:233;;;:::o;36025:176::-;36057:1;36074:20;36092:1;36074:20;:::i;:::-;36069:25;;36108:20;36126:1;36108:20;:::i;:::-;36103:25;;36147:1;36137:35;;36152:18;;:::i;:::-;36137:35;36193:1;36190;36186:9;36181:14;;36025:176;;;;:::o;36207:180::-;36255:77;36252:1;36245:88;36352:4;36349:1;36342:15;36376:4;36373:1;36366:15;36393:180;36441:77;36438:1;36431:88;36538:4;36535:1;36528:15;36562:4;36559:1;36552:15;36579:180;36627:77;36624:1;36617:88;36724:4;36721:1;36714:15;36748:4;36745:1;36738:15;36765:180;36813:77;36810:1;36803:88;36910:4;36907:1;36900:15;36934:4;36931:1;36924:15;36951:180;36999:77;36996:1;36989:88;37096:4;37093:1;37086:15;37120:4;37117:1;37110:15;37137:180;37185:77;37182:1;37175:88;37282:4;37279:1;37272:15;37306:4;37303:1;37296:15;37323:117;37432:1;37429;37422:12;37446:117;37555:1;37552;37545:12;37569:117;37678:1;37675;37668:12;37692:117;37801:1;37798;37791:12;37815:117;37924:1;37921;37914:12;37938:102;37979:6;38030:2;38026:7;38021:2;38014:5;38010:14;38006:28;37996:38;;37938:102;;;:::o;38046:290::-;38186:34;38182:1;38174:6;38170:14;38163:58;38255:34;38250:2;38242:6;38238:15;38231:59;38324:4;38319:2;38311:6;38307:15;38300:29;38046:290;:::o;38342:291::-;38482:34;38478:1;38470:6;38466:14;38459:58;38551:34;38546:2;38538:6;38534:15;38527:59;38620:5;38615:2;38607:6;38603:15;38596:30;38342:291;:::o;38639:230::-;38779:34;38775:1;38767:6;38763:14;38756:58;38848:13;38843:2;38835:6;38831:15;38824:38;38639:230;:::o;38875:237::-;39015:34;39011:1;39003:6;38999:14;38992:58;39084:20;39079:2;39071:6;39067:15;39060:45;38875:237;:::o;39118:225::-;39258:34;39254:1;39246:6;39242:14;39235:58;39327:8;39322:2;39314:6;39310:15;39303:33;39118:225;:::o;39349:224::-;39489:34;39485:1;39477:6;39473:14;39466:58;39558:7;39553:2;39545:6;39541:15;39534:32;39349:224;:::o;39579:178::-;39719:30;39715:1;39707:6;39703:14;39696:54;39579:178;:::o;39763:223::-;39903:34;39899:1;39891:6;39887:14;39880:58;39972:6;39967:2;39959:6;39955:15;39948:31;39763:223;:::o;39992:175::-;40132:27;40128:1;40120:6;40116:14;40109:51;39992:175;:::o;40173:228::-;40313:34;40309:1;40301:6;40297:14;40290:58;40382:11;40377:2;40369:6;40365:15;40358:36;40173:228;:::o;40407:249::-;40547:34;40543:1;40535:6;40531:14;40524:58;40616:32;40611:2;40603:6;40599:15;40592:57;40407:249;:::o;40662:182::-;40802:34;40798:1;40790:6;40786:14;40779:58;40662:182;:::o;40850:::-;40990:34;40986:1;40978:6;40974:14;40967:58;40850:182;:::o;41038:234::-;41178:34;41174:1;41166:6;41162:14;41155:58;41247:17;41242:2;41234:6;41230:15;41223:42;41038:234;:::o;41278:174::-;41418:26;41414:1;41406:6;41402:14;41395:50;41278:174;:::o;41458:220::-;41598:34;41594:1;41586:6;41582:14;41575:58;41667:3;41662:2;41654:6;41650:15;41643:28;41458:220;:::o;41684:114::-;;:::o;41804:231::-;41944:34;41940:1;41932:6;41928:14;41921:58;42013:14;42008:2;42000:6;41996:15;41989:39;41804:231;:::o;42041:233::-;42181:34;42177:1;42169:6;42165:14;42158:58;42250:16;42245:2;42237:6;42233:15;42226:41;42041:233;:::o;42280:122::-;42353:24;42371:5;42353:24;:::i;:::-;42346:5;42343:35;42333:63;;42392:1;42389;42382:12;42333:63;42280:122;:::o;42408:116::-;42478:21;42493:5;42478:21;:::i;:::-;42471:5;42468:32;42458:60;;42514:1;42511;42504:12;42458:60;42408:116;:::o;42530:120::-;42602:23;42619:5;42602:23;:::i;:::-;42595:5;42592:34;42582:62;;42640:1;42637;42630:12;42582:62;42530:120;:::o;42656:122::-;42729:24;42747:5;42729:24;:::i;:::-;42722:5;42719:35;42709:63;;42768:1;42765;42758:12;42709:63;42656:122;:::o

Swarm Source

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