ETH Price: $3,274.37 (-3.99%)
Gas: 15 Gwei

Token

dragowtf (dragowtf)
 

Overview

Max Total Supply

10,000 dragowtf

Holders

2,061

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 dragowtf
0x42e0c5cab6714366a44aab5ec4657ff96328bf0b
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:
dragowtf

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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 v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

// File: contracts/drago.sol



pragma solidity ^0.8.4;




contract dragowtf is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    uint256 public PRICE;
    uint256 public MAX_SUPPLY;
    string private BASE_URI;
    uint256 public FREE_MINT_LIMIT_PER_WALLET;
    uint256 public MAX_MINT_AMOUNT_PER_TX;
    bool public IS_SALE_ACTIVE;
    uint256 public FREE_MINT_IS_ALLOWED_UNTIL;
    bool public METADATA_FROZEN;

    mapping(address => uint256) private freeMintCountMap;

    constructor(
        uint256 price,
        uint256 maxSupply,
        string memory baseUri,
        uint256 freeMintAllowance,
        uint256 maxMintPerTx,
        bool isSaleActive,
        uint256 freeMintIsAllowedUntil
    ) ERC721A("dragowtf", "dragowtf") {
        PRICE = price;
        MAX_SUPPLY = maxSupply;
        BASE_URI = baseUri;
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
        IS_SALE_ACTIVE = isSaleActive;
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    function updateFreeMintCount(address minter, uint256 count) private {
        freeMintCountMap[minter] += count;
    }

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

    function setPrice(uint256 customPrice) external onlyOwner {
        PRICE = customPrice;
    }

    function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner {
        require(newMaxSupply < MAX_SUPPLY, "Invalid new max supply");
        require(newMaxSupply >= _currentIndex, "Invalid new max supply");
        MAX_SUPPLY = newMaxSupply;
    }

    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        require(!METADATA_FROZEN, "Metadata frozen!");
        BASE_URI = customBaseURI_;
    }

    function setFreeMintAllowance(uint256 freeMintAllowance)
        external
        onlyOwner
    {
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
    }

    function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner {
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
    }

    function setSaleActive(bool saleIsActive) external onlyOwner {
        IS_SALE_ACTIVE = saleIsActive;
    }

    function setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil)
        external
        onlyOwner
    {
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    function freezeMetadata() external onlyOwner {
        METADATA_FROZEN = true;
    }

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX,
            "Invalid mint amount!"
        );
        require(
            _currentIndex + _mintAmount <= MAX_SUPPLY,
            "Max supply exceeded!"
        );
        _;
    }

    function freeMint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(IS_SALE_ACTIVE, "Sale is not active!");

        uint256 price = PRICE * _mintAmount;

        if (_currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) {
            uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET -
                freeMintCountMap[msg.sender];
            if (remainingFreeMint > 0) {
                if (_mintAmount >= remainingFreeMint) {
                    price -= remainingFreeMint * PRICE;
                    updateFreeMintCount(msg.sender, remainingFreeMint);
                } else {
                    price -= _mintAmount * PRICE;
                    updateFreeMintCount(msg.sender, _mintAmount);
                }
            }
        }

        require(msg.value >= price, "Insufficient funds!");

        _safeMint(msg.sender, _mintAmount);
    }

    function mintOwner(address _to, uint256 _mintAmount) public onlyOwner {
        require(
            _currentIndex + _mintAmount <= MAX_SUPPLY,
            "Max supply exceeded!"
        );

        _safeMint(_to, _mintAmount);
    }

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;

        Address.sendValue(
            payable(0x30F81d50C92916433084eE6b30772d66236D7Ff7),
            balance
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","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":"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620044b2380380620044b2833981810160405281019062000037919062000510565b6040518060400160405280600881526020017f647261676f7774660000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f647261676f7774660000000000000000000000000000000000000000000000008152508160029080519060200190620000bb9291906200024b565b508060039080519060200190620000d49291906200024b565b50620000e56200017860201b60201c565b60008190555050506200010d620001016200017d60201b60201c565b6200018560201b60201c565b600160098190555086600a8190555085600b8190555084600c90805190602001906200013b9291906200024b565b5083600d8190555082600e8190555081600f60006101000a81548160ff021916908315150217905550806010819055505050505050505062000646565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002599062000611565b90600052602060002090601f0160209004810192826200027d5760008555620002c9565b82601f106200029857805160ff1916838001178555620002c9565b82800160010185558215620002c9579182015b82811115620002c8578251825591602001919060010190620002ab565b5b509050620002d89190620002dc565b5090565b5b80821115620002f7576000816000905550600101620002dd565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b62000324816200030f565b81146200033057600080fd5b50565b600081519050620003448162000319565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200039f8262000354565b810181811067ffffffffffffffff82111715620003c157620003c062000365565b5b80604052505050565b6000620003d6620002fb565b9050620003e4828262000394565b919050565b600067ffffffffffffffff82111562000407576200040662000365565b5b620004128262000354565b9050602081019050919050565b60005b838110156200043f57808201518184015260208101905062000422565b838111156200044f576000848401525b50505050565b60006200046c6200046684620003e9565b620003ca565b9050828152602081018484840111156200048b576200048a6200034f565b5b620004988482856200041f565b509392505050565b600082601f830112620004b857620004b76200034a565b5b8151620004ca84826020860162000455565b91505092915050565b60008115159050919050565b620004ea81620004d3565b8114620004f657600080fd5b50565b6000815190506200050a81620004df565b92915050565b600080600080600080600060e0888a03121562000532576200053162000305565b5b6000620005428a828b0162000333565b9750506020620005558a828b0162000333565b965050604088015167ffffffffffffffff8111156200057957620005786200030a565b5b620005878a828b01620004a0565b95505060606200059a8a828b0162000333565b9450506080620005ad8a828b0162000333565b93505060a0620005c08a828b01620004f9565b92505060c0620005d38a828b0162000333565b91505092959891949750929550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062a57607f821691505b60208210810362000640576200063f620005e2565b5b50919050565b613e5c80620006566000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638b85e43d116100e75780638b85e43d146105935780638d859f3e146105bc5780638da5cb5b146105e757806391b7f5ed1461061257806395d89b411461063b57610204565b8063715018a61461050c57806376d02b71146105235780637c928fe91461054e578063841718a61461056a57610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612e6d565b6107ef565b60405161023d9190612eb5565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612f69565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612fc1565b610963565b6040516102a5919061302f565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613076565b6109df565b005b3480156102e357600080fd5b506102ec610ae9565b6040516102f991906130c5565b60405180910390f35b34801561030e57600080fd5b50610317610aef565b60405161032491906130c5565b60405180910390f35b34801561033957600080fd5b50610342610af5565b60405161034f91906130c5565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906130e0565b610b0c565b005b34801561038d57600080fd5b50610396610b1c565b6040516103a391906130c5565b60405180910390f35b3480156103b857600080fd5b506103c1610b22565b005b3480156103cf57600080fd5b506103d8610c19565b6040516103e591906130c5565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613076565b610c1f565b005b34801561042357600080fd5b5061043e600480360381019061043991906130e0565b610cfb565b005b34801561044c57600080fd5b5061046760048036038101906104629190613268565b610d1b565b005b34801561047557600080fd5b50610490600480360381019061048b9190612fc1565b610e01565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612fc1565b610e87565b6040516104c6919061302f565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906132b1565b610e9d565b60405161050391906130c5565b60405180910390f35b34801561051857600080fd5b50610521610f6c565b005b34801561052f57600080fd5b50610538610ff4565b6040516105459190612eb5565b60405180910390f35b61056860048036038101906105639190612fc1565b611007565b005b34801561057657600080fd5b50610591600480360381019061058c919061330a565b61121e565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612fc1565b6112b7565b005b3480156105c857600080fd5b506105d161133d565b6040516105de91906130c5565b60405180910390f35b3480156105f357600080fd5b506105fc611343565b604051610609919061302f565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190612fc1565b61136d565b005b34801561064757600080fd5b506106506113f3565b60405161065d9190612f69565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190613337565b611485565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612fc1565b6115fc565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613418565b611682565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612fc1565b6116fe565b005b34801561071657600080fd5b50610731600480360381019061072c9190612fc1565b61180d565b60405161073e9190612f69565b60405180910390f35b34801561075357600080fd5b5061075c6118ab565b005b34801561076a57600080fd5b506107856004803603810190610780919061349b565b611944565b6040516107929190612eb5565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd91906132b1565b6119d8565b005b3480156107d057600080fd5b506107d9611acf565b6040516107e69190612eb5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611ae2565b5b9050919050565b6060600280546108e09061350a565b80601f016020809104026020016040519081016040528092919081815260200182805461090c9061350a565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611b4c565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610e87565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611b9a565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa25750610aa081610a9b611b9a565b611944565b155b15610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae4838383611ba2565b505050565b600e5481565b600d5481565b6000610aff611c54565b6001546000540303905090565b610b17838383611c59565b505050565b600b5481565b610b2a611b9a565b73ffffffffffffffffffffffffffffffffffffffff16610b48611343565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613587565b60405180910390fd5b600260095403610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906135f3565b60405180910390fd5b60026009819055506000479050610c0e7330f81d50c92916433084ee6b30772d66236d7ff78261210d565b506001600981905550565b60105481565b610c27611b9a565b73ffffffffffffffffffffffffffffffffffffffff16610c45611343565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290613587565b60405180910390fd5b600b5481600054610cac9190613642565b1115610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce4906136e4565b60405180910390fd5b610cf78282612201565b5050565b610d1683838360405180602001604052806000815250611682565b505050565b610d23611b9a565b73ffffffffffffffffffffffffffffffffffffffff16610d41611343565b73ffffffffffffffffffffffffffffffffffffffff1614610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90613587565b60405180910390fd5b601160009054906101000a900460ff1615610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90613750565b60405180910390fd5b80600c9080519060200190610dfd929190612d1b565b5050565b610e09611b9a565b73ffffffffffffffffffffffffffffffffffffffff16610e27611343565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490613587565b60405180910390fd5b80600e8190555050565b6000610e928261221f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f04576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f74611b9a565b73ffffffffffffffffffffffffffffffffffffffff16610f92611343565b73ffffffffffffffffffffffffffffffffffffffff1614610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90613587565b60405180910390fd5b610ff260006124ae565b565b600f60009054906101000a900460ff1681565b8060008111801561101a5750600e548111155b611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906137bc565b60405180910390fd5b600b548160005461106a9190613642565b11156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a2906136e4565b60405180910390fd5b600f60009054906101000a900460ff166110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190613828565b60405180910390fd5b600082600a5461110a9190613848565b905060105460005410156111cc576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d5461116791906138a2565b905060008111156111ca578084106111a357600a54816111879190613848565b8261119291906138a2565b915061119e3382612574565b6111c9565b600a54846111b19190613848565b826111bc91906138a2565b91506111c83385612574565b5b5b505b8034101561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613922565b60405180910390fd5b6112193384612201565b505050565b611226611b9a565b73ffffffffffffffffffffffffffffffffffffffff16611244611343565b73ffffffffffffffffffffffffffffffffffffffff161461129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190613587565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6112bf611b9a565b73ffffffffffffffffffffffffffffffffffffffff166112dd611343565b73ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90613587565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611375611b9a565b73ffffffffffffffffffffffffffffffffffffffff16611393611343565b73ffffffffffffffffffffffffffffffffffffffff16146113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e090613587565b60405180910390fd5b80600a8190555050565b6060600380546114029061350a565b80601f016020809104026020016040519081016040528092919081815260200182805461142e9061350a565b801561147b5780601f106114505761010080835404028352916020019161147b565b820191906000526020600020905b81548152906001019060200180831161145e57829003601f168201915b5050505050905090565b61148d611b9a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114f1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114fe611b9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115ab611b9a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115f09190612eb5565b60405180910390a35050565b611604611b9a565b73ffffffffffffffffffffffffffffffffffffffff16611622611343565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613587565b60405180910390fd5b80600d8190555050565b61168d848484611c59565b6116ac8373ffffffffffffffffffffffffffffffffffffffff166125ce565b80156116c157506116bf848484846125f1565b155b156116f8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611706611b9a565b73ffffffffffffffffffffffffffffffffffffffff16611724611343565b73ffffffffffffffffffffffffffffffffffffffff161461177a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177190613587565b60405180910390fd5b600b5481106117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b59061398e565b60405180910390fd5b600054811015611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa9061398e565b60405180910390fd5b80600b8190555050565b606061181882611b4c565b61184e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611858612741565b9050600181510361187857604051806020016040528060008152506118a3565b80611882846127d3565b604051602001611893929190613a36565b6040516020818303038152906040525b915050919050565b6118b3611b9a565b73ffffffffffffffffffffffffffffffffffffffff166118d1611343565b73ffffffffffffffffffffffffffffffffffffffff1614611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90613587565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119e0611b9a565b73ffffffffffffffffffffffffffffffffffffffff166119fe611343565b73ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613587565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba90613ad7565b60405180910390fd5b611acc816124ae565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b57611c54565b11158015611b66575060005482105b8015611b93575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611c648261221f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ccf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611cf0611b9a565b73ffffffffffffffffffffffffffffffffffffffff161480611d1f5750611d1e85611d19611b9a565b611944565b5b80611d645750611d2d611b9a565b73ffffffffffffffffffffffffffffffffffffffff16611d4c84610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d9d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e108585856001612933565b611e1c60008487611ba2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361209b57600054821461209a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121068585856001612939565b5050505050565b80471015612150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214790613b43565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161217690613b94565b60006040518083038185875af1925050503d80600081146121b3576040519150601f19603f3d011682016040523d82523d6000602084013e6121b8565b606091505b50509050806121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f390613c1b565b60405180910390fd5b505050565b61221b82826040518060200160405280600081525061293f565b5050565b612227612da1565b600082905080612235611c54565b11158015612244575060005481105b15612477576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161247557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123595780925050506124a9565b5b60011561247457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461246f5780925050506124a9565b61235a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c39190613642565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612617611b9a565b8786866040518563ffffffff1660e01b81526004016126399493929190613c90565b6020604051808303816000875af192505050801561267557506040513d601f19601f820116820180604052508101906126729190613cf1565b60015b6126ee573d80600081146126a5576040519150601f19603f3d011682016040523d82523d6000602084013e6126aa565b606091505b5060008151036126e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546127509061350a565b80601f016020809104026020016040519081016040528092919081815260200182805461277c9061350a565b80156127c95780601f1061279e576101008083540402835291602001916127c9565b820191906000526020600020905b8154815290600101906020018083116127ac57829003601f168201915b5050505050905090565b60606000820361281a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061292e565b600082905060005b6000821461284c57808061283590613d1e565b915050600a826128459190613d95565b9150612822565b60008167ffffffffffffffff8111156128685761286761313d565b5b6040519080825280601f01601f19166020018201604052801561289a5781602001600182028036833780820191505090505b5090505b60008514612927576001826128b391906138a2565b9150600a856128c29190613dc6565b60306128ce9190613642565b60f81b8183815181106128e4576128e3613df7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129209190613d95565b945061289e565b8093505050505b919050565b50505050565b50505050565b61294c8383836001612951565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036129bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036129f7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a046000868387612933565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bce5750612bcd8773ffffffffffffffffffffffffffffffffffffffff166125ce565b5b15612c93575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c4360008884806001019550886125f1565b612c79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612bd4578260005414612c8e57600080fd5b612cfe565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612c94575b816000819055505050612d146000868387612939565b5050505050565b828054612d279061350a565b90600052602060002090601f016020900481019282612d495760008555612d90565b82601f10612d6257805160ff1916838001178555612d90565b82800160010185558215612d90579182015b82811115612d8f578251825591602001919060010190612d74565b5b509050612d9d9190612de4565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612dfd576000816000905550600101612de5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e4a81612e15565b8114612e5557600080fd5b50565b600081359050612e6781612e41565b92915050565b600060208284031215612e8357612e82612e0b565b5b6000612e9184828501612e58565b91505092915050565b60008115159050919050565b612eaf81612e9a565b82525050565b6000602082019050612eca6000830184612ea6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f0a578082015181840152602081019050612eef565b83811115612f19576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f3b82612ed0565b612f458185612edb565b9350612f55818560208601612eec565b612f5e81612f1f565b840191505092915050565b60006020820190508181036000830152612f838184612f30565b905092915050565b6000819050919050565b612f9e81612f8b565b8114612fa957600080fd5b50565b600081359050612fbb81612f95565b92915050565b600060208284031215612fd757612fd6612e0b565b5b6000612fe584828501612fac565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061301982612fee565b9050919050565b6130298161300e565b82525050565b60006020820190506130446000830184613020565b92915050565b6130538161300e565b811461305e57600080fd5b50565b6000813590506130708161304a565b92915050565b6000806040838503121561308d5761308c612e0b565b5b600061309b85828601613061565b92505060206130ac85828601612fac565b9150509250929050565b6130bf81612f8b565b82525050565b60006020820190506130da60008301846130b6565b92915050565b6000806000606084860312156130f9576130f8612e0b565b5b600061310786828701613061565b935050602061311886828701613061565b925050604061312986828701612fac565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61317582612f1f565b810181811067ffffffffffffffff821117156131945761319361313d565b5b80604052505050565b60006131a7612e01565b90506131b3828261316c565b919050565b600067ffffffffffffffff8211156131d3576131d261313d565b5b6131dc82612f1f565b9050602081019050919050565b82818337600083830152505050565b600061320b613206846131b8565b61319d565b90508281526020810184848401111561322757613226613138565b5b6132328482856131e9565b509392505050565b600082601f83011261324f5761324e613133565b5b813561325f8482602086016131f8565b91505092915050565b60006020828403121561327e5761327d612e0b565b5b600082013567ffffffffffffffff81111561329c5761329b612e10565b5b6132a88482850161323a565b91505092915050565b6000602082840312156132c7576132c6612e0b565b5b60006132d584828501613061565b91505092915050565b6132e781612e9a565b81146132f257600080fd5b50565b600081359050613304816132de565b92915050565b6000602082840312156133205761331f612e0b565b5b600061332e848285016132f5565b91505092915050565b6000806040838503121561334e5761334d612e0b565b5b600061335c85828601613061565b925050602061336d858286016132f5565b9150509250929050565b600067ffffffffffffffff8211156133925761339161313d565b5b61339b82612f1f565b9050602081019050919050565b60006133bb6133b684613377565b61319d565b9050828152602081018484840111156133d7576133d6613138565b5b6133e28482856131e9565b509392505050565b600082601f8301126133ff576133fe613133565b5b813561340f8482602086016133a8565b91505092915050565b6000806000806080858703121561343257613431612e0b565b5b600061344087828801613061565b945050602061345187828801613061565b935050604061346287828801612fac565b925050606085013567ffffffffffffffff81111561348357613482612e10565b5b61348f878288016133ea565b91505092959194509250565b600080604083850312156134b2576134b1612e0b565b5b60006134c085828601613061565b92505060206134d185828601613061565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352257607f821691505b602082108103613535576135346134db565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613571602083612edb565b915061357c8261353b565b602082019050919050565b600060208201905081810360008301526135a081613564565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006135dd601f83612edb565b91506135e8826135a7565b602082019050919050565b6000602082019050818103600083015261360c816135d0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061364d82612f8b565b915061365883612f8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561368d5761368c613613565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006136ce601483612edb565b91506136d982613698565b602082019050919050565b600060208201905081810360008301526136fd816136c1565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b600061373a601083612edb565b915061374582613704565b602082019050919050565b600060208201905081810360008301526137698161372d565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006137a6601483612edb565b91506137b182613770565b602082019050919050565b600060208201905081810360008301526137d581613799565b9050919050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b6000613812601383612edb565b915061381d826137dc565b602082019050919050565b6000602082019050818103600083015261384181613805565b9050919050565b600061385382612f8b565b915061385e83612f8b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561389757613896613613565b5b828202905092915050565b60006138ad82612f8b565b91506138b883612f8b565b9250828210156138cb576138ca613613565b5b828203905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061390c601383612edb565b9150613917826138d6565b602082019050919050565b6000602082019050818103600083015261393b816138ff565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613978601683612edb565b915061398382613942565b602082019050919050565b600060208201905081810360008301526139a78161396b565b9050919050565b600081905092915050565b60006139c482612ed0565b6139ce81856139ae565b93506139de818560208601612eec565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613a206005836139ae565b9150613a2b826139ea565b600582019050919050565b6000613a4282856139b9565b9150613a4e82846139b9565b9150613a5982613a13565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ac1602683612edb565b9150613acc82613a65565b604082019050919050565b60006020820190508181036000830152613af081613ab4565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613b2d601d83612edb565b9150613b3882613af7565b602082019050919050565b60006020820190508181036000830152613b5c81613b20565b9050919050565b600081905092915050565b50565b6000613b7e600083613b63565b9150613b8982613b6e565b600082019050919050565b6000613b9f82613b71565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613c05603a83612edb565b9150613c1082613ba9565b604082019050919050565b60006020820190508181036000830152613c3481613bf8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c6282613c3b565b613c6c8185613c46565b9350613c7c818560208601612eec565b613c8581612f1f565b840191505092915050565b6000608082019050613ca56000830187613020565b613cb26020830186613020565b613cbf60408301856130b6565b8181036060830152613cd18184613c57565b905095945050505050565b600081519050613ceb81612e41565b92915050565b600060208284031215613d0757613d06612e0b565b5b6000613d1584828501613cdc565b91505092915050565b6000613d2982612f8b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d5b57613d5a613613565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613da082612f8b565b9150613dab83612f8b565b925082613dbb57613dba613d66565b5b828204905092915050565b6000613dd182612f8b565b9150613ddc83612f8b565b925082613dec57613deb613d66565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206ec95d965c258650b27d2602294f5caf144ca52106046a7a805334f76f29193b64736f6c634300080e00330000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f6f70656e7365612e6d7970696e6174612e636c6f75642f697066732f516d57686a653331654555565456416f4b54695133343357687934385a4239565863584e77424d6f536e394771472f00000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638b85e43d116100e75780638b85e43d146105935780638d859f3e146105bc5780638da5cb5b146105e757806391b7f5ed1461061257806395d89b411461063b57610204565b8063715018a61461050c57806376d02b71146105235780637c928fe91461054e578063841718a61461056a57610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612e6d565b6107ef565b60405161023d9190612eb5565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612f69565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612fc1565b610963565b6040516102a5919061302f565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613076565b6109df565b005b3480156102e357600080fd5b506102ec610ae9565b6040516102f991906130c5565b60405180910390f35b34801561030e57600080fd5b50610317610aef565b60405161032491906130c5565b60405180910390f35b34801561033957600080fd5b50610342610af5565b60405161034f91906130c5565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906130e0565b610b0c565b005b34801561038d57600080fd5b50610396610b1c565b6040516103a391906130c5565b60405180910390f35b3480156103b857600080fd5b506103c1610b22565b005b3480156103cf57600080fd5b506103d8610c19565b6040516103e591906130c5565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613076565b610c1f565b005b34801561042357600080fd5b5061043e600480360381019061043991906130e0565b610cfb565b005b34801561044c57600080fd5b5061046760048036038101906104629190613268565b610d1b565b005b34801561047557600080fd5b50610490600480360381019061048b9190612fc1565b610e01565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612fc1565b610e87565b6040516104c6919061302f565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906132b1565b610e9d565b60405161050391906130c5565b60405180910390f35b34801561051857600080fd5b50610521610f6c565b005b34801561052f57600080fd5b50610538610ff4565b6040516105459190612eb5565b60405180910390f35b61056860048036038101906105639190612fc1565b611007565b005b34801561057657600080fd5b50610591600480360381019061058c919061330a565b61121e565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612fc1565b6112b7565b005b3480156105c857600080fd5b506105d161133d565b6040516105de91906130c5565b60405180910390f35b3480156105f357600080fd5b506105fc611343565b604051610609919061302f565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190612fc1565b61136d565b005b34801561064757600080fd5b506106506113f3565b60405161065d9190612f69565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190613337565b611485565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612fc1565b6115fc565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613418565b611682565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612fc1565b6116fe565b005b34801561071657600080fd5b50610731600480360381019061072c9190612fc1565b61180d565b60405161073e9190612f69565b60405180910390f35b34801561075357600080fd5b5061075c6118ab565b005b34801561076a57600080fd5b506107856004803603810190610780919061349b565b611944565b6040516107929190612eb5565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd91906132b1565b6119d8565b005b3480156107d057600080fd5b506107d9611acf565b6040516107e69190612eb5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611ae2565b5b9050919050565b6060600280546108e09061350a565b80601f016020809104026020016040519081016040528092919081815260200182805461090c9061350a565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611b4c565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610e87565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611b9a565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa25750610aa081610a9b611b9a565b611944565b155b15610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae4838383611ba2565b505050565b600e5481565b600d5481565b6000610aff611c54565b6001546000540303905090565b610b17838383611c59565b505050565b600b5481565b610b2a611b9a565b73ffffffffffffffffffffffffffffffffffffffff16610b48611343565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613587565b60405180910390fd5b600260095403610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906135f3565b60405180910390fd5b60026009819055506000479050610c0e7330f81d50c92916433084ee6b30772d66236d7ff78261210d565b506001600981905550565b60105481565b610c27611b9a565b73ffffffffffffffffffffffffffffffffffffffff16610c45611343565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290613587565b60405180910390fd5b600b5481600054610cac9190613642565b1115610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce4906136e4565b60405180910390fd5b610cf78282612201565b5050565b610d1683838360405180602001604052806000815250611682565b505050565b610d23611b9a565b73ffffffffffffffffffffffffffffffffffffffff16610d41611343565b73ffffffffffffffffffffffffffffffffffffffff1614610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90613587565b60405180910390fd5b601160009054906101000a900460ff1615610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90613750565b60405180910390fd5b80600c9080519060200190610dfd929190612d1b565b5050565b610e09611b9a565b73ffffffffffffffffffffffffffffffffffffffff16610e27611343565b73ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490613587565b60405180910390fd5b80600e8190555050565b6000610e928261221f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f04576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f74611b9a565b73ffffffffffffffffffffffffffffffffffffffff16610f92611343565b73ffffffffffffffffffffffffffffffffffffffff1614610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90613587565b60405180910390fd5b610ff260006124ae565b565b600f60009054906101000a900460ff1681565b8060008111801561101a5750600e548111155b611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906137bc565b60405180910390fd5b600b548160005461106a9190613642565b11156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a2906136e4565b60405180910390fd5b600f60009054906101000a900460ff166110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190613828565b60405180910390fd5b600082600a5461110a9190613848565b905060105460005410156111cc576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d5461116791906138a2565b905060008111156111ca578084106111a357600a54816111879190613848565b8261119291906138a2565b915061119e3382612574565b6111c9565b600a54846111b19190613848565b826111bc91906138a2565b91506111c83385612574565b5b5b505b8034101561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613922565b60405180910390fd5b6112193384612201565b505050565b611226611b9a565b73ffffffffffffffffffffffffffffffffffffffff16611244611343565b73ffffffffffffffffffffffffffffffffffffffff161461129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190613587565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6112bf611b9a565b73ffffffffffffffffffffffffffffffffffffffff166112dd611343565b73ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90613587565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611375611b9a565b73ffffffffffffffffffffffffffffffffffffffff16611393611343565b73ffffffffffffffffffffffffffffffffffffffff16146113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e090613587565b60405180910390fd5b80600a8190555050565b6060600380546114029061350a565b80601f016020809104026020016040519081016040528092919081815260200182805461142e9061350a565b801561147b5780601f106114505761010080835404028352916020019161147b565b820191906000526020600020905b81548152906001019060200180831161145e57829003601f168201915b5050505050905090565b61148d611b9a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114f1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114fe611b9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115ab611b9a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115f09190612eb5565b60405180910390a35050565b611604611b9a565b73ffffffffffffffffffffffffffffffffffffffff16611622611343565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613587565b60405180910390fd5b80600d8190555050565b61168d848484611c59565b6116ac8373ffffffffffffffffffffffffffffffffffffffff166125ce565b80156116c157506116bf848484846125f1565b155b156116f8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611706611b9a565b73ffffffffffffffffffffffffffffffffffffffff16611724611343565b73ffffffffffffffffffffffffffffffffffffffff161461177a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177190613587565b60405180910390fd5b600b5481106117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b59061398e565b60405180910390fd5b600054811015611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa9061398e565b60405180910390fd5b80600b8190555050565b606061181882611b4c565b61184e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611858612741565b9050600181510361187857604051806020016040528060008152506118a3565b80611882846127d3565b604051602001611893929190613a36565b6040516020818303038152906040525b915050919050565b6118b3611b9a565b73ffffffffffffffffffffffffffffffffffffffff166118d1611343565b73ffffffffffffffffffffffffffffffffffffffff1614611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90613587565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119e0611b9a565b73ffffffffffffffffffffffffffffffffffffffff166119fe611343565b73ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613587565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba90613ad7565b60405180910390fd5b611acc816124ae565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b57611c54565b11158015611b66575060005482105b8015611b93575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611c648261221f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ccf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611cf0611b9a565b73ffffffffffffffffffffffffffffffffffffffff161480611d1f5750611d1e85611d19611b9a565b611944565b5b80611d645750611d2d611b9a565b73ffffffffffffffffffffffffffffffffffffffff16611d4c84610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d9d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e108585856001612933565b611e1c60008487611ba2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361209b57600054821461209a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121068585856001612939565b5050505050565b80471015612150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214790613b43565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161217690613b94565b60006040518083038185875af1925050503d80600081146121b3576040519150601f19603f3d011682016040523d82523d6000602084013e6121b8565b606091505b50509050806121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f390613c1b565b60405180910390fd5b505050565b61221b82826040518060200160405280600081525061293f565b5050565b612227612da1565b600082905080612235611c54565b11158015612244575060005481105b15612477576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161247557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123595780925050506124a9565b5b60011561247457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461246f5780925050506124a9565b61235a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c39190613642565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612617611b9a565b8786866040518563ffffffff1660e01b81526004016126399493929190613c90565b6020604051808303816000875af192505050801561267557506040513d601f19601f820116820180604052508101906126729190613cf1565b60015b6126ee573d80600081146126a5576040519150601f19603f3d011682016040523d82523d6000602084013e6126aa565b606091505b5060008151036126e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546127509061350a565b80601f016020809104026020016040519081016040528092919081815260200182805461277c9061350a565b80156127c95780601f1061279e576101008083540402835291602001916127c9565b820191906000526020600020905b8154815290600101906020018083116127ac57829003601f168201915b5050505050905090565b60606000820361281a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061292e565b600082905060005b6000821461284c57808061283590613d1e565b915050600a826128459190613d95565b9150612822565b60008167ffffffffffffffff8111156128685761286761313d565b5b6040519080825280601f01601f19166020018201604052801561289a5781602001600182028036833780820191505090505b5090505b60008514612927576001826128b391906138a2565b9150600a856128c29190613dc6565b60306128ce9190613642565b60f81b8183815181106128e4576128e3613df7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129209190613d95565b945061289e565b8093505050505b919050565b50505050565b50505050565b61294c8383836001612951565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036129bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036129f7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a046000868387612933565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bce5750612bcd8773ffffffffffffffffffffffffffffffffffffffff166125ce565b5b15612c93575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c4360008884806001019550886125f1565b612c79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612bd4578260005414612c8e57600080fd5b612cfe565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612c94575b816000819055505050612d146000868387612939565b5050505050565b828054612d279061350a565b90600052602060002090601f016020900481019282612d495760008555612d90565b82601f10612d6257805160ff1916838001178555612d90565b82800160010185558215612d90579182015b82811115612d8f578251825591602001919060010190612d74565b5b509050612d9d9190612de4565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612dfd576000816000905550600101612de5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e4a81612e15565b8114612e5557600080fd5b50565b600081359050612e6781612e41565b92915050565b600060208284031215612e8357612e82612e0b565b5b6000612e9184828501612e58565b91505092915050565b60008115159050919050565b612eaf81612e9a565b82525050565b6000602082019050612eca6000830184612ea6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f0a578082015181840152602081019050612eef565b83811115612f19576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f3b82612ed0565b612f458185612edb565b9350612f55818560208601612eec565b612f5e81612f1f565b840191505092915050565b60006020820190508181036000830152612f838184612f30565b905092915050565b6000819050919050565b612f9e81612f8b565b8114612fa957600080fd5b50565b600081359050612fbb81612f95565b92915050565b600060208284031215612fd757612fd6612e0b565b5b6000612fe584828501612fac565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061301982612fee565b9050919050565b6130298161300e565b82525050565b60006020820190506130446000830184613020565b92915050565b6130538161300e565b811461305e57600080fd5b50565b6000813590506130708161304a565b92915050565b6000806040838503121561308d5761308c612e0b565b5b600061309b85828601613061565b92505060206130ac85828601612fac565b9150509250929050565b6130bf81612f8b565b82525050565b60006020820190506130da60008301846130b6565b92915050565b6000806000606084860312156130f9576130f8612e0b565b5b600061310786828701613061565b935050602061311886828701613061565b925050604061312986828701612fac565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61317582612f1f565b810181811067ffffffffffffffff821117156131945761319361313d565b5b80604052505050565b60006131a7612e01565b90506131b3828261316c565b919050565b600067ffffffffffffffff8211156131d3576131d261313d565b5b6131dc82612f1f565b9050602081019050919050565b82818337600083830152505050565b600061320b613206846131b8565b61319d565b90508281526020810184848401111561322757613226613138565b5b6132328482856131e9565b509392505050565b600082601f83011261324f5761324e613133565b5b813561325f8482602086016131f8565b91505092915050565b60006020828403121561327e5761327d612e0b565b5b600082013567ffffffffffffffff81111561329c5761329b612e10565b5b6132a88482850161323a565b91505092915050565b6000602082840312156132c7576132c6612e0b565b5b60006132d584828501613061565b91505092915050565b6132e781612e9a565b81146132f257600080fd5b50565b600081359050613304816132de565b92915050565b6000602082840312156133205761331f612e0b565b5b600061332e848285016132f5565b91505092915050565b6000806040838503121561334e5761334d612e0b565b5b600061335c85828601613061565b925050602061336d858286016132f5565b9150509250929050565b600067ffffffffffffffff8211156133925761339161313d565b5b61339b82612f1f565b9050602081019050919050565b60006133bb6133b684613377565b61319d565b9050828152602081018484840111156133d7576133d6613138565b5b6133e28482856131e9565b509392505050565b600082601f8301126133ff576133fe613133565b5b813561340f8482602086016133a8565b91505092915050565b6000806000806080858703121561343257613431612e0b565b5b600061344087828801613061565b945050602061345187828801613061565b935050604061346287828801612fac565b925050606085013567ffffffffffffffff81111561348357613482612e10565b5b61348f878288016133ea565b91505092959194509250565b600080604083850312156134b2576134b1612e0b565b5b60006134c085828601613061565b92505060206134d185828601613061565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352257607f821691505b602082108103613535576135346134db565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613571602083612edb565b915061357c8261353b565b602082019050919050565b600060208201905081810360008301526135a081613564565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006135dd601f83612edb565b91506135e8826135a7565b602082019050919050565b6000602082019050818103600083015261360c816135d0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061364d82612f8b565b915061365883612f8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561368d5761368c613613565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006136ce601483612edb565b91506136d982613698565b602082019050919050565b600060208201905081810360008301526136fd816136c1565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b600061373a601083612edb565b915061374582613704565b602082019050919050565b600060208201905081810360008301526137698161372d565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006137a6601483612edb565b91506137b182613770565b602082019050919050565b600060208201905081810360008301526137d581613799565b9050919050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b6000613812601383612edb565b915061381d826137dc565b602082019050919050565b6000602082019050818103600083015261384181613805565b9050919050565b600061385382612f8b565b915061385e83612f8b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561389757613896613613565b5b828202905092915050565b60006138ad82612f8b565b91506138b883612f8b565b9250828210156138cb576138ca613613565b5b828203905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061390c601383612edb565b9150613917826138d6565b602082019050919050565b6000602082019050818103600083015261393b816138ff565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613978601683612edb565b915061398382613942565b602082019050919050565b600060208201905081810360008301526139a78161396b565b9050919050565b600081905092915050565b60006139c482612ed0565b6139ce81856139ae565b93506139de818560208601612eec565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613a206005836139ae565b9150613a2b826139ea565b600582019050919050565b6000613a4282856139b9565b9150613a4e82846139b9565b9150613a5982613a13565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ac1602683612edb565b9150613acc82613a65565b604082019050919050565b60006020820190508181036000830152613af081613ab4565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613b2d601d83612edb565b9150613b3882613af7565b602082019050919050565b60006020820190508181036000830152613b5c81613b20565b9050919050565b600081905092915050565b50565b6000613b7e600083613b63565b9150613b8982613b6e565b600082019050919050565b6000613b9f82613b71565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613c05603a83612edb565b9150613c1082613ba9565b604082019050919050565b60006020820190508181036000830152613c3481613bf8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c6282613c3b565b613c6c8185613c46565b9350613c7c818560208601612eec565b613c8581612f1f565b840191505092915050565b6000608082019050613ca56000830187613020565b613cb26020830186613020565b613cbf60408301856130b6565b8181036060830152613cd18184613c57565b905095945050505050565b600081519050613ceb81612e41565b92915050565b600060208284031215613d0757613d06612e0b565b5b6000613d1584828501613cdc565b91505092915050565b6000613d2982612f8b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d5b57613d5a613613565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613da082612f8b565b9150613dab83612f8b565b925082613dbb57613dba613d66565b5b828204905092915050565b6000613dd182612f8b565b9150613ddc83612f8b565b925082613dec57613deb613d66565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206ec95d965c258650b27d2602294f5caf144ca52106046a7a805334f76f29193b64736f6c634300080e0033

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

0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f6f70656e7365612e6d7970696e6174612e636c6f75642f697066732f516d57686a653331654555565456416f4b54695133343357687934385a4239565863584e77424d6f536e394771472f00000000000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 5000000000000000
Arg [1] : maxSupply (uint256): 10000
Arg [2] : baseUri (string): https://opensea.mypinata.cloud/ipfs/QmWhje31eEUVTVAoKTiQ343Why48ZB9VXcXNwBMoSn9GqG/
Arg [3] : freeMintAllowance (uint256): 5
Arg [4] : maxMintPerTx (uint256): 100
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintIsAllowedUntil (uint256): 10000

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000011c37937e08000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [8] : 68747470733a2f2f6f70656e7365612e6d7970696e6174612e636c6f75642f69
Arg [9] : 7066732f516d57686a653331654555565456416f4b5469513334335768793438
Arg [10] : 5a4239565863584e77424d6f536e394771472f00000000000000000000000000


Deployed Bytecode Sourcemap

47599:4283:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29764:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32877:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34388:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33951:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47832:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47784:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29013:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35253:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47722:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51642:237;;;;;;;;;;;;;:::i;:::-;;47909:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51394:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35494:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49246:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49595:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32685:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30133:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;47876:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50453:933;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49725:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49842:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47695:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48879:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33046:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34664:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49423:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35750:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48983:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33221:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50027:86;;;;;;;;;;;;;:::i;:::-;;35022:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47957:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29764:305;29866:4;29918:25;29903:40;;;:11;:40;;;;:105;;;;29975:33;29960:48;;;:11;:48;;;;29903:105;:158;;;;30025:36;30049:11;30025:23;:36::i;:::-;29903:158;29883:178;;29764:305;;;:::o;32877:100::-;32931:13;32964:5;32957:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32877:100;:::o;34388:204::-;34456:7;34481:16;34489:7;34481;:16::i;:::-;34476:64;;34506:34;;;;;;;;;;;;;;34476:64;34560:15;:24;34576:7;34560:24;;;;;;;;;;;;;;;;;;;;;34553:31;;34388:204;;;:::o;33951:371::-;34024:13;34040:24;34056:7;34040:15;:24::i;:::-;34024:40;;34085:5;34079:11;;:2;:11;;;34075:48;;34099:24;;;;;;;;;;;;;;34075:48;34156:5;34140:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34166:37;34183:5;34190:12;:10;:12::i;:::-;34166:16;:37::i;:::-;34165:38;34140:63;34136:138;;;34227:35;;;;;;;;;;;;;;34136:138;34286:28;34295:2;34299:7;34308:5;34286:8;:28::i;:::-;34013:309;33951:371;;:::o;47832:37::-;;;;:::o;47784:41::-;;;;:::o;29013:303::-;29057:7;29282:15;:13;:15::i;:::-;29267:12;;29251:13;;:28;:46;29244:53;;29013:303;:::o;35253:170::-;35387:28;35397:4;35403:2;35407:7;35387:9;:28::i;:::-;35253:170;;;:::o;47722:25::-;;;;:::o;51642:237::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19:::0;2435:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;51703:15:::2;51721:21;51703:39;;51755:116;51795:42;51853:7;51755:17;:116::i;:::-;51692:187;1801:1:::1;2755:7;:22;;;;51642:237::o:0;47909:41::-;;;;:::o;51394:240::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51528:10:::1;;51513:11;51497:13;;:27;;;;:::i;:::-;:41;;51475:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;51599:27;51609:3;51614:11;51599:9;:27::i;:::-;51394:240:::0;;:::o;35494:185::-;35632:39;35649:4;35655:2;35659:7;35632:39;;;;;;;;;;;;:16;:39::i;:::-;35494:185;;;:::o;49246:169::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49335:15:::1;;;;;;;;;;;49334:16;49326:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49393:14;49382:8;:25;;;;;;;;;;;;:::i;:::-;;49246:169:::0;:::o;49595:122::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49697:12:::1;49672:22;:37;;;;49595:122:::0;:::o;32685:125::-;32749:7;32776:21;32789:7;32776:12;:21::i;:::-;:26;;;32769:33;;32685:125;;;:::o;30133:206::-;30197:7;30238:1;30221:19;;:5;:19;;;30217:60;;30249:28;;;;;;;;;;;;;;30217:60;30303:12;:19;30316:5;30303:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30295:36;;30288:43;;30133:206;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;47876:26::-;;;;;;;;;;;;;:::o;50453:933::-;50549:11;50213:1;50199:11;:15;:56;;;;;50233:22;;50218:11;:37;;50199:56;50177:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;50367:10;;50352:11;50336:13;;:27;;;;:::i;:::-;:41;;50314:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;50586:14:::1;;;;;;;;;;;50578:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;50637:13;50661:11;50653:5;;:19;;;;:::i;:::-;50637:35;;50705:26;;50689:13;;:42;50685:584;;;50748:25;50822:16;:28;50839:10;50822:28;;;;;;;;;;;;;;;;50776:26;;:74;;;;:::i;:::-;50748:102;;50889:1;50869:17;:21;50865:393;;;50930:17;50915:11;:32;50911:332;;51001:5;;50981:17;:25;;;;:::i;:::-;50972:34;;;;;:::i;:::-;;;51029:50;51049:10;51061:17;51029:19;:50::i;:::-;50911:332;;;51151:5;;51137:11;:19;;;;:::i;:::-;51128:28;;;;;:::i;:::-;;;51179:44;51199:10;51211:11;51179:19;:44::i;:::-;50911:332;50865:393;50733:536;50685:584;51302:5;51289:9;:18;;51281:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51344:34;51354:10;51366:11;51344:9;:34::i;:::-;50567:819;50453:933:::0;;:::o;49725:109::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49814:12:::1;49797:14;;:29;;;;;;;;;;;;;;;;;;49725:109:::0;:::o;49842:177::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49989:22:::1;49960:26;:51;;;;49842:177:::0;:::o;47695:20::-;;;;:::o;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;48879:96::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48956:11:::1;48948:5;:19;;;;48879:96:::0;:::o;33046:104::-;33102:13;33135:7;33128:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33046:104;:::o;34664:287::-;34775:12;:10;:12::i;:::-;34763:24;;:8;:24;;;34759:54;;34796:17;;;;;;;;;;;;;;34759:54;34871:8;34826:18;:32;34845:12;:10;:12::i;:::-;34826:32;;;;;;;;;;;;;;;:42;34859:8;34826:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34924:8;34895:48;;34910:12;:10;:12::i;:::-;34895:48;;;34934:8;34895:48;;;;;;:::i;:::-;;;;;;;;34664:287;;:::o;49423:164::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49562:17:::1;49533:26;:46;;;;49423:164:::0;:::o;35750:369::-;35917:28;35927:4;35933:2;35937:7;35917:9;:28::i;:::-;35960:15;:2;:13;;;:15::i;:::-;:76;;;;;35980:56;36011:4;36017:2;36021:7;36030:5;35980:30;:56::i;:::-;35979:57;35960:76;35956:156;;;36060:40;;;;;;;;;;;;;;35956:156;35750:369;;;;:::o;48983:255::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49082:10:::1;;49067:12;:25;49059:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;49154:13;;49138:12;:29;;49130:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49218:12;49205:10;:25;;;;48983:255:::0;:::o;33221:326::-;33294:13;33325:16;33333:7;33325;:16::i;:::-;33320:59;;33350:29;;;;;;;;;;;;;;33320:59;33392:21;33416:10;:8;:10::i;:::-;33392:34;;33469:1;33450:7;33444:21;:26;:95;;;;;;;;;;;;;;;;;33497:7;33506:18;:7;:16;:18::i;:::-;33480:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33444:95;33437:102;;;33221:326;;;:::o;50027:86::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50101:4:::1;50083:15;;:22;;;;;;;;;;;;;;;;;;50027:86::o:0;35022:164::-;35119:4;35143:18;:25;35162:5;35143:25;;;;;;;;;;;;;;;:35;35169:8;35143:35;;;;;;;;;;;;;;;;;;;;;;;;;35136:42;;35022:164;;;;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;::::0;7861:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;47957:27::-;;;;;;;;;;;;;:::o;19655:157::-;19740:4;19779:25;19764:40;;;:11;:40;;;;19757:47;;19655:157;;;:::o;36374:187::-;36431:4;36474:7;36455:15;:13;:15::i;:::-;:26;;:53;;;;;36495:13;;36485:7;:23;36455:53;:98;;;;;36526:11;:20;36538:7;36526:20;;;;;;;;;;;:27;;;;;;;;;;;;36525:28;36455:98;36448:105;;36374:187;;;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;44544:196::-;44686:2;44659:15;:24;44675:7;44659:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44724:7;44720:2;44704:28;;44713:5;44704:28;;;;;;;;;;;;44544:196;;;:::o;28787:92::-;28843:7;28787:92;:::o;39487:2130::-;39602:35;39640:21;39653:7;39640:12;:21::i;:::-;39602:59;;39700:4;39678:26;;:13;:18;;;:26;;;39674:67;;39713:28;;;;;;;;;;;;;;39674:67;39754:22;39796:4;39780:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39817:36;39834:4;39840:12;:10;:12::i;:::-;39817:16;:36::i;:::-;39780:73;:126;;;;39894:12;:10;:12::i;:::-;39870:36;;:20;39882:7;39870:11;:20::i;:::-;:36;;;39780:126;39754:153;;39925:17;39920:66;;39951:35;;;;;;;;;;;;;;39920:66;40015:1;40001:16;;:2;:16;;;39997:52;;40026:23;;;;;;;;;;;;;;39997:52;40062:43;40084:4;40090:2;40094:7;40103:1;40062:21;:43::i;:::-;40170:35;40187:1;40191:7;40200:4;40170:8;:35::i;:::-;40531:1;40501:12;:18;40514:4;40501:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40575:1;40547:12;:16;40560:2;40547:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40593:31;40627:11;:20;40639:7;40627:20;;;;;;;;;;;40593:54;;40678:2;40662:8;:13;;;:18;;;;;;;;;;;;;;;;;;40728:15;40695:8;:23;;;:49;;;;;;;;;;;;;;;;;;40996:19;41028:1;41018:7;:11;40996:33;;41044:31;41078:11;:24;41090:11;41078:24;;;;;;;;;;;41044:58;;41146:1;41121:27;;:8;:13;;;;;;;;;;;;:27;;;41117:384;;41331:13;;41316:11;:28;41312:174;;41385:4;41369:8;:13;;;:20;;;;;;;;;;;;;;;;;;41438:13;:28;;;41412:8;:23;;;:54;;;;;;;;;;;;;;;;;;41312:174;41117:384;40476:1036;;;41548:7;41544:2;41529:27;;41538:4;41529:27;;;;;;;;;;;;41567:42;41588:4;41594:2;41598:7;41607:1;41567:20;:42::i;:::-;39591:2026;;39487:2130;;;:::o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11002:12;11020:9;:14;;11042:6;11020:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10904:246;10833:317;;:::o;36569:104::-;36638:27;36648:2;36652:8;36638:27;;;;;;;;;;;;:9;:27::i;:::-;36569:104;;:::o;31514:1109::-;31576:21;;:::i;:::-;31610:12;31625:7;31610:22;;31693:4;31674:15;:13;:15::i;:::-;:23;;:47;;;;;31708:13;;31701:4;:20;31674:47;31670:886;;;31742:31;31776:11;:17;31788:4;31776:17;;;;;;;;;;;31742:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31817:9;:16;;;31812:729;;31888:1;31862:28;;:9;:14;;;:28;;;31858:101;;31926:9;31919:16;;;;;;31858:101;32261:261;32268:4;32261:261;;;32301:6;;;;;;;;32346:11;:17;32358:4;32346:17;;;;;;;;;;;32334:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32420:1;32394:28;;:9;:14;;;:28;;;32390:109;;32462:9;32455:16;;;;;;32390:109;32261:261;;;31812:729;31723:833;31670:886;32584:31;;;;;;;;;;;;;;31514:1109;;;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;48634:120::-;48741:5;48713:16;:24;48730:6;48713:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;48634:120;;:::o;9572:326::-;9632:4;9889:1;9867:7;:19;;;:23;9860:30;;9572:326;;;:::o;45232:667::-;45395:4;45432:2;45416:36;;;45453:12;:10;:12::i;:::-;45467:4;45473:7;45482:5;45416:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45412:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45667:1;45650:6;:13;:18;45646:235;;45696:40;;;;;;;;;;;;;;45646:235;45839:6;45833:13;45824:6;45820:2;45816:15;45809:38;45412:480;45545:45;;;45535:55;;;:6;:55;;;;45528:62;;;45232:667;;;;;;:::o;48762:109::-;48822:13;48855:8;48848:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48762:109;:::o;3157:723::-;3213:13;3443:1;3434:5;:10;3430:53;;3461:10;;;;;;;;;;;;;;;;;;;;;3430:53;3493:12;3508:5;3493:20;;3524:14;3549:78;3564:1;3556:4;:9;3549:78;;3582:8;;;;;:::i;:::-;;;;3613:2;3605:10;;;;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3637:39;;3687:154;3703:1;3694:5;:10;3687:154;;3731:1;3721:11;;;;;:::i;:::-;;;3798:2;3790:5;:10;;;;:::i;:::-;3777:2;:24;;;;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3827:2;3818:11;;;;;:::i;:::-;;;3687:154;;;3865:6;3851:21;;;;;3157:723;;;;:::o;46547:159::-;;;;;:::o;47365:158::-;;;;;:::o;37036:163::-;37159:32;37165:2;37169:8;37179:5;37186:4;37159:5;:32::i;:::-;37036:163;;;:::o;37458:1775::-;37597:20;37620:13;;37597:36;;37662:1;37648:16;;:2;:16;;;37644:48;;37673:19;;;;;;;;;;;;;;37644:48;37719:1;37707:8;:13;37703:44;;37729:18;;;;;;;;;;;;;;37703:44;37760:61;37790:1;37794:2;37798:12;37812:8;37760:21;:61::i;:::-;38133:8;38098:12;:16;38111:2;38098:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38197:8;38157:12;:16;38170:2;38157:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38256:2;38223:11;:25;38235:12;38223:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38323:15;38273:11;:25;38285:12;38273:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38356:20;38379:12;38356:35;;38406:11;38435:8;38420:12;:23;38406:37;;38464:4;:23;;;;;38472:15;:2;:13;;;:15::i;:::-;38464:23;38460:641;;;38508:314;38564:12;38560:2;38539:38;;38556:1;38539:38;;;;;;;;;;;;38605:69;38644:1;38648:2;38652:14;;;;;;38668:5;38605:30;:69::i;:::-;38600:174;;38710:40;;;;;;;;;;;;;;38600:174;38817:3;38801:12;:19;38508:314;;38903:12;38886:13;;:29;38882:43;;38917:8;;;38882:43;38460:641;;;38966:120;39022:14;;;;;;39018:2;38997:40;;39014:1;38997:40;;;;;;;;;;;;39081:3;39065:12;:19;38966:120;;38460:641;39131:12;39115:13;:28;;;;38073:1082;;39165:60;39194:1;39198:2;39202:12;39216:8;39165:20;:60::i;:::-;37586:1647;37458:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:323::-;9188:6;9237:2;9225:9;9216:7;9212:23;9208:32;9205:119;;;9243:79;;:::i;:::-;9205:119;9363:1;9388:50;9430:7;9421:6;9410:9;9406:22;9388:50;:::i;:::-;9378:60;;9334:114;9132:323;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:181::-;14087:33;14083:1;14075:6;14071:14;14064:57;13947:181;:::o;14134:366::-;14276:3;14297:67;14361:2;14356:3;14297:67;:::i;:::-;14290:74;;14373:93;14462:3;14373:93;:::i;:::-;14491:2;14486:3;14482:12;14475:19;;14134:366;;;:::o;14506:419::-;14672:4;14710:2;14699:9;14695:18;14687:26;;14759:9;14753:4;14749:20;14745:1;14734:9;14730:17;14723:47;14787:131;14913:4;14787:131;:::i;:::-;14779:139;;14506:419;;;:::o;14931:180::-;14979:77;14976:1;14969:88;15076:4;15073:1;15066:15;15100:4;15097:1;15090:15;15117:305;15157:3;15176:20;15194:1;15176:20;:::i;:::-;15171:25;;15210:20;15228:1;15210:20;:::i;:::-;15205:25;;15364:1;15296:66;15292:74;15289:1;15286:81;15283:107;;;15370:18;;:::i;:::-;15283:107;15414:1;15411;15407:9;15400:16;;15117:305;;;;:::o;15428:170::-;15568:22;15564:1;15556:6;15552:14;15545:46;15428:170;:::o;15604:366::-;15746:3;15767:67;15831:2;15826:3;15767:67;:::i;:::-;15760:74;;15843:93;15932:3;15843:93;:::i;:::-;15961:2;15956:3;15952:12;15945:19;;15604:366;;;:::o;15976:419::-;16142:4;16180:2;16169:9;16165:18;16157:26;;16229:9;16223:4;16219:20;16215:1;16204:9;16200:17;16193:47;16257:131;16383:4;16257:131;:::i;:::-;16249:139;;15976:419;;;:::o;16401:166::-;16541:18;16537:1;16529:6;16525:14;16518:42;16401:166;:::o;16573:366::-;16715:3;16736:67;16800:2;16795:3;16736:67;:::i;:::-;16729:74;;16812:93;16901:3;16812:93;:::i;:::-;16930:2;16925:3;16921:12;16914:19;;16573:366;;;:::o;16945:419::-;17111:4;17149:2;17138:9;17134:18;17126:26;;17198:9;17192:4;17188:20;17184:1;17173:9;17169:17;17162:47;17226:131;17352:4;17226:131;:::i;:::-;17218:139;;16945:419;;;:::o;17370:170::-;17510:22;17506:1;17498:6;17494:14;17487:46;17370:170;:::o;17546:366::-;17688:3;17709:67;17773:2;17768:3;17709:67;:::i;:::-;17702:74;;17785:93;17874:3;17785:93;:::i;:::-;17903:2;17898:3;17894:12;17887:19;;17546:366;;;:::o;17918:419::-;18084:4;18122:2;18111:9;18107:18;18099:26;;18171:9;18165:4;18161:20;18157:1;18146:9;18142:17;18135:47;18199:131;18325:4;18199:131;:::i;:::-;18191:139;;17918:419;;;:::o;18343:169::-;18483:21;18479:1;18471:6;18467:14;18460:45;18343:169;:::o;18518:366::-;18660:3;18681:67;18745:2;18740:3;18681:67;:::i;:::-;18674:74;;18757:93;18846:3;18757:93;:::i;:::-;18875:2;18870:3;18866:12;18859:19;;18518:366;;;:::o;18890:419::-;19056:4;19094:2;19083:9;19079:18;19071:26;;19143:9;19137:4;19133:20;19129:1;19118:9;19114:17;19107:47;19171:131;19297:4;19171:131;:::i;:::-;19163:139;;18890:419;;;:::o;19315:348::-;19355:7;19378:20;19396:1;19378:20;:::i;:::-;19373:25;;19412:20;19430:1;19412:20;:::i;:::-;19407:25;;19600:1;19532:66;19528:74;19525:1;19522:81;19517:1;19510:9;19503:17;19499:105;19496:131;;;19607:18;;:::i;:::-;19496:131;19655:1;19652;19648:9;19637:20;;19315:348;;;;:::o;19669:191::-;19709:4;19729:20;19747:1;19729:20;:::i;:::-;19724:25;;19763:20;19781:1;19763:20;:::i;:::-;19758:25;;19802:1;19799;19796:8;19793:34;;;19807:18;;:::i;:::-;19793:34;19852:1;19849;19845:9;19837:17;;19669:191;;;;:::o;19866:169::-;20006:21;20002:1;19994:6;19990:14;19983:45;19866:169;:::o;20041:366::-;20183:3;20204:67;20268:2;20263:3;20204:67;:::i;:::-;20197:74;;20280:93;20369:3;20280:93;:::i;:::-;20398:2;20393:3;20389:12;20382:19;;20041:366;;;:::o;20413:419::-;20579:4;20617:2;20606:9;20602:18;20594:26;;20666:9;20660:4;20656:20;20652:1;20641:9;20637:17;20630:47;20694:131;20820:4;20694:131;:::i;:::-;20686:139;;20413:419;;;:::o;20838:172::-;20978:24;20974:1;20966:6;20962:14;20955:48;20838:172;:::o;21016:366::-;21158:3;21179:67;21243:2;21238:3;21179:67;:::i;:::-;21172:74;;21255:93;21344:3;21255:93;:::i;:::-;21373:2;21368:3;21364:12;21357:19;;21016:366;;;:::o;21388:419::-;21554:4;21592:2;21581:9;21577:18;21569:26;;21641:9;21635:4;21631:20;21627:1;21616:9;21612:17;21605:47;21669:131;21795:4;21669:131;:::i;:::-;21661:139;;21388:419;;;:::o;21813:148::-;21915:11;21952:3;21937:18;;21813:148;;;;:::o;21967:377::-;22073:3;22101:39;22134:5;22101:39;:::i;:::-;22156:89;22238:6;22233:3;22156:89;:::i;:::-;22149:96;;22254:52;22299:6;22294:3;22287:4;22280:5;22276:16;22254:52;:::i;:::-;22331:6;22326:3;22322:16;22315:23;;22077:267;21967:377;;;;:::o;22350:155::-;22490:7;22486:1;22478:6;22474:14;22467:31;22350:155;:::o;22511:400::-;22671:3;22692:84;22774:1;22769:3;22692:84;:::i;:::-;22685:91;;22785:93;22874:3;22785:93;:::i;:::-;22903:1;22898:3;22894:11;22887:18;;22511:400;;;:::o;22917:701::-;23198:3;23220:95;23311:3;23302:6;23220:95;:::i;:::-;23213:102;;23332:95;23423:3;23414:6;23332:95;:::i;:::-;23325:102;;23444:148;23588:3;23444:148;:::i;:::-;23437:155;;23609:3;23602:10;;22917:701;;;;;:::o;23624:225::-;23764:34;23760:1;23752:6;23748:14;23741:58;23833:8;23828:2;23820:6;23816:15;23809:33;23624:225;:::o;23855:366::-;23997:3;24018:67;24082:2;24077:3;24018:67;:::i;:::-;24011:74;;24094:93;24183:3;24094:93;:::i;:::-;24212:2;24207:3;24203:12;24196:19;;23855:366;;;:::o;24227:419::-;24393:4;24431:2;24420:9;24416:18;24408:26;;24480:9;24474:4;24470:20;24466:1;24455:9;24451:17;24444:47;24508:131;24634:4;24508:131;:::i;:::-;24500:139;;24227:419;;;:::o;24652:179::-;24792:31;24788:1;24780:6;24776:14;24769:55;24652:179;:::o;24837:366::-;24979:3;25000:67;25064:2;25059:3;25000:67;:::i;:::-;24993:74;;25076:93;25165:3;25076:93;:::i;:::-;25194:2;25189:3;25185:12;25178:19;;24837:366;;;:::o;25209:419::-;25375:4;25413:2;25402:9;25398:18;25390:26;;25462:9;25456:4;25452:20;25448:1;25437:9;25433:17;25426:47;25490:131;25616:4;25490:131;:::i;:::-;25482:139;;25209:419;;;:::o;25634:147::-;25735:11;25772:3;25757:18;;25634:147;;;;:::o;25787:114::-;;:::o;25907:398::-;26066:3;26087:83;26168:1;26163:3;26087:83;:::i;:::-;26080:90;;26179:93;26268:3;26179:93;:::i;:::-;26297:1;26292:3;26288:11;26281:18;;25907:398;;;:::o;26311:379::-;26495:3;26517:147;26660:3;26517:147;:::i;:::-;26510:154;;26681:3;26674:10;;26311:379;;;:::o;26696:245::-;26836:34;26832:1;26824:6;26820:14;26813:58;26905:28;26900:2;26892:6;26888:15;26881:53;26696:245;:::o;26947:366::-;27089:3;27110:67;27174:2;27169:3;27110:67;:::i;:::-;27103:74;;27186:93;27275:3;27186:93;:::i;:::-;27304:2;27299:3;27295:12;27288:19;;26947:366;;;:::o;27319:419::-;27485:4;27523:2;27512:9;27508:18;27500:26;;27572:9;27566:4;27562:20;27558:1;27547:9;27543:17;27536:47;27600:131;27726:4;27600:131;:::i;:::-;27592:139;;27319:419;;;:::o;27744:98::-;27795:6;27829:5;27823:12;27813:22;;27744:98;;;:::o;27848:168::-;27931:11;27965:6;27960:3;27953:19;28005:4;28000:3;27996:14;27981:29;;27848:168;;;;:::o;28022:360::-;28108:3;28136:38;28168:5;28136:38;:::i;:::-;28190:70;28253:6;28248:3;28190:70;:::i;:::-;28183:77;;28269:52;28314:6;28309:3;28302:4;28295:5;28291:16;28269:52;:::i;:::-;28346:29;28368:6;28346:29;:::i;:::-;28341:3;28337:39;28330:46;;28112:270;28022:360;;;;:::o;28388:640::-;28583:4;28621:3;28610:9;28606:19;28598:27;;28635:71;28703:1;28692:9;28688:17;28679:6;28635:71;:::i;:::-;28716:72;28784:2;28773:9;28769:18;28760:6;28716:72;:::i;:::-;28798;28866:2;28855:9;28851:18;28842:6;28798:72;:::i;:::-;28917:9;28911:4;28907:20;28902:2;28891:9;28887:18;28880:48;28945:76;29016:4;29007:6;28945:76;:::i;:::-;28937:84;;28388:640;;;;;;;:::o;29034:141::-;29090:5;29121:6;29115:13;29106:22;;29137:32;29163:5;29137:32;:::i;:::-;29034:141;;;;:::o;29181:349::-;29250:6;29299:2;29287:9;29278:7;29274:23;29270:32;29267:119;;;29305:79;;:::i;:::-;29267:119;29425:1;29450:63;29505:7;29496:6;29485:9;29481:22;29450:63;:::i;:::-;29440:73;;29396:127;29181:349;;;;:::o;29536:233::-;29575:3;29598:24;29616:5;29598:24;:::i;:::-;29589:33;;29644:66;29637:5;29634:77;29631:103;;29714:18;;:::i;:::-;29631:103;29761:1;29754:5;29750:13;29743:20;;29536:233;;;:::o;29775:180::-;29823:77;29820:1;29813:88;29920:4;29917:1;29910:15;29944:4;29941:1;29934:15;29961:185;30001:1;30018:20;30036:1;30018:20;:::i;:::-;30013:25;;30052:20;30070:1;30052:20;:::i;:::-;30047:25;;30091:1;30081:35;;30096:18;;:::i;:::-;30081:35;30138:1;30135;30131:9;30126:14;;29961:185;;;;:::o;30152:176::-;30184:1;30201:20;30219:1;30201:20;:::i;:::-;30196:25;;30235:20;30253:1;30235:20;:::i;:::-;30230:25;;30274:1;30264:35;;30279:18;;:::i;:::-;30264:35;30320:1;30317;30313:9;30308:14;;30152:176;;;;:::o;30334:180::-;30382:77;30379:1;30372:88;30479:4;30476:1;30469:15;30503:4;30500:1;30493:15

Swarm Source

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