ETH Price: $3,171.66 (+1.38%)
Gas: 3 Gwei

Token

Ch1mpsOnFire (ch1mpsonfire)
 

Overview

Max Total Supply

9,993 ch1mpsonfire

Holders

1,122

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
9 ch1mpsonfire
0x22356d20ba3207f930d57aa700e6f4a5b4442520
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:
ChimpOnFire

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// Creator: Chiru Labs


// 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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// 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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

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

// 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: contracts/LowerGas.sol


// Creator: Chiru Labs


pragma solidity ^0.8.0;

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    uint256 internal immutable maxBatchSize;

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, 'ERC721A: max batch size must be nonzero');
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity <= maxBatchSize, 'ERC721A: quantity to mint too high');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

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

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

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

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

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

pragma solidity ^0.8.14;

contract ChimpOnFire is ERC721A, Ownable {
  using Strings for uint256;
  
  uint256 public mintPrice = 0.01 ether;

  uint256 public maxSupply = 10000;
  uint256 public maxFreeMint = 10000;
  uint256 public freeMintPerWallet = 9;
  uint256 public maxMintBatch = 100;
  uint256 public oneFreeX = 10;

    uint256 public phaseOneMaxItemIndex = 1000;
    uint256 public phaseOneFreePerTX = 9;
    uint256 public phaseOneMintPrice = 0;
    uint256 public phaseOneMintQty = 0;

    uint256 public phaseTwoMaxItemIndex = 10000;
    uint256 public phaseTwoFreePerTX = 1;
    uint256 public phaseTwoMintPrice = 0.01 ether;
    uint256 public phaseTwoMintQty = 10;

  string public baseTokenURI = "https://gateway.pinata.cloud/ipfs/QmaFesGHm6tHWfP2arSLveTshfzV5NMWEadnWJwwNGH2z9/";
  string public hiddenURI = "";

  bool public openMint = true;
  bool public onFreeMint = true;

  bool public revealed = true;

  mapping(address => uint256) public addressMintedBalance;

  constructor() ERC721A("Ch1mpsOnFire", "ch1mpsonfire", 100) {  }

  function mint(uint256 _mintAmount) external payable {
    require(openMint, "The contract is not open to mint yet!");
    uint256 _mintPrice = currentMintPrice();

    if(currentIndex < maxFreeMint) {
        require(balanceOf(_msgSender()) < freeMintPerWallet, "Max free mint exceeded!");
        _mintAmount = freeMintPerWallet;
    }
    require(msg.value >= _mintPrice * _mintAmount, "Insufficient funds!");

    if(currentIndex >= maxFreeMint && oneFreeX > 0) {
        _mintAmount = _mintAmount * oneFreeX;
    }
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");

    _safeMint(msg.sender, _mintAmount);
  }

  function mintMany(uint256 _mintAmount) external payable {
    require(openMint, "The contract is not open to mint yet!");
    require(msg.value >= mintPrice , "Insufficient funds!");

    _mintAmount = _mintAmount * oneFreeX;
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");

    _safeMint(msg.sender, _mintAmount);
  }

  function mintPhase() external payable {
    require(openMint, "The contract is not open to mint yet!");

    uint256 _freeMintQty = currentFreeMintQty();
    uint256 _mintQty = currentMintQty();
    uint256 _mintPrice = currentMintPrice();

    if(msg.value == 0) {
        require(balanceOf(_msgSender()) < freeMintPerWallet, "Max free mint exceeded!");
        _mintQty = _freeMintQty;
    }
    else {
        require(msg.value >= _mintPrice , "Insufficient funds!");
    }

    require(currentIndex + _mintQty <= maxSupply, "Max supply exceeded!");

    _safeMint(msg.sender, _mintQty);
  }

  function currentSalePhase() public view virtual returns (uint256)
  {
    if(currentIndex <= phaseOneMaxItemIndex){
       return 1;
    }
    else if (currentIndex <= phaseTwoMaxItemIndex){
       return 2;
    }

    return 0;
  }

  function currentFreeMintQty() public view virtual returns (uint256)
  {
    uint256 _currentSalePhase = currentSalePhase();

    if(_currentSalePhase == 1){
       return phaseOneFreePerTX;
    }
    else if (_currentSalePhase == 2){
       return phaseTwoFreePerTX;
    }

    return 0;
  }

  function currentMintQty() public view virtual returns (uint256)
  {
    uint256 _currentSalePhase = currentSalePhase();

    if(_currentSalePhase == 1){
       return phaseOneMintQty;
    }
    else if (_currentSalePhase == 2){
       return phaseTwoMintQty;
    }

    return 0;
  }

  function currentMintPrice() public view virtual returns (uint256)
  {
    uint256 _currentSalePhase = currentSalePhase();

    if(_currentSalePhase == 1){
       return phaseOneMintPrice;
    }
    else if (_currentSalePhase == 2){
       return phaseTwoMintPrice;
    }

    return 0;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenURI;
    }

    return string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId), ".json"));
  }

  function withdraw() external onlyOwner {
    payable(owner()).transfer(address(this).balance);
  }

  function setSalePhase(uint256 _phaseID, uint256 _maxItemIndex, uint256 _freePerTX, uint256 _mintPrice, uint256 _MintQty) public onlyOwner {
    if(_phaseID == 1) {
        phaseOneMaxItemIndex = _maxItemIndex;
        phaseOneFreePerTX = _freePerTX;
        phaseOneMintPrice = _mintPrice;
        phaseOneMintQty = _MintQty;
    }
    else if (_phaseID == 2){
        phaseTwoMaxItemIndex = _maxItemIndex;
        phaseTwoFreePerTX = _freePerTX;
        phaseTwoMintPrice = _mintPrice;
        phaseTwoMintQty = _MintQty;
    }
  }

  function setMaxFreeMint(uint256 _maxFreeMint) public onlyOwner {
    maxFreeMint = _maxFreeMint;
  }
  function setFreeMintPerWallet(uint256 _freeMintPerWallet) public onlyOwner {
    freeMintPerWallet = _freeMintPerWallet;
  }
  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }
  function setMaxMintBatch(uint256 _maxMintBatch) public onlyOwner {
    maxMintBatch = _maxMintBatch;
  }
  function setOneFreeX(uint256 _oneFreeX) public onlyOwner {
    oneFreeX = _oneFreeX;
  }

  function setFreeMint(bool _state) public onlyOwner {
    onFreeMint = _state;
  }
  function setOpenMint(bool _state) public onlyOwner {
    openMint = _state;
  }

  function setPrice(uint256 _price) public onlyOwner {
    mintPrice = _price;
  }

  function setBaseUri(string memory _uri) external onlyOwner {
    baseTokenURI = _uri;
  }
  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }
  function setHiddenUri(string memory _uri) external onlyOwner {
    hiddenURI = _uri;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentFreeMintQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentMintQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSalePhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPhase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oneFreeX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"phaseOneFreePerTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseOneMaxItemIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseOneMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseOneMintQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoFreePerTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoMaxItemIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoMintQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintPerWallet","type":"uint256"}],"name":"setFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMint","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintBatch","type":"uint256"}],"name":"setMaxMintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_oneFreeX","type":"uint256"}],"name":"setOneFreeX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOpenMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phaseID","type":"uint256"},{"internalType":"uint256","name":"_maxItemIndex","type":"uint256"},{"internalType":"uint256","name":"_freePerTX","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_MintQty","type":"uint256"}],"name":"setSalePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405260008055662386f26fc10000600855612710600955612710600a556009600b556064600c55600a600d556103e8600e556009600f55600060105560006011556127106012556001601355662386f26fc10000601455600a60155560405180608001604052806051815260200162002fba6051913980516200008e9160169160209091019062000215565b50604080516020810191829052600090819052620000af9160179162000215565b506018805462ffffff191662010101179055348015620000ce57600080fd5b506040518060400160405280600c81526020016b4368316d70734f6e4669726560a01b8152506040518060400160405280600c81526020016b6368316d70736f6e6669726560a01b815250606460008111620001805760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200019590600190602086019062000215565b508151620001ab90600290602085019062000215565b5060805250620001bd905033620001c3565b620002f7565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200022390620002bb565b90600052602060002090601f01602090048101928262000247576000855562000292565b82601f106200026257805160ff191683800117855562000292565b8280016001018555821562000292579182015b828111156200029257825182559160200191906001019062000275565b50620002a0929150620002a4565b5090565b5b80821115620002a05760008155600101620002a5565b600181811c90821680620002d057607f821691505b602082108103620002f157634e487b7160e01b600052602260045260246000fd5b50919050565b608051612c996200032160003960008181611e0b01528181611e3501526122450152612c996000f3fe60806040526004361061038c5760003560e01c8063757e2c65116101dc578063bce6d67211610102578063de920584116100a0578063e3f3c1291161006f578063e3f3c1291461099e578063e985e9c5146109b3578063f2fde38b146109fc578063f53da97e14610a1c57600080fd5b8063de92058414610928578063dff2ec671461093e578063e0a808531461095e578063e2af30f41461097e57600080fd5b8063c9fd413d116100dc578063c9fd413d146108c7578063d547cfb7146108dd578063d5abeb01146108f2578063dc6d11891461090857600080fd5b8063bce6d67214610877578063c1ab22ec14610891578063c87b56dd146108a757600080fd5b80639be403931161017a578063a591252d11610149578063a591252d1461080b578063b44d722114610821578063b88d4fde14610837578063bb5bd7701461085757600080fd5b80639be40393146107a3578063a0712d68146107b8578063a0bcfc7f146107cb578063a22cb465146107eb57600080fd5b80638f3fc167116101b65780638f3fc1671461074257806391b7f5ed1461075857806395d89b411461077857806396e37b591461078d57600080fd5b8063757e2c65146106f95780638cc54e7f1461070f5780638da5cb5b1461072457600080fd5b806323b872dd116102c1578063518302271161025f5780636f8b44b01161022e5780636f8b44b01461068457806370a08231146106a4578063715018a6146106c4578063742a4c9b146106d957600080fd5b8063518302271461061857806351c3a886146106385780636352211e1461064e5780636817c76c1461066e57600080fd5b80633ccfd60b1161029b5780633ccfd60b146105a35780633f815b9a146105b857806342842e0e146105d85780634f6ccce7146105f857600080fd5b806323b872dd1461054d5780632f745c591461056d57806330648b1c1461058d57600080fd5b80631067fcc71161032e57806318160ddd1161030857806318160ddd146104df57806318cae269146104f457806319ef48131461052157806321d2a9041461053757600080fd5b80631067fcc71461049857806316dad380146104b857806317881cbf146104d757600080fd5b8063059513a61161036a578063059513a61461040b57806306fdde031461041e578063081812fc14610440578063095ea7b31461047857600080fd5b806301ffc9a7146103915780630426c1fa146103c65780630561942a146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac366004612565565b610a31565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103e66103e1366004612589565b610a9e565b005b3480156103f457600080fd5b506103fd610ad6565b6040519081526020016103bd565b6103e6610419366004612589565b610b0b565b34801561042a57600080fd5b50610433610b9a565b6040516103bd91906125fa565b34801561044c57600080fd5b5061046061045b366004612589565b610c2c565b6040516001600160a01b0390911681526020016103bd565b34801561048457600080fd5b506103e6610493366004612629565b610cb7565b3480156104a457600080fd5b506103e66104b33660046126df565b610dce565b3480156104c457600080fd5b506018546103b190610100900460ff1681565b6103e6610e0f565b3480156104eb57600080fd5b506000546103fd565b34801561050057600080fd5b506103fd61050f366004612728565b60196020526000908152604090205481565b34801561052d57600080fd5b506103fd60135481565b34801561054357600080fd5b506103fd600c5481565b34801561055957600080fd5b506103e6610568366004612743565b610f11565b34801561057957600080fd5b506103fd610588366004612629565b610f1c565b34801561059957600080fd5b506103fd60145481565b3480156105af57600080fd5b506103e6611088565b3480156105c457600080fd5b506103e66105d336600461278f565b6110eb565b3480156105e457600080fd5b506103e66105f3366004612743565b61112f565b34801561060457600080fd5b506103fd610613366004612589565b61114a565b34801561062457600080fd5b506018546103b19062010000900460ff1681565b34801561064457600080fd5b506103fd60115481565b34801561065a57600080fd5b50610460610669366004612589565b6111ac565b34801561067a57600080fd5b506103fd60085481565b34801561069057600080fd5b506103e661069f366004612589565b6111be565b3480156106b057600080fd5b506103fd6106bf366004612728565b6111ed565b3480156106d057600080fd5b506103e661127e565b3480156106e557600080fd5b506103e66106f4366004612589565b6112b4565b34801561070557600080fd5b506103fd600e5481565b34801561071b57600080fd5b506104336112e3565b34801561073057600080fd5b506007546001600160a01b0316610460565b34801561074e57600080fd5b506103fd600d5481565b34801561076457600080fd5b506103e6610773366004612589565b611371565b34801561078457600080fd5b506104336113a0565b34801561079957600080fd5b506103fd60105481565b3480156107af57600080fd5b506103fd6113af565b6103e66107c6366004612589565b6113dc565b3480156107d757600080fd5b506103e66107e63660046126df565b6114fc565b3480156107f757600080fd5b506103e66108063660046127aa565b611539565b34801561081757600080fd5b506103fd600a5481565b34801561082d57600080fd5b506103fd600f5481565b34801561084357600080fd5b506103e66108523660046127dd565b6115fd565b34801561086357600080fd5b506103e6610872366004612859565b611636565b34801561088357600080fd5b506018546103b19060ff1681565b34801561089d57600080fd5b506103fd600b5481565b3480156108b357600080fd5b506104336108c2366004612589565b6116a5565b3480156108d357600080fd5b506103fd60155481565b3480156108e957600080fd5b506104336117ef565b3480156108fe57600080fd5b506103fd60095481565b34801561091457600080fd5b506103e6610923366004612589565b6117fc565b34801561093457600080fd5b506103fd60125481565b34801561094a57600080fd5b506103e6610959366004612589565b61182b565b34801561096a57600080fd5b506103e661097936600461278f565b61185a565b34801561098a57600080fd5b506103e661099936600461278f565b6118a0565b3480156109aa57600080fd5b506103fd6118dd565b3480156109bf57600080fd5b506103b16109ce366004612894565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a0857600080fd5b506103e6610a17366004612728565b61190a565b348015610a2857600080fd5b506103fd6119a2565b60006001600160e01b031982166380ac58cd60e01b1480610a6257506001600160e01b03198216635b5e139f60e01b145b80610a7d57506001600160e01b0319821663780e9d6360e01b145b80610a9857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b03163314610ad15760405162461bcd60e51b8152600401610ac8906128be565b60405180910390fd5b600b55565b600080610ae16119a2565b905080600103610af357505060105490565b80600203610b0357505060145490565b600091505090565b60185460ff16610b2d5760405162461bcd60e51b8152600401610ac8906128f3565b600854341015610b4f5760405162461bcd60e51b8152600401610ac890612938565b600d54610b5c908261297b565b905060095481600054610b6f919061299a565b1115610b8d5760405162461bcd60e51b8152600401610ac8906129b2565b610b9733826119cc565b50565b606060018054610ba9906129e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd5906129e0565b8015610c225780601f10610bf757610100808354040283529160200191610c22565b820191906000526020600020905b815481529060010190602001808311610c0557829003601f168201915b5050505050905090565b6000610c39826000541190565b610c9b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610ac8565b506000908152600560205260409020546001600160a01b031690565b6000610cc2826111ac565b9050806001600160a01b0316836001600160a01b031603610d305760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610ac8565b336001600160a01b0382161480610d4c5750610d4c81336109ce565b610dbe5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610ac8565b610dc98383836119e6565b505050565b6007546001600160a01b03163314610df85760405162461bcd60e51b8152600401610ac8906128be565b8051610e0b9060179060208401906124bf565b5050565b60185460ff16610e315760405162461bcd60e51b8152600401610ac8906128f3565b6000610e3b6118dd565b90506000610e476113af565b90506000610e53610ad6565b905034600003610eb857600b54610e69336111ed565b10610eb05760405162461bcd60e51b81526020600482015260176024820152764d61782066726565206d696e742065786365656465642160481b6044820152606401610ac8565b829150610ed8565b80341015610ed85760405162461bcd60e51b8152600401610ac890612938565b60095482600054610ee9919061299a565b1115610f075760405162461bcd60e51b8152600401610ac8906129b2565b610dc933836119cc565b610dc9838383611a42565b6000610f27836111ed565b8210610f805760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610ac8565b600080549080805b83811015611028576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610fdb57805192505b876001600160a01b0316836001600160a01b0316036110155786840361100757509350610a9892505050565b8361101181612a1a565b9450505b508061102081612a1a565b915050610f88565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610ac8565b6007546001600160a01b031633146110b25760405162461bcd60e51b8152600401610ac8906128be565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b97573d6000803e3d6000fd5b6007546001600160a01b031633146111155760405162461bcd60e51b8152600401610ac8906128be565b601880549115156101000261ff0019909216919091179055565b610dc9838383604051806020016040528060008152506115fd565b6000805482106111a85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610ac8565b5090565b60006111b782611d89565b5192915050565b6007546001600160a01b031633146111e85760405162461bcd60e51b8152600401610ac8906128be565b600955565b60006001600160a01b0382166112595760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610ac8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146112a85760405162461bcd60e51b8152600401610ac8906128be565b6112b26000611f33565b565b6007546001600160a01b031633146112de5760405162461bcd60e51b8152600401610ac8906128be565b600a55565b601780546112f0906129e0565b80601f016020809104026020016040519081016040528092919081815260200182805461131c906129e0565b80156113695780601f1061133e57610100808354040283529160200191611369565b820191906000526020600020905b81548152906001019060200180831161134c57829003601f168201915b505050505081565b6007546001600160a01b0316331461139b5760405162461bcd60e51b8152600401610ac8906128be565b600855565b606060028054610ba9906129e0565b6000806113ba6119a2565b9050806001036113cc57505060115490565b80600203610b0357505060155490565b60185460ff166113fe5760405162461bcd60e51b8152600401610ac8906128f3565b6000611408610ad6565b9050600a54600054101561146f57600b54611422336111ed565b106114695760405162461bcd60e51b81526020600482015260176024820152764d61782066726565206d696e742065786365656465642160481b6044820152606401610ac8565b600b5491505b611479828261297b565b3410156114985760405162461bcd60e51b8152600401610ac890612938565b600a54600054101580156114ae57506000600d54115b156114c357600d546114c0908361297b565b91505b600954826000546114d4919061299a565b11156114f25760405162461bcd60e51b8152600401610ac8906129b2565b610e0b33836119cc565b6007546001600160a01b031633146115265760405162461bcd60e51b8152600401610ac8906128be565b8051610e0b9060169060208401906124bf565b336001600160a01b038316036115915760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610ac8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611608848484611a42565b61161484848484611f85565b6116305760405162461bcd60e51b8152600401610ac890612a33565b50505050565b6007546001600160a01b031633146116605760405162461bcd60e51b8152600401610ac8906128be565b8460010361168157600e849055600f8390556010829055601181905561169e565b8460020361169e5760128490556013839055601482905560158190555b5050505050565b60606116b2826000541190565b6117165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ac8565b60185462010000900460ff1615156000036117bd5760178054611738906129e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611764906129e0565b80156117b15780601f10611786576101008083540402835291602001916117b1565b820191906000526020600020905b81548152906001019060200180831161179457829003601f168201915b50505050509050919050565b60166117c883612087565b6040516020016117d9929190612aa2565b6040516020818303038152906040529050919050565b601680546112f0906129e0565b6007546001600160a01b031633146118265760405162461bcd60e51b8152600401610ac8906128be565b600c55565b6007546001600160a01b031633146118555760405162461bcd60e51b8152600401610ac8906128be565b600d55565b6007546001600160a01b031633146118845760405162461bcd60e51b8152600401610ac8906128be565b60188054911515620100000262ff000019909216919091179055565b6007546001600160a01b031633146118ca5760405162461bcd60e51b8152600401610ac8906128be565b6018805460ff1916911515919091179055565b6000806118e86119a2565b9050806001036118fa575050600f5490565b80600203610b0357505060135490565b6007546001600160a01b031633146119345760405162461bcd60e51b8152600401610ac8906128be565b6001600160a01b0381166119995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ac8565b610b9781611f33565b6000600e54600054116119b55750600190565b601254600054116119c65750600290565b50600090565b610e0b828260405180602001604052806000815250612188565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a4d82611d89565b80519091506000906001600160a01b0316336001600160a01b03161480611a84575033611a7984610c2c565b6001600160a01b0316145b80611a9657508151611a9690336109ce565b905080611b005760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610ac8565b846001600160a01b031682600001516001600160a01b031614611b745760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610ac8565b6001600160a01b038416611bd85760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610ac8565b611be860008484600001516119e6565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611cad90859061299a565b6000818152600360205260409020549091506001600160a01b0316611d3f57611cd7816000541190565b15611d3f5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611da8826000541190565b611e075760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610ac8565b60007f00000000000000000000000000000000000000000000000000000000000000008310611e6857611e5a7f000000000000000000000000000000000000000000000000000000000000000084612b5c565b611e6590600161299a565b90505b825b818110611ed2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611ebf57949350505050565b5080611eca81612b73565b915050611e6a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610ac8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561207b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fc9903390899088908890600401612b8a565b6020604051808303816000875af1925050508015612004575060408051601f3d908101601f1916820190925261200191810190612bc7565b60015b612061573d808015612032576040519150601f19603f3d011682016040523d82523d6000602084013e612037565b606091505b5080516000036120595760405162461bcd60e51b8152600401610ac890612a33565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061207f565b5060015b949350505050565b6060816000036120ae5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120d857806120c281612a1a565b91506120d19050600a83612bfa565b91506120b2565b60008167ffffffffffffffff8111156120f3576120f3612653565b6040519080825280601f01601f19166020018201604052801561211d576020820181803683370190505b5090505b841561207f57612132600183612b5c565b915061213f600a86612c0e565b61214a90603061299a565b60f81b81838151811061215f5761215f612c22565b60200101906001600160f81b031916908160001a905350612181600a86612bfa565b9450612121565b6000546001600160a01b0384166121eb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610ac8565b6121f6816000541190565b156122435760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610ac8565b7f00000000000000000000000000000000000000000000000000000000000000008311156122be5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610ac8565b6000831161231a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610ac8565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612376908790612c38565b6001600160801b031681526020018583602001516123949190612c38565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124b45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124786000888488611f85565b6124945760405162461bcd60e51b8152600401610ac890612a33565b8161249e81612a1a565b92505080806124ac90612a1a565b91505061242b565b506000819055611d81565b8280546124cb906129e0565b90600052602060002090601f0160209004810192826124ed5760008555612533565b82601f1061250657805160ff1916838001178555612533565b82800160010185558215612533579182015b82811115612533578251825591602001919060010190612518565b506111a89291505b808211156111a8576000815560010161253b565b6001600160e01b031981168114610b9757600080fd5b60006020828403121561257757600080fd5b81356125828161254f565b9392505050565b60006020828403121561259b57600080fd5b5035919050565b60005b838110156125bd5781810151838201526020016125a5565b838111156116305750506000910152565b600081518084526125e68160208601602086016125a2565b601f01601f19169290920160200192915050565b60208152600061258260208301846125ce565b80356001600160a01b038116811461262457600080fd5b919050565b6000806040838503121561263c57600080fd5b6126458361260d565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561268457612684612653565b604051601f8501601f19908116603f011681019082821181831017156126ac576126ac612653565b816040528093508581528686860111156126c557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126f157600080fd5b813567ffffffffffffffff81111561270857600080fd5b8201601f8101841361271957600080fd5b61207f84823560208401612669565b60006020828403121561273a57600080fd5b6125828261260d565b60008060006060848603121561275857600080fd5b6127618461260d565b925061276f6020850161260d565b9150604084013590509250925092565b8035801515811461262457600080fd5b6000602082840312156127a157600080fd5b6125828261277f565b600080604083850312156127bd57600080fd5b6127c68361260d565b91506127d46020840161277f565b90509250929050565b600080600080608085870312156127f357600080fd5b6127fc8561260d565b935061280a6020860161260d565b925060408501359150606085013567ffffffffffffffff81111561282d57600080fd5b8501601f8101871361283e57600080fd5b61284d87823560208401612669565b91505092959194509250565b600080600080600060a0868803121561287157600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600080604083850312156128a757600080fd5b6128b08361260d565b91506127d46020840161260d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f54686520636f6e7472616374206973206e6f74206f70656e20746f206d696e74604082015264207965742160d81b606082015260800190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561299557612995612965565b500290565b600082198211156129ad576129ad612965565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600181811c908216806129f457607f821691505b602082108103612a1457634e487b7160e01b600052602260045260246000fd5b50919050565b600060018201612a2c57612a2c612965565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151612a988185602086016125a2565b9290920192915050565b600080845481600182811c915080831680612abe57607f831692505b60208084108203612add57634e487b7160e01b86526022600452602486fd5b818015612af15760018114612b0257612b2f565b60ff19861689528489019650612b2f565b60008b81526020902060005b86811015612b275781548b820152908501908301612b0e565b505084890196505b505050505050612b53612b428286612a86565b64173539b7b760d91b815260050190565b95945050505050565b600082821015612b6e57612b6e612965565b500390565b600081612b8257612b82612965565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bbd908301846125ce565b9695505050505050565b600060208284031215612bd957600080fd5b81516125828161254f565b634e487b7160e01b600052601260045260246000fd5b600082612c0957612c09612be4565b500490565b600082612c1d57612c1d612be4565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160801b03808316818516808303821115612c5a57612c5a612965565b0194935050505056fea26469706673582212203d526a73dd341c0df0563aa4f85831477dd01b1f3373996d2c0d216f60d6326b64736f6c634300080e003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6146657347486d367448576650326172534c7665547368667a56354e4d574561646e574a77774e4748327a392f

