ETH Price: $2,988.30 (-2.31%)
Gas: 1 Gwei

Token

Bored Bonez (BBZ)
 

Overview

Max Total Supply

10,000 BBZ

Holders

3,843

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BBZ
0xfa6ea1730f346f62a378ff29cb4b659054250f3e
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:
BoredBonez

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.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 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

//newerc.sol
pragma solidity ^0.8.0;


contract BoredBonez is ERC721A, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI;
    uint256 public cost = 0.002 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxFree = 10000;
    uint256 public maxperAddressFreeLimit = 1;
    uint256 public maxperTxnPublicMint = 20;
    bool public saleIsActive = false;

    mapping(address => uint256) public addressFreeMintedBalance;

    constructor() ERC721A("Bored Bonez", "BBZ") {
        setBaseURI("ipfs://bafybeihtdlblb2vdzf4dgqbzecsgwncoj2wcvf22fepn6mnsaa5syby2gu/");

    }

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

    function freeMint(uint256 _mintAmount) public payable nonReentrant{
		uint256 s = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        require(saleIsActive, "Sale not active");
        require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "max free NFT per wallet exceeded");
		require(_mintAmount > 0, "Cant mint 0" );
		require(s + _mintAmount <= maxFree, "Cant go over free supply" );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;

		}
        _safeMint(msg.sender, _mintAmount);
		delete s;
        delete addressFreeMintedCount;
	}


    function mint(uint256 _mintAmount) public payable nonReentrant {
        uint256 s = totalSupply();
        require(saleIsActive, "Sale not active");
        require(_mintAmount > 0, "Cant mint 0");
        require(_mintAmount <= maxperTxnPublicMint, "Cant mint more than maxperTxnPublicMint" );
        require(s + _mintAmount <= maxSupply, "Sold out!");
        require(msg.value >= cost * _mintAmount);
        _safeMint(msg.sender, _mintAmount);
        delete s;
    }

    function devMint(uint256 _mintAmount) public payable nonReentrant onlyOwner {
        uint256 s = totalSupply();
        require(_mintAmount > 0, "Cant mint 0");
        require(s + _mintAmount <= maxSupply, "Cant go over supply");
        _safeMint(msg.sender, _mintAmount);
        delete s;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
                : "";
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

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

     function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner {
               maxFree = _newMaxFreeSupply;
    }

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

    function setMaxperTxnPublicMint(uint256 _amount) public onlyOwner {
        maxperTxnPublicMint = _amount;
    }

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

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperTxnPublicMint","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperTxnPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","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":"payable","type":"function"}]

608060405266071afd498d0000600a55612710600b819055600c556001600d556014600e55600f805460ff191690553480156200003b57600080fd5b506040518060400160405280600b81526020016a2137b932b2102137b732bd60a91b8152506040518060400160405280600381526020016221212d60e91b81525081600190816200008d919062000262565b5060026200009c828262000262565b505050620000b9620000b3620000f660201b60201c565b620000fa565b6007805460ff60a01b19169055600160085560408051608081019091526043808252620000f09190620026ea60208301396200014c565b6200032e565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b6009620001b9828262000262565b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001e857607f821691505b6020821081036200020957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200025d57600081815260208120601f850160051c81016020861015620002385750805b601f850160051c820191505b81811015620002595782815560010162000244565b5050505b505050565b81516001600160401b038111156200027e576200027e620001bd565b62000296816200028f8454620001d3565b846200020f565b602080601f831160018114620002ce5760008415620002b55750858301515b600019600386901b1c1916600185901b17855562000259565b600085815260208120601f198616915b82811015620002ff57888601518255948401946001909101908401620002de565b50858210156200031e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6123ac806200033e6000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063d5abeb011161006f578063d5abeb01146105f5578063dc4e66b51461060b578063e985e9c51461062b578063eb8d244414610674578063f2fde38b1461068e57600080fd5b8063a0712d6814610562578063a22cb46514610575578063b88d4fde14610595578063bde12d73146105b5578063c87b56dd146105d557600080fd5b8063715018a6116100f2578063715018a6146104da5780637c6b172d146104ef5780637c928fe91461051c5780638da5cb5b1461052f57806395d89b411461054d57600080fd5b80636352211e1461046f5780636838075b1461048f5780636c0360eb146104a557806370a08231146104ba57600080fd5b8063375a069a116101b15780634cdb966c116101755780634cdb966c146103da5780634f6ccce7146103fa57806355f804b31461041a57806356569a1d1461043a5780635c975abb1461045057600080fd5b8063375a069a146103695780633ccfd60b1461037c57806342842e0e1461038457806344a0d68a146103a4578063485a68a3146103c457600080fd5b806313faede6116101f857806313faede6146102db57806318160ddd146102ff57806323b872dd146103145780632f745c591461033457806334918dfd1461035457600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611cfb565b6106ae565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461071b565b6040516102569190611d68565b34801561028d57600080fd5b506102a161029c366004611d7b565b6107ad565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611db0565b61083d565b005b3480156102e757600080fd5b506102f1600a5481565b604051908152602001610256565b34801561030b57600080fd5b506000546102f1565b34801561032057600080fd5b506102d961032f366004611dda565b610954565b34801561034057600080fd5b506102f161034f366004611db0565b61095f565b34801561036057600080fd5b506102d9610aba565b6102d9610377366004611d7b565b610af8565b6102d9610bcd565b34801561039057600080fd5b506102d961039f366004611dda565b610c4f565b3480156103b057600080fd5b506102d96103bf366004611d7b565b610c6a565b3480156103d057600080fd5b506102f1600c5481565b3480156103e657600080fd5b506102d96103f5366004611d7b565b610c99565b34801561040657600080fd5b506102f1610415366004611d7b565b610cc8565b34801561042657600080fd5b506102d9610435366004611ea2565b610d2a565b34801561044657600080fd5b506102f1600d5481565b34801561045c57600080fd5b50600754600160a01b900460ff1661024a565b34801561047b57600080fd5b506102a161048a366004611d7b565b610d64565b34801561049b57600080fd5b506102f1600e5481565b3480156104b157600080fd5b50610274610d76565b3480156104c657600080fd5b506102f16104d5366004611eeb565b610e04565b3480156104e657600080fd5b506102d9610e95565b3480156104fb57600080fd5b506102f161050a366004611eeb565b60106020526000908152604090205481565b6102d961052a366004611d7b565b610ecb565b34801561053b57600080fd5b506007546001600160a01b03166102a1565b34801561055957600080fd5b5061027461106f565b6102d9610570366004611d7b565b61107e565b34801561058157600080fd5b506102d9610590366004611f06565b6111cf565b3480156105a157600080fd5b506102d96105b0366004611f42565b611293565b3480156105c157600080fd5b506102d96105d0366004611d7b565b6112cc565b3480156105e157600080fd5b506102746105f0366004611d7b565b6112fb565b34801561060157600080fd5b506102f1600b5481565b34801561061757600080fd5b506102d9610626366004611d7b565b6113ba565b34801561063757600080fd5b5061024a610646366004611fbe565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561068057600080fd5b50600f5461024a9060ff1681565b34801561069a57600080fd5b506102d96106a9366004611eeb565b6113e9565b60006001600160e01b031982166380ac58cd60e01b14806106df57506001600160e01b03198216635b5e139f60e01b145b806106fa57506001600160e01b0319821663780e9d6360e01b145b8061071557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461072a90611ff1565b80601f016020809104026020016040519081016040528092919081815260200182805461075690611ff1565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b60006107ba826000541190565b6108215760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061084882610d64565b9050806001600160a01b0316836001600160a01b0316036108b65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610818565b336001600160a01b03821614806108d257506108d28133610646565b6109445760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610818565b61094f838383611481565b505050565b61094f8383836114dd565b600061096a83610e04565b82106109c35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610818565b600080549080805b83811015610a5a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a1e57805192505b876001600160a01b0316836001600160a01b031603610a5157868403610a4a5750935061071592505050565b6001909301925b506001016109cb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610818565b6007546001600160a01b03163314610ae45760405162461bcd60e51b81526004016108189061202b565b600f805460ff19811660ff90911615179055565b600260085403610b1a5760405162461bcd60e51b815260040161081890612060565b60026008556007546001600160a01b03163314610b495760405162461bcd60e51b81526004016108189061202b565b60005481610b695760405162461bcd60e51b815260040161081890612097565b600b54610b7683836120d2565b1115610bba5760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610818565b610bc433836117c2565b50506001600855565b6007546001600160a01b03163314610bf75760405162461bcd60e51b81526004016108189061202b565b604051600090339047908381818185875af1925050503d8060008114610c39576040519150601f19603f3d011682016040523d82523d6000602084013e610c3e565b606091505b5050905080610c4c57600080fd5b50565b61094f83838360405180602001604052806000815250611293565b6007546001600160a01b03163314610c945760405162461bcd60e51b81526004016108189061202b565b600a55565b6007546001600160a01b03163314610cc35760405162461bcd60e51b81526004016108189061202b565b600e55565b600080548210610d265760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610818565b5090565b6007546001600160a01b03163314610d545760405162461bcd60e51b81526004016108189061202b565b6009610d608282612133565b5050565b6000610d6f826117dc565b5192915050565b60098054610d8390611ff1565b80601f0160208091040260200160405190810160405280929190818152602001828054610daf90611ff1565b8015610dfc5780601f10610dd157610100808354040283529160200191610dfc565b820191906000526020600020905b815481529060010190602001808311610ddf57829003601f168201915b505050505081565b60006001600160a01b038216610e705760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610818565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ebf5760405162461bcd60e51b81526004016108189061202b565b610ec960006118b3565b565b600260085403610eed5760405162461bcd60e51b815260040161081890612060565b6002600855600080543382526010602052604090912054600f5460ff16610f485760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610818565b600d54610f5584836120d2565b1115610fa35760405162461bcd60e51b815260206004820181905260248201527f6d61782066726565204e4654207065722077616c6c65742065786365656465646044820152606401610818565b60008311610fc35760405162461bcd60e51b815260040161081890612097565b600c54610fd084846120d2565b111561101e5760405162461bcd60e51b815260206004820152601860248201527f43616e7420676f206f766572206672656520737570706c7900000000000000006044820152606401610818565b60005b8381101561105a57336000908152601060205260408120805491611044836121f3565b919050555080611053906121f3565b9050611021565b5061106533846117c2565b5050600160085550565b60606002805461072a90611ff1565b6002600854036110a05760405162461bcd60e51b815260040161081890612060565b6002600855600054600f5460ff166110ec5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610818565b6000821161110c5760405162461bcd60e51b815260040161081890612097565b600e5482111561116e5760405162461bcd60e51b815260206004820152602760248201527f43616e74206d696e74206d6f7265207468616e206d617870657254786e5075626044820152661b1a58d35a5b9d60ca1b6064820152608401610818565b600b5461117b83836120d2565b11156111b55760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610818565b81600a546111c3919061220c565b341015610bba57600080fd5b336001600160a01b038316036112275760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610818565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61129e8484846114dd565b6112aa84848484611905565b6112c65760405162461bcd60e51b815260040161081890612223565b50505050565b6007546001600160a01b031633146112f65760405162461bcd60e51b81526004016108189061202b565b600c55565b6060611308826000541190565b61135e5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610818565b6000611368611a07565b9050600081511161138857604051806020016040528060008152506113b3565b8061139284611a16565b6040516020016113a3929190612276565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146113e45760405162461bcd60e51b81526004016108189061202b565b600d55565b6007546001600160a01b031633146114135760405162461bcd60e51b81526004016108189061202b565b6001600160a01b0381166114785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610818565b610c4c816118b3565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114e8826117dc565b80519091506000906001600160a01b0316336001600160a01b0316148061151f575033611514846107ad565b6001600160a01b0316145b80611531575081516115319033610646565b90508061159b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610818565b846001600160a01b031682600001516001600160a01b03161461160f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610818565b6001600160a01b0384166116735760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610818565b6116836000848460000151611481565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166117785761172b816000541190565b15611778578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610d60828260405180602001604052806000815250611b17565b60408051808201909152600080825260208201526117fb826000541190565b61185a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610818565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118a9579392505050565b506000190161185c565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156119fb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119499033908990889088906004016122b5565b6020604051808303816000875af1925050508015611984575060408051601f3d908101601f19168201909252611981918101906122f2565b60015b6119e1573d8080156119b2576040519150601f19603f3d011682016040523d82523d6000602084013e6119b7565b606091505b5080516000036119d95760405162461bcd60e51b815260040161081890612223565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119ff565b5060015b949350505050565b60606009805461072a90611ff1565b606081600003611a3d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a675780611a51816121f3565b9150611a609050600a83612325565b9150611a41565b60008167ffffffffffffffff811115611a8257611a82611e16565b6040519080825280601f01601f191660200182016040528015611aac576020820181803683370190505b5090505b84156119ff57611ac1600183612339565b9150611ace600a8661234c565b611ad99060306120d2565b60f81b818381518110611aee57611aee612360565b60200101906001600160f81b031916908160001a905350611b10600a86612325565b9450611ab0565b61094f83838360016000546001600160a01b038516611b825760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610818565b83600003611be35760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610818565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611cdc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611cd057611cb46000888488611905565b611cd05760405162461bcd60e51b815260040161081890612223565b60019182019101611c61565b506000556117bb565b6001600160e01b031981168114610c4c57600080fd5b600060208284031215611d0d57600080fd5b81356113b381611ce5565b60005b83811015611d33578181015183820152602001611d1b565b50506000910152565b60008151808452611d54816020860160208601611d18565b601f01601f19169290920160200192915050565b6020815260006113b36020830184611d3c565b600060208284031215611d8d57600080fd5b5035919050565b80356001600160a01b0381168114611dab57600080fd5b919050565b60008060408385031215611dc357600080fd5b611dcc83611d94565b946020939093013593505050565b600080600060608486031215611def57600080fd5b611df884611d94565b9250611e0660208501611d94565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e4757611e47611e16565b604051601f8501601f19908116603f01168101908282118183101715611e6f57611e6f611e16565b81604052809350858152868686011115611e8857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611eb457600080fd5b813567ffffffffffffffff811115611ecb57600080fd5b8201601f81018413611edc57600080fd5b6119ff84823560208401611e2c565b600060208284031215611efd57600080fd5b6113b382611d94565b60008060408385031215611f1957600080fd5b611f2283611d94565b915060208301358015158114611f3757600080fd5b809150509250929050565b60008060008060808587031215611f5857600080fd5b611f6185611d94565b9350611f6f60208601611d94565b925060408501359150606085013567ffffffffffffffff811115611f9257600080fd5b8501601f81018713611fa357600080fd5b611fb287823560208401611e2c565b91505092959194509250565b60008060408385031215611fd157600080fd5b611fda83611d94565b9150611fe860208401611d94565b90509250929050565b600181811c9082168061200557607f821691505b60208210810361202557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600b908201526a043616e74206d696e7420360ac1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610715576107156120bc565b601f82111561094f57600081815260208120601f850160051c8101602086101561210c5750805b601f850160051c820191505b8181101561212b57828155600101612118565b505050505050565b815167ffffffffffffffff81111561214d5761214d611e16565b6121618161215b8454611ff1565b846120e5565b602080601f831160018114612196576000841561217e5750858301515b600019600386901b1c1916600185901b17855561212b565b600085815260208120601f198616915b828110156121c5578886015182559484019460019091019084016121a6565b50858210156121e35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018201612205576122056120bc565b5060010190565b8082028115828204841417610715576107156120bc565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612288818460208801611d18565b83519083019061229c818360208801611d18565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122e890830184611d3c565b9695505050505050565b60006020828403121561230457600080fd5b81516113b381611ce5565b634e487b7160e01b600052601260045260246000fd5b6000826123345761233461230f565b500490565b81810381811115610715576107156120bc565b60008261235b5761235b61230f565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220da0fae2a37fb9be2a66a51bf6ff81d6aee6ae82dd45e2d83ed2847c9e320e51564736f6c63430008110033697066733a2f2f626166796265696874646c626c623276647a6634646771627a65637367776e636f6a327763766632326665706e366d6e73616135737962793267752f

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063d5abeb011161006f578063d5abeb01146105f5578063dc4e66b51461060b578063e985e9c51461062b578063eb8d244414610674578063f2fde38b1461068e57600080fd5b8063a0712d6814610562578063a22cb46514610575578063b88d4fde14610595578063bde12d73146105b5578063c87b56dd146105d557600080fd5b8063715018a6116100f2578063715018a6146104da5780637c6b172d146104ef5780637c928fe91461051c5780638da5cb5b1461052f57806395d89b411461054d57600080fd5b80636352211e1461046f5780636838075b1461048f5780636c0360eb146104a557806370a08231146104ba57600080fd5b8063375a069a116101b15780634cdb966c116101755780634cdb966c146103da5780634f6ccce7146103fa57806355f804b31461041a57806356569a1d1461043a5780635c975abb1461045057600080fd5b8063375a069a146103695780633ccfd60b1461037c57806342842e0e1461038457806344a0d68a146103a4578063485a68a3146103c457600080fd5b806313faede6116101f857806313faede6146102db57806318160ddd146102ff57806323b872dd146103145780632f745c591461033457806334918dfd1461035457600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611cfb565b6106ae565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461071b565b6040516102569190611d68565b34801561028d57600080fd5b506102a161029c366004611d7b565b6107ad565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611db0565b61083d565b005b3480156102e757600080fd5b506102f1600a5481565b604051908152602001610256565b34801561030b57600080fd5b506000546102f1565b34801561032057600080fd5b506102d961032f366004611dda565b610954565b34801561034057600080fd5b506102f161034f366004611db0565b61095f565b34801561036057600080fd5b506102d9610aba565b6102d9610377366004611d7b565b610af8565b6102d9610bcd565b34801561039057600080fd5b506102d961039f366004611dda565b610c4f565b3480156103b057600080fd5b506102d96103bf366004611d7b565b610c6a565b3480156103d057600080fd5b506102f1600c5481565b3480156103e657600080fd5b506102d96103f5366004611d7b565b610c99565b34801561040657600080fd5b506102f1610415366004611d7b565b610cc8565b34801561042657600080fd5b506102d9610435366004611ea2565b610d2a565b34801561044657600080fd5b506102f1600d5481565b34801561045c57600080fd5b50600754600160a01b900460ff1661024a565b34801561047b57600080fd5b506102a161048a366004611d7b565b610d64565b34801561049b57600080fd5b506102f1600e5481565b3480156104b157600080fd5b50610274610d76565b3480156104c657600080fd5b506102f16104d5366004611eeb565b610e04565b3480156104e657600080fd5b506102d9610e95565b3480156104fb57600080fd5b506102f161050a366004611eeb565b60106020526000908152604090205481565b6102d961052a366004611d7b565b610ecb565b34801561053b57600080fd5b506007546001600160a01b03166102a1565b34801561055957600080fd5b5061027461106f565b6102d9610570366004611d7b565b61107e565b34801561058157600080fd5b506102d9610590366004611f06565b6111cf565b3480156105a157600080fd5b506102d96105b0366004611f42565b611293565b3480156105c157600080fd5b506102d96105d0366004611d7b565b6112cc565b3480156105e157600080fd5b506102746105f0366004611d7b565b6112fb565b34801561060157600080fd5b506102f1600b5481565b34801561061757600080fd5b506102d9610626366004611d7b565b6113ba565b34801561063757600080fd5b5061024a610646366004611fbe565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561068057600080fd5b50600f5461024a9060ff1681565b34801561069a57600080fd5b506102d96106a9366004611eeb565b6113e9565b60006001600160e01b031982166380ac58cd60e01b14806106df57506001600160e01b03198216635b5e139f60e01b145b806106fa57506001600160e01b0319821663780e9d6360e01b145b8061071557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461072a90611ff1565b80601f016020809104026020016040519081016040528092919081815260200182805461075690611ff1565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b60006107ba826000541190565b6108215760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061084882610d64565b9050806001600160a01b0316836001600160a01b0316036108b65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610818565b336001600160a01b03821614806108d257506108d28133610646565b6109445760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610818565b61094f838383611481565b505050565b61094f8383836114dd565b600061096a83610e04565b82106109c35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610818565b600080549080805b83811015610a5a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a1e57805192505b876001600160a01b0316836001600160a01b031603610a5157868403610a4a5750935061071592505050565b6001909301925b506001016109cb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610818565b6007546001600160a01b03163314610ae45760405162461bcd60e51b81526004016108189061202b565b600f805460ff19811660ff90911615179055565b600260085403610b1a5760405162461bcd60e51b815260040161081890612060565b60026008556007546001600160a01b03163314610b495760405162461bcd60e51b81526004016108189061202b565b60005481610b695760405162461bcd60e51b815260040161081890612097565b600b54610b7683836120d2565b1115610bba5760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610818565b610bc433836117c2565b50506001600855565b6007546001600160a01b03163314610bf75760405162461bcd60e51b81526004016108189061202b565b604051600090339047908381818185875af1925050503d8060008114610c39576040519150601f19603f3d011682016040523d82523d6000602084013e610c3e565b606091505b5050905080610c4c57600080fd5b50565b61094f83838360405180602001604052806000815250611293565b6007546001600160a01b03163314610c945760405162461bcd60e51b81526004016108189061202b565b600a55565b6007546001600160a01b03163314610cc35760405162461bcd60e51b81526004016108189061202b565b600e55565b600080548210610d265760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610818565b5090565b6007546001600160a01b03163314610d545760405162461bcd60e51b81526004016108189061202b565b6009610d608282612133565b5050565b6000610d6f826117dc565b5192915050565b60098054610d8390611ff1565b80601f0160208091040260200160405190810160405280929190818152602001828054610daf90611ff1565b8015610dfc5780601f10610dd157610100808354040283529160200191610dfc565b820191906000526020600020905b815481529060010190602001808311610ddf57829003601f168201915b505050505081565b60006001600160a01b038216610e705760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610818565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ebf5760405162461bcd60e51b81526004016108189061202b565b610ec960006118b3565b565b600260085403610eed5760405162461bcd60e51b815260040161081890612060565b6002600855600080543382526010602052604090912054600f5460ff16610f485760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610818565b600d54610f5584836120d2565b1115610fa35760405162461bcd60e51b815260206004820181905260248201527f6d61782066726565204e4654207065722077616c6c65742065786365656465646044820152606401610818565b60008311610fc35760405162461bcd60e51b815260040161081890612097565b600c54610fd084846120d2565b111561101e5760405162461bcd60e51b815260206004820152601860248201527f43616e7420676f206f766572206672656520737570706c7900000000000000006044820152606401610818565b60005b8381101561105a57336000908152601060205260408120805491611044836121f3565b919050555080611053906121f3565b9050611021565b5061106533846117c2565b5050600160085550565b60606002805461072a90611ff1565b6002600854036110a05760405162461bcd60e51b815260040161081890612060565b6002600855600054600f5460ff166110ec5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610818565b6000821161110c5760405162461bcd60e51b815260040161081890612097565b600e5482111561116e5760405162461bcd60e51b815260206004820152602760248201527f43616e74206d696e74206d6f7265207468616e206d617870657254786e5075626044820152661b1a58d35a5b9d60ca1b6064820152608401610818565b600b5461117b83836120d2565b11156111b55760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610818565b81600a546111c3919061220c565b341015610bba57600080fd5b336001600160a01b038316036112275760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610818565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61129e8484846114dd565b6112aa84848484611905565b6112c65760405162461bcd60e51b815260040161081890612223565b50505050565b6007546001600160a01b031633146112f65760405162461bcd60e51b81526004016108189061202b565b600c55565b6060611308826000541190565b61135e5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610818565b6000611368611a07565b9050600081511161138857604051806020016040528060008152506113b3565b8061139284611a16565b6040516020016113a3929190612276565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146113e45760405162461bcd60e51b81526004016108189061202b565b600d55565b6007546001600160a01b031633146114135760405162461bcd60e51b81526004016108189061202b565b6001600160a01b0381166114785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610818565b610c4c816118b3565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114e8826117dc565b80519091506000906001600160a01b0316336001600160a01b0316148061151f575033611514846107ad565b6001600160a01b0316145b80611531575081516115319033610646565b90508061159b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610818565b846001600160a01b031682600001516001600160a01b03161461160f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610818565b6001600160a01b0384166116735760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610818565b6116836000848460000151611481565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166117785761172b816000541190565b15611778578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610d60828260405180602001604052806000815250611b17565b60408051808201909152600080825260208201526117fb826000541190565b61185a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610818565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118a9579392505050565b506000190161185c565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156119fb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119499033908990889088906004016122b5565b6020604051808303816000875af1925050508015611984575060408051601f3d908101601f19168201909252611981918101906122f2565b60015b6119e1573d8080156119b2576040519150601f19603f3d011682016040523d82523d6000602084013e6119b7565b606091505b5080516000036119d95760405162461bcd60e51b815260040161081890612223565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119ff565b5060015b949350505050565b60606009805461072a90611ff1565b606081600003611a3d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a675780611a51816121f3565b9150611a609050600a83612325565b9150611a41565b60008167ffffffffffffffff811115611a8257611a82611e16565b6040519080825280601f01601f191660200182016040528015611aac576020820181803683370190505b5090505b84156119ff57611ac1600183612339565b9150611ace600a8661234c565b611ad99060306120d2565b60f81b818381518110611aee57611aee612360565b60200101906001600160f81b031916908160001a905350611b10600a86612325565b9450611ab0565b61094f83838360016000546001600160a01b038516611b825760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610818565b83600003611be35760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610818565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611cdc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611cd057611cb46000888488611905565b611cd05760405162461bcd60e51b815260040161081890612223565b60019182019101611c61565b506000556117bb565b6001600160e01b031981168114610c4c57600080fd5b600060208284031215611d0d57600080fd5b81356113b381611ce5565b60005b83811015611d33578181015183820152602001611d1b565b50506000910152565b60008151808452611d54816020860160208601611d18565b601f01601f19169290920160200192915050565b6020815260006113b36020830184611d3c565b600060208284031215611d8d57600080fd5b5035919050565b80356001600160a01b0381168114611dab57600080fd5b919050565b60008060408385031215611dc357600080fd5b611dcc83611d94565b946020939093013593505050565b600080600060608486031215611def57600080fd5b611df884611d94565b9250611e0660208501611d94565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e4757611e47611e16565b604051601f8501601f19908116603f01168101908282118183101715611e6f57611e6f611e16565b81604052809350858152868686011115611e8857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611eb457600080fd5b813567ffffffffffffffff811115611ecb57600080fd5b8201601f81018413611edc57600080fd5b6119ff84823560208401611e2c565b600060208284031215611efd57600080fd5b6113b382611d94565b60008060408385031215611f1957600080fd5b611f2283611d94565b915060208301358015158114611f3757600080fd5b809150509250929050565b60008060008060808587031215611f5857600080fd5b611f6185611d94565b9350611f6f60208601611d94565b925060408501359150606085013567ffffffffffffffff811115611f9257600080fd5b8501601f81018713611fa357600080fd5b611fb287823560208401611e2c565b91505092959194509250565b60008060408385031215611fd157600080fd5b611fda83611d94565b9150611fe860208401611d94565b90509250929050565b600181811c9082168061200557607f821691505b60208210810361202557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600b908201526a043616e74206d696e7420360ac1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610715576107156120bc565b601f82111561094f57600081815260208120601f850160051c8101602086101561210c5750805b601f850160051c820191505b8181101561212b57828155600101612118565b505050505050565b815167ffffffffffffffff81111561214d5761214d611e16565b6121618161215b8454611ff1565b846120e5565b602080601f831160018114612196576000841561217e5750858301515b600019600386901b1c1916600185901b17855561212b565b600085815260208120601f198616915b828110156121c5578886015182559484019460019091019084016121a6565b50858210156121e35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018201612205576122056120bc565b5060010190565b8082028115828204841417610715576107156120bc565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612288818460208801611d18565b83519083019061229c818360208801611d18565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122e890830184611d3c565b9695505050505050565b60006020828403121561230457600080fd5b81516113b381611ce5565b634e487b7160e01b600052601260045260246000fd5b6000826123345761233461230f565b500490565b81810381811115610715576107156120bc565b60008261235b5761235b61230f565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220da0fae2a37fb9be2a66a51bf6ff81d6aee6ae82dd45e2d83ed2847c9e320e51564736f6c63430008110033

Deployed Bytecode Sourcemap

45192:3534:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24869:372;;;;;;;;;;-1:-1:-1;24869:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24869:372:0;;;;;;;;26755:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28317:214::-;;;;;;;;;;-1:-1:-1;28317:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;28317:214:0;1533:203:1;27838:413:0;;;;;;;;;;-1:-1:-1;27838:413:0;;;;;:::i;:::-;;:::i;:::-;;45326:33;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;45326:33:0;2178:177:1;23126:100:0;;;;;;;;;;-1:-1:-1;23179:7:0;23206:12;23126:100;;29193:162;;;;;;;;;;-1:-1:-1;29193:162:0;;;;;:::i;:::-;;:::i;23790:1007::-;;;;;;;;;;-1:-1:-1;23790:1007:0;;;;;:::i;:::-;;:::i;47850:89::-;;;;;;;;;;;;;:::i;47084:305::-;;;;;;:::i;:::-;;:::i;48531:192::-;;;:::i;29426:177::-;;;;;;;;;;-1:-1:-1;29426:177:0;;;;;:::i;:::-;;:::i;47947:86::-;;;;;;;;;;-1:-1:-1;47947:86:0;;;;;:::i;:::-;;:::i;45405:30::-;;;;;;;;;;;;;;;;48285:114;;;;;;;;;;-1:-1:-1;48285:114:0;;;;;:::i;:::-;;:::i;23303:187::-;;;;;;;;;;-1:-1:-1;23303:187:0;;;;;:::i;:::-;;:::i;48173:104::-;;;;;;;;;;-1:-1:-1;48173:104:0;;;;;:::i;:::-;;:::i;45442:41::-;;;;;;;;;;;;;;;;39043:86;;;;;;;;;;-1:-1:-1;39114:7:0;;-1:-1:-1;;;39114:7:0;;;;39043:86;;26564:124;;;;;;;;;;-1:-1:-1;26564:124:0;;;;;:::i;:::-;;:::i;45490:39::-;;;;;;;;;;;;;;;;45298:21;;;;;;;;;;;;;:::i;25305:221::-;;;;;;;;;;-1:-1:-1;25305:221:0;;;;;:::i;:::-;;:::i;41860:94::-;;;;;;;;;;;;;:::i;45577:59::-;;;;;;;;;;-1:-1:-1;45577:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;45915:669;;;;;;:::i;:::-;;:::i;41209:87::-;;;;;;;;;;-1:-1:-1;41282:6:0;;-1:-1:-1;;;;;41282:6:0;41209:87;;26924:104;;;;;;;;;;;;;:::i;46594:482::-;;;;;;:::i;:::-;;:::i;28603:288::-;;;;;;;;;;-1:-1:-1;28603:288:0;;;;;:::i;:::-;;:::i;29674:355::-;;;;;;;;;;-1:-1:-1;29674:355:0;;;;;:::i;:::-;;:::i;48042:123::-;;;;;;;;;;-1:-1:-1;48042:123:0;;;;;:::i;:::-;;:::i;47397:445::-;;;;;;;;;;-1:-1:-1;47397:445:0;;;;;:::i;:::-;;:::i;45366:32::-;;;;;;;;;;;;;;;;48407:118;;;;;;;;;;-1:-1:-1;48407:118:0;;;;;:::i;:::-;;:::i;28962:164::-;;;;;;;;;;-1:-1:-1;28962:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29083:25:0;;;29059:4;29083:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28962:164;45536:32;;;;;;;;;;-1:-1:-1;45536:32:0;;;;;;;;42109:229;;;;;;;;;;-1:-1:-1;42109:229:0;;;;;:::i;:::-;;:::i;24869:372::-;24971:4;-1:-1:-1;;;;;;25008:40:0;;-1:-1:-1;;;25008:40:0;;:105;;-1:-1:-1;;;;;;;25065:48:0;;-1:-1:-1;;;25065:48:0;25008:105;:172;;;-1:-1:-1;;;;;;;25130:50:0;;-1:-1:-1;;;25130:50:0;25008:172;:225;;;-1:-1:-1;;;;;;;;;;14498:40:0;;;25197:36;24988:245;24869:372;-1:-1:-1;;24869:372:0:o;26755:100::-;26809:13;26842:5;26835:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26755:100;:::o;28317:214::-;28385:7;28413:16;28421:7;30341:4;30375:12;-1:-1:-1;30365:22:0;30284:111;28413:16;28405:74;;;;-1:-1:-1;;;28405:74:0;;5985:2:1;28405:74:0;;;5967:21:1;6024:2;6004:18;;;5997:30;6063:34;6043:18;;;6036:62;-1:-1:-1;;;6114:18:1;;;6107:43;6167:19;;28405:74:0;;;;;;;;;-1:-1:-1;28499:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28499:24:0;;28317:214::o;27838:413::-;27911:13;27927:24;27943:7;27927:15;:24::i;:::-;27911:40;;27976:5;-1:-1:-1;;;;;27970:11:0;:2;-1:-1:-1;;;;;27970:11:0;;27962:58;;;;-1:-1:-1;;;27962:58:0;;6399:2:1;27962:58:0;;;6381:21:1;6438:2;6418:18;;;6411:30;6477:34;6457:18;;;6450:62;-1:-1:-1;;;6528:18:1;;;6521:32;6570:19;;27962:58:0;6197:398:1;27962:58:0;2916:10;-1:-1:-1;;;;;28055:21:0;;;;:62;;-1:-1:-1;28080:37:0;28097:5;2916:10;28962:164;:::i;28080:37::-;28033:169;;;;-1:-1:-1;;;28033:169:0;;6802:2:1;28033:169:0;;;6784:21:1;6841:2;6821:18;;;6814:30;6880:34;6860:18;;;6853:62;6951:27;6931:18;;;6924:55;6996:19;;28033:169:0;6600:421:1;28033:169:0;28215:28;28224:2;28228:7;28237:5;28215:8;:28::i;:::-;27900:351;27838:413;;:::o;29193:162::-;29319:28;29329:4;29335:2;29339:7;29319:9;:28::i;23790:1007::-;23879:7;23915:16;23925:5;23915:9;:16::i;:::-;23907:5;:24;23899:71;;;;-1:-1:-1;;;23899:71:0;;7228:2:1;23899:71:0;;;7210:21:1;7267:2;7247:18;;;7240:30;7306:34;7286:18;;;7279:62;-1:-1:-1;;;7357:18:1;;;7350:32;7399:19;;23899:71:0;7026:398:1;23899:71:0;23981:22;23206:12;;;23981:22;;24244:466;24264:14;24260:1;:18;24244:466;;;24304:31;24338:14;;;:11;:14;;;;;;;;;24304:48;;;;;;;;;-1:-1:-1;;;;;24304:48:0;;;;;-1:-1:-1;;;24304:48:0;;;;;;;;;;;;24375:28;24371:111;;24448:14;;;-1:-1:-1;24371:111:0;24525:5;-1:-1:-1;;;;;24504:26:0;:17;-1:-1:-1;;;;;24504:26:0;;24500:195;;24574:5;24559:11;:20;24555:85;;-1:-1:-1;24615:1:0;-1:-1:-1;24608:8:0;;-1:-1:-1;;;24608:8:0;24555:85;24662:13;;;;;24500:195;-1:-1:-1;24280:3:0;;24244:466;;;-1:-1:-1;24733:56:0;;-1:-1:-1;;;24733:56:0;;7631:2:1;24733:56:0;;;7613:21:1;7670:2;7650:18;;;7643:30;7709:34;7689:18;;;7682:62;-1:-1:-1;;;7760:18:1;;;7753:44;7814:19;;24733:56:0;7429:410:1;47850:89:0;41282:6;;-1:-1:-1;;;;;41282:6:0;2916:10;41429:23;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;47919:12:::1;::::0;;-1:-1:-1;;47903:28:0;::::1;47919:12;::::0;;::::1;47918:13;47903:28;::::0;;47850:89::o;47084:305::-;44204:1;44800:7;;:19;44792:63;;;;-1:-1:-1;;;44792:63:0;;;;;;;:::i;:::-;44204:1;44933:7;:18;41282:6;;-1:-1:-1;;;;;41282:6:0;2916:10;41429:23:::1;41421:68;;;;-1:-1:-1::0;;;41421:68:0::1;;;;;;;:::i;:::-;47171:9:::2;23206:12:::0;47215:15;47207:39:::2;;;;-1:-1:-1::0;;;47207:39:0::2;;;;;;;:::i;:::-;47284:9;::::0;47265:15:::2;47269:11:::0;47265:1;:15:::2;:::i;:::-;:28;;47257:60;;;::::0;-1:-1:-1;;;47257:60:0;;9369:2:1;47257:60:0::2;::::0;::::2;9351:21:1::0;9408:2;9388:18;;;9381:30;-1:-1:-1;;;9427:18:1;;;9420:49;9486:18;;47257:60:0::2;9167:343:1::0;47257:60:0::2;47328:34;47338:10;47350:11;47328:9;:34::i;:::-;-1:-1:-1::0;;44160:1:0;45112:7;:22;47084:305::o;48531:192::-;41282:6;;-1:-1:-1;;;;;41282:6:0;2916:10;41429:23;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48606:82:::1;::::0;48588:12:::1;::::0;48614:10:::1;::::0;48652:21:::1;::::0;48588:12;48606:82;48588:12;48606:82;48652:21;48614:10;48606:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48587:101;;;48707:7;48699:16;;;::::0;::::1;;48576:147;48531:192::o:0;29426:177::-;29556:39;29573:4;29579:2;29583:7;29556:39;;;;;;;;;;;;:16;:39::i;47947:86::-;41282:6;;-1:-1:-1;;;;;41282:6:0;2916:10;41429:23;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48010:4:::1;:15:::0;47947:86::o;48285:114::-;41282:6;;-1:-1:-1;;;;;41282:6:0;2916:10;41429:23;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48362:19:::1;:29:::0;48285:114::o;23303:187::-;23370:7;23206:12;;23398:5;:21;23390:69;;;;-1:-1:-1;;;23390:69:0;;9927:2:1;23390:69:0;;;9909:21:1;9966:2;9946:18;;;9939:30;10005:34;9985:18;;;9978:62;-1:-1:-1;;;10056:18:1;;;10049:33;10099:19;;23390:69:0;9725:399:1;23390:69:0;-1:-1:-1;23477:5:0;23303:187::o;48173:104::-;41282:6;;-1:-1:-1;;;;;41282:6:0;2916:10;41429:23;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48248:7:::1;:21;48258:11:::0;48248:7;:21:::1;:::i;:::-;;48173:104:::0;:::o;26564:124::-;26628:7;26655:20;26667:7;26655:11;:20::i;:::-;:25;;26564:124;-1:-1:-1;;26564:124:0:o;45298:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25305:221::-;25369:7;-1:-1:-1;;;;;25397:19:0;;25389:75;;;;-1:-1:-1;;;25389:75:0;;12535:2:1;25389:75:0;;;12517:21:1;12574:2;12554:18;;;12547:30;12613:34;12593:18;;;12586:62;-1:-1:-1;;;12664:18:1;;;12657:41;12715:19;;25389:75:0;12333:407:1;25389:75:0;-1:-1:-1;;;;;;25490:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25490:27:0;;25305:221::o;41860:94::-;41282:6;;-1:-1:-1;;;;;41282:6:0;2916:10;41429:23;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;41925:21:::1;41943:1;41925:9;:21::i;:::-;41860:94::o:0;45915:669::-;44204:1;44800:7;;:19;44792:63;;;;-1:-1:-1;;;44792:63:0;;;;;;;:::i;:::-;44204:1;44933:7;:18;45986:9:::1;23206:12:::0;;46080:10:::1;46055:36:::0;;:24:::1;:36;::::0;;;;;;46110:12:::1;::::0;::::1;;46102:40;;;::::0;-1:-1:-1;;;46102:40:0;;12947:2:1;46102:40:0::1;::::0;::::1;12929:21:1::0;12986:2;12966:18;;;12959:30;-1:-1:-1;;;13005:18:1;;;12998:45;13060:18;;46102:40:0::1;12745:339:1::0;46102:40:0::1;46201:22;::::0;46161:36:::1;46186:11:::0;46161:22;:36:::1;:::i;:::-;:62;;46153:107;;;::::0;-1:-1:-1;;;46153:107:0;;13291:2:1;46153:107:0::1;::::0;::::1;13273:21:1::0;;;13310:18;;;13303:30;13369:34;13349:18;;;13342:62;13421:18;;46153:107:0::1;13089:356:1::0;46153:107:0::1;46287:1;46273:11;:15;46265:40;;;;-1:-1:-1::0;;;46265:40:0::1;;;;;;;:::i;:::-;46337:7;::::0;46318:15:::1;46322:11:::0;46318:1;:15:::1;:::i;:::-;:26;;46310:64;;;::::0;-1:-1:-1;;;46310:64:0;;13652:2:1;46310:64:0::1;::::0;::::1;13634:21:1::0;13691:2;13671:18;;;13664:30;13730:26;13710:18;;;13703:54;13774:18;;46310:64:0::1;13450:348:1::0;46310:64:0::1;46384:9;46379:103;46403:11;46399:1;:15;46379:103;;;46461:10;46436:36;::::0;;;:24:::1;:36;::::0;;;;:38;;;::::1;::::0;::::1;:::i;:::-;;;;;;46416:3;;;;:::i;:::-;;;46379:103;;;;46492:34;46502:10;46514:11;46492:9;:34::i;:::-;-1:-1:-1::0;;44160:1:0;45112:7;:22;-1:-1:-1;45915:669:0:o;26924:104::-;26980:13;27013:7;27006:14;;;;;:::i;46594:482::-;44204:1;44800:7;;:19;44792:63;;;;-1:-1:-1;;;44792:63:0;;;;;;;:::i;:::-;44204:1;44933:7;:18;46668:9:::1;23206:12:::0;46712::::1;::::0;::::1;;46704:40;;;::::0;-1:-1:-1;;;46704:40:0;;12947:2:1;46704:40:0::1;::::0;::::1;12929:21:1::0;12986:2;12966:18;;;12959:30;-1:-1:-1;;;13005:18:1;;;12998:45;13060:18;;46704:40:0::1;12745:339:1::0;46704:40:0::1;46777:1;46763:11;:15;46755:39;;;;-1:-1:-1::0;;;46755:39:0::1;;;;;;;:::i;:::-;46828:19;;46813:11;:34;;46805:87;;;::::0;-1:-1:-1;;;46805:87:0;;14145:2:1;46805:87:0::1;::::0;::::1;14127:21:1::0;14184:2;14164:18;;;14157:30;14223:34;14203:18;;;14196:62;-1:-1:-1;;;14274:18:1;;;14267:37;14321:19;;46805:87:0::1;13943:403:1::0;46805:87:0::1;46930:9;::::0;46911:15:::1;46915:11:::0;46911:1;:15:::1;:::i;:::-;:28;;46903:50;;;::::0;-1:-1:-1;;;46903:50:0;;14553:2:1;46903:50:0::1;::::0;::::1;14535:21:1::0;14592:1;14572:18;;;14565:29;-1:-1:-1;;;14610:18:1;;;14603:39;14659:18;;46903:50:0::1;14351:332:1::0;46903:50:0::1;46992:11;46985:4;;:18;;;;:::i;:::-;46972:9;:31;;46964:40;;;::::0;::::1;28603:288:::0;2916:10;-1:-1:-1;;;;;28698:24:0;;;28690:63;;;;-1:-1:-1;;;28690:63:0;;15063:2:1;28690:63:0;;;15045:21:1;15102:2;15082:18;;;15075:30;15141:28;15121:18;;;15114:56;15187:18;;28690:63:0;14861:350:1;28690:63:0;2916:10;28766:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28766:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28766:53:0;;;;;;;;;;28835:48;;540:41:1;;;28766:42:0;;2916:10;28835:48;;513:18:1;28835:48:0;;;;;;;28603:288;;:::o;29674:355::-;29833:28;29843:4;29849:2;29853:7;29833:9;:28::i;:::-;29894:48;29917:4;29923:2;29927:7;29936:5;29894:22;:48::i;:::-;29872:149;;;;-1:-1:-1;;;29872:149:0;;;;;;;:::i;:::-;29674:355;;;;:::o;48042:123::-;41282:6;;-1:-1:-1;;;;;41282:6:0;2916:10;41429:23;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48130:7:::1;:27:::0;48042:123::o;47397:445::-;47515:13;47554:16;47562:7;30341:4;30375:12;-1:-1:-1;30365:22:0;30284:111;47554:16;47546:62;;;;-1:-1:-1;;;47546:62:0;;15838:2:1;47546:62:0;;;15820:21:1;15877:2;15857:18;;;15850:30;15916:34;15896:18;;;15889:62;-1:-1:-1;;;15967:18:1;;;15960:31;16008:19;;47546:62:0;15636:397:1;47546:62:0;47619:28;47650:10;:8;:10::i;:::-;47619:41;;47722:1;47697:14;47691:28;:32;:143;;;;;;;;;;;;;;;;;47767:14;47783:18;:7;:16;:18::i;:::-;47750:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47691:143;47671:163;47397:445;-1:-1:-1;;;47397:445:0:o;48407:118::-;41282:6;;-1:-1:-1;;;;;41282:6:0;2916:10;41429:23;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48485:22:::1;:32:::0;48407:118::o;42109:229::-;41282:6;;-1:-1:-1;;;;;41282:6:0;2916:10;41429:23;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42212:22:0;::::1;42190:110;;;::::0;-1:-1:-1;;;42190:110:0;;16908:2:1;42190:110:0::1;::::0;::::1;16890:21:1::0;16947:2;16927:18;;;16920:30;16986:34;16966:18;;;16959:62;-1:-1:-1;;;17037:18:1;;;17030:36;17083:19;;42190:110:0::1;16706:402:1::0;42190:110:0::1;42311:19;42321:8;42311:9;:19::i;35204:196::-:0;35319:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35319:29:0;-1:-1:-1;;;;;35319:29:0;;;;;;;;;35364:28;;35319:24;;35364:28;;;;;;;35204:196;;;:::o;33084:2002::-;33199:35;33237:20;33249:7;33237:11;:20::i;:::-;33312:18;;33199:58;;-1:-1:-1;33270:22:0;;-1:-1:-1;;;;;33296:34:0;2916:10;-1:-1:-1;;;;;33296:34:0;;:87;;;-1:-1:-1;2916:10:0;33347:20;33359:7;33347:11;:20::i;:::-;-1:-1:-1;;;;;33347:36:0;;33296:87;:154;;;-1:-1:-1;33417:18:0;;33400:50;;2916:10;28962:164;:::i;33400:50::-;33270:181;;33472:17;33464:80;;;;-1:-1:-1;;;33464:80:0;;17315:2:1;33464:80:0;;;17297:21:1;17354:2;17334:18;;;17327:30;17393:34;17373:18;;;17366:62;-1:-1:-1;;;17444:18:1;;;17437:48;17502:19;;33464:80:0;17113:414:1;33464:80:0;33587:4;-1:-1:-1;;;;;33565:26:0;:13;:18;;;-1:-1:-1;;;;;33565:26:0;;33557:77;;;;-1:-1:-1;;;33557:77:0;;17734:2:1;33557:77:0;;;17716:21:1;17773:2;17753:18;;;17746:30;17812:34;17792:18;;;17785:62;-1:-1:-1;;;17863:18:1;;;17856:36;17909:19;;33557:77:0;17532:402:1;33557:77:0;-1:-1:-1;;;;;33653:16:0;;33645:66;;;;-1:-1:-1;;;33645:66:0;;18141:2:1;33645:66:0;;;18123:21:1;18180:2;18160:18;;;18153:30;18219:34;18199:18;;;18192:62;-1:-1:-1;;;18270:18:1;;;18263:35;18315:19;;33645:66:0;17939:401:1;33645:66:0;33832:49;33849:1;33853:7;33862:13;:18;;;33832:8;:49::i;:::-;-1:-1:-1;;;;;34177:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;34177:31:0;;;-1:-1:-1;;;;;34177:31:0;;;-1:-1:-1;;34177:31:0;;;;;;;34223:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34223:29:0;;;;;;;;;;;;;34269:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;34314:61:0;;;;-1:-1:-1;;;34359:15:0;34314:61;;;;;;34649:11;;;34679:24;;;;;:29;34649:11;;34679:29;34675:295;;34747:20;34755:11;30341:4;30375:12;-1:-1:-1;30365:22:0;30284:111;34747:20;34743:212;;;34824:18;;;34792:24;;;:11;:24;;;;;;;;:50;;34907:28;;;;34865:70;;-1:-1:-1;;;34865:70:0;-1:-1:-1;;;;;;34865:70:0;;;-1:-1:-1;;;;;34792:50:0;;;34865:70;;;;;;;34743:212;34152:829;35017:7;35013:2;-1:-1:-1;;;;;34998:27:0;35007:4;-1:-1:-1;;;;;34998:27:0;;;;;;;;;;;35036:42;33188:1898;;33084:2002;;;:::o;30403:104::-;30472:27;30482:2;30486:8;30472:27;;;;;;;;;;;;:9;:27::i;25965:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;26068:16:0;26076:7;30341:4;30375:12;-1:-1:-1;30365:22:0;30284:111;26068:16;26060:71;;;;-1:-1:-1;;;26060:71:0;;18547:2:1;26060:71:0;;;18529:21:1;18586:2;18566:18;;;18559:30;18625:34;18605:18;;;18598:62;-1:-1:-1;;;18676:18:1;;;18669:40;18726:19;;26060:71:0;18345:406:1;26060:71:0;26189:7;26169:245;26236:31;26270:17;;;:11;:17;;;;;;;;;26236:51;;;;;;;;;-1:-1:-1;;;;;26236:51:0;;;;;-1:-1:-1;;;26236:51:0;;;;;;;;;;;;26310:28;26306:93;;26370:9;25965:537;-1:-1:-1;;;25965:537:0:o;26306:93::-;-1:-1:-1;;;26209:6:0;26169:245;;42346:173;42421:6;;;-1:-1:-1;;;;;42438:17:0;;;-1:-1:-1;;;;;;42438:17:0;;;;;;;42471:40;;42421:6;;;42438:17;42421:6;;42471:40;;42402:16;;42471:40;42391:128;42346:173;:::o;35965:804::-;36120:4;-1:-1:-1;;;;;36141:13:0;;4578:19;:23;36137:625;;36177:72;;-1:-1:-1;;;36177:72:0;;-1:-1:-1;;;;;36177:36:0;;;;;:72;;2916:10;;36228:4;;36234:7;;36243:5;;36177:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36177:72:0;;;;;;;;-1:-1:-1;;36177:72:0;;;;;;;;;;;;:::i;:::-;;;36173:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36423:6;:13;36440:1;36423:18;36419:273;;36466:61;;-1:-1:-1;;;36466:61:0;;;;;;;:::i;36419:273::-;36642:6;36636:13;36627:6;36623:2;36619:15;36612:38;36173:534;-1:-1:-1;;;;;;36300:55:0;-1:-1:-1;;;36300:55:0;;-1:-1:-1;36293:62:0;;36137:625;-1:-1:-1;36746:4:0;36137:625;35965:804;;;;;;:::o;45799:108::-;45859:13;45892:7;45885:14;;;;;:::i;398:723::-;454:13;675:5;684:1;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;30870:163;30993:32;30999:2;31003:8;31013:5;31020:4;31431:20;31454:12;-1:-1:-1;;;;;31485:16:0;;31477:62;;;;-1:-1:-1;;;31477:62:0;;20761:2:1;31477:62:0;;;20743:21:1;20800:2;20780:18;;;20773:30;20839:34;20819:18;;;20812:62;-1:-1:-1;;;20890:18:1;;;20883:31;20931:19;;31477:62:0;20559:397:1;31477:62:0;31558:8;31570:1;31558:13;31550:66;;;;-1:-1:-1;;;31550:66:0;;21163:2:1;31550:66:0;;;21145:21:1;21202:2;21182:18;;;21175:30;21241:34;21221:18;;;21214:62;-1:-1:-1;;;21292:18:1;;;21285:38;21340:19;;31550:66:0;20961:404:1;31550:66:0;-1:-1:-1;;;;;31968:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;31968:45:0;;-1:-1:-1;;;;;31968:45:0;;;;;;;;;;32028:50;;;;;;;;;;;;;;32095:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;32145:66:0;;;;-1:-1:-1;;;32195:15:0;32145:66;;;;;;;32095:25;;32280:415;32300:8;32296:1;:12;32280:415;;;32339:38;;32364:12;;-1:-1:-1;;;;;32339:38:0;;;32356:1;;32339:38;;32356:1;;32339:38;32400:4;32396:249;;;32463:59;32494:1;32498:2;32502:12;32516:5;32463:22;:59::i;:::-;32429:196;;;;-1:-1:-1;;;32429:196:0;;;;;;;:::i;:::-;32665:14;;;;;32310:3;32280:415;;;-1:-1:-1;32711:12:0;:27;32762:60;29674:355;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;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:632;2890:5;2920:18;2961:2;2953:6;2950:14;2947:40;;;2967:18;;:::i;:::-;3042:2;3036:9;3010:2;3096:15;;-1:-1:-1;;3092:24:1;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2825:632;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:1;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;3918:186::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;4069:29;4088:9;4069:29;:::i;4109:347::-;4174:6;4182;4235:2;4223:9;4214:7;4210:23;4206:32;4203:52;;;4251:1;4248;4241:12;4203:52;4274:29;4293:9;4274:29;:::i;:::-;4264:39;;4353:2;4342:9;4338:18;4325:32;4400:5;4393:13;4386:21;4379:5;4376:32;4366:60;;4422:1;4419;4412:12;4366:60;4445:5;4435:15;;;4109:347;;;;;:::o;4461:667::-;4556:6;4564;4572;4580;4633:3;4621:9;4612:7;4608:23;4604:33;4601:53;;;4650:1;4647;4640:12;4601:53;4673:29;4692:9;4673:29;:::i;:::-;4663:39;;4721:38;4755:2;4744:9;4740:18;4721:38;:::i;:::-;4711:48;;4806:2;4795:9;4791:18;4778:32;4768:42;;4861:2;4850:9;4846:18;4833:32;4888:18;4880:6;4877:30;4874:50;;;4920:1;4917;4910:12;4874:50;4943:22;;4996:4;4988:13;;4984:27;-1:-1:-1;4974:55:1;;5025:1;5022;5015:12;4974:55;5048:74;5114:7;5109:2;5096:16;5091:2;5087;5083:11;5048:74;:::i;:::-;5038:84;;;4461:667;;;;;;;:::o;5133:260::-;5201:6;5209;5262:2;5250:9;5241:7;5237:23;5233:32;5230:52;;;5278:1;5275;5268:12;5230:52;5301:29;5320:9;5301:29;:::i;:::-;5291:39;;5349:38;5383:2;5372:9;5368:18;5349:38;:::i;:::-;5339:48;;5133:260;;;;;:::o;5398:380::-;5477:1;5473:12;;;;5520;;;5541:61;;5595:4;5587:6;5583:17;5573:27;;5541:61;5648:2;5640:6;5637:14;5617:18;5614:38;5611:161;;5694:10;5689:3;5685:20;5682:1;5675:31;5729:4;5726:1;5719:15;5757:4;5754:1;5747:15;5611:161;;5398:380;;;:::o;7844:356::-;8046:2;8028:21;;;8065:18;;;8058:30;8124:34;8119:2;8104:18;;8097:62;8191:2;8176:18;;7844:356::o;8205:355::-;8407:2;8389:21;;;8446:2;8426:18;;;8419:30;8485:33;8480:2;8465:18;;8458:61;8551:2;8536:18;;8205:355::o;8565:335::-;8767:2;8749:21;;;8806:2;8786:18;;;8779:30;-1:-1:-1;;;8840:2:1;8825:18;;8818:41;8891:2;8876:18;;8565:335::o;8905:127::-;8966:10;8961:3;8957:20;8954:1;8947:31;8997:4;8994:1;8987:15;9021:4;9018:1;9011:15;9037:125;9102:9;;;9123:10;;;9120:36;;;9136:18;;:::i;10255:545::-;10357:2;10352:3;10349:11;10346:448;;;10393:1;10418:5;10414:2;10407:17;10463:4;10459:2;10449:19;10533:2;10521:10;10517:19;10514:1;10510:27;10504:4;10500:38;10569:4;10557:10;10554:20;10551:47;;;-1:-1:-1;10592:4:1;10551:47;10647:2;10642:3;10638:12;10635:1;10631:20;10625:4;10621:31;10611:41;;10702:82;10720:2;10713:5;10710:13;10702:82;;;10765:17;;;10746:1;10735:13;10702:82;;;10706:3;;;10255:545;;;:::o;10976:1352::-;11102:3;11096:10;11129:18;11121:6;11118:30;11115:56;;;11151:18;;:::i;:::-;11180:97;11270:6;11230:38;11262:4;11256:11;11230:38;:::i;:::-;11224:4;11180:97;:::i;:::-;11332:4;;11396:2;11385:14;;11413:1;11408:663;;;;12115:1;12132:6;12129:89;;;-1:-1:-1;12184:19:1;;;12178:26;12129:89;-1:-1:-1;;10933:1:1;10929:11;;;10925:24;10921:29;10911:40;10957:1;10953:11;;;10908:57;12231:81;;11378:944;;11408:663;10202:1;10195:14;;;10239:4;10226:18;;-1:-1:-1;;11444:20:1;;;11562:236;11576:7;11573:1;11570:14;11562:236;;;11665:19;;;11659:26;11644:42;;11757:27;;;;11725:1;11713:14;;;;11592:19;;11562:236;;;11566:3;11826:6;11817:7;11814:19;11811:201;;;11887:19;;;11881:26;-1:-1:-1;;11970:1:1;11966:14;;;11982:3;11962:24;11958:37;11954:42;11939:58;11924:74;;11811:201;-1:-1:-1;;;;;12058:1:1;12042:14;;;12038:22;12025:36;;-1:-1:-1;10976:1352:1:o;13803:135::-;13842:3;13863:17;;;13860:43;;13883:18;;:::i;:::-;-1:-1:-1;13930:1:1;13919:13;;13803:135::o;14688:168::-;14761:9;;;14792;;14809:15;;;14803:22;;14789:37;14779:71;;14830:18;;:::i;15216:415::-;15418:2;15400:21;;;15457:2;15437:18;;;15430:30;15496:34;15491:2;15476:18;;15469:62;-1:-1:-1;;;15562:2:1;15547:18;;15540:49;15621:3;15606:19;;15216:415::o;16038:663::-;16318:3;16356:6;16350:13;16372:66;16431:6;16426:3;16419:4;16411:6;16407:17;16372:66;:::i;:::-;16501:13;;16460:16;;;;16523:70;16501:13;16460:16;16570:4;16558:17;;16523:70;:::i;:::-;-1:-1:-1;;;16615:20:1;;16644:22;;;16693:1;16682:13;;16038:663;-1:-1:-1;;;;16038:663:1:o;19172:489::-;-1:-1:-1;;;;;19441:15:1;;;19423:34;;19493:15;;19488:2;19473:18;;19466:43;19540:2;19525:18;;19518:34;;;19588:3;19583:2;19568:18;;19561:31;;;19366:4;;19609:46;;19635:19;;19627:6;19609:46;:::i;:::-;19601:54;19172:489;-1:-1:-1;;;;;;19172:489:1:o;19666:249::-;19735:6;19788:2;19776:9;19767:7;19763:23;19759:32;19756:52;;;19804:1;19801;19794:12;19756:52;19836:9;19830:16;19855:30;19879:5;19855:30;:::i;19920:127::-;19981:10;19976:3;19972:20;19969:1;19962:31;20012:4;20009:1;20002:15;20036:4;20033:1;20026:15;20052:120;20092:1;20118;20108:35;;20123:18;;:::i;:::-;-1:-1:-1;20157:9:1;;20052:120::o;20177:128::-;20244:9;;;20265:11;;;20262:37;;;20279:18;;:::i;20310:112::-;20342:1;20368;20358:35;;20373:18;;:::i;:::-;-1:-1:-1;20407:9:1;;20310:112::o;20427:127::-;20488:10;20483:3;20479:20;20476:1;20469:31;20519:4;20516:1;20509:15;20543:4;20540:1;20533:15

Swarm Source

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