ETH Price: $3,386.61 (-1.60%)
Gas: 2 Gwei

Boss Bunnies NFT (BOSSBUNNIES)
 

Overview

TokenID

774

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Boss Bunnies are a collection of statistically generated NFTs on the Ethereum blockchain. The 1st generation consists of 10,001 programmatically generated Bunnies from over 440,000 total combinations.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BossBunnies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-04
*/

/**
 *Submitted for verification at Etherscan.io on 2021-11-28
*/

// SPDX-License-Identifier: GPL-3.0

// File: @openzeppelin/contracts/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/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/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/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}


// Contract: BossBunnies
// Author: Metaverse Solutions, LLC
// Visit us at: metaversesolutions.ai
// ---- CONTRACT BEGINS HERE ----

pragma solidity ^0.8.0;

contract BossBunnies is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public provenanceHash = "fd6deaa03d34602500507f440300729ea26b62e68968429b491a5db8f646c832";
  string public baseExtension = ".json";
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 10001;
  uint256 public maxMintAmount = 16;
  bool public paused = false;
  bool public whitelistOnly = false;
  uint256 public walletLimit = 16;
  mapping(address => bool) public whitelisted;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    // To change the amount of Reserved Owner Tokens,
    // change the x in the mint(msg.sender, x) method below
    // to any other number you want.
    mint(msg.sender, 16);
    // After setting a reserve mint, you can change the
    // maxMintAmount or walletLimit
  }

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

  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);
    require((balanceOf(msg.sender) + _mintAmount) <= walletLimit, 'Wallet limit is reached.');

    if (whitelistOnly == false) {
        if (msg.sender != owner()) {
            if(whitelisted[msg.sender] != true) {
              require(msg.value >= cost * _mintAmount);
            }
        }
    
        for (uint256 i = 1; i <= _mintAmount; i++) {
          _safeMint(_to, supply + i);
        }
    }
    else if (whitelistOnly == true) {
        require(whitelisted[msg.sender] == true, 'Address is not whitelisted.');
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }
  }

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

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

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

 //
 // ONLY THE OWNER CAN CALL THE FUNCTIONS BELOW.
 //
  
 // This sets the minting price of each NFT.
 // Example: If you pass in 0.1, then you will need to pay 0.1 ETH + gas to mint 1 NFT.
  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }

 // This sets the amount users can mint at once.
 // Example: If you want your users to be able to mint 20 NFTs at once,
 // then you can set the setMaxMintAmount to 20.
 //
 // *THIS IS NOT A WALLET LIMIT. THERE IS ANOTHER FUNCTION FOR THAT BELOW*
  function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }
  
 // This sets the wallet limit.
 // Example: If you set the setWalletLimit function to 5, then users can have AT MOST 5 NFTs in their wallet.
 // You can change this to adjust the pre-mint wallet limit vs. the main minting phase's wallet limit.
  function setWalletLimit(uint256 _newWalletLimit) public onlyOwner() {
    walletLimit = _newWalletLimit;
  }
  
 // If you want to save gas by setting the maxMintAmount and walletLimit
 // at the same time, you can use this function.
 // Simply pass in the new maxMintAmount first, and the newWalletLimit second.
 // Example:
 // If you want to set a pre-mint phase where users can only mint 3 NFTs at a time,
 // and have a wallet limit of 9 NFTs, you can pass in the arguments
 // 3 and 9 respectively. 
 // Then, to activate full minting for your official launch phase,
 // simply pass in new arguments to change the maxMintAmount and walletLimit.
 // Example:
 // Now that you're fully launching, you can pass in 10 to the newMaxMintAmount argument
 // which would allow users to mint up to 10 at a time, and pass in 20 to the
 // newWalletLimit argument which would create a wallet limit of 20 NFTs.
  function setMaxMintAmountAndWalletLimit(uint256 _newmaxMintAmount, uint256 _newWalletLimit) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
    walletLimit = _newWalletLimit;
  }

 // This sets the max supply. This will be set to 10,000 by default, although it is changable.
  function setMaxSupply(uint256 _newSupply) public onlyOwner() {
    maxSupply = _newSupply;
  }
  
 // This changes the baseURI.
 // Example: If you pass in "https://google.com/", then every new NFT that is minted
 // will have a URI corresponding to the baseURI you passed in.
 // The first NFT you mint would have a URI of "https://google.com/1",
 // The second NFT you mint would have a URI of "https://google.com/2", etc.
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

 // This sets the baseURI extension.
 // Example: If your database requires that the URI of each NFT
 // must have a .json at the end of the URI 
 // (like https://google.com/1.json instead of just https://google.com/1)
 // then you can use this function to set the base extension.
 // For the above example, you would pass in ".json" to add the .json extension.
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

 // This pauses or unpauses sales.
 // If paused, no NFTs can be minted, including by whitelisted users.
 // Must be set to false for NFTs to be minted.
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
 // This activates or deactivates the whitelist.
 // set to false = anyone can mint
 // set to true = only whitelisted users can mint
  function activateWhitelist(bool _state) public onlyOwner {
    whitelistOnly = _state;
  }
  
 // This whitelists users.
 // You MUST use an array for this function, and put quotes around the addresses you would like to whitelist.
 // Example:
 // If you want to whitelist 0x000000000000000000000000000000000000,
 // then pass in the argument:
 // ["0x000000000000000000000000000000000000"]
 //
 // If you want to whitelist multiple users, then pass in the argument with commas
 // seperating the user's addresses.
 // Example:
 // ["0x000000000000000000000000000000000000","0x111111111111111111111111111111111", "0x222222222222222222222222222222222"]
 function whitelistUser(address[] memory _user) public onlyOwner {
     uint256 x = 0;
     for (x = 0; x < _user.length; x++) {
         whitelisted[_user[x]] = true;
     }
  }
 
 // This removes whitelisted users.
 // It's arguments are the same as for whitelisting users.
 // You MUST use an array, and put quotes around the addresses you would like to remove from the whitelist.
  function removeWhitelistUser(address[] memory _user) public onlyOwner {
     uint256 x = 0;
     for (x = 0; x < _user.length; x++) {
         whitelisted[_user[x]] = false;
     }
  }
  
 // This withdraws the contract's balance of ETH to the Owner's (whoever launched the contract) address.
  function withdraw() public payable onlyOwner {
    require(payable(msg.sender).send(address(this).balance));
  }
  

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"activateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"},{"internalType":"uint256","name":"_newWalletLimit","type":"uint256"}],"name":"setMaxMintAmountAndWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWalletLimit","type":"uint256"}],"name":"setWalletLimit","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":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60e060409081526080818152906200362860a03980516200002991600c9160209091019062000a6b565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600d9162000a6b565b506000600e55612711600f5560108080556011805461ffff191690556012553480156200008457600080fd5b506040516200366838038062003668833981016040819052620000a79162000bd5565b825183908390620000c090600090602085019062000a6b565b508051620000d690600190602084019062000a6b565b505050620000f3620000ed6200011460201b60201c565b62000118565b620000fe816200016a565b6200010b336010620001e3565b50505062000df5565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001df90600b90602084019062000a6b565b5050565b6000620001ef60085490565b60115490915060ff16156200020357600080fd5b600082116200021157600080fd5b6010548211156200022157600080fd5b600f5462000230838362000cbc565b11156200023c57600080fd5b601254826200024b33620003f4565b62000257919062000cbc565b1115620002a75760405162461bcd60e51b815260206004820152601860248201527f57616c6c6574206c696d697420697320726561636865642e00000000000000006044820152606401620001c1565b601154610100900460ff166200034157600a546001600160a01b0316331462000304573360009081526013602052604090205460ff161515600114620003045781600e54620002f7919062000cd7565b3410156200030457600080fd5b60015b8281116200033b57620003268462000320838562000cbc565b6200047d565b80620003328162000d7f565b91505062000307565b50505050565b60115460ff61010090910416151560011415620003ef573360009081526013602052604090205460ff161515600114620003be5760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642e00000000006044820152606401620001c1565b60015b8281116200033b57620003da8462000320838562000cbc565b80620003e68162000d7f565b915050620003c1565b505050565b60006001600160a01b038216620004615760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001c1565b506001600160a01b031660009081526003602052604090205490565b620001df8282604051806020016040528060008152506200049f60201b60201c565b620004ab838362000512565b620004ba600084848462000668565b620003ef5760405162461bcd60e51b815260206004820152603260248201526000805160206200360883398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001c1565b6001600160a01b0382166200056a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001c1565b6000818152600260205260409020546001600160a01b031615620005d15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001c1565b620005df60008383620007d1565b6001600160a01b03821660009081526003602052604081208054600192906200060a90849062000cbc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000689846001600160a01b0316620008ad60201b620015d81760201c565b15620007c557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620006c390339089908890889060040162000c66565b602060405180830381600087803b158015620006de57600080fd5b505af192505050801562000711575060408051601f3d908101601f191682019092526200070e9181019062000ba2565b60015b620007aa573d80801562000742576040519150601f19603f3d011682016040523d82523d6000602084013e62000747565b606091505b508051620007a25760405162461bcd60e51b815260206004820152603260248201526000805160206200360883398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001c1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620007c9565b5060015b949350505050565b620007e9838383620003ef60201b62000a861760201c565b6001600160a01b03831662000847576200084181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6200086d565b816001600160a01b0316836001600160a01b0316146200086d576200086d8382620008b3565b6001600160a01b0382166200088757620003ef8162000960565b826001600160a01b0316826001600160a01b031614620003ef57620003ef828262000a1a565b3b151590565b60006001620008cd84620003f460201b620010f61760201c565b620008d9919062000cf9565b6000838152600760205260409020549091508082146200092d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620009749060019062000cf9565b600083815260096020526040812054600880549394509092849081106200099f576200099f62000dc9565b906000526020600020015490508060088381548110620009c357620009c362000dc9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480620009fe57620009fe62000db3565b6001900381819060005260206000200160009055905550505050565b600062000a3283620003f460201b620010f61760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805462000a799062000d42565b90600052602060002090601f01602090048101928262000a9d576000855562000ae8565b82601f1062000ab857805160ff191683800117855562000ae8565b8280016001018555821562000ae8579182015b8281111562000ae857825182559160200191906001019062000acb565b5062000af692915062000afa565b5090565b5b8082111562000af6576000815560010162000afb565b600082601f83011262000b2357600080fd5b81516001600160401b038082111562000b405762000b4062000ddf565b604051601f8301601f19908116603f0116810190828211818310171562000b6b5762000b6b62000ddf565b8160405283815286602085880101111562000b8557600080fd5b62000b9884602083016020890162000d13565b9695505050505050565b60006020828403121562000bb557600080fd5b81516001600160e01b03198116811462000bce57600080fd5b9392505050565b60008060006060848603121562000beb57600080fd5b83516001600160401b038082111562000c0357600080fd5b62000c118783880162000b11565b9450602086015191508082111562000c2857600080fd5b62000c368783880162000b11565b9350604086015191508082111562000c4d57600080fd5b5062000c5c8682870162000b11565b9150509250925092565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000ca58160a085016020870162000d13565b601f01601f19169190910160a00195945050505050565b6000821982111562000cd25762000cd262000d9d565b500190565b600081600019048311821515161562000cf45762000cf462000d9d565b500290565b60008282101562000d0e5762000d0e62000d9d565b500390565b60005b8381101562000d3057818101518382015260200162000d16565b838111156200033b5750506000910152565b600181811c9082168062000d5757607f821691505b6020821081141562000d7957634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000d965762000d9662000d9d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6128038062000e056000396000f3fe60806040526004361061025c5760003560e01c806355f804b311610144578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146106bf578063d936547e146106d5578063da3ef23f14610705578063e985e9c514610725578063f1d5f5171461076e578063f2fde38b1461078e57600080fd5b8063a22cb46514610635578063b88d4fde14610655578063c668286214610675578063c6ab67a31461068a578063c87b56dd1461069f57600080fd5b806370a082311161010857806370a082311461058d578063715018a6146105ad5780638da5cb5b146105c257806395d89b41146105e0578063999abb7b146105f55780639b6fbf8a1461061557600080fd5b806355f804b3146104fe5780635c975abb1461051e5780636352211e146105385780636c0360eb146105585780636f8b44b01461056d57600080fd5b806323b872dd116101dd57806342842e0e116101a157806342842e0e14610432578063438b63001461045257806344a0d68a1461047f5780634b4687b51461049f5780634cedfc0c146104be5780634f6ccce7146104de57600080fd5b806323b872dd146103c15780632f745c59146103e15780633c8463a1146104015780633ccfd60b1461041757806340c10f191461041f57600080fd5b8063095ea7b311610224578063095ea7b3146103325780630f5fa1991461035257806313faede61461037257806318160ddd14610396578063239c70ae146103ab57600080fd5b806301ffc9a71461026157806302329a291461029657806306fdde03146102b8578063081812fc146102da578063088a4ed014610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612306565b6107ae565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b13660046122eb565b6107d9565b005b3480156102c457600080fd5b506102cd61081f565b60405161028d9190612535565b3480156102e657600080fd5b506102fa6102f5366004612389565b6108b1565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102b661032d366004612389565b610946565b34801561033e57600080fd5b506102b661034d36600461220d565b610975565b34801561035e57600080fd5b506102b661036d3660046123a2565b610a8b565b34801561037e57600080fd5b50610388600e5481565b60405190815260200161028d565b3480156103a257600080fd5b50600854610388565b3480156103b757600080fd5b5061038860105481565b3480156103cd57600080fd5b506102b66103dc36600461212b565b610ac0565b3480156103ed57600080fd5b506103886103fc36600461220d565b610af1565b34801561040d57600080fd5b5061038860125481565b6102b6610b87565b6102b661042d36600461220d565b610bd7565b34801561043e57600080fd5b506102b661044d36600461212b565b610dbe565b34801561045e57600080fd5b5061047261046d3660046120dd565b610dd9565b60405161028d91906124f1565b34801561048b57600080fd5b506102b661049a366004612389565b610e7b565b3480156104ab57600080fd5b5060115461028190610100900460ff1681565b3480156104ca57600080fd5b506102b66104d93660046122eb565b610eaa565b3480156104ea57600080fd5b506103886104f9366004612389565b610eee565b34801561050a57600080fd5b506102b6610519366004612340565b610f81565b34801561052a57600080fd5b506011546102819060ff1681565b34801561054457600080fd5b506102fa610553366004612389565b610fc2565b34801561056457600080fd5b506102cd611039565b34801561057957600080fd5b506102b6610588366004612389565b6110c7565b34801561059957600080fd5b506103886105a83660046120dd565b6110f6565b3480156105b957600080fd5b506102b661117d565b3480156105ce57600080fd5b50600a546001600160a01b03166102fa565b3480156105ec57600080fd5b506102cd6111b1565b34801561060157600080fd5b506102b6610610366004612237565b6111c0565b34801561062157600080fd5b506102b6610630366004612237565b611252565b34801561064157600080fd5b506102b66106503660046121e3565b6112e4565b34801561066157600080fd5b506102b6610670366004612167565b6113a9565b34801561068157600080fd5b506102cd6113db565b34801561069657600080fd5b506102cd6113e8565b3480156106ab57600080fd5b506102cd6106ba366004612389565b6113f5565b3480156106cb57600080fd5b50610388600f5481565b3480156106e157600080fd5b506102816106f03660046120dd565b60136020526000908152604090205460ff1681565b34801561071157600080fd5b506102b6610720366004612340565b6114d1565b34801561073157600080fd5b506102816107403660046120f8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077a57600080fd5b506102b6610789366004612389565b61150e565b34801561079a57600080fd5b506102b66107a93660046120dd565b61153d565b60006001600160e01b0319821663780e9d6360e01b14806107d357506107d3826115de565b92915050565b600a546001600160a01b0316331461080c5760405162461bcd60e51b81526004016108039061259a565b60405180910390fd5b6011805460ff1916911515919091179055565b60606000805461082e906126df565b80601f016020809104026020016040519081016040528092919081815260200182805461085a906126df565b80156108a75780601f1061087c576101008083540402835291602001916108a7565b820191906000526020600020905b81548152906001019060200180831161088a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661092a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610803565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146109705760405162461bcd60e51b81526004016108039061259a565b601055565b600061098082610fc2565b9050806001600160a01b0316836001600160a01b031614156109ee5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610803565b336001600160a01b0382161480610a0a5750610a0a8133610740565b610a7c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610803565b610a86838361162e565b505050565b600a546001600160a01b03163314610ab55760405162461bcd60e51b81526004016108039061259a565b601091909155601255565b610aca338261169c565b610ae65760405162461bcd60e51b8152600401610803906125cf565b610a86838383611793565b6000610afc836110f6565b8210610b5e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610803565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bb15760405162461bcd60e51b81526004016108039061259a565b60405133904780156108fc02916000818181858888f19350505050610bd557600080fd5b565b6000610be260085490565b60115490915060ff1615610bf557600080fd5b60008211610c0257600080fd5b601054821115610c1157600080fd5b600f54610c1e8383612651565b1115610c2957600080fd5b60125482610c36336110f6565b610c409190612651565b1115610c8e5760405162461bcd60e51b815260206004820152601860248201527f57616c6c6574206c696d697420697320726561636865642e00000000000000006044820152606401610803565b601154610100900460ff16610d1a57600a546001600160a01b03163314610ce5573360009081526013602052604090205460ff161515600114610ce55781600e54610cd9919061267d565b341015610ce557600080fd5b60015b828111610d1457610d0284610cfd8385612651565b61193e565b80610d0c8161271a565b915050610ce8565b50505050565b60115460ff61010090910416151560011415610a86573360009081526013602052604090205460ff161515600114610d945760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642e00000000006044820152606401610803565b60015b828111610d1457610dac84610cfd8385612651565b80610db68161271a565b915050610d97565b610a86838383604051806020016040528060008152506113a9565b60606000610de6836110f6565b905060008167ffffffffffffffff811115610e0357610e036127a1565b604051908082528060200260200182016040528015610e2c578160200160208202803683370190505b50905060005b82811015610e7357610e448582610af1565b828281518110610e5657610e5661278b565b602090810291909101015280610e6b8161271a565b915050610e32565b509392505050565b600a546001600160a01b03163314610ea55760405162461bcd60e51b81526004016108039061259a565b600e55565b600a546001600160a01b03163314610ed45760405162461bcd60e51b81526004016108039061259a565b601180549115156101000261ff0019909216919091179055565b6000610ef960085490565b8210610f5c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610803565b60088281548110610f6f57610f6f61278b565b90600052602060002001549050919050565b600a546001600160a01b03163314610fab5760405162461bcd60e51b81526004016108039061259a565b8051610fbe90600b906020840190611fc0565b5050565b6000818152600260205260408120546001600160a01b0316806107d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610803565b600b8054611046906126df565b80601f0160208091040260200160405190810160405280929190818152602001828054611072906126df565b80156110bf5780601f10611094576101008083540402835291602001916110bf565b820191906000526020600020905b8154815290600101906020018083116110a257829003601f168201915b505050505081565b600a546001600160a01b031633146110f15760405162461bcd60e51b81526004016108039061259a565b600f55565b60006001600160a01b0382166111615760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610803565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111a75760405162461bcd60e51b81526004016108039061259a565b610bd56000611958565b60606001805461082e906126df565b600a546001600160a01b031633146111ea5760405162461bcd60e51b81526004016108039061259a565b60005b8151811015610fbe5760006013600084848151811061120e5761120e61278b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061124a8161271a565b9150506111ed565b600a546001600160a01b0316331461127c5760405162461bcd60e51b81526004016108039061259a565b60005b8151811015610fbe576001601360008484815181106112a0576112a061278b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112dc8161271a565b91505061127f565b6001600160a01b03821633141561133d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610803565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113b3338361169c565b6113cf5760405162461bcd60e51b8152600401610803906125cf565b610d14848484846119aa565b600d8054611046906126df565b600c8054611046906126df565b6000818152600260205260409020546060906001600160a01b03166114725760405162461bcd60e51b815260206004820152602d60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526c1b995e1a5cdd195b9d08139195609a1b6064820152608401610803565b600061147c6119dd565b9050600081511161149c57604051806020016040528060008152506114ca565b806114a6846119ec565b600d6040516020016114ba939291906123f0565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114fb5760405162461bcd60e51b81526004016108039061259a565b8051610fbe90600d906020840190611fc0565b600a546001600160a01b031633146115385760405162461bcd60e51b81526004016108039061259a565b601255565b600a546001600160a01b031633146115675760405162461bcd60e51b81526004016108039061259a565b6001600160a01b0381166115cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610803565b6115d581611958565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061160f57506001600160e01b03198216635b5e139f60e01b145b806107d357506301ffc9a760e01b6001600160e01b03198316146107d3565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061166382610fc2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610803565b600061172083610fc2565b9050806001600160a01b0316846001600160a01b0316148061175b5750836001600160a01b0316611750846108b1565b6001600160a01b0316145b8061178b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117a682610fc2565b6001600160a01b03161461180e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610803565b6001600160a01b0382166118705760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610803565b61187b838383611aea565b61188660008261162e565b6001600160a01b03831660009081526003602052604081208054600192906118af90849061269c565b90915550506001600160a01b03821660009081526003602052604081208054600192906118dd908490612651565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610fbe828260405180602001604052806000815250611ba2565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119b5848484611793565b6119c184848484611bd5565b610d145760405162461bcd60e51b815260040161080390612548565b6060600b805461082e906126df565b606081611a105750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a3a5780611a248161271a565b9150611a339050600a83612669565b9150611a14565b60008167ffffffffffffffff811115611a5557611a556127a1565b6040519080825280601f01601f191660200182016040528015611a7f576020820181803683370190505b5090505b841561178b57611a9460018361269c565b9150611aa1600a86612735565b611aac906030612651565b60f81b818381518110611ac157611ac161278b565b60200101906001600160f81b031916908160001a905350611ae3600a86612669565b9450611a83565b6001600160a01b038316611b4557611b4081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b68565b816001600160a01b0316836001600160a01b031614611b6857611b688382611ce2565b6001600160a01b038216611b7f57610a8681611d7f565b826001600160a01b0316826001600160a01b031614610a8657610a868282611e2e565b611bac8383611e72565b611bb96000848484611bd5565b610a865760405162461bcd60e51b815260040161080390612548565b60006001600160a01b0384163b15611cd757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c199033908990889088906004016124b4565b602060405180830381600087803b158015611c3357600080fd5b505af1925050508015611c63575060408051601f3d908101601f19168201909252611c6091810190612323565b60015b611cbd573d808015611c91576040519150601f19603f3d011682016040523d82523d6000602084013e611c96565b606091505b508051611cb55760405162461bcd60e51b815260040161080390612548565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061178b565b506001949350505050565b60006001611cef846110f6565b611cf9919061269c565b600083815260076020526040902054909150808214611d4c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d919060019061269c565b60008381526009602052604081205460088054939450909284908110611db957611db961278b565b906000526020600020015490508060088381548110611dda57611dda61278b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e1257611e12612775565b6001900381819060005260206000200160009055905550505050565b6000611e39836110f6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ec85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610803565b6000818152600260205260409020546001600160a01b031615611f2d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610803565b611f3960008383611aea565b6001600160a01b0382166000908152600360205260408120805460019290611f62908490612651565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fcc906126df565b90600052602060002090601f016020900481019282611fee5760008555612034565b82601f1061200757805160ff1916838001178555612034565b82800160010185558215612034579182015b82811115612034578251825591602001919060010190612019565b50612040929150612044565b5090565b5b808211156120405760008155600101612045565b600067ffffffffffffffff831115612073576120736127a1565b612086601f8401601f1916602001612620565b905082815283838301111561209a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146120c857600080fd5b919050565b803580151581146120c857600080fd5b6000602082840312156120ef57600080fd5b6114ca826120b1565b6000806040838503121561210b57600080fd5b612114836120b1565b9150612122602084016120b1565b90509250929050565b60008060006060848603121561214057600080fd5b612149846120b1565b9250612157602085016120b1565b9150604084013590509250925092565b6000806000806080858703121561217d57600080fd5b612186856120b1565b9350612194602086016120b1565b925060408501359150606085013567ffffffffffffffff8111156121b757600080fd5b8501601f810187136121c857600080fd5b6121d787823560208401612059565b91505092959194509250565b600080604083850312156121f657600080fd5b6121ff836120b1565b9150612122602084016120cd565b6000806040838503121561222057600080fd5b612229836120b1565b946020939093013593505050565b6000602080838503121561224a57600080fd5b823567ffffffffffffffff8082111561226257600080fd5b818501915085601f83011261227657600080fd5b813581811115612288576122886127a1565b8060051b9150612299848301612620565b8181528481019084860184860187018a10156122b457600080fd5b600095505b838610156122de576122ca816120b1565b8352600195909501949186019186016122b9565b5098975050505050505050565b6000602082840312156122fd57600080fd5b6114ca826120cd565b60006020828403121561231857600080fd5b81356114ca816127b7565b60006020828403121561233557600080fd5b81516114ca816127b7565b60006020828403121561235257600080fd5b813567ffffffffffffffff81111561236957600080fd5b8201601f8101841361237a57600080fd5b61178b84823560208401612059565b60006020828403121561239b57600080fd5b5035919050565b600080604083850312156123b557600080fd5b50508035926020909101359150565b600081518084526123dc8160208601602086016126b3565b601f01601f19169290920160200192915050565b6000845160206124038285838a016126b3565b8551918401916124168184848a016126b3565b8554920191600090600181811c908083168061243357607f831692505b85831081141561245157634e487b7160e01b85526022600452602485fd5b8080156124655760018114612476576124a3565b60ff198516885283880195506124a3565b60008b81526020902060005b8581101561249b5781548a820152908401908801612482565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e7908301846123c4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125295783518352928401929184019160010161250d565b50909695505050505050565b6020815260006114ca60208301846123c4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612649576126496127a1565b604052919050565b6000821982111561266457612664612749565b500190565b6000826126785761267861275f565b500490565b600081600019048311821515161561269757612697612749565b500290565b6000828210156126ae576126ae612749565b500390565b60005b838110156126ce5781810151838201526020016126b6565b83811115610d145750506000910152565b600181811c908216806126f357607f821691505b6020821081141561271457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561272e5761272e612749565b5060010190565b6000826127445761274461275f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115d557600080fdfea264697066735822122056fc40e156d995de796512caf3b18062917b1a2c2655ab7bbf08aaf83dbcbfd664736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e20455243373231526566643664656161303364333436303235303035303766343430333030373239656132366236326536383936383432396234393161356462386636343663383332000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000010426f73732042756e6e696573204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b424f535342554e4e494553000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f626f737362756e6e6965732e6d7970696e6174612e636c6f75642f697066732f516d6336676a517465353336544a39756e4b4a71756d376f75514133507162794e3932484879726d4e674d6d48412f000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806355f804b311610144578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146106bf578063d936547e146106d5578063da3ef23f14610705578063e985e9c514610725578063f1d5f5171461076e578063f2fde38b1461078e57600080fd5b8063a22cb46514610635578063b88d4fde14610655578063c668286214610675578063c6ab67a31461068a578063c87b56dd1461069f57600080fd5b806370a082311161010857806370a082311461058d578063715018a6146105ad5780638da5cb5b146105c257806395d89b41146105e0578063999abb7b146105f55780639b6fbf8a1461061557600080fd5b806355f804b3146104fe5780635c975abb1461051e5780636352211e146105385780636c0360eb146105585780636f8b44b01461056d57600080fd5b806323b872dd116101dd57806342842e0e116101a157806342842e0e14610432578063438b63001461045257806344a0d68a1461047f5780634b4687b51461049f5780634cedfc0c146104be5780634f6ccce7146104de57600080fd5b806323b872dd146103c15780632f745c59146103e15780633c8463a1146104015780633ccfd60b1461041757806340c10f191461041f57600080fd5b8063095ea7b311610224578063095ea7b3146103325780630f5fa1991461035257806313faede61461037257806318160ddd14610396578063239c70ae146103ab57600080fd5b806301ffc9a71461026157806302329a291461029657806306fdde03146102b8578063081812fc146102da578063088a4ed014610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612306565b6107ae565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b13660046122eb565b6107d9565b005b3480156102c457600080fd5b506102cd61081f565b60405161028d9190612535565b3480156102e657600080fd5b506102fa6102f5366004612389565b6108b1565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102b661032d366004612389565b610946565b34801561033e57600080fd5b506102b661034d36600461220d565b610975565b34801561035e57600080fd5b506102b661036d3660046123a2565b610a8b565b34801561037e57600080fd5b50610388600e5481565b60405190815260200161028d565b3480156103a257600080fd5b50600854610388565b3480156103b757600080fd5b5061038860105481565b3480156103cd57600080fd5b506102b66103dc36600461212b565b610ac0565b3480156103ed57600080fd5b506103886103fc36600461220d565b610af1565b34801561040d57600080fd5b5061038860125481565b6102b6610b87565b6102b661042d36600461220d565b610bd7565b34801561043e57600080fd5b506102b661044d36600461212b565b610dbe565b34801561045e57600080fd5b5061047261046d3660046120dd565b610dd9565b60405161028d91906124f1565b34801561048b57600080fd5b506102b661049a366004612389565b610e7b565b3480156104ab57600080fd5b5060115461028190610100900460ff1681565b3480156104ca57600080fd5b506102b66104d93660046122eb565b610eaa565b3480156104ea57600080fd5b506103886104f9366004612389565b610eee565b34801561050a57600080fd5b506102b6610519366004612340565b610f81565b34801561052a57600080fd5b506011546102819060ff1681565b34801561054457600080fd5b506102fa610553366004612389565b610fc2565b34801561056457600080fd5b506102cd611039565b34801561057957600080fd5b506102b6610588366004612389565b6110c7565b34801561059957600080fd5b506103886105a83660046120dd565b6110f6565b3480156105b957600080fd5b506102b661117d565b3480156105ce57600080fd5b50600a546001600160a01b03166102fa565b3480156105ec57600080fd5b506102cd6111b1565b34801561060157600080fd5b506102b6610610366004612237565b6111c0565b34801561062157600080fd5b506102b6610630366004612237565b611252565b34801561064157600080fd5b506102b66106503660046121e3565b6112e4565b34801561066157600080fd5b506102b6610670366004612167565b6113a9565b34801561068157600080fd5b506102cd6113db565b34801561069657600080fd5b506102cd6113e8565b3480156106ab57600080fd5b506102cd6106ba366004612389565b6113f5565b3480156106cb57600080fd5b50610388600f5481565b3480156106e157600080fd5b506102816106f03660046120dd565b60136020526000908152604090205460ff1681565b34801561071157600080fd5b506102b6610720366004612340565b6114d1565b34801561073157600080fd5b506102816107403660046120f8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077a57600080fd5b506102b6610789366004612389565b61150e565b34801561079a57600080fd5b506102b66107a93660046120dd565b61153d565b60006001600160e01b0319821663780e9d6360e01b14806107d357506107d3826115de565b92915050565b600a546001600160a01b0316331461080c5760405162461bcd60e51b81526004016108039061259a565b60405180910390fd5b6011805460ff1916911515919091179055565b60606000805461082e906126df565b80601f016020809104026020016040519081016040528092919081815260200182805461085a906126df565b80156108a75780601f1061087c576101008083540402835291602001916108a7565b820191906000526020600020905b81548152906001019060200180831161088a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661092a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610803565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146109705760405162461bcd60e51b81526004016108039061259a565b601055565b600061098082610fc2565b9050806001600160a01b0316836001600160a01b031614156109ee5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610803565b336001600160a01b0382161480610a0a5750610a0a8133610740565b610a7c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610803565b610a86838361162e565b505050565b600a546001600160a01b03163314610ab55760405162461bcd60e51b81526004016108039061259a565b601091909155601255565b610aca338261169c565b610ae65760405162461bcd60e51b8152600401610803906125cf565b610a86838383611793565b6000610afc836110f6565b8210610b5e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610803565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bb15760405162461bcd60e51b81526004016108039061259a565b60405133904780156108fc02916000818181858888f19350505050610bd557600080fd5b565b6000610be260085490565b60115490915060ff1615610bf557600080fd5b60008211610c0257600080fd5b601054821115610c1157600080fd5b600f54610c1e8383612651565b1115610c2957600080fd5b60125482610c36336110f6565b610c409190612651565b1115610c8e5760405162461bcd60e51b815260206004820152601860248201527f57616c6c6574206c696d697420697320726561636865642e00000000000000006044820152606401610803565b601154610100900460ff16610d1a57600a546001600160a01b03163314610ce5573360009081526013602052604090205460ff161515600114610ce55781600e54610cd9919061267d565b341015610ce557600080fd5b60015b828111610d1457610d0284610cfd8385612651565b61193e565b80610d0c8161271a565b915050610ce8565b50505050565b60115460ff61010090910416151560011415610a86573360009081526013602052604090205460ff161515600114610d945760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642e00000000006044820152606401610803565b60015b828111610d1457610dac84610cfd8385612651565b80610db68161271a565b915050610d97565b610a86838383604051806020016040528060008152506113a9565b60606000610de6836110f6565b905060008167ffffffffffffffff811115610e0357610e036127a1565b604051908082528060200260200182016040528015610e2c578160200160208202803683370190505b50905060005b82811015610e7357610e448582610af1565b828281518110610e5657610e5661278b565b602090810291909101015280610e6b8161271a565b915050610e32565b509392505050565b600a546001600160a01b03163314610ea55760405162461bcd60e51b81526004016108039061259a565b600e55565b600a546001600160a01b03163314610ed45760405162461bcd60e51b81526004016108039061259a565b601180549115156101000261ff0019909216919091179055565b6000610ef960085490565b8210610f5c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610803565b60088281548110610f6f57610f6f61278b565b90600052602060002001549050919050565b600a546001600160a01b03163314610fab5760405162461bcd60e51b81526004016108039061259a565b8051610fbe90600b906020840190611fc0565b5050565b6000818152600260205260408120546001600160a01b0316806107d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610803565b600b8054611046906126df565b80601f0160208091040260200160405190810160405280929190818152602001828054611072906126df565b80156110bf5780601f10611094576101008083540402835291602001916110bf565b820191906000526020600020905b8154815290600101906020018083116110a257829003601f168201915b505050505081565b600a546001600160a01b031633146110f15760405162461bcd60e51b81526004016108039061259a565b600f55565b60006001600160a01b0382166111615760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610803565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111a75760405162461bcd60e51b81526004016108039061259a565b610bd56000611958565b60606001805461082e906126df565b600a546001600160a01b031633146111ea5760405162461bcd60e51b81526004016108039061259a565b60005b8151811015610fbe5760006013600084848151811061120e5761120e61278b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061124a8161271a565b9150506111ed565b600a546001600160a01b0316331461127c5760405162461bcd60e51b81526004016108039061259a565b60005b8151811015610fbe576001601360008484815181106112a0576112a061278b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112dc8161271a565b91505061127f565b6001600160a01b03821633141561133d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610803565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113b3338361169c565b6113cf5760405162461bcd60e51b8152600401610803906125cf565b610d14848484846119aa565b600d8054611046906126df565b600c8054611046906126df565b6000818152600260205260409020546060906001600160a01b03166114725760405162461bcd60e51b815260206004820152602d60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526c1b995e1a5cdd195b9d08139195609a1b6064820152608401610803565b600061147c6119dd565b9050600081511161149c57604051806020016040528060008152506114ca565b806114a6846119ec565b600d6040516020016114ba939291906123f0565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114fb5760405162461bcd60e51b81526004016108039061259a565b8051610fbe90600d906020840190611fc0565b600a546001600160a01b031633146115385760405162461bcd60e51b81526004016108039061259a565b601255565b600a546001600160a01b031633146115675760405162461bcd60e51b81526004016108039061259a565b6001600160a01b0381166115cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610803565b6115d581611958565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061160f57506001600160e01b03198216635b5e139f60e01b145b806107d357506301ffc9a760e01b6001600160e01b03198316146107d3565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061166382610fc2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610803565b600061172083610fc2565b9050806001600160a01b0316846001600160a01b0316148061175b5750836001600160a01b0316611750846108b1565b6001600160a01b0316145b8061178b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117a682610fc2565b6001600160a01b03161461180e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610803565b6001600160a01b0382166118705760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610803565b61187b838383611aea565b61188660008261162e565b6001600160a01b03831660009081526003602052604081208054600192906118af90849061269c565b90915550506001600160a01b03821660009081526003602052604081208054600192906118dd908490612651565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610fbe828260405180602001604052806000815250611ba2565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119b5848484611793565b6119c184848484611bd5565b610d145760405162461bcd60e51b815260040161080390612548565b6060600b805461082e906126df565b606081611a105750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a3a5780611a248161271a565b9150611a339050600a83612669565b9150611a14565b60008167ffffffffffffffff811115611a5557611a556127a1565b6040519080825280601f01601f191660200182016040528015611a7f576020820181803683370190505b5090505b841561178b57611a9460018361269c565b9150611aa1600a86612735565b611aac906030612651565b60f81b818381518110611ac157611ac161278b565b60200101906001600160f81b031916908160001a905350611ae3600a86612669565b9450611a83565b6001600160a01b038316611b4557611b4081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b68565b816001600160a01b0316836001600160a01b031614611b6857611b688382611ce2565b6001600160a01b038216611b7f57610a8681611d7f565b826001600160a01b0316826001600160a01b031614610a8657610a868282611e2e565b611bac8383611e72565b611bb96000848484611bd5565b610a865760405162461bcd60e51b815260040161080390612548565b60006001600160a01b0384163b15611cd757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c199033908990889088906004016124b4565b602060405180830381600087803b158015611c3357600080fd5b505af1925050508015611c63575060408051601f3d908101601f19168201909252611c6091810190612323565b60015b611cbd573d808015611c91576040519150601f19603f3d011682016040523d82523d6000602084013e611c96565b606091505b508051611cb55760405162461bcd60e51b815260040161080390612548565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061178b565b506001949350505050565b60006001611cef846110f6565b611cf9919061269c565b600083815260076020526040902054909150808214611d4c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d919060019061269c565b60008381526009602052604081205460088054939450909284908110611db957611db961278b565b906000526020600020015490508060088381548110611dda57611dda61278b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e1257611e12612775565b6001900381819060005260206000200160009055905550505050565b6000611e39836110f6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ec85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610803565b6000818152600260205260409020546001600160a01b031615611f2d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610803565b611f3960008383611aea565b6001600160a01b0382166000908152600360205260408120805460019290611f62908490612651565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fcc906126df565b90600052602060002090601f016020900481019282611fee5760008555612034565b82601f1061200757805160ff1916838001178555612034565b82800160010185558215612034579182015b82811115612034578251825591602001919060010190612019565b50612040929150612044565b5090565b5b808211156120405760008155600101612045565b600067ffffffffffffffff831115612073576120736127a1565b612086601f8401601f1916602001612620565b905082815283838301111561209a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146120c857600080fd5b919050565b803580151581146120c857600080fd5b6000602082840312156120ef57600080fd5b6114ca826120b1565b6000806040838503121561210b57600080fd5b612114836120b1565b9150612122602084016120b1565b90509250929050565b60008060006060848603121561214057600080fd5b612149846120b1565b9250612157602085016120b1565b9150604084013590509250925092565b6000806000806080858703121561217d57600080fd5b612186856120b1565b9350612194602086016120b1565b925060408501359150606085013567ffffffffffffffff8111156121b757600080fd5b8501601f810187136121c857600080fd5b6121d787823560208401612059565b91505092959194509250565b600080604083850312156121f657600080fd5b6121ff836120b1565b9150612122602084016120cd565b6000806040838503121561222057600080fd5b612229836120b1565b946020939093013593505050565b6000602080838503121561224a57600080fd5b823567ffffffffffffffff8082111561226257600080fd5b818501915085601f83011261227657600080fd5b813581811115612288576122886127a1565b8060051b9150612299848301612620565b8181528481019084860184860187018a10156122b457600080fd5b600095505b838610156122de576122ca816120b1565b8352600195909501949186019186016122b9565b5098975050505050505050565b6000602082840312156122fd57600080fd5b6114ca826120cd565b60006020828403121561231857600080fd5b81356114ca816127b7565b60006020828403121561233557600080fd5b81516114ca816127b7565b60006020828403121561235257600080fd5b813567ffffffffffffffff81111561236957600080fd5b8201601f8101841361237a57600080fd5b61178b84823560208401612059565b60006020828403121561239b57600080fd5b5035919050565b600080604083850312156123b557600080fd5b50508035926020909101359150565b600081518084526123dc8160208601602086016126b3565b601f01601f19169290920160200192915050565b6000845160206124038285838a016126b3565b8551918401916124168184848a016126b3565b8554920191600090600181811c908083168061243357607f831692505b85831081141561245157634e487b7160e01b85526022600452602485fd5b8080156124655760018114612476576124a3565b60ff198516885283880195506124a3565b60008b81526020902060005b8581101561249b5781548a820152908401908801612482565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e7908301846123c4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125295783518352928401929184019160010161250d565b50909695505050505050565b6020815260006114ca60208301846123c4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612649576126496127a1565b604052919050565b6000821982111561266457612664612749565b500190565b6000826126785761267861275f565b500490565b600081600019048311821515161561269757612697612749565b500290565b6000828210156126ae576126ae612749565b500390565b60005b838110156126ce5781810151838201526020016126b6565b83811115610d145750506000910152565b600181811c908216806126f357607f821691505b6020821081141561271457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561272e5761272e612749565b5060010190565b6000826127445761274461275f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115d557600080fdfea264697066735822122056fc40e156d995de796512caf3b18062917b1a2c2655ab7bbf08aaf83dbcbfd664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000010426f73732042756e6e696573204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b424f535342554e4e494553000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f626f737362756e6e6965732e6d7970696e6174612e636c6f75642f697066732f516d6336676a517465353336544a39756e4b4a71756d376f75514133507162794e3932484879726d4e674d6d48412f000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Boss Bunnies NFT
Arg [1] : _symbol (string): BOSSBUNNIES
Arg [2] : _initBaseURI (string): https://bossbunnies.mypinata.cloud/ipfs/Qmc6gjQte536TJ9unKJqum7ouQA3PqbyN92HHyrmNgMmHA/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [4] : 426f73732042756e6e696573204e465400000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 424f535342554e4e494553000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000057
Arg [8] : 68747470733a2f2f626f737362756e6e6965732e6d7970696e6174612e636c6f
Arg [9] : 75642f697066732f516d6336676a517465353336544a39756e4b4a71756d376f
Arg [10] : 75514133507162794e3932484879726d4e674d6d48412f000000000000000000