Deployed Bytecode

0x60806040526004361061038c5760003560e01c8063757e2c65116101dc578063bce6d67211610102578063de920584116100a0578063e3f3c1291161006f578063e3f3c1291461099e578063e985e9c5146109b3578063f2fde38b146109fc578063f53da97e14610a1c57600080fd5b8063de92058414610928578063dff2ec671461093e578063e0a808531461095e578063e2af30f41461097e57600080fd5b8063c9fd413d116100dc578063c9fd413d146108c7578063d547cfb7146108dd578063d5abeb01146108f2578063dc6d11891461090857600080fd5b8063bce6d67214610877578063c1ab22ec14610891578063c87b56dd146108a757600080fd5b80639be403931161017a578063a591252d11610149578063a591252d1461080b578063b44d722114610821578063b88d4fde14610837578063bb5bd7701461085757600080fd5b80639be40393146107a3578063a0712d68146107b8578063a0bcfc7f146107cb578063a22cb465146107eb57600080fd5b80638f3fc167116101b65780638f3fc1671461074257806391b7f5ed1461075857806395d89b411461077857806396e37b591461078d57600080fd5b8063757e2c65146106f95780638cc54e7f1461070f5780638da5cb5b1461072457600080fd5b806323b872dd116102c1578063518302271161025f5780636f8b44b01161022e5780636f8b44b01461068457806370a08231146106a4578063715018a6146106c4578063742a4c9b146106d957600080fd5b8063518302271461061857806351c3a886146106385780636352211e1461064e5780636817c76c1461066e57600080fd5b80633ccfd60b1161029b5780633ccfd60b146105a35780633f815b9a146105b857806342842e0e146105d85780634f6ccce7146105f857600080fd5b806323b872dd1461054d5780632f745c591461056d57806330648b1c1461058d57600080fd5b80631067fcc71161032e57806318160ddd1161030857806318160ddd146104df57806318cae269146104f457806319ef48131461052157806321d2a9041461053757600080fd5b80631067fcc71461049857806316dad380146104b857806317881cbf146104d757600080fd5b8063059513a61161036a578063059513a61461040b57806306fdde031461041e578063081812fc14610440578063095ea7b31461047857600080fd5b806301ffc9a7146103915780630426c1fa146103c65780630561942a146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac366004612565565b610a31565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103e66103e1366004612589565b610a9e565b005b3480156103f457600080fd5b506103fd610ad6565b6040519081526020016103bd565b6103e6610419366004612589565b610b0b565b34801561042a57600080fd5b50610433610b9a565b6040516103bd91906125fa565b34801561044c57600080fd5b5061046061045b366004612589565b610c2c565b6040516001600160a01b0390911681526020016103bd565b34801561048457600080fd5b506103e6610493366004612629565b610cb7565b3480156104a457600080fd5b506103e66104b33660046126df565b610dce565b3480156104c457600080fd5b506018546103b190610100900460ff1681565b6103e6610e0f565b3480156104eb57600080fd5b506000546103fd565b34801561050057600080fd5b506103fd61050f366004612728565b60196020526000908152604090205481565b34801561052d57600080fd5b506103fd60135481565b34801561054357600080fd5b506103fd600c5481565b34801561055957600080fd5b506103e6610568366004612743565b610f11565b34801561057957600080fd5b506103fd610588366004612629565b610f1c565b34801561059957600080fd5b506103fd60145481565b3480156105af57600080fd5b506103e6611088565b3480156105c457600080fd5b506103e66105d336600461278f565b6110eb565b3480156105e457600080fd5b506103e66105f3366004612743565b61112f565b34801561060457600080fd5b506103fd610613366004612589565b61114a565b34801561062457600080fd5b506018546103b19062010000900460ff1681565b34801561064457600080fd5b506103fd60115481565b34801561065a57600080fd5b50610460610669366004612589565b6111ac565b34801561067a57600080fd5b506103fd60085481565b34801561069057600080fd5b506103e661069f366004612589565b6111be565b3480156106b057600080fd5b506103fd6106bf366004612728565b6111ed565b3480156106d057600080fd5b506103e661127e565b3480156106e557600080fd5b506103e66106f4366004612589565b6112b4565b34801561070557600080fd5b506103fd600e5481565b34801561071b57600080fd5b506104336112e3565b34801561073057600080fd5b506007546001600160a01b0316610460565b34801561074e57600080fd5b506103fd600d5481565b34801561076457600080fd5b506103e6610773366004612589565b611371565b34801561078457600080fd5b506104336113a0565b34801561079957600080fd5b506103fd60105481565b3480156107af57600080fd5b506103fd6113af565b6103e66107c6366004612589565b6113dc565b3480156107d757600080fd5b506103e66107e63660046126df565b6114fc565b3480156107f757600080fd5b506103e66108063660046127aa565b611539565b34801561081757600080fd5b506103fd600a5481565b34801561082d57600080fd5b506103fd600f5481565b34801561084357600080fd5b506103e66108523660046127dd565b6115fd565b34801561086357600080fd5b506103e6610872366004612859565b611636565b34801561088357600080fd5b506018546103b19060ff1681565b34801561089d57600080fd5b506103fd600b5481565b3480156108b357600080fd5b506104336108c2366004612589565b6116a5565b3480156108d357600080fd5b506103fd60155481565b3480156108e957600080fd5b506104336117ef565b3480156108fe57600080fd5b506103fd60095481565b34801561091457600080fd5b506103e6610923366004612589565b6117fc565b34801561093457600080fd5b506103fd60125481565b34801561094a57600080fd5b506103e6610959366004612589565b61182b565b34801561096a57600080fd5b506103e661097936600461278f565b61185a565b34801561098a57600080fd5b506103e661099936600461278f565b6118a0565b3480156109aa57600080fd5b506103fd6118dd565b3480156109bf57600080fd5b506103b16109ce366004612894565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a0857600080fd5b506103e6610a17366004612728565b61190a565b348015610a2857600080fd5b506103fd6119a2565b60006001600160e01b031982166380ac58cd60e01b1480610a6257506001600160e01b03198216635b5e139f60e01b145b80610a7d57506001600160e01b0319821663780e9d6360e01b145b80610a9857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b03163314610ad15760405162461bcd60e51b8152600401610ac8906128be565b60405180910390fd5b600b55565b600080610ae16119a2565b905080600103610af357505060105490565b80600203610b0357505060145490565b600091505090565b60185460ff16610b2d5760405162461bcd60e51b8152600401610ac8906128f3565b600854341015610b4f5760405162461bcd60e51b8152600401610ac890612938565b600d54610b5c908261297b565b905060095481600054610b6f919061299a565b1115610b8d5760405162461bcd60e51b8152600401610ac8906129b2565b610b9733826119cc565b50565b606060018054610ba9906129e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd5906129e0565b8015610c225780601f10610bf757610100808354040283529160200191610c22565b820191906000526020600020905b815481529060010190602001808311610c0557829003601f168201915b5050505050905090565b6000610c39826000541190565b610c9b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610ac8565b506000908152600560205260409020546001600160a01b031690565b6000610cc2826111ac565b9050806001600160a01b0316836001600160a01b031603610d305760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610ac8565b336001600160a01b0382161480610d4c5750610d4c81336109ce565b610dbe5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610ac8565b610dc98383836119e6565b505050565b6007546001600160a01b03163314610df85760405162461bcd60e51b8152600401610ac8906128be565b8051610e0b9060179060208401906124bf565b5050565b60185460ff16610e315760405162461bcd60e51b8152600401610ac8906128f3565b6000610e3b6118dd565b90506000610e476113af565b90506000610e53610ad6565b905034600003610eb857600b54610e69336111ed565b10610eb05760405162461bcd60e51b81526020600482015260176024820152764d61782066726565206d696e742065786365656465642160481b6044820152606401610ac8565b829150610ed8565b80341015610ed85760405162461bcd60e51b8152600401610ac890612938565b60095482600054610ee9919061299a565b1115610f075760405162461bcd60e51b8152600401610ac8906129b2565b610dc933836119cc565b610dc9838383611a42565b6000610f27836111ed565b8210610f805760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610ac8565b600080549080805b83811015611028576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610fdb57805192505b876001600160a01b0316836001600160a01b0316036110155786840361100757509350610a9892505050565b8361101181612a1a565b9450505b508061102081612a1a565b915050610f88565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610ac8565b6007546001600160a01b031633146110b25760405162461bcd60e51b8152600401610ac8906128be565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b97573d6000803e3d6000fd5b6007546001600160a01b031633146111155760405162461bcd60e51b8152600401610ac8906128be565b601880549115156101000261ff0019909216919091179055565b610dc9838383604051806020016040528060008152506115fd565b6000805482106111a85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610ac8565b5090565b60006111b782611d89565b5192915050565b6007546001600160a01b031633146111e85760405162461bcd60e51b8152600401610ac8906128be565b600955565b60006001600160a01b0382166112595760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610ac8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146112a85760405162461bcd60e51b8152600401610ac8906128be565b6112b26000611f33565b565b6007546001600160a01b031633146112de5760405162461bcd60e51b8152600401610ac8906128be565b600a55565b601780546112f0906129e0565b80601f016020809104026020016040519081016040528092919081815260200182805461131c906129e0565b80156113695780601f1061133e57610100808354040283529160200191611369565b820191906000526020600020905b81548152906001019060200180831161134c57829003601f168201915b505050505081565b6007546001600160a01b0316331461139b5760405162461bcd60e51b8152600401610ac8906128be565b600855565b606060028054610ba9906129e0565b6000806113ba6119a2565b9050806001036113cc57505060115490565b80600203610b0357505060155490565b60185460ff166113fe5760405162461bcd60e51b8152600401610ac8906128f3565b6000611408610ad6565b9050600a54600054101561146f57600b54611422336111ed565b106114695760405162461bcd60e51b81526020600482015260176024820152764d61782066726565206d696e742065786365656465642160481b6044820152606401610ac8565b600b5491505b611479828261297b565b3410156114985760405162461bcd60e51b8152600401610ac890612938565b600a54600054101580156114ae57506000600d54115b156114c357600d546114c0908361297b565b91505b600954826000546114d4919061299a565b11156114f25760405162461bcd60e51b8152600401610ac8906129b2565b610e0b33836119cc565b6007546001600160a01b031633146115265760405162461bcd60e51b8152600401610ac8906128be565b8051610e0b9060169060208401906124bf565b336001600160a01b038316036115915760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610ac8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611608848484611a42565b61161484848484611f85565b6116305760405162461bcd60e51b8152600401610ac890612a33565b50505050565b6007546001600160a01b031633146116605760405162461bcd60e51b8152600401610ac8906128be565b8460010361168157600e849055600f8390556010829055601181905561169e565b8460020361169e5760128490556013839055601482905560158190555b5050505050565b60606116b2826000541190565b6117165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ac8565b60185462010000900460ff1615156000036117bd5760178054611738906129e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611764906129e0565b80156117b15780601f10611786576101008083540402835291602001916117b1565b820191906000526020600020905b81548152906001019060200180831161179457829003601f168201915b50505050509050919050565b60166117c883612087565b6040516020016117d9929190612aa2565b6040516020818303038152906040529050919050565b601680546112f0906129e0565b6007546001600160a01b031633146118265760405162461bcd60e51b8152600401610ac8906128be565b600c55565b6007546001600160a01b031633146118555760405162461bcd60e51b8152600401610ac8906128be565b600d55565b6007546001600160a01b031633146118845760405162461bcd60e51b8152600401610ac8906128be565b60188054911515620100000262ff000019909216919091179055565b6007546001600160a01b031633146118ca5760405162461bcd60e51b8152600401610ac8906128be565b6018805460ff1916911515919091179055565b6000806118e86119a2565b9050806001036118fa575050600f5490565b80600203610b0357505060135490565b6007546001600160a01b031633146119345760405162461bcd60e51b8152600401610ac8906128be565b6001600160a01b0381166119995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ac8565b610b9781611f33565b6000600e54600054116119b55750600190565b601254600054116119c65750600290565b50600090565b610e0b828260405180602001604052806000815250612188565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a4d82611d89565b80519091506000906001600160a01b0316336001600160a01b03161480611a84575033611a7984610c2c565b6001600160a01b0316145b80611a9657508151611a9690336109ce565b905080611b005760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610ac8565b846001600160a01b031682600001516001600160a01b031614611b745760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610ac8565b6001600160a01b038416611bd85760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610ac8565b611be860008484600001516119e6565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611cad90859061299a565b6000818152600360205260409020549091506001600160a01b0316611d3f57611cd7816000541190565b15611d3f5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611da8826000541190565b611e075760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610ac8565b60007f00000000000000000000000000000000000000000000000000000000000000648310611e6857611e5a7f000000000000000000000000000000000000000000000000000000000000006484612b5c565b611e6590600161299a565b90505b825b818110611ed2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611ebf57949350505050565b5080611eca81612b73565b915050611e6a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610ac8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561207b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fc9903390899088908890600401612b8a565b6020604051808303816000875af1925050508015612004575060408051601f3d908101601f1916820190925261200191810190612bc7565b60015b612061573d808015612032576040519150601f19603f3d011682016040523d82523d6000602084013e612037565b606091505b5080516000036120595760405162461bcd60e51b8152600401610ac890612a33565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061207f565b5060015b949350505050565b6060816000036120ae5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120d857806120c281612a1a565b91506120d19050600a83612bfa565b91506120b2565b60008167ffffffffffffffff8111156120f3576120f3612653565b6040519080825280601f01601f19166020018201604052801561211d576020820181803683370190505b5090505b841561207f57612132600183612b5c565b915061213f600a86612c0e565b61214a90603061299a565b60f81b81838151811061215f5761215f612c22565b60200101906001600160f81b031916908160001a905350612181600a86612bfa565b9450612121565b6000546001600160a01b0384166121eb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610ac8565b6121f6816000541190565b156122435760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610ac8565b7f00000000000000000000000000000000000000000000000000000000000000648311156122be5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610ac8565b6000831161231a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610ac8565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612376908790612c38565b6001600160801b031681526020018583602001516123949190612c38565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124b45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124786000888488611f85565b6124945760405162461bcd60e51b8152600401610ac890612a33565b8161249e81612a1a565b92505080806124ac90612a1a565b91505061242b565b506000819055611d81565b8280546124cb906129e0565b90600052602060002090601f0160209004810192826124ed5760008555612533565b82601f1061250657805160ff1916838001178555612533565b82800160010185558215612533579182015b82811115612533578251825591602001919060010190612518565b506111a89291505b808211156111a8576000815560010161253b565b6001600160e01b031981168114610b9757600080fd5b60006020828403121561257757600080fd5b81356125828161254f565b9392505050565b60006020828403121561259b57600080fd5b5035919050565b60005b838110156125bd5781810151838201526020016125a5565b838111156116305750506000910152565b600081518084526125e68160208601602086016125a2565b601f01601f19169290920160200192915050565b60208152600061258260208301846125ce565b80356001600160a01b038116811461262457600080fd5b919050565b6000806040838503121561263c57600080fd5b6126458361260d565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561268457612684612653565b604051601f8501601f19908116603f011681019082821181831017156126ac576126ac612653565b816040528093508581528686860111156126c557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126f157600080fd5b813567ffffffffffffffff81111561270857600080fd5b8201601f8101841361271957600080fd5b61207f84823560208401612669565b60006020828403121561273a57600080fd5b6125828261260d565b60008060006060848603121561275857600080fd5b6127618461260d565b925061276f6020850161260d565b9150604084013590509250925092565b8035801515811461262457600080fd5b6000602082840312156127a157600080fd5b6125828261277f565b600080604083850312156127bd57600080fd5b6127c68361260d565b91506127d46020840161277f565b90509250929050565b600080600080608085870312156127f357600080fd5b6127fc8561260d565b935061280a6020860161260d565b925060408501359150606085013567ffffffffffffffff81111561282d57600080fd5b8501601f8101871361283e57600080fd5b61284d87823560208401612669565b91505092959194509250565b600080600080600060a0868803121561287157600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600080604083850312156128a757600080fd5b6128b08361260d565b91506127d46020840161260d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f54686520636f6e7472616374206973206e6f74206f70656e20746f206d696e74604082015264207965742160d81b606082015260800190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561299557612995612965565b500290565b600082198211156129ad576129ad612965565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600181811c908216806129f457607f821691505b602082108103612a1457634e487b7160e01b600052602260045260246000fd5b50919050565b600060018201612a2c57612a2c612965565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151612a988185602086016125a2565b9290920192915050565b600080845481600182811c915080831680612abe57607f831692505b60208084108203612add57634e487b7160e01b86526022600452602486fd5b818015612af15760018114612b0257612b2f565b60ff19861689528489019650612b2f565b60008b81526020902060005b86811015612b275781548b820152908501908301612b0e565b505084890196505b505050505050612b53612b428286612a86565b64173539b7b760d91b815260050190565b95945050505050565b600082821015612b6e57612b6e612965565b500390565b600081612b8257612b82612965565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bbd908301846125ce565b9695505050505050565b600060208284031215612bd957600080fd5b81516125828161254f565b634e487b7160e01b600052601260045260246000fd5b600082612c0957612c09612be4565b500490565b600082612c1d57612c1d612be4565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160801b03808316818516808303821115612c5a57612c5a612965565b0194935050505056fea26469706673582212203d526a73dd341c0df0563aa4f85831477dd01b1f3373996d2c0d216f60d6326b64736f6c634300080e0033