Deployed Bytecode Sourcemap

43323:7831:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34737:224;;;;;;;;;;-1:-1:-1;34737:224:0;;;;;:::i;:::-;;:::i;:::-;;;8593:14:1;;8586:22;8568:41;;8556:2;8541:18;34737:224:0;;;;;;;;49448:73;;;;;;;;;;-1:-1:-1;49448:73:0;;;;;:::i;:::-;;:::i;:::-;;22629:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24188:221::-;;;;;;;;;;-1:-1:-1;24188:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7254:32:1;;;7236:51;;7224:2;7209:18;24188:221:0;7090:203:1;46662:118:0;;;;;;;;;;-1:-1:-1;46662:118:0;;;;;:::i;:::-;;:::i;23711:411::-;;;;;;;;;;-1:-1:-1;23711:411:0;;;;;:::i;:::-;;:::i;47960:193::-;;;;;;;;;;-1:-1:-1;47960:193:0;;;;;:::i;:::-;;:::i;43580:29::-;;;;;;;;;;;;;;;;;;;16904:25:1;;;16892:2;16877:18;43580:29:0;16758:177:1;35377:113:0;;;;;;;;;;-1:-1:-1;35465:10:0;:17;35377:113;;43651:33;;;;;;;;;;;;;;;;25078:339;;;;;;;;;;-1:-1:-1;25078:339:0;;;;;:::i;:::-;;:::i;35045:256::-;;;;;;;;;;-1:-1:-1;35045:256:0;;;;;:::i;:::-;;:::i;43758:31::-;;;;;;;;;;;;;;;;51031:114;;;:::i;44425:909::-;;;;;;:::i;:::-;;:::i;25488:185::-;;;;;;;;;;-1:-1:-1;25488:185:0;;;;;:::i;:::-;;:::i;45340:348::-;;;;;;;;;;-1:-1:-1;45340:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46320:82::-;;;;;;;;;;-1:-1:-1;46320:82:0;;;;;:::i;:::-;;:::i;43720:33::-;;;;;;;;;;-1:-1:-1;43720:33:0;;;;;;;;;;;49665:92;;;;;;;;;;-1:-1:-1;49665:92:0;;;;;:::i;:::-;;:::i;35567:233::-;;;;;;;;;;-1:-1:-1;35567:233:0;;;;;:::i;:::-;;:::i;48691:98::-;;;;;;;;;;-1:-1:-1;48691:98:0;;;;;:::i;:::-;;:::i;43689:26::-;;;;;;;;;;-1:-1:-1;43689:26:0;;;;;;;;22323:239;;;;;;;;;;-1:-1:-1;22323:239:0;;;;;:::i;:::-;;:::i;43410:21::-;;;;;;;;;;;;;:::i;48255:96::-;;;;;;;;;;-1:-1:-1;48255:96:0;;;;;:::i;:::-;;:::i;22053:208::-;;;;;;;;;;-1:-1:-1;22053:208:0;;;;;:::i;:::-;;:::i;42526:94::-;;;;;;;;;;;;;:::i;41875:87::-;;;;;;;;;;-1:-1:-1;41948:6:0;;-1:-1:-1;;;;;41948:6:0;41875:87;;22798:104;;;;;;;;;;;;;:::i;50728:189::-;;;;;;;;;;-1:-1:-1;50728:189:0;;;;;:::i;:::-;;:::i;50333:182::-;;;;;;;;;;-1:-1:-1;50333:182:0;;;;;:::i;:::-;;:::i;24481:295::-;;;;;;;;;;-1:-1:-1;24481:295:0;;;;;:::i;:::-;;:::i;25744:328::-;;;;;;;;;;-1:-1:-1;25744:328:0;;;;;:::i;:::-;;:::i;43538:37::-;;;;;;;;;;;;;:::i;43436:97::-;;;;;;;;;;;;;:::i;45694:421::-;;;;;;;;;;-1:-1:-1;45694:421:0;;;;;:::i;:::-;;:::i;43614:32::-;;;;;;;;;;;;;;;;43794:43;;;;;;;;;;-1:-1:-1;43794:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49164:122;;;;;;;;;;-1:-1:-1;49164:122:0;;;;;:::i;:::-;;:::i;24847:164::-;;;;;;;;;;-1:-1:-1;24847:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24968:25:0;;;24944:4;24968:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24847:164;47036:110;;;;;;;;;;-1:-1:-1;47036:110:0;;;;;:::i;:::-;;:::i;42775:192::-;;;;;;;;;;-1:-1:-1;42775:192:0;;;;;:::i;:::-;;:::i;34737:224::-;34839:4;-1:-1:-1;;;;;;34863:50:0;;-1:-1:-1;;;34863:50:0;;:90;;;34917:36;34941:11;34917:23;:36::i;:::-;34856:97;34737:224;-1:-1:-1;;34737:224:0:o;49448:73::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;;;;;;;;;49500:6:::1;:15:::0;;-1:-1:-1;;49500:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49448:73::o;22629:100::-;22683:13;22716:5;22709:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22629:100;:::o;24188:221::-;24264:7;27671:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27671:16:0;24284:73;;;;-1:-1:-1;;;24284:73:0;;14187:2:1;24284:73:0;;;14169:21:1;14226:2;14206:18;;;14199:30;14265:34;14245:18;;;14238:62;-1:-1:-1;;;14316:18:1;;;14309:42;14368:19;;24284:73:0;13985:408:1;24284:73:0;-1:-1:-1;24377:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24377:24:0;;24188:221::o;46662:118::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;46741:13:::1;:33:::0;46662:118::o;23711:411::-;23792:13;23808:23;23823:7;23808:14;:23::i;:::-;23792:39;;23856:5;-1:-1:-1;;;;;23850:11:0;:2;-1:-1:-1;;;;;23850:11:0;;;23842:57;;;;-1:-1:-1;;;23842:57:0;;15371:2:1;23842:57:0;;;15353:21:1;15410:2;15390:18;;;15383:30;15449:34;15429:18;;;15422:62;-1:-1:-1;;;15500:18:1;;;15493:31;15541:19;;23842:57:0;15169:397:1;23842:57:0;20238:10;-1:-1:-1;;;;;23934:21:0;;;;:62;;-1:-1:-1;23959:37:0;23976:5;20238:10;24847:164;:::i;23959:37::-;23912:168;;;;-1:-1:-1;;;23912:168:0;;12580:2:1;23912:168:0;;;12562:21:1;12619:2;12599:18;;;12592:30;12658:34;12638:18;;;12631:62;12729:26;12709:18;;;12702:54;12773:19;;23912:168:0;12378:420:1;23912:168:0;24093:21;24102:2;24106:7;24093:8;:21::i;:::-;23781:341;23711:411;;:::o;47960:193::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;48078:13:::1;:33:::0;;;;48118:11:::1;:29:::0;47960:193::o;25078:339::-;25273:41;20238:10;25306:7;25273:18;:41::i;:::-;25265:103;;;;-1:-1:-1;;;25265:103:0;;;;;;;:::i;:::-;25381:28;25391:4;25397:2;25401:7;25381:9;:28::i;35045:256::-;35142:7;35178:23;35195:5;35178:16;:23::i;:::-;35170:5;:31;35162:87;;;;-1:-1:-1;;;35162:87:0;;9460:2:1;35162:87:0;;;9442:21:1;9499:2;9479:18;;;9472:30;9538:34;9518:18;;;9511:62;-1:-1:-1;;;9589:18:1;;;9582:41;9640:19;;35162:87:0;9258:407:1;35162:87:0;-1:-1:-1;;;;;;35267:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35045:256::o;51031:114::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;51091:47:::1;::::0;51099:10:::1;::::0;51116:21:::1;51091:47:::0;::::1;;;::::0;::::1;::::0;;;51116:21;51099:10;51091:47;::::1;;;;;;51083:56;;;::::0;::::1;;51031:114::o:0;44425:909::-;44495:14;44512:13;35465:10;:17;;35377:113;44512:13;44541:6;;44495:30;;-1:-1:-1;44541:6:0;;44540:7;44532:16;;;;;;44577:1;44563:11;:15;44555:24;;;;;;44609:13;;44594:11;:28;;44586:37;;;;;;44662:9;;44638:20;44647:11;44638:6;:20;:::i;:::-;:33;;44630:42;;;;;;44728:11;;44712;44688:21;44698:10;44688:9;:21::i;:::-;:35;;;;:::i;:::-;44687:52;;44679:89;;;;-1:-1:-1;;;44679:89:0;;12227:2:1;44679:89:0;;;12209:21:1;12266:2;12246:18;;;12239:30;12305:26;12285:18;;;12278:54;12349:18;;44679:89:0;12025:348:1;44679:89:0;44781:13;;;;;;;44777:552;;41948:6;;-1:-1:-1;;;;;41948:6:0;44820:10;:21;44816:162;;44873:10;44861:23;;;;:11;:23;;;;;;;;:31;;:23;:31;44858:109;;44939:11;44932:4;;:18;;;;:::i;:::-;44919:9;:31;;44911:40;;;;;;45011:1;44994:94;45019:11;45014:1;:16;44994:94;;45050:26;45060:3;45065:10;45074:1;45065:6;:10;:::i;:::-;45050:9;:26::i;:::-;45032:3;;;;:::i;:::-;;;;44994:94;;;;23781:341;23711:411;;:::o;44777:552::-;45110:13;;;;;;;;:21;;:13;:21;45106:223;;;45164:10;45152:23;;;;:11;:23;;;;;;;;:31;;:23;:31;45144:71;;;;-1:-1:-1;;;45144:71:0;;15773:2:1;45144:71:0;;;15755:21:1;15812:2;15792:18;;;15785:30;15851:29;15831:18;;;15824:57;15898:18;;45144:71:0;15571:351:1;45144:71:0;45243:1;45226:96;45251:11;45246:1;:16;45226:96;;45284:26;45294:3;45299:10;45308:1;45299:6;:10;:::i;45284:26::-;45264:3;;;;:::i;:::-;;;;45226:96;;25488:185;25626:39;25643:4;25649:2;25653:7;25626:39;;;;;;;;;;;;:16;:39::i;45340:348::-;45415:16;45443:23;45469:17;45479:6;45469:9;:17::i;:::-;45443:43;;45493:25;45535:15;45521:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45521:30:0;;45493:58;;45563:9;45558:103;45578:15;45574:1;:19;45558:103;;;45623:30;45643:6;45651:1;45623:19;:30::i;:::-;45609:8;45618:1;45609:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45595:3;;;;:::i;:::-;;;;45558:103;;;-1:-1:-1;45674:8:0;45340:348;-1:-1:-1;;;45340:348:0:o;46320:82::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;46381:4:::1;:15:::0;46320:82::o;49665:92::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;49729:13:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;49729:22:0;;::::1;::::0;;;::::1;::::0;;49665:92::o;35567:233::-;35642:7;35678:30;35465:10;:17;;35377:113;35678:30;35670:5;:38;35662:95;;;;-1:-1:-1;;;35662:95:0;;16547:2:1;35662:95:0;;;16529:21:1;16586:2;16566:18;;;16559:30;16625:34;16605:18;;;16598:62;-1:-1:-1;;;16676:18:1;;;16669:42;16728:19;;35662:95:0;16345:408:1;35662:95:0;35775:10;35786:5;35775:17;;;;;;;;:::i;:::-;;;;;;;;;35768:24;;35567:233;;;:::o;48691:98::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;48762:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48691:98:::0;:::o;22323:239::-;22395:7;22431:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22431:16:0;22466:19;22458:73;;;;-1:-1:-1;;;22458:73:0;;13416:2:1;22458:73:0;;;13398:21:1;13455:2;13435:18;;;13428:30;13494:34;13474:18;;;13467:62;-1:-1:-1;;;13545:18:1;;;13538:39;13594:19;;22458:73:0;13214:405:1;43410:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48255:96::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;48323:9:::1;:22:::0;48255:96::o;22053:208::-;22125:7;-1:-1:-1;;;;;22153:19:0;;22145:74;;;;-1:-1:-1;;;22145:74:0;;13005:2:1;22145:74:0;;;12987:21:1;13044:2;13024:18;;;13017:30;13083:34;13063:18;;;13056:62;-1:-1:-1;;;13134:18:1;;;13127:40;13184:19;;22145:74:0;12803:406:1;22145:74:0;-1:-1:-1;;;;;;22237:16:0;;;;;:9;:16;;;;;;;22053:208::o;42526:94::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;42591:21:::1;42609:1;42591:9;:21::i;22798:104::-:0;22854:13;22887:7;22880:14;;;;;:::i;50728:189::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;50806:9:::1;50827:85;50843:5;:12;50839:1;:16;50827:85;;;50898:5;50874:11;:21;50886:5;50892:1;50886:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50874:21:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50874:21:0;:29;;-1:-1:-1;;50874:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50857:3;::::1;::::0;::::1;:::i;:::-;;;;50827:85;;50333:182:::0;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;50405:9:::1;50426:84;50442:5;:12;50438:1;:16;50426:84;;;50497:4;50473:11;:21;50485:5;50491:1;50485:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50473:21:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50473:21:0;:28;;-1:-1:-1;;50473:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50456:3;::::1;::::0;::::1;:::i;:::-;;;;50426:84;;24481:295:::0;-1:-1:-1;;;;;24584:24:0;;20238:10;24584:24;;24576:62;;;;-1:-1:-1;;;24576:62:0;;11460:2:1;24576:62:0;;;11442:21:1;11499:2;11479:18;;;11472:30;11538:27;11518:18;;;11511:55;11583:18;;24576:62:0;11258:349:1;24576:62:0;20238:10;24651:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24651:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24651:53:0;;;;;;;;;;24720:48;;8568:41:1;;;24651:42:0;;20238:10;24720:48;;8541:18:1;24720:48:0;;;;;;;24481:295;;:::o;25744:328::-;25919:41;20238:10;25952:7;25919:18;:41::i;:::-;25911:103;;;;-1:-1:-1;;;25911:103:0;;;;;;;:::i;:::-;26025:39;26039:4;26045:2;26049:7;26058:5;26025:13;:39::i;43538:37::-;;;;;;;:::i;43436:97::-;;;;;;;:::i;45694:421::-;27647:4;27671:16;;;:7;:16;;;;;;45792:13;;-1:-1:-1;;;;;27671:16:0;45817:95;;;;-1:-1:-1;;;45817:95:0;;9046:2:1;45817:95:0;;;9028:21:1;9085:2;9065:18;;;9058:30;9124:34;9104:18;;;9097:62;-1:-1:-1;;;9175:18:1;;;9168:43;9228:19;;45817:95:0;8844:409:1;45817:95:0;45921:28;45952:10;:8;:10::i;:::-;45921:41;;46007:1;45982:14;45976:28;:32;:133;;;;;;;;;;;;;;;;;46044:14;46060:18;:7;:16;:18::i;:::-;46080:13;46027:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45976:133;45969:140;45694:421;-1:-1:-1;;;45694:421:0:o;49164:122::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;49247:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;47036:110::-:0;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;47111:11:::1;:29:::0;47036:110::o;42775:192::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42864:22:0;::::1;42856:73;;;::::0;-1:-1:-1;;;42856:73:0;;10291:2:1;42856:73:0::1;::::0;::::1;10273:21:1::0;10330:2;10310:18;;;10303:30;10369:34;10349:18;;;10342:62;-1:-1:-1;;;10420:18:1;;;10413:36;10466:19;;42856:73:0::1;10089:402:1::0;42856:73:0::1;42940:19;42950:8;42940:9;:19::i;:::-;42775:192:::0;:::o;10515:387::-;10838:20;10886:8;;;10515:387::o;21684:305::-;21786:4;-1:-1:-1;;;;;;21823:40:0;;-1:-1:-1;;;21823:40:0;;:105;;-1:-1:-1;;;;;;;21880:48:0;;-1:-1:-1;;;21880:48:0;21823:105;:158;;;-1:-1:-1;;;;;;;;;;7624:40:0;;;21945:36;7515:157;31564:174;31639:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31639:29:0;-1:-1:-1;;;;;31639:29:0;;;;;;;;:24;;31693:23;31639:24;31693:14;:23::i;:::-;-1:-1:-1;;;;;31684:46:0;;;;;;;;;;;31564:174;;:::o;27876:348::-;27969:4;27671:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27671:16:0;27986:73;;;;-1:-1:-1;;;27986:73:0;;11814:2:1;27986:73:0;;;11796:21:1;11853:2;11833:18;;;11826:30;11892:34;11872:18;;;11865:62;-1:-1:-1;;;11943:18:1;;;11936:42;11995:19;;27986:73:0;11612:408:1;27986:73:0;28070:13;28086:23;28101:7;28086:14;:23::i;:::-;28070:39;;28139:5;-1:-1:-1;;;;;28128:16:0;:7;-1:-1:-1;;;;;28128:16:0;;:51;;;;28172:7;-1:-1:-1;;;;;28148:31:0;:20;28160:7;28148:11;:20::i;:::-;-1:-1:-1;;;;;28148:31:0;;28128:51;:87;;;-1:-1:-1;;;;;;24968:25:0;;;24944:4;24968:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28183:32;28120:96;27876:348;-1:-1:-1;;;;27876:348:0:o;30868:578::-;31027:4;-1:-1:-1;;;;;31000:31:0;:23;31015:7;31000:14;:23::i;:::-;-1:-1:-1;;;;;31000:31:0;;30992:85;;;;-1:-1:-1;;;30992:85:0;;14961:2:1;30992:85:0;;;14943:21:1;15000:2;14980:18;;;14973:30;15039:34;15019:18;;;15012:62;-1:-1:-1;;;15090:18:1;;;15083:39;15139:19;;30992:85:0;14759:405:1;30992:85:0;-1:-1:-1;;;;;31096:16:0;;31088:65;;;;-1:-1:-1;;;31088:65:0;;11055:2:1;31088:65:0;;;11037:21:1;11094:2;11074:18;;;11067:30;11133:34;11113:18;;;11106:62;-1:-1:-1;;;11184:18:1;;;11177:34;11228:19;;31088:65:0;10853:400:1;31088:65:0;31166:39;31187:4;31193:2;31197:7;31166:20;:39::i;:::-;31270:29;31287:1;31291:7;31270:8;:29::i;:::-;-1:-1:-1;;;;;31312:15:0;;;;;;:9;:15;;;;;:20;;31331:1;;31312:15;:20;;31331:1;;31312:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31343:13:0;;;;;;:9;:13;;;;;:18;;31360:1;;31343:13;:18;;31360:1;;31343:18;:::i;:::-;;;;-1:-1:-1;;31372:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31372:21:0;-1:-1:-1;;;;;31372:21:0;;;;;;;;;31411:27;;31372:16;;31411:27;;;;;;;30868:578;;;:::o;28566:110::-;28642:26;28652:2;28656:7;28642:26;;;;;;;;;;;;:9;:26::i;42975:173::-;43050:6;;;-1:-1:-1;;;;;43067:17:0;;;-1:-1:-1;;;;;;43067:17:0;;;;;;;43100:40;;43050:6;;;43067:17;43050:6;;43100:40;;43031:16;;43100:40;43020:128;42975:173;:::o;26954:315::-;27111:28;27121:4;27127:2;27131:7;27111:9;:28::i;:::-;27158:48;27181:4;27187:2;27191:7;27200:5;27158:22;:48::i;:::-;27150:111;;;;-1:-1:-1;;;27150:111:0;;;;;;;:::i;44304:102::-;44364:13;44393:7;44386:14;;;;;:::i;7990:723::-;8046:13;8267:10;8263:53;;-1:-1:-1;;8294:10:0;;;;;;;;;;;;-1:-1:-1;;;8294:10:0;;;;;7990:723::o;8263:53::-;8341:5;8326:12;8382:78;8389:9;;8382:78;;8415:8;;;;:::i;:::-;;-1:-1:-1;8438:10:0;;-1:-1:-1;8446:2:0;8438:10;;:::i;:::-;;;8382:78;;;8470:19;8502:6;8492:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8492:17:0;;8470:39;;8520:154;8527:10;;8520:154;;8554:11;8564:1;8554:11;;:::i;:::-;;-1:-1:-1;8623:10:0;8631:2;8623:5;:10;:::i;:::-;8610:24;;:2;:24;:::i;:::-;8597:39;;8580:6;8587;8580:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8580:56:0;;;;;;;;-1:-1:-1;8651:11:0;8660:2;8651:11;;:::i;:::-;;;8520:154;;36413:589;-1:-1:-1;;;;;36619:18:0;;36615:187;;36654:40;36686:7;37829:10;:17;;37802:24;;;;:15;:24;;;;;:44;;;37857:24;;;;;;;;;;;;37725:164;36654:40;36615:187;;;36724:2;-1:-1:-1;;;;;36716:10:0;:4;-1:-1:-1;;;;;36716:10:0;;36712:90;;36743:47;36776:4;36782:7;36743:32;:47::i;:::-;-1:-1:-1;;;;;36816:16:0;;36812:183;;36849:45;36886:7;36849:36;:45::i;36812:183::-;36922:4;-1:-1:-1;;;;;36916:10:0;:2;-1:-1:-1;;;;;36916:10:0;;36912:83;;36943:40;36971:2;36975:7;36943:27;:40::i;28903:321::-;29033:18;29039:2;29043:7;29033:5;:18::i;:::-;29084:54;29115:1;29119:2;29123:7;29132:5;29084:22;:54::i;:::-;29062:154;;;;-1:-1:-1;;;29062:154:0;;;;;;;:::i;32303:799::-;32458:4;-1:-1:-1;;;;;32479:13:0;;10838:20;10886:8;32475:620;;32515:72;;-1:-1:-1;;;32515:72:0;;-1:-1:-1;;;;;32515:36:0;;;;;:72;;20238:10;;32566:4;;32572:7;;32581:5;;32515:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32515:72:0;;;;;;;;-1:-1:-1;;32515:72:0;;;;;;;;;;;;:::i;:::-;;;32511:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32757:13:0;;32753:272;;32800:60;;-1:-1:-1;;;32800:60:0;;;;;;;:::i;32753:272::-;32975:6;32969:13;32960:6;32956:2;32952:15;32945:38;32511:529;-1:-1:-1;;;;;;32638:51:0;-1:-1:-1;;;32638:51:0;;-1:-1:-1;32631:58:0;;32475:620;-1:-1:-1;33079:4:0;32303:799;;;;;;:::o;38516:988::-;38782:22;38832:1;38807:22;38824:4;38807:16;:22::i;:::-;:26;;;;:::i;:::-;38844:18;38865:26;;;:17;:26;;;;;;38782:51;;-1:-1:-1;38998:28:0;;;38994:328;;-1:-1:-1;;;;;39065:18:0;;39043:19;39065:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39116:30;;;;;;:44;;;39233:30;;:17;:30;;;;;:43;;;38994:328;-1:-1:-1;39418:26:0;;;;:17;:26;;;;;;;;39411:33;;;-1:-1:-1;;;;;39462:18:0;;;;;:12;:18;;;;;:34;;;;;;;39455:41;38516:988::o;39799:1079::-;40077:10;:17;40052:22;;40077:21;;40097:1;;40077:21;:::i;:::-;40109:18;40130:24;;;:15;:24;;;;;;40503:10;:26;;40052:46;;-1:-1:-1;40130:24:0;;40052:46;;40503:26;;;;;;:::i;:::-;;;;;;;;;40481:48;;40567:11;40542:10;40553;40542:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40647:28;;;:15;:28;;;;;;;:41;;;40819:24;;;;;40812:31;40854:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39870:1008;;;39799:1079;:::o;37303:221::-;37388:14;37405:20;37422:2;37405:16;:20::i;:::-;-1:-1:-1;;;;;37436:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37481:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37303:221:0:o;29560:382::-;-1:-1:-1;;;;;29640:16:0;;29632:61;;;;-1:-1:-1;;;29632:61:0;;13826:2:1;29632:61:0;;;13808:21:1;;;13845:18;;;13838:30;13904:34;13884:18;;;13877:62;13956:18;;29632:61:0;13624:356:1;29632:61:0;27647:4;27671:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27671:16:0;:30;29704:58;;;;-1:-1:-1;;;29704:58:0;;10698:2:1;29704:58:0;;;10680:21:1;10737:2;10717:18;;;10710:30;10776;10756:18;;;10749:58;10824:18;;29704:58:0;10496:352:1;29704:58:0;29775:45;29804:1;29808:2;29812:7;29775:20;:45::i;:::-;-1:-1:-1;;;;;29833:13:0;;;;;;:9;:13;;;;;:18;;29850:1;;29833:13;:18;;29850:1;;29833:18;:::i;:::-;;;;-1:-1:-1;;29862:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29862:21:0;-1:-1:-1;;;;;29862:21:0;;;;;;;;29901:33;;29862:16;;;29901:33;;29862:16;;29901:33;29560:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:248::-;5111:6;5119;5172:2;5160:9;5151:7;5147:23;5143:32;5140:52;;;5188:1;5185;5178:12;5140:52;-1:-1:-1;;5211:23:1;;;5281:2;5266:18;;;5253:32;;-1:-1:-1;5043:248:1:o;5296:257::-;5337:3;5375:5;5369:12;5402:6;5397:3;5390:19;5418:63;5474:6;5467:4;5462:3;5458:14;5451:4;5444:5;5440:16;5418:63;:::i;:::-;5535:2;5514:15;-1:-1:-1;;5510:29:1;5501:39;;;;5542:4;5497:50;;5296:257;-1:-1:-1;;5296:257:1:o;5558:1527::-;5782:3;5820:6;5814:13;5846:4;5859:51;5903:6;5898:3;5893:2;5885:6;5881:15;5859:51;:::i;:::-;5973:13;;5932:16;;;;5995:55;5973:13;5932:16;6017:15;;;5995:55;:::i;:::-;6139:13;;6072:20;;;6112:1;;6199;6221:18;;;;6274;;;;6301:93;;6379:4;6369:8;6365:19;6353:31;;6301:93;6442:2;6432:8;6429:16;6409:18;6406:40;6403:167;;;-1:-1:-1;;;6469:33:1;;6525:4;6522:1;6515:15;6555:4;6476:3;6543:17;6403:167;6586:18;6613:110;;;;6737:1;6732:328;;;;6579:481;;6613:110;-1:-1:-1;;6648:24:1;;6634:39;;6693:20;;;;-1:-1:-1;6613:110:1;;6732:328;17293:1;17286:14;;;17330:4;17317:18;;6827:1;6841:169;6855:8;6852:1;6849:15;6841:169;;;6937:14;;6922:13;;;6915:37;6980:16;;;;6872:10;;6841:169;;;6845:3;;7041:8;7034:5;7030:20;7023:27;;6579:481;-1:-1:-1;7076:3:1;;5558:1527;-1:-1:-1;;;;;;;;;;;5558:1527:1:o;7298:488::-;-1:-1:-1;;;;;7567:15:1;;;7549:34;;7619:15;;7614:2;7599:18;;7592:43;7666:2;7651:18;;7644:34;;;7714:3;7709:2;7694:18;;7687:31;;;7492:4;;7735:45;;7760:19;;7752:6;7735:45;:::i;:::-;7727:53;7298:488;-1:-1:-1;;;;;;7298:488:1:o;7791:632::-;7962:2;8014:21;;;8084:13;;7987:18;;;8106:22;;;7933:4;;7962:2;8185:15;;;;8159:2;8144:18;;;7933:4;8228:169;8242:6;8239:1;8236:13;8228:169;;;8303:13;;8291:26;;8372:15;;;;8337:12;;;;8264:1;8257:9;8228:169;;;-1:-1:-1;8414:3:1;;7791:632;-1:-1:-1;;;;;;7791:632:1:o;8620:219::-;8769:2;8758:9;8751:21;8732:4;8789:44;8829:2;8818:9;8814:18;8806:6;8789:44;:::i;9670:414::-;9872:2;9854:21;;;9911:2;9891:18;;;9884:30;9950:34;9945:2;9930:18;;9923:62;-1:-1:-1;;;10016:2:1;10001:18;;9994:48;10074:3;10059:19;;9670:414::o;14398:356::-;14600:2;14582:21;;;14619:18;;;14612:30;14678:34;14673:2;14658:18;;14651:62;14745:2;14730:18;;14398:356::o;15927:413::-;16129:2;16111:21;;;16168:2;16148:18;;;16141:30;16207:34;16202:2;16187:18;;16180:62;-1:-1:-1;;;16273:2:1;16258:18;;16251:47;16330:3;16315:19;;15927:413::o;16940:275::-;17011:2;17005:9;17076:2;17057:13;;-1:-1:-1;;17053:27:1;17041:40;;17111:18;17096:34;;17132:22;;;17093:62;17090:88;;;17158:18;;:::i;:::-;17194:2;17187:22;16940:275;;-1:-1:-1;16940:275:1:o;17346:128::-;17386:3;17417:1;17413:6;17410:1;17407:13;17404:39;;;17423:18;;:::i;:::-;-1:-1:-1;17459:9:1;;17346:128::o;17479:120::-;17519:1;17545;17535:35;;17550:18;;:::i;:::-;-1:-1:-1;17584:9:1;;17479:120::o;17604:168::-;17644:7;17710:1;17706;17702:6;17698:14;17695:1;17692:21;17687:1;17680:9;17673:17;17669:45;17666:71;;;17717:18;;:::i;:::-;-1:-1:-1;17757:9:1;;17604:168::o;17777:125::-;17817:4;17845:1;17842;17839:8;17836:34;;;17850:18;;:::i;:::-;-1:-1:-1;17887:9:1;;17777:125::o;17907:258::-;17979:1;17989:113;18003:6;18000:1;17997:13;17989:113;;;18079:11;;;18073:18;18060:11;;;18053:39;18025:2;18018:10;17989:113;;;18120:6;18117:1;18114:13;18111:48;;;-1:-1:-1;;18155:1:1;18137:16;;18130:27;17907:258::o;18170:380::-;18249:1;18245:12;;;;18292;;;18313:61;;18367:4;18359:6;18355:17;18345:27;;18313:61;18420:2;18412:6;18409:14;18389:18;18386:38;18383:161;;;18466:10;18461:3;18457:20;18454:1;18447:31;18501:4;18498:1;18491:15;18529:4;18526:1;18519:15;18383:161;;18170:380;;;:::o;18555:135::-;18594:3;-1:-1:-1;;18615:17:1;;18612:43;;;18635:18;;:::i;:::-;-1:-1:-1;18682:1:1;18671:13;;18555:135::o;18695:112::-;18727:1;18753;18743:35;;18758:18;;:::i;:::-;-1:-1:-1;18792:9:1;;18695:112::o;18812:127::-;18873:10;18868:3;18864:20;18861:1;18854:31;18904:4;18901:1;18894:15;18928:4;18925:1;18918:15;18944:127;19005:10;19000:3;18996:20;18993:1;18986:31;19036:4;19033:1;19026:15;19060:4;19057:1;19050:15;19076:127;19137:10;19132:3;19128:20;19125:1;19118:31;19168:4;19165:1;19158:15;19192:4;19189:1;19182:15;19208:127;19269:10;19264:3;19260:20;19257:1;19250:31;19300:4;19297:1;19290:15;19324:4;19321:1;19314:15;19340:127;19401:10;19396:3;19392:20;19389:1;19382:31;19432:4;19429:1;19422:15;19456:4;19453:1;19446:15;19472:131;-1:-1:-1;;;;;;19546:32:1;;19536:43;;19526:71;;19593:1;19590;19583:12

Swarm Source

ipfs://56fc40e156d995de796512caf3b18062917b1a2c2655ab7bbf08aaf83dbcbfd6
Loading...
Loading
Loading...
Loading
[ 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.