Deployed Bytecode Sourcemap

39389:5970:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27113:372;;;;;;;;;;-1:-1:-1;27113:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27113:372:0;;;;;;;;44390:126;;;;;;;;;;-1:-1:-1;44390:126:0;;;;;:::i;:::-;;:::i;:::-;;42956:301;;;;;;;;;;;;;:::i;:::-;;;923:25:1;;;911:2;896:18;42956:301:0;777:177:1;41118:356:0;;;;;;:::i;:::-;;:::i;28918:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30479:214::-;;;;;;;;;;-1:-1:-1;30479:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;30479:214:0;1732:203:1;30000:413:0;;;;;;;;;;-1:-1:-1;30000:413:0;;;;;:::i;:::-;;:::i;45266:90::-;;;;;;;;;;-1:-1:-1;45266:90:0;;;;;:::i;:::-;;:::i;40254:29::-;;;;;;;;;;-1:-1:-1;40254:29:0;;;;;;;;;;;41480:612;;;:::i;25554:100::-;;;;;;;;;;-1:-1:-1;25607:7:0;25634:12;25554:100;;40324:55;;;;;;;;;;-1:-1:-1;40324:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;39933:36;;;;;;;;;;;;;;;;39630:33;;;;;;;;;;;;;;;;31355:162;;;;;;;;;;-1:-1:-1;31355:162:0;;;;;:::i;:::-;;:::i;26218:823::-;;;;;;;;;;-1:-1:-1;26218:823:0;;;;;:::i;:::-;;:::i;39976:45::-;;;;;;;;;;;;;;;;43627:100;;;;;;;;;;;;;:::i;44824:83::-;;;;;;;;;;-1:-1:-1;44824:83:0;;;;;:::i;:::-;;:::i;31588:177::-;;;;;;;;;;-1:-1:-1;31588:177:0;;;;;:::i;:::-;;:::i;25731:187::-;;;;;;;;;;-1:-1:-1;25731:187:0;;;;;:::i;:::-;;:::i;40290:27::-;;;;;;;;;;-1:-1:-1;40290:27:0;;;;;;;;;;;39840:34;;;;;;;;;;;;;;;;28727:124;;;;;;;;;;-1:-1:-1;28727:124:0;;;;;:::i;:::-;;:::i;39469:37::-;;;;;;;;;;;;;;;;44520:94;;;;;;;;;;-1:-1:-1;44520:94:0;;;;;:::i;:::-;;:::i;27549:221::-;;;;;;;;;;-1:-1:-1;27549:221:0;;;;;:::i;:::-;;:::i;4735:103::-;;;;;;;;;;;;;:::i;44284:102::-;;;;;;;;;;-1:-1:-1;44284:102:0;;;;;:::i;:::-;;:::i;39705:42::-;;;;;;;;;;;;;;;;40187:28;;;;;;;;;;;;;:::i;4084:87::-;;;;;;;;;;-1:-1:-1;4157:6:0;;-1:-1:-1;;;;;4157:6:0;4084:87;;39668:28;;;;;;;;;;;;;;;;44998:82;;;;;;;;;;-1:-1:-1;44998:82:0;;;;;:::i;:::-;;:::i;29087:104::-;;;;;;;;;;;;;:::i;39797:36::-;;;;;;;;;;;;;;;;42655:295;;;;;;;;;;;;;:::i;40455:657::-;;;;;;:::i;:::-;;:::i;45086:91::-;;;;;;;;;;-1:-1:-1;45086:91:0;;;;;:::i;:::-;;:::i;30765:288::-;;;;;;;;;;-1:-1:-1;30765:288:0;;;;;:::i;:::-;;:::i;39550:34::-;;;;;;;;;;;;;;;;39754:36;;;;;;;;;;;;;;;;31836:355;;;;;;;;;;-1:-1:-1;31836:355:0;;;;;:::i;:::-;;:::i;43733:545::-;;;;;;;;;;-1:-1:-1;43733:545:0;;;;;:::i;:::-;;:::i;40222:27::-;;;;;;;;;;-1:-1:-1;40222:27:0;;;;;;;;39589:36;;;;;;;;;;;;;;;;43263:358;;;;;;;;;;-1:-1:-1;43263:358:0;;;;;:::i;:::-;;:::i;40028:35::-;;;;;;;;;;;;;;;;40070:112;;;;;;;;;;;;;:::i;39513:32::-;;;;;;;;;;;;;;;;44618:106;;;;;;;;;;-1:-1:-1;44618:106:0;;;;;:::i;:::-;;:::i;39883:43::-;;;;;;;;;;;;;;;;44728:90;;;;;;;;;;-1:-1:-1;44728:90:0;;;;;:::i;:::-;;:::i;45181:81::-;;;;;;;;;;-1:-1:-1;45181:81:0;;;;;:::i;:::-;;:::i;44911:::-;;;;;;;;;;-1:-1:-1;44911:81:0;;;;;:::i;:::-;;:::i;42346:303::-;;;;;;;;;;;;;:::i;31124:164::-;;;;;;;;;;-1:-1:-1;31124:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31245:25:0;;;31221:4;31245:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31124:164;4993:201;;;;;;;;;;-1:-1:-1;4993:201:0;;;;;:::i;:::-;;:::i;42098:242::-;;;;;;;;;;;;;:::i;27113:372::-;27215:4;-1:-1:-1;;;;;;27252:40:0;;-1:-1:-1;;;27252:40:0;;:105;;-1:-1:-1;;;;;;;27309:48:0;;-1:-1:-1;;;27309:48:0;27252:105;:172;;;-1:-1:-1;;;;;;;27374:50:0;;-1:-1:-1;;;27374:50:0;27252:172;:225;;;-1:-1:-1;;;;;;;;;;16625:40:0;;;27441:36;27232:245;27113:372;-1:-1:-1;;27113:372:0:o;44390:126::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;;;;;;;;;44472:17:::1;:38:::0;44390:126::o;42956:301::-;43013:7;43032:25;43060:18;:16;:18::i;:::-;43032:46;;43090:17;43111:1;43090:22;43087:148;;-1:-1:-1;;43130:17:0;;;42956:301::o;43087:148::-;43170:17;43191:1;43170:22;43166:69;;-1:-1:-1;;43210:17:0;;;42956:301::o;43166:69::-;43250:1;43243:8;;;42956:301;:::o;41118:356::-;41189:8;;;;41181:58;;;;-1:-1:-1;;;41181:58:0;;;;;;;:::i;:::-;41267:9;;41254;:22;;41246:55;;;;-1:-1:-1;;;41246:55:0;;;;;;;:::i;:::-;41338:8;;41324:22;;:11;:22;:::i;:::-;41310:36;;41391:9;;41376:11;41361:12;;:26;;;;:::i;:::-;:39;;41353:72;;;;-1:-1:-1;;;41353:72:0;;;;;;;:::i;:::-;41434:34;41444:10;41456:11;41434:9;:34::i;:::-;41118:356;:::o;28918:100::-;28972:13;29005:5;28998:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28918:100;:::o;30479:214::-;30547:7;30575:16;30583:7;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;30575:16;30567:74;;;;-1:-1:-1;;;30567:74:0;;8620:2:1;30567:74:0;;;8602:21:1;8659:2;8639:18;;;8632:30;8698:34;8678:18;;;8671:62;-1:-1:-1;;;8749:18:1;;;8742:43;8802:19;;30567:74:0;8418:409:1;30567:74:0;-1:-1:-1;30661:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30661:24:0;;30479:214::o;30000:413::-;30073:13;30089:24;30105:7;30089:15;:24::i;:::-;30073:40;;30138:5;-1:-1:-1;;;;;30132:11:0;:2;-1:-1:-1;;;;;30132:11:0;;30124:58;;;;-1:-1:-1;;;30124:58:0;;9034:2:1;30124:58:0;;;9016:21:1;9073:2;9053:18;;;9046:30;9112:34;9092:18;;;9085:62;-1:-1:-1;;;9163:18:1;;;9156:32;9205:19;;30124:58:0;8832:398:1;30124:58:0;2888:10;-1:-1:-1;;;;;30217:21:0;;;;:62;;-1:-1:-1;30242:37:0;30259:5;2888:10;31124:164;:::i;30242:37::-;30195:169;;;;-1:-1:-1;;;30195:169:0;;9437:2:1;30195:169:0;;;9419:21:1;9476:2;9456:18;;;9449:30;9515:34;9495:18;;;9488:62;9586:27;9566:18;;;9559:55;9631:19;;30195:169:0;9235:421:1;30195:169:0;30377:28;30386:2;30390:7;30399:5;30377:8;:28::i;:::-;30062:351;30000:413;;:::o;45266:90::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;45334:16;;::::1;::::0;:9:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45266:90:::0;:::o;41480:612::-;41533:8;;;;41525:58;;;;-1:-1:-1;;;41525:58:0;;;;;;;:::i;:::-;41592:20;41615;:18;:20::i;:::-;41592:43;;41642:16;41661;:14;:16::i;:::-;41642:35;;41684:18;41705;:16;:18::i;:::-;41684:39;;41735:9;41748:1;41735:14;41732:237;;41796:17;;41770:23;2888:10;27549:221;:::i;41770:23::-;:43;41762:79;;;;-1:-1:-1;;;41762:79:0;;9863:2:1;41762:79:0;;;9845:21:1;9902:2;9882:18;;;9875:30;-1:-1:-1;;;9921:18:1;;;9914:53;9984:18;;41762:79:0;9661:347:1;41762:79:0;41863:12;41852:23;;41732:237;;;41926:10;41913:9;:23;;41905:56;;;;-1:-1:-1;;;41905:56:0;;;;;;;:::i;:::-;42012:9;;42000:8;41985:12;;:23;;;;:::i;:::-;:36;;41977:69;;;;-1:-1:-1;;;41977:69:0;;;;;;;:::i;:::-;42055:31;42065:10;42077:8;42055:9;:31::i;31355:162::-;31481:28;31491:4;31497:2;31501:7;31481:9;:28::i;26218:823::-;26307:7;26343:16;26353:5;26343:9;:16::i;:::-;26335:5;:24;26327:71;;;;-1:-1:-1;;;26327:71:0;;10215:2:1;26327:71:0;;;10197:21:1;10254:2;10234:18;;;10227:30;10293:34;10273:18;;;10266:62;-1:-1:-1;;;10344:18:1;;;10337:32;10386:19;;26327:71:0;10013:398:1;26327:71:0;26409:22;25634:12;;;26409:22;;26541:426;26565:14;26561:1;:18;26541:426;;;26601:31;26635:14;;;:11;:14;;;;;;;;;26601:48;;;;;;;;;-1:-1:-1;;;;;26601:48:0;;;;;-1:-1:-1;;;26601:48:0;;;;;;;;;;;;26668:28;26664:103;;26737:14;;;-1:-1:-1;26664:103:0;26806:5;-1:-1:-1;;;;;26785:26:0;:17;-1:-1:-1;;;;;26785:26:0;;26781:175;;26851:5;26836:11;:20;26832:77;;-1:-1:-1;26888:1:0;-1:-1:-1;26881:8:0;;-1:-1:-1;;;26881:8:0;26832:77;26927:13;;;;:::i;:::-;;;;26781:175;-1:-1:-1;26581:3:0;;;;:::i;:::-;;;;26541:426;;;-1:-1:-1;26977:56:0;;-1:-1:-1;;;26977:56:0;;10758:2:1;26977:56:0;;;10740:21:1;10797:2;10777:18;;;10770:30;10836:34;10816:18;;;10809:62;-1:-1:-1;;;10887:18:1;;;10880:44;10941:19;;26977:56:0;10556:410:1;43627:100:0;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;4157:6;;43673:48:::1;::::0;-1:-1:-1;;;;;4157:6:0;;;;43699:21:::1;43673:48:::0;::::1;;;::::0;::::1;::::0;;;43699:21;4157:6;43673:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;44824:83:::0;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;44882:10:::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;44882:19:0;;::::1;::::0;;;::::1;::::0;;44824:83::o;31588:177::-;31718:39;31735:4;31741:2;31745:7;31718:39;;;;;;;;;;;;:16;:39::i;25731:187::-;25798:7;25634:12;;25826:5;:21;25818:69;;;;-1:-1:-1;;;25818:69:0;;11173:2:1;25818:69:0;;;11155:21:1;11212:2;11192:18;;;11185:30;11251:34;11231:18;;;11224:62;-1:-1:-1;;;11302:18:1;;;11295:33;11345:19;;25818:69:0;10971:399:1;25818:69:0;-1:-1:-1;25905:5:0;25731:187::o;28727:124::-;28791:7;28818:20;28830:7;28818:11;:20::i;:::-;:25;;28727:124;-1:-1:-1;;28727:124:0:o;44520:94::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;44586:9:::1;:22:::0;44520:94::o;27549:221::-;27613:7;-1:-1:-1;;;;;27641:19:0;;27633:75;;;;-1:-1:-1;;;27633:75:0;;11577:2:1;27633:75:0;;;11559:21:1;11616:2;11596:18;;;11589:30;11655:34;11635:18;;;11628:62;-1:-1:-1;;;11706:18:1;;;11699:41;11757:19;;27633:75:0;11375:407:1;27633:75:0;-1:-1:-1;;;;;;27734:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27734:27:0;;27549:221::o;4735:103::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;4800:30:::1;4827:1;4800:18;:30::i;:::-;4735:103::o:0;44284:102::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;44354:11:::1;:26:::0;44284:102::o;40187:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44998:82::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;45056:9:::1;:18:::0;44998:82::o;29087:104::-;29143:13;29176:7;29169:14;;;;;:::i;42655:295::-;42710:7;42729:25;42757:18;:16;:18::i;:::-;42729:46;;42787:17;42808:1;42787:22;42784:144;;-1:-1:-1;;42827:15:0;;;42655:295::o;42784:144::-;42865:17;42886:1;42865:22;42861:67;;-1:-1:-1;;42905:15:0;;;42655:295::o;40455:657::-;40522:8;;;;40514:58;;;;-1:-1:-1;;;40514:58:0;;;;;;;:::i;:::-;40579:18;40600;:16;:18::i;:::-;40579:39;;40645:11;;40630:12;;:26;40627:171;;;40703:17;;40677:23;2888:10;27549:221;:::i;40677:23::-;:43;40669:79;;;;-1:-1:-1;;;40669:79:0;;9863:2:1;40669:79:0;;;9845:21:1;9902:2;9882:18;;;9875:30;-1:-1:-1;;;9921:18:1;;;9914:53;9984:18;;40669:79:0;9661:347:1;40669:79:0;40773:17;;40759:31;;40627:171;40825:24;40838:11;40825:10;:24;:::i;:::-;40812:9;:37;;40804:69;;;;-1:-1:-1;;;40804:69:0;;;;;;;:::i;:::-;40901:11;;40885:12;;:27;;:43;;;;;40927:1;40916:8;;:12;40885:43;40882:103;;;40969:8;;40955:22;;:11;:22;:::i;:::-;40941:36;;40882:103;41029:9;;41014:11;40999:12;;:26;;;;:::i;:::-;:39;;40991:72;;;;-1:-1:-1;;;40991:72:0;;;;;;;:::i;:::-;41072:34;41082:10;41094:11;41072:9;:34::i;45086:91::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;45152:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;30765:288::-:0;2888:10;-1:-1:-1;;;;;30860:24:0;;;30852:63;;;;-1:-1:-1;;;30852:63:0;;11989:2:1;30852:63:0;;;11971:21:1;12028:2;12008:18;;;12001:30;12067:28;12047:18;;;12040:56;12113:18;;30852:63:0;11787:350:1;30852:63:0;2888:10;30928:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30928:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30928:53:0;;;;;;;;;;30997:48;;540:41:1;;;30928:42:0;;2888:10;30997:48;;513:18:1;30997:48:0;;;;;;;30765:288;;:::o;31836:355::-;31995:28;32005:4;32011:2;32015:7;31995:9;:28::i;:::-;32056:48;32079:4;32085:2;32089:7;32098:5;32056:22;:48::i;:::-;32034:149;;;;-1:-1:-1;;;32034:149:0;;;;;;;:::i;:::-;31836:355;;;;:::o;43733:545::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;43881:8:::1;43893:1;43881:13:::0;43878:395:::1;;43907:20;:36:::0;;;43954:17:::1;:30:::0;;;43995:17:::1;:30:::0;;;44036:15:::1;:26:::0;;;43878:395:::1;;;44085:8;44097:1;44085:13:::0;44081:192:::1;;44110:20;:36:::0;;;44157:17:::1;:30:::0;;;44198:17:::1;:30:::0;;;44239:15:::1;:26:::0;;;44081:192:::1;43733:545:::0;;;;;:::o;43263:358::-;43337:13;43378:17;43386:8;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;43378:17;43362:98;;;;-1:-1:-1;;;43362:98:0;;12764:2:1;43362:98:0;;;12746:21:1;12803:2;12783:18;;;12776:30;12842:34;12822:18;;;12815:62;-1:-1:-1;;;12893:18:1;;;12886:45;12948:19;;43362:98:0;12562:411:1;43362:98:0;43473:8;;;;;;;:17;;43485:5;43473:17;43469:56;;43508:9;43501:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43263:358;;;:::o;43469:56::-;43564:12;43578:26;43595:8;43578:16;:26::i;:::-;43547:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43533:82;;43263:358;;;:::o;40070:112::-;;;;;;;:::i;44618:106::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;44690:12:::1;:28:::0;44618:106::o;44728:90::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;44792:8:::1;:20:::0;44728:90::o;45181:81::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;45239:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45239:17:0;;::::1;::::0;;;::::1;::::0;;45181:81::o;44911:::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;44969:8:::1;:17:::0;;-1:-1:-1;;44969:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44911:81::o;42346:303::-;42405:7;42424:25;42452:18;:16;:18::i;:::-;42424:46;;42482:17;42503:1;42482:22;42479:148;;-1:-1:-1;;42522:17:0;;;42346:303::o;42479:148::-;42562:17;42583:1;42562:22;42558:69;;-1:-1:-1;;42602:17:0;;;42346:303::o;4993:201::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5082:22:0;::::1;5074:73;;;::::0;-1:-1:-1;;;5074:73:0;;14920:2:1;5074:73:0::1;::::0;::::1;14902:21:1::0;14959:2;14939:18;;;14932:30;14998:34;14978:18;;;14971:62;-1:-1:-1;;;15049:18:1;;;15042:36;15095:19;;5074:73:0::1;14718:402:1::0;5074:73:0::1;5158:28;5177:8;5158:18;:28::i;42098:242::-:0;42155:7;42193:20;;42177:12;;:36;42174:144;;-1:-1:-1;42231:1:0;;42098:242::o;42174:144::-;42271:20;;42255:12;;:36;42251:67;;-1:-1:-1;42309:1:0;;42098:242::o;42251:67::-;-1:-1:-1;42333:1:0;;42098:242::o;32565:104::-;32634:27;32644:2;32648:8;32634:27;;;;;;;;;;;;:9;:27::i;36572:196::-;36687:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36687:29:0;-1:-1:-1;;;;;36687:29:0;;;;;;;;;36732:28;;36687:24;;36732:28;;;;;;;36572:196;;;:::o;34671:1783::-;34786:35;34824:20;34836:7;34824:11;:20::i;:::-;34899:18;;34786:58;;-1:-1:-1;34857:22:0;;-1:-1:-1;;;;;34883:34:0;2888:10;-1:-1:-1;;;;;34883:34:0;;:87;;;-1:-1:-1;2888:10:0;34934:20;34946:7;34934:11;:20::i;:::-;-1:-1:-1;;;;;34934:36:0;;34883:87;:154;;;-1:-1:-1;35004:18:0;;34987:50;;2888:10;31124:164;:::i;34987:50::-;34857:181;;35059:17;35051:80;;;;-1:-1:-1;;;35051:80:0;;15327:2:1;35051:80:0;;;15309:21:1;15366:2;15346:18;;;15339:30;15405:34;15385:18;;;15378:62;-1:-1:-1;;;15456:18:1;;;15449:48;15514:19;;35051:80:0;15125:414:1;35051:80:0;35174:4;-1:-1:-1;;;;;35152:26:0;:13;:18;;;-1:-1:-1;;;;;35152:26:0;;35144:77;;;;-1:-1:-1;;;35144:77:0;;15746:2:1;35144:77:0;;;15728:21:1;15785:2;15765:18;;;15758:30;15824:34;15804:18;;;15797:62;-1:-1:-1;;;15875:18:1;;;15868:36;15921:19;;35144:77:0;15544:402:1;35144:77:0;-1:-1:-1;;;;;35240:16:0;;35232:66;;;;-1:-1:-1;;;35232:66:0;;16153:2:1;35232:66:0;;;16135:21:1;16192:2;16172:18;;;16165:30;16231:34;16211:18;;;16204:62;-1:-1:-1;;;16282:18:1;;;16275:35;16327:19;;35232:66:0;15951:401:1;35232:66:0;35419:49;35436:1;35440:7;35449:13;:18;;;35419:8;:49::i;:::-;-1:-1:-1;;;;;35673:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35673:31:0;;;-1:-1:-1;;;;;35673:31:0;;;-1:-1:-1;;35673:31:0;;;;;;;35719:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35719:29:0;;;;;;;;;;;;;35795:43;;;;;;;;;;35821:15;35795:43;;;;;;;;;;35772:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;35772:66:0;;;;;;;-1:-1:-1;;;35772:66:0;;;;;;;;;;;;35673:18;36100:11;;35772:20;;36100:11;:::i;:::-;36167:1;36126:24;;;:11;:24;;;;;:29;36078:33;;-1:-1:-1;;;;;;36126:29:0;36122:227;;36190:20;36198:11;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;36190:20;36186:152;;;36258:64;;;;;;;;36273:18;;-1:-1:-1;;;;;36258:64:0;;;;;;36293:28;;;;36258:64;;;;;;;;;;-1:-1:-1;36231:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;36231:91:0;-1:-1:-1;;;;;;36231:91:0;;;;;;;;;;;;36186:152;36385:7;36381:2;-1:-1:-1;;;;;36366:27:0;36375:4;-1:-1:-1;;;;;36366:27:0;;;;;;;;;;;36404:42;34775:1679;;;34671:1783;;;:::o;28015:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;28118:16:0;28126:7;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;28118:16;28110:71;;;;-1:-1:-1;;;28110:71:0;;16559:2:1;28110:71:0;;;16541:21:1;16598:2;16578:18;;;16571:30;16637:34;16617:18;;;16610:62;-1:-1:-1;;;16688:18:1;;;16681:40;16738:19;;28110:71:0;16357:406:1;28110:71:0;28194:26;28246:12;28235:7;:23;28231:103;;28296:22;28306:12;28296:7;:22;:::i;:::-;:26;;28321:1;28296:26;:::i;:::-;28275:47;;28231:103;28366:7;28346:242;28383:18;28375:4;:26;28346:242;;28426:31;28460:17;;;:11;:17;;;;;;;;;28426:51;;;;;;;;;-1:-1:-1;;;;;28426:51:0;;;;;-1:-1:-1;;;28426:51:0;;;;;;;;;;;;28496:28;28492:85;;28552:9;28015:650;-1:-1:-1;;;;28015:650:0:o;28492:85::-;-1:-1:-1;28403:6:0;;;;:::i;:::-;;;;28346:242;;;-1:-1:-1;28600:57:0;;-1:-1:-1;;;28600:57:0;;17241:2:1;28600:57:0;;;17223:21:1;17280:2;17260:18;;;17253:30;17319:34;17299:18;;;17292:62;-1:-1:-1;;;17370:18:1;;;17363:45;17425:19;;28600:57:0;17039:411:1;5354:191:0;5447:6;;;-1:-1:-1;;;;;5464:17:0;;;-1:-1:-1;;;;;;5464:17:0;;;;;;;5497:40;;5447:6;;;5464:17;5447:6;;5497:40;;5428:16;;5497:40;5417:128;5354:191;:::o;37333:804::-;37488:4;-1:-1:-1;;;;;37509:13:0;;6695:20;6743:8;37505:625;;37545:72;;-1:-1:-1;;;37545:72:0;;-1:-1:-1;;;;;37545:36:0;;;;;:72;;2888:10;;37596:4;;37602:7;;37611:5;;37545:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37545:72:0;;;;;;;;-1:-1:-1;;37545:72:0;;;;;;;;;;;;:::i;:::-;;;37541:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37791:6;:13;37808:1;37791:18;37787:273;;37834:61;;-1:-1:-1;;;37834:61:0;;;;;;;:::i;37787:273::-;38010:6;38004:13;37995:6;37991:2;37987:15;37980:38;37541:534;-1:-1:-1;;;;;;37668:55:0;-1:-1:-1;;;37668:55:0;;-1:-1:-1;37661:62:0;;37505:625;-1:-1:-1;38114:4:0;37505:625;37333:804;;;;;;:::o;370:723::-;426:13;647:5;656:1;647:10;643:53;;-1:-1:-1;;674:10:0;;;;;;;;;;;;-1:-1:-1;;;674:10:0;;;;;370:723::o;643:53::-;721:5;706:12;762:78;769:9;;762:78;;795:8;;;;:::i;:::-;;-1:-1:-1;818:10:0;;-1:-1:-1;826:2:0;818:10;;:::i;:::-;;;762:78;;;850:19;882:6;872:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;872:17:0;;850:39;;900:154;907:10;;900:154;;934:11;944:1;934:11;;:::i;:::-;;-1:-1:-1;1003:10:0;1011:2;1003:5;:10;:::i;:::-;990:24;;:2;:24;:::i;:::-;977:39;;960:6;967;960:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;960:56:0;;;;;;;;-1:-1:-1;1031:11:0;1040:2;1031:11;;:::i;:::-;;;900:154;;32946:1471;33069:20;33092:12;-1:-1:-1;;;;;33123:16:0;;33115:62;;;;-1:-1:-1;;;33115:62:0;;18922:2:1;33115:62:0;;;18904:21:1;18961:2;18941:18;;;18934:30;19000:34;18980:18;;;18973:62;-1:-1:-1;;;19051:18:1;;;19044:31;19092:19;;33115:62:0;18720:397:1;33115:62:0;33322:21;33330:12;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;33322:21;33321:22;33313:64;;;;-1:-1:-1;;;33313:64:0;;19324:2:1;33313:64:0;;;19306:21:1;19363:2;19343:18;;;19336:30;19402:31;19382:18;;;19375:59;19451:18;;33313:64:0;19122:353:1;33313:64:0;33408:12;33396:8;:24;;33388:71;;;;-1:-1:-1;;;33388:71:0;;19682:2:1;33388:71:0;;;19664:21:1;19721:2;19701:18;;;19694:30;19760:34;19740:18;;;19733:62;-1:-1:-1;;;19811:18:1;;;19804:32;19853:19;;33388:71:0;19480:398:1;33388:71:0;33489:1;33478:8;:12;33470:60;;;;-1:-1:-1;;;33470:60:0;;20085:2:1;33470:60:0;;;20067:21:1;20124:2;20104:18;;;20097:30;20163:34;20143:18;;;20136:62;-1:-1:-1;;;20214:18:1;;;20207:33;20257:19;;33470:60:0;19883:399:1;33470:60:0;-1:-1:-1;;;;;33650:16:0;;33617:30;33650:16;;;:12;:16;;;;;;;;;33617:49;;;;;;;;;-1:-1:-1;;;;;33617:49:0;;;;;-1:-1:-1;;;33617:49:0;;;;;;;;;;;33696:135;;;;;;;;33722:19;;33617:49;;33696:135;;;33722:39;;33752:8;;33722:39;:::i;:::-;-1:-1:-1;;;;;33696:135:0;;;;;33811:8;33776:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33696:135:0;;;;;;-1:-1:-1;;;;;33677:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;33677:154:0;;;;;;;;;;;;33870:43;;;;;;;;;;;33896:15;33870:43;;;;;;;;33842:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33842:71:0;-1:-1:-1;;;;;;33842:71:0;;;;;;;;;;;;;;;;;;33854:12;;33974:325;33998:8;33994:1;:12;33974:325;;;34033:38;;34058:12;;-1:-1:-1;;;;;34033:38:0;;;34050:1;;34033:38;;34050:1;;34033:38;34112:59;34143:1;34147:2;34151:12;34165:5;34112:22;:59::i;:::-;34086:172;;;;-1:-1:-1;;;34086:172:0;;;;;;;:::i;:::-;34273:14;;;;:::i;:::-;;;;34008:3;;;;;:::i;:::-;;;;33974:325;;;-1:-1:-1;34311:12:0;:27;;;34349:60;31836:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;959:258::-;1031:1;1041:113;1055:6;1052:1;1049:13;1041:113;;;1131:11;;;1125:18;1112:11;;;1105:39;1077:2;1070:10;1041:113;;;1172:6;1169:1;1166:13;1163:48;;;-1:-1:-1;;1207:1:1;1189:16;;1182:27;959:258::o;1222:269::-;1275:3;1313:5;1307:12;1340:6;1335:3;1328:19;1356:63;1412:6;1405:4;1400:3;1396:14;1389:4;1382:5;1378:16;1356:63;:::i;:::-;1473:2;1452:15;-1:-1:-1;;1448:29:1;1439:39;;;;1480:4;1435:50;;1222:269;-1:-1:-1;;1222:269:1:o;1496:231::-;1645:2;1634:9;1627:21;1608:4;1665:56;1717:2;1706:9;1702:18;1694:6;1665:56;:::i;1940:173::-;2008:20;;-1:-1:-1;;;;;2057:31:1;;2047:42;;2037:70;;2103:1;2100;2093:12;2037:70;1940:173;;;:::o;2118:254::-;2186:6;2194;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2286:29;2305:9;2286:29;:::i;:::-;2276:39;2362:2;2347:18;;;;2334:32;;-1:-1:-1;;;2118:254:1:o;2377:127::-;2438:10;2433:3;2429:20;2426:1;2419:31;2469:4;2466:1;2459:15;2493:4;2490:1;2483:15;2509:632;2574:5;2604:18;2645:2;2637:6;2634:14;2631:40;;;2651:18;;:::i;:::-;2726:2;2720:9;2694:2;2780:15;;-1:-1:-1;;2776:24:1;;;2802:2;2772:33;2768:42;2756:55;;;2826:18;;;2846:22;;;2823:46;2820:72;;;2872:18;;:::i;:::-;2912:10;2908:2;2901:22;2941:6;2932:15;;2971:6;2963;2956:22;3011:3;3002:6;2997:3;2993:16;2990:25;2987:45;;;3028:1;3025;3018:12;2987:45;3078:6;3073:3;3066:4;3058:6;3054:17;3041:44;3133:1;3126:4;3117:6;3109;3105:19;3101:30;3094:41;;;;2509:632;;;;;:::o;3146:451::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;3324:9;3311:23;3357:18;3349:6;3346:30;3343:50;;;3389:1;3386;3379:12;3343:50;3412:22;;3465:4;3457:13;;3453:27;-1:-1:-1;3443:55:1;;3494:1;3491;3484:12;3443:55;3517:74;3583:7;3578:2;3565:16;3560:2;3556;3552:11;3517:74;:::i;3602:186::-;3661:6;3714:2;3702:9;3693:7;3689:23;3685:32;3682:52;;;3730:1;3727;3720:12;3682:52;3753:29;3772:9;3753:29;:::i;3793:328::-;3870:6;3878;3886;3939:2;3927:9;3918:7;3914:23;3910:32;3907:52;;;3955:1;3952;3945:12;3907:52;3978:29;3997:9;3978:29;:::i;:::-;3968:39;;4026:38;4060:2;4049:9;4045:18;4026:38;:::i;:::-;4016:48;;4111:2;4100:9;4096:18;4083:32;4073:42;;3793:328;;;;;:::o;4126:160::-;4191:20;;4247:13;;4240:21;4230:32;;4220:60;;4276:1;4273;4266:12;4291:180;4347:6;4400:2;4388:9;4379:7;4375:23;4371:32;4368:52;;;4416:1;4413;4406:12;4368:52;4439:26;4455:9;4439:26;:::i;4476:254::-;4541:6;4549;4602:2;4590:9;4581:7;4577:23;4573:32;4570:52;;;4618:1;4615;4608:12;4570:52;4641:29;4660:9;4641:29;:::i;:::-;4631:39;;4689:35;4720:2;4709:9;4705:18;4689:35;:::i;:::-;4679:45;;4476:254;;;;;:::o;4735:667::-;4830:6;4838;4846;4854;4907:3;4895:9;4886:7;4882:23;4878:33;4875:53;;;4924:1;4921;4914:12;4875:53;4947:29;4966:9;4947:29;:::i;:::-;4937:39;;4995:38;5029:2;5018:9;5014:18;4995:38;:::i;:::-;4985:48;;5080:2;5069:9;5065:18;5052:32;5042:42;;5135:2;5124:9;5120:18;5107:32;5162:18;5154:6;5151:30;5148:50;;;5194:1;5191;5184:12;5148:50;5217:22;;5270:4;5262:13;;5258:27;-1:-1:-1;5248:55:1;;5299:1;5296;5289:12;5248:55;5322:74;5388:7;5383:2;5370:16;5365:2;5361;5357:11;5322:74;:::i;:::-;5312:84;;;4735:667;;;;;;;:::o;5407:454::-;5502:6;5510;5518;5526;5534;5587:3;5575:9;5566:7;5562:23;5558:33;5555:53;;;5604:1;5601;5594:12;5555:53;-1:-1:-1;;5627:23:1;;;5697:2;5682:18;;5669:32;;-1:-1:-1;5748:2:1;5733:18;;5720:32;;5799:2;5784:18;;5771:32;;-1:-1:-1;5850:3:1;5835:19;5822:33;;-1:-1:-1;5407:454:1;-1:-1:-1;5407:454:1:o;5866:260::-;5934:6;5942;5995:2;5983:9;5974:7;5970:23;5966:32;5963:52;;;6011:1;6008;6001:12;5963:52;6034:29;6053:9;6034:29;:::i;:::-;6024:39;;6082:38;6116:2;6105:9;6101:18;6082:38;:::i;6131:356::-;6333:2;6315:21;;;6352:18;;;6345:30;6411:34;6406:2;6391:18;;6384:62;6478:2;6463:18;;6131:356::o;6492:401::-;6694:2;6676:21;;;6733:2;6713:18;;;6706:30;6772:34;6767:2;6752:18;;6745:62;-1:-1:-1;;;6838:2:1;6823:18;;6816:35;6883:3;6868:19;;6492:401::o;6898:343::-;7100:2;7082:21;;;7139:2;7119:18;;;7112:30;-1:-1:-1;;;7173:2:1;7158:18;;7151:49;7232:2;7217:18;;6898:343::o;7246:127::-;7307:10;7302:3;7298:20;7295:1;7288:31;7338:4;7335:1;7328:15;7362:4;7359:1;7352:15;7378:168;7418:7;7484:1;7480;7476:6;7472:14;7469:1;7466:21;7461:1;7454:9;7447:17;7443:45;7440:71;;;7491:18;;:::i;:::-;-1:-1:-1;7531:9:1;;7378:168::o;7551:128::-;7591:3;7622:1;7618:6;7615:1;7612:13;7609:39;;;7628:18;;:::i;:::-;-1:-1:-1;7664:9:1;;7551:128::o;7684:344::-;7886:2;7868:21;;;7925:2;7905:18;;;7898:30;-1:-1:-1;;;7959:2:1;7944:18;;7937:50;8019:2;8004:18;;7684:344::o;8033:380::-;8112:1;8108:12;;;;8155;;;8176:61;;8230:4;8222:6;8218:17;8208:27;;8176:61;8283:2;8275:6;8272:14;8252:18;8249:38;8246:161;;8329:10;8324:3;8320:20;8317:1;8310:31;8364:4;8361:1;8354:15;8392:4;8389:1;8382:15;8246:161;;8033:380;;;:::o;10416:135::-;10455:3;10476:17;;;10473:43;;10496:18;;:::i;:::-;-1:-1:-1;10543:1:1;10532:13;;10416:135::o;12142:415::-;12344:2;12326:21;;;12383:2;12363:18;;;12356:30;12422:34;12417:2;12402:18;;12395:62;-1:-1:-1;;;12488:2:1;12473:18;;12466:49;12547:3;12532:19;;12142:415::o;13104:185::-;13146:3;13184:5;13178:12;13199:52;13244:6;13239:3;13232:4;13225:5;13221:16;13199:52;:::i;:::-;13267:16;;;;;13104:185;-1:-1:-1;;13104:185:1:o;13412:1301::-;13689:3;13718:1;13751:6;13745:13;13781:3;13803:1;13831:9;13827:2;13823:18;13813:28;;13891:2;13880:9;13876:18;13913;13903:61;;13957:4;13949:6;13945:17;13935:27;;13903:61;13983:2;14031;14023:6;14020:14;14000:18;13997:38;13994:165;;-1:-1:-1;;;14058:33:1;;14114:4;14111:1;14104:15;14144:4;14065:3;14132:17;13994:165;14175:18;14202:104;;;;14320:1;14315:320;;;;14168:467;;14202:104;-1:-1:-1;;14235:24:1;;14223:37;;14280:16;;;;-1:-1:-1;14202:104:1;;14315:320;13051:1;13044:14;;;13088:4;13075:18;;14410:1;14424:165;14438:6;14435:1;14432:13;14424:165;;;14516:14;;14503:11;;;14496:35;14559:16;;;;14453:10;;14424:165;;;14428:3;;14618:6;14613:3;14609:16;14602:23;;14168:467;;;;;;;14651:56;14676:30;14702:3;14694:6;14676:30;:::i;:::-;-1:-1:-1;;;13354:20:1;;13399:1;13390:11;;13294:113;14651:56;14644:63;13412:1301;-1:-1:-1;;;;;13412:1301:1:o;16768:125::-;16808:4;16836:1;16833;16830:8;16827:34;;;16841:18;;:::i;:::-;-1:-1:-1;16878:9:1;;16768:125::o;16898:136::-;16937:3;16965:5;16955:39;;16974:18;;:::i;:::-;-1:-1:-1;;;17010:18:1;;16898:136::o;17455:500::-;-1:-1:-1;;;;;17724:15:1;;;17706:34;;17776:15;;17771:2;17756:18;;17749:43;17823:2;17808:18;;17801:34;;;17871:3;17866:2;17851:18;;17844:31;;;17649:4;;17892:57;;17929:19;;17921:6;17892:57;:::i;:::-;17884:65;17455:500;-1:-1:-1;;;;;;17455:500:1:o;17960:249::-;18029:6;18082:2;18070:9;18061:7;18057:23;18053:32;18050:52;;;18098:1;18095;18088:12;18050:52;18130:9;18124:16;18149:30;18173:5;18149:30;:::i;18214:127::-;18275:10;18270:3;18266:20;18263:1;18256:31;18306:4;18303:1;18296:15;18330:4;18327:1;18320:15;18346:120;18386:1;18412;18402:35;;18417:18;;:::i;:::-;-1:-1:-1;18451:9:1;;18346:120::o;18471:112::-;18503:1;18529;18519:35;;18534:18;;:::i;:::-;-1:-1:-1;18568:9:1;;18471:112::o;18588:127::-;18649:10;18644:3;18640:20;18637:1;18630:31;18680:4;18677:1;18670:15;18704:4;18701:1;18694:15;20287:253;20327:3;-1:-1:-1;;;;;20416:2:1;20413:1;20409:10;20446:2;20443:1;20439:10;20477:3;20473:2;20469:12;20464:3;20461:21;20458:47;;;20485:18;;:::i;:::-;20521:13;;20287:253;-1:-1:-1;;;;20287:253:1:o

Swarm Source

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