ETH Price: $2,541.21 (-4.55%)
Gas: 2 Gwei

Token

Bored Bones Genesis (BBG)
 

Overview

Max Total Supply

500 BBG

Holders

199

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BBG
0x923d67115a897d27C933fe6D8e5b09Cb66C92793
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BoredBonesGenesis

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-04-21
*/

// SPDX-License-Identifier: GPL-3.0

/**
██████   ██████  ██████  ███████ ██████      ██████   ██████  ███    ██ ███████ ███████      ██████ ██      ██    ██ ██████  
██   ██ ██    ██ ██   ██ ██      ██   ██     ██   ██ ██    ██ ████   ██ ██      ██          ██      ██      ██    ██ ██   ██ 
██████  ██    ██ ██████  █████   ██   ██     ██████  ██    ██ ██ ██  ██ █████   ███████     ██      ██      ██    ██ ██████  
██   ██ ██    ██ ██   ██ ██      ██   ██     ██   ██ ██    ██ ██  ██ ██ ██           ██     ██      ██      ██    ██ ██   ██ 
██████   ██████  ██   ██ ███████ ██████      ██████   ██████  ██   ████ ███████ ███████      ██████ ███████  ██████  ██████  

*/

// Contract by @Predep7

// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


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


/**
 * @title nonReentrant module to prevent recursive calling of functions
 * @dev See https://medium.com/coinmonks/protect-your-solidity-smart-contracts-from-reentrancy-attacks-9972c3af7c21
 */
 
abstract contract nonReentrant {
    bool private _reentryKey = false;
    modifier reentryLock {
        require(!_reentryKey, "cannot reenter a locked function");
        _reentryKey = true;
        _;
        _reentryKey = false;
    }
}


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

    // owner address list (replaces default mappings)
    address[] internal _owners;

    // 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");
		uint256 _ownerBalance = 0;
		for(uint i = 0; i < _owners.length; i++) {
			if(_owners[i] == owner) _ownerBalance ++;
		}
        return _ownerBalance;
    }

    /**
     * @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 tokenId < _owners.length && _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);

        _owners.push(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);

        _owners[tokenId] = address(0);

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

        _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 {}
}







/**
 * borrowed from Nuclear Nerds implementation
 * @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 but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @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-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

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

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

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}


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



pragma solidity >=0.8.0 <0.9.0;

contract BoredBonesGenesis is ERC721Enumerable, Ownable, nonReentrant {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.1 ether;
  
  bytes32 public MerkleRoot;
  
  uint256 public constant maxSupply = 500;
  
  uint256 public maxMintAmount = 1;
  uint256 public maxPresaleAmount = 1;
  bool public saleActive = false;
  bool public revealed = false;

  // borrowed from doggoverse by ngenator.eth
  struct OwnerMintCount {
	uint128 presaleMinted;
	uint128 freeClaims;
  }
  
  
  mapping(address => OwnerMintCount) public ownerMintCount;
	


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

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

  // public
  function mint(uint256 _mintAmount) public payable reentryLock {
    require(saleActive, "public sale is not active");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
	
	require(msg.value >= _mintAmount * cost, "not enough ETH sent");

    for (uint256 i = 0; i < _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function mintPresale(bytes32[] memory _proof, bytes1 _maxAmountKey, uint256 _mintAmount) public payable reentryLock {
    require(MerkleRoot > 0x00, "claim period not started!");
    uint256 supply = totalSupply();
    require(supply + _mintAmount < maxSupply + 1, "max collection limit exceeded");
	
	bytes32 senderHash = keccak256(abi.encodePacked(msg.sender, _maxAmountKey));
    bool proven = MerkleProof.verify(_proof, MerkleRoot, senderHash);
	require(proven, "unauthorized proof-key combo for sender");
	
	uint _maxAmount = uint8(_maxAmountKey);
	if(msg.value == 0) {
		// FREE MINT REQUEST
		require(ownerMintCount[msg.sender].freeClaims + _mintAmount < _maxAmount + 1, "max free NFT claims exceeded");
		ownerMintCount[msg.sender].freeClaims += uint128(_mintAmount);
	} else {
		// PRE-SALE
		require(ownerMintCount[msg.sender].presaleMinted + _mintAmount < maxPresaleAmount + 1, "max NFT pre-sales exceeded");
		require(msg.value >= _mintAmount * cost, "not enought ETH sent");
		ownerMintCount[msg.sender].presaleMinted += uint128(_mintAmount);
	}
	
    for (uint256 i = 0; i < _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }
  
  
  function checkProofWithKey(bytes32[] memory proof, bytes memory key) public view returns(bool) {
    bytes32 senderHash = keccak256(abi.encodePacked(msg.sender, key));
    bytes32 _MerkleRoot32 = MerkleRoot;
    bool proven = MerkleProof.verify(proof, _MerkleRoot32, senderHash);
    return proven;
  }

  

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

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function flipSaleState() public onlyOwner {
    saleActive = !saleActive;
  }
  
  function flipReveal() public onlyOwner {
    revealed = !revealed;
  }
  
  function setMerkle_Root(bytes32 _MerkleRoot) public onlyOwner {
	MerkleRoot = _MerkleRoot;
  }  
    
  function teamMint(address _receiver, uint256 _mintAmount) public payable onlyOwner {
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    for (uint256 i = 0; i < _mintAmount; i++) {
      _safeMint(_receiver, supply + i);
    }
  }
  
  // teamMint max = 25
    
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes","name":"key","type":"bytes"}],"name":"checkProofWithKey","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"bytes1","name":"_maxAmountKey","type":"bytes1"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ownerMintCount","outputs":[{"internalType":"uint128","name":"presaleMinted","type":"uint128"},{"internalType":"uint128","name":"freeClaims","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"bytes32","name":"_MerkleRoot","type":"bytes32"}],"name":"setMerkle_Root","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","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":"tokenId","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6005805460ff60a01b1916815560c0604052608081905264173539b7b760d91b60a09081526200003391600791906200020a565b5067016345785d8a00006009556001600b819055600c55600d805461ffff191690553480156200006257600080fd5b506040516200312a3803806200312a833981016040819052620000859162000367565b8351849084906200009e9060009060208501906200020a565b508051620000b49060019060208401906200020a565b505050620000d1620000cb620000f160201b60201c565b620000f5565b620000dc8262000147565b620000e781620001af565b5050505062000473565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001965760405162461bcd60e51b815260206004820181905260248201526000805160206200310a83398151915260448201526064015b60405180910390fd5b8051620001ab9060069060208401906200020a565b5050565b6005546001600160a01b03163314620001fa5760405162461bcd60e51b815260206004820181905260248201526000805160206200310a83398151915260448201526064016200018d565b8051620001ab9060089060208401905b828054620002189062000420565b90600052602060002090601f0160209004810192826200023c576000855562000287565b82601f106200025757805160ff191683800117855562000287565b8280016001018555821562000287579182015b82811115620002875782518255916020019190600101906200026a565b506200029592915062000299565b5090565b5b808211156200029557600081556001016200029a565b600082601f830112620002c257600080fd5b81516001600160401b0380821115620002df57620002df6200045d565b604051601f8301601f19908116603f011681019082821181831017156200030a576200030a6200045d565b816040528381526020925086838588010111156200032757600080fd5b600091505b838210156200034b57858201830151818301840152908201906200032c565b838211156200035d5760008385830101525b9695505050505050565b600080600080608085870312156200037e57600080fd5b84516001600160401b03808211156200039657600080fd5b620003a488838901620002b0565b95506020870151915080821115620003bb57600080fd5b620003c988838901620002b0565b94506040870151915080821115620003e057600080fd5b620003ee88838901620002b0565b935060608701519150808211156200040557600080fd5b506200041487828801620002b0565b91505092959194509250565b600181811c908216806200043557607f821691505b602082108114156200045757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612c8780620004836000396000f3fe6080604052600436106102675760003560e01c806368428a1b11610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb01146106fe578063da3ef23f14610714578063e04985fc14610734578063e985e9c514610747578063f2c4ce1e14610790578063f2fde38b146107b057600080fd5b8063b88d4fde14610673578063c4eb85a914610693578063c6682862146106b3578063c87b56dd146106c8578063d0516b82146106e857600080fd5b80637f00c7a6116101085780637f00c7a6146105da5780638da5cb5b146105fa57806395d89b4114610618578063a0712d681461062d578063a22cb46514610640578063add5a4fa1461066057600080fd5b806368428a1b146105565780636c0360eb1461057057806370a0823114610585578063715018a6146105a55780637e7641c3146105ba57600080fd5b80632f745c59116101dd578063438b6300116101a1578063438b63001461048a57806344a0d68a146104b75780634f6ccce7146104d757806351830227146104f757806355f804b3146105165780636352211e1461053657600080fd5b80632f745c591461041857806334918dfd146104385780633b84d9c61461044d5780633ccfd60b1461046257806342842e0e1461046a57600080fd5b8063095ea7b31161022f578063095ea7b314610371578063132d3f6a1461039357806313faede6146103b757806318160ddd146103cd578063239c70ae146103e257806323b872dd146103f857600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063081c8c44146102fb5780630877a9ab14610310575b600080fd5b34801561027857600080fd5b5061028c610287366004612737565b6107d0565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b66107fb565b6040516102989190612959565b3480156102cf57600080fd5b506102e36102de36600461271e565b61088d565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b506102b661091a565b34801561031c57600080fd5b5061035161032b3660046124fb565b600e602052600090815260409020546001600160801b0380821691600160801b90041682565b604080516001600160801b03938416815292909116602083015201610298565b34801561037d57600080fd5b5061039161038c366004612629565b6109a8565b005b34801561039f57600080fd5b506103a9600a5481565b604051908152602001610298565b3480156103c357600080fd5b506103a960095481565b3480156103d957600080fd5b506002546103a9565b3480156103ee57600080fd5b506103a9600b5481565b34801561040457600080fd5b50610391610413366004612549565b610abe565b34801561042457600080fd5b506103a9610433366004612629565b610aef565b34801561044457600080fd5b50610391610ba2565b34801561045957600080fd5b50610391610be0565b610391610c27565b34801561047657600080fd5b50610391610485366004612549565b610ca9565b34801561049657600080fd5b506104aa6104a53660046124fb565b610cc4565b6040516102989190612915565b3480156104c357600080fd5b506103916104d236600461271e565b610d66565b3480156104e357600080fd5b506103a96104f236600461271e565b610d95565b34801561050357600080fd5b50600d5461028c90610100900460ff1681565b34801561052257600080fd5b50610391610531366004612771565b610e02565b34801561054257600080fd5b506102e361055136600461271e565b610e43565b34801561056257600080fd5b50600d5461028c9060ff1681565b34801561057c57600080fd5b506102b6610ecf565b34801561059157600080fd5b506103a96105a03660046124fb565b610edc565b3480156105b157600080fd5b50610391610fb4565b3480156105c657600080fd5b5061028c6105d53660046126ba565b610fea565b3480156105e657600080fd5b506103916105f536600461271e565b611036565b34801561060657600080fd5b506005546001600160a01b03166102e3565b34801561062457600080fd5b506102b6611065565b61039161063b36600461271e565b611074565b34801561064c57600080fd5b5061039161065b3660046125ed565b6112d6565b61039161066e366004612629565b61139b565b34801561067f57600080fd5b5061039161068e366004612585565b611457565b34801561069f57600080fd5b506103916106ae36600461271e565b611489565b3480156106bf57600080fd5b506102b66114b8565b3480156106d457600080fd5b506102b66106e336600461271e565b6114c5565b3480156106f457600080fd5b506103a9600c5481565b34801561070a57600080fd5b506103a96101f481565b34801561072057600080fd5b5061039161072f366004612771565b611634565b610391610742366004612653565b611671565b34801561075357600080fd5b5061028c610762366004612516565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561079c57600080fd5b506103916107ab366004612771565b611a9e565b3480156107bc57600080fd5b506103916107cb3660046124fb565b611adb565b60006001600160e01b0319821663780e9d6360e01b14806107f557506107f582611b73565b92915050565b60606000805461080a90612b79565b80601f016020809104026020016040519081016040528092919081815260200182805461083690612b79565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b600061089882611bc3565b6108fe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6008805461092790612b79565b80601f016020809104026020016040519081016040528092919081815260200182805461095390612b79565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b505050505081565b60006109b382610e43565b9050806001600160a01b0316836001600160a01b03161415610a215760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108f5565b336001600160a01b0382161480610a3d5750610a3d8133610762565b610aaf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108f5565b610ab98383611c0d565b505050565b610ac83382611c7b565b610ae45760405162461bcd60e51b81526004016108f590612a3e565b610ab9838383611d65565b6000610afa83610edc565b8210610b185760405162461bcd60e51b81526004016108f59061296c565b6000805b600254811015610b895760028181548110610b3957610b39612c0f565b6000918252602090912001546001600160a01b0386811691161415610b775783821415610b695791506107f59050565b81610b7381612bb4565b9250505b80610b8181612bb4565b915050610b1c565b5060405162461bcd60e51b81526004016108f59061296c565b6005546001600160a01b03163314610bcc5760405162461bcd60e51b81526004016108f590612a09565b600d805460ff19811660ff90911615179055565b6005546001600160a01b03163314610c0a5760405162461bcd60e51b81526004016108f590612a09565b600d805461ff001981166101009182900460ff1615909102179055565b6005546001600160a01b03163314610c515760405162461bcd60e51b81526004016108f590612a09565b604051600090339047908381818185875af1925050503d8060008114610c93576040519150601f19603f3d011682016040523d82523d6000602084013e610c98565b606091505b5050905080610ca657600080fd5b50565b610ab983838360405180602001604052806000815250611457565b60606000610cd183610edc565b905060008167ffffffffffffffff811115610cee57610cee612c25565b604051908082528060200260200182016040528015610d17578160200160208202803683370190505b50905060005b82811015610d5e57610d2f8582610aef565b828281518110610d4157610d41612c0f565b602090810291909101015280610d5681612bb4565b915050610d1d565b509392505050565b6005546001600160a01b03163314610d905760405162461bcd60e51b81526004016108f590612a09565b600955565b6002546000908210610dfe5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108f5565b5090565b6005546001600160a01b03163314610e2c5760405162461bcd60e51b81526004016108f590612a09565b8051610e3f906006906020840190612351565b5050565b60008060028381548110610e5957610e59612c0f565b6000918252602090912001546001600160a01b03169050806107f55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108f5565b6006805461092790612b79565b60006001600160a01b038216610f475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108f5565b6000805b600254811015610fad57836001600160a01b031660028281548110610f7257610f72612c0f565b6000918252602090912001546001600160a01b03161415610f9b5781610f9781612bb4565b9250505b80610fa581612bb4565b915050610f4b565b5092915050565b6005546001600160a01b03163314610fde5760405162461bcd60e51b81526004016108f590612a09565b610fe86000611ebb565b565b60008033836040516020016110009291906127e6565b6040516020818303038152906040528051906020012090506000600a549050600061102c868385611f0d565b9695505050505050565b6005546001600160a01b031633146110605760405162461bcd60e51b81526004016108f590612a09565b600b55565b60606001805461080a90612b79565b600554600160a01b900460ff16156110ce5760405162461bcd60e51b815260206004820181905260248201527f63616e6e6f74207265656e7465722061206c6f636b65642066756e6374696f6e60448201526064016108f5565b6005805460ff60a01b1916600160a01b179055600d5460ff166111335760405162461bcd60e51b815260206004820152601960248201527f7075626c69632073616c65206973206e6f74206163746976650000000000000060448201526064016108f5565b600061113e60025490565b9050600082116111905760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108f5565b600b548211156111ee5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016108f5565b6101f46111fb8383612aeb565b11156112425760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108f5565b60095461124f9083612b17565b3410156112945760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da08115512081cd95b9d606a1b60448201526064016108f5565b60005b828110156112c4576112b2336112ad8385612aeb565b611f23565b806112bc81612bb4565b915050611297565b50506005805460ff60a01b1916905550565b6001600160a01b03821633141561132f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108f5565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146113c55760405162461bcd60e51b81526004016108f590612a09565b60006113d060025490565b90506101f46113df8383612aeb565b11156114265760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108f5565b60005b828110156114515761143f846112ad8385612aeb565b8061144981612bb4565b915050611429565b50505050565b6114613383611c7b565b61147d5760405162461bcd60e51b81526004016108f590612a3e565b61145184848484611f3d565b6005546001600160a01b031633146114b35760405162461bcd60e51b81526004016108f590612a09565b600a55565b6007805461092790612b79565b60606114d082611bc3565b6115345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f5565b600d54610100900460ff166115d5576008805461155090612b79565b80601f016020809104026020016040519081016040528092919081815260200182805461157c90612b79565b80156115c95780601f1061159e576101008083540402835291602001916115c9565b820191906000526020600020905b8154815290600101906020018083116115ac57829003601f168201915b50505050509050919050565b60006115df611f70565b905060008151116115ff576040518060200160405280600081525061162d565b8061160984611f7f565b600760405160200161161d9392919061281e565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461165e5760405162461bcd60e51b81526004016108f590612a09565b8051610e3f906007906020840190612351565b600554600160a01b900460ff16156116cb5760405162461bcd60e51b815260206004820181905260248201527f63616e6e6f74207265656e7465722061206c6f636b65642066756e6374696f6e60448201526064016108f5565b6005805460ff60a01b1916600160a01b179055600a5461172d5760405162461bcd60e51b815260206004820152601960248201527f636c61696d20706572696f64206e6f742073746172746564210000000000000060448201526064016108f5565b600061173860025490565b90506117476101f46001612aeb565b6117518383612aeb565b1061179e5760405162461bcd60e51b815260206004820152601d60248201527f6d617820636f6c6c656374696f6e206c696d697420657863656564656400000060448201526064016108f5565b6040516bffffffffffffffffffffffff193360601b1660208201526001600160f81b03198416603482015260009060350160405160208183030381529060405280519060200120905060006117f686600a5484611f0d565b9050806118555760405162461bcd60e51b815260206004820152602760248201527f756e617574686f72697a65642070726f6f662d6b657920636f6d626f20666f726044820152661039b2b73232b960c91b60648201526084016108f5565b60f885901c3461193d5761186a816001612aeb565b336000908152600e6020526040902054611895908790600160801b90046001600160801b0316612aeb565b106118e25760405162461bcd60e51b815260206004820152601c60248201527f6d61782066726565204e465420636c61696d732065786365656465640000000060448201526064016108f5565b336000908152600e602052604090208054869190601090611914908490600160801b90046001600160801b0316612ac0565b92506101000a8154816001600160801b0302191690836001600160801b03160217905550611a5c565b600c5461194b906001612aeb565b336000908152600e602052604090205461196f9087906001600160801b0316612aeb565b106119bc5760405162461bcd60e51b815260206004820152601a60248201527f6d6178204e4654207072652d73616c657320657863656564656400000000000060448201526064016108f5565b6009546119c99086612b17565b341015611a0f5760405162461bcd60e51b81526020600482015260146024820152731b9bdd08195b9bdd59da1d08115512081cd95b9d60621b60448201526064016108f5565b336000908152600e602052604081208054879290611a379084906001600160801b0316612ac0565b92506101000a8154816001600160801b0302191690836001600160801b031602179055505b60005b85811015611a8757611a75336112ad8388612aeb565b80611a7f81612bb4565b915050611a5f565b50506005805460ff60a01b19169055505050505050565b6005546001600160a01b03163314611ac85760405162461bcd60e51b81526004016108f590612a09565b8051610e3f906008906020840190612351565b6005546001600160a01b03163314611b055760405162461bcd60e51b81526004016108f590612a09565b6001600160a01b038116611b6a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f5565b610ca681611ebb565b60006001600160e01b031982166380ac58cd60e01b1480611ba457506001600160e01b03198216635b5e139f60e01b145b806107f557506301ffc9a760e01b6001600160e01b03198316146107f5565b600254600090821080156107f5575060006001600160a01b031660028381548110611bf057611bf0612c0f565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c4282610e43565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c8682611bc3565b611ce75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f5565b6000611cf283610e43565b9050806001600160a01b0316846001600160a01b03161480611d2d5750836001600160a01b0316611d228461088d565b6001600160a01b0316145b80611d5d57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d7882610e43565b6001600160a01b031614611de05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108f5565b6001600160a01b038216611e425760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108f5565b611e4d600082611c0d565b8160028281548110611e6157611e61612c0f565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611f1a858461207d565b14949350505050565b610e3f8282604051806020016040528060008152506120e9565b611f48848484611d65565b611f548484848461211c565b6114515760405162461bcd60e51b81526004016108f5906129b7565b60606006805461080a90612b79565b606081611fa35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fcd5780611fb781612bb4565b9150611fc69050600a83612b03565b9150611fa7565b60008167ffffffffffffffff811115611fe857611fe8612c25565b6040519080825280601f01601f191660200182016040528015612012576020820181803683370190505b5090505b8415611d5d57612027600183612b36565b9150612034600a86612bcf565b61203f906030612aeb565b60f81b81838151811061205457612054612c0f565b60200101906001600160f81b031916908160001a905350612076600a86612b03565b9450612016565b600081815b8451811015610d5e57600085828151811061209f5761209f612c0f565b602002602001015190508083116120c557600083815260208290526040902092506120d6565b600081815260208490526040902092505b50806120e181612bb4565b915050612082565b6120f38383612229565b612100600084848461211c565b610ab95760405162461bcd60e51b81526004016108f5906129b7565b60006001600160a01b0384163b1561221e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121609033908990889088906004016128e2565b602060405180830381600087803b15801561217a57600080fd5b505af19250505080156121aa575060408051601f3d908101601f191682019092526121a791810190612754565b60015b612204573d8080156121d8576040519150601f19603f3d011682016040523d82523d6000602084013e6121dd565b606091505b5080516121fc5760405162461bcd60e51b81526004016108f5906129b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d5d565b506001949350505050565b6001600160a01b03821661227f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108f5565b61228881611bc3565b156122d55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108f5565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461235d90612b79565b90600052602060002090601f01602090048101928261237f57600085556123c5565b82601f1061239857805160ff19168380011785556123c5565b828001600101855582156123c5579182015b828111156123c55782518255916020019190600101906123aa565b50610dfe9291505b80821115610dfe57600081556001016123cd565b600067ffffffffffffffff8311156123fb576123fb612c25565b61240e601f8401601f1916602001612a8f565b905082815283838301111561242257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461245057600080fd5b919050565b600082601f83011261246657600080fd5b8135602067ffffffffffffffff82111561248257612482612c25565b8160051b612491828201612a8f565b8381528281019086840183880185018910156124ac57600080fd5b600093505b858410156124cf5780358352600193909301929184019184016124b1565b50979650505050505050565b600082601f8301126124ec57600080fd5b61162d838335602085016123e1565b60006020828403121561250d57600080fd5b61162d82612439565b6000806040838503121561252957600080fd5b61253283612439565b915061254060208401612439565b90509250929050565b60008060006060848603121561255e57600080fd5b61256784612439565b925061257560208501612439565b9150604084013590509250925092565b6000806000806080858703121561259b57600080fd5b6125a485612439565b93506125b260208601612439565b925060408501359150606085013567ffffffffffffffff8111156125d557600080fd5b6125e1878288016124db565b91505092959194509250565b6000806040838503121561260057600080fd5b61260983612439565b91506020830135801515811461261e57600080fd5b809150509250929050565b6000806040838503121561263c57600080fd5b61264583612439565b946020939093013593505050565b60008060006060848603121561266857600080fd5b833567ffffffffffffffff81111561267f57600080fd5b61268b86828701612455565b93505060208401356001600160f81b0319811681146126a957600080fd5b929592945050506040919091013590565b600080604083850312156126cd57600080fd5b823567ffffffffffffffff808211156126e557600080fd5b6126f186838701612455565b9350602085013591508082111561270757600080fd5b50612714858286016124db565b9150509250929050565b60006020828403121561273057600080fd5b5035919050565b60006020828403121561274957600080fd5b813561162d81612c3b565b60006020828403121561276657600080fd5b815161162d81612c3b565b60006020828403121561278357600080fd5b813567ffffffffffffffff81111561279a57600080fd5b8201601f810184136127ab57600080fd5b611d5d848235602084016123e1565b600081518084526127d2816020860160208601612b4d565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff198360601b16815260008251612810816014850160208701612b4d565b919091016014019392505050565b6000845160206128318285838a01612b4d565b8551918401916128448184848a01612b4d565b8554920191600090600181811c908083168061286157607f831692505b85831081141561287f57634e487b7160e01b85526022600452602485fd5b80801561289357600181146128a4576128d1565b60ff198516885283880195506128d1565b60008b81526020902060005b858110156128c95781548a8201529084019088016128b0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061102c908301846127ba565b6020808252825182820181905260009190848201906040850190845b8181101561294d57835183529284019291840191600101612931565b50909695505050505050565b60208152600061162d60208301846127ba565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612ab857612ab8612c25565b604052919050565b60006001600160801b03808316818516808303821115612ae257612ae2612be3565b01949350505050565b60008219821115612afe57612afe612be3565b500190565b600082612b1257612b12612bf9565b500490565b6000816000190483118215151615612b3157612b31612be3565b500290565b600082821015612b4857612b48612be3565b500390565b60005b83811015612b68578181015183820152602001612b50565b838111156114515750506000910152565b600181811c90821680612b8d57607f821691505b60208210811415612bae57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bc857612bc8612be3565b5060010190565b600082612bde57612bde612bf9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ca657600080fdfea2646970667358221220f83bef1a9140d4c49af68fe7bed08876c0d506d6676290a19bf2514afc1afa3964736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000013426f72656420426f6e65732047656e65736973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003424247000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044697066733a2f2f516d64694b574e7146696e424e655a62727670514c797356635674374545634d6371553546323873614e675043442f50726572657665616c2e6a736f6e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c806368428a1b11610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb01146106fe578063da3ef23f14610714578063e04985fc14610734578063e985e9c514610747578063f2c4ce1e14610790578063f2fde38b146107b057600080fd5b8063b88d4fde14610673578063c4eb85a914610693578063c6682862146106b3578063c87b56dd146106c8578063d0516b82146106e857600080fd5b80637f00c7a6116101085780637f00c7a6146105da5780638da5cb5b146105fa57806395d89b4114610618578063a0712d681461062d578063a22cb46514610640578063add5a4fa1461066057600080fd5b806368428a1b146105565780636c0360eb1461057057806370a0823114610585578063715018a6146105a55780637e7641c3146105ba57600080fd5b80632f745c59116101dd578063438b6300116101a1578063438b63001461048a57806344a0d68a146104b75780634f6ccce7146104d757806351830227146104f757806355f804b3146105165780636352211e1461053657600080fd5b80632f745c591461041857806334918dfd146104385780633b84d9c61461044d5780633ccfd60b1461046257806342842e0e1461046a57600080fd5b8063095ea7b31161022f578063095ea7b314610371578063132d3f6a1461039357806313faede6146103b757806318160ddd146103cd578063239c70ae146103e257806323b872dd146103f857600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063081c8c44146102fb5780630877a9ab14610310575b600080fd5b34801561027857600080fd5b5061028c610287366004612737565b6107d0565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b66107fb565b6040516102989190612959565b3480156102cf57600080fd5b506102e36102de36600461271e565b61088d565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b506102b661091a565b34801561031c57600080fd5b5061035161032b3660046124fb565b600e602052600090815260409020546001600160801b0380821691600160801b90041682565b604080516001600160801b03938416815292909116602083015201610298565b34801561037d57600080fd5b5061039161038c366004612629565b6109a8565b005b34801561039f57600080fd5b506103a9600a5481565b604051908152602001610298565b3480156103c357600080fd5b506103a960095481565b3480156103d957600080fd5b506002546103a9565b3480156103ee57600080fd5b506103a9600b5481565b34801561040457600080fd5b50610391610413366004612549565b610abe565b34801561042457600080fd5b506103a9610433366004612629565b610aef565b34801561044457600080fd5b50610391610ba2565b34801561045957600080fd5b50610391610be0565b610391610c27565b34801561047657600080fd5b50610391610485366004612549565b610ca9565b34801561049657600080fd5b506104aa6104a53660046124fb565b610cc4565b6040516102989190612915565b3480156104c357600080fd5b506103916104d236600461271e565b610d66565b3480156104e357600080fd5b506103a96104f236600461271e565b610d95565b34801561050357600080fd5b50600d5461028c90610100900460ff1681565b34801561052257600080fd5b50610391610531366004612771565b610e02565b34801561054257600080fd5b506102e361055136600461271e565b610e43565b34801561056257600080fd5b50600d5461028c9060ff1681565b34801561057c57600080fd5b506102b6610ecf565b34801561059157600080fd5b506103a96105a03660046124fb565b610edc565b3480156105b157600080fd5b50610391610fb4565b3480156105c657600080fd5b5061028c6105d53660046126ba565b610fea565b3480156105e657600080fd5b506103916105f536600461271e565b611036565b34801561060657600080fd5b506005546001600160a01b03166102e3565b34801561062457600080fd5b506102b6611065565b61039161063b36600461271e565b611074565b34801561064c57600080fd5b5061039161065b3660046125ed565b6112d6565b61039161066e366004612629565b61139b565b34801561067f57600080fd5b5061039161068e366004612585565b611457565b34801561069f57600080fd5b506103916106ae36600461271e565b611489565b3480156106bf57600080fd5b506102b66114b8565b3480156106d457600080fd5b506102b66106e336600461271e565b6114c5565b3480156106f457600080fd5b506103a9600c5481565b34801561070a57600080fd5b506103a96101f481565b34801561072057600080fd5b5061039161072f366004612771565b611634565b610391610742366004612653565b611671565b34801561075357600080fd5b5061028c610762366004612516565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561079c57600080fd5b506103916107ab366004612771565b611a9e565b3480156107bc57600080fd5b506103916107cb3660046124fb565b611adb565b60006001600160e01b0319821663780e9d6360e01b14806107f557506107f582611b73565b92915050565b60606000805461080a90612b79565b80601f016020809104026020016040519081016040528092919081815260200182805461083690612b79565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b600061089882611bc3565b6108fe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6008805461092790612b79565b80601f016020809104026020016040519081016040528092919081815260200182805461095390612b79565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b505050505081565b60006109b382610e43565b9050806001600160a01b0316836001600160a01b03161415610a215760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108f5565b336001600160a01b0382161480610a3d5750610a3d8133610762565b610aaf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108f5565b610ab98383611c0d565b505050565b610ac83382611c7b565b610ae45760405162461bcd60e51b81526004016108f590612a3e565b610ab9838383611d65565b6000610afa83610edc565b8210610b185760405162461bcd60e51b81526004016108f59061296c565b6000805b600254811015610b895760028181548110610b3957610b39612c0f565b6000918252602090912001546001600160a01b0386811691161415610b775783821415610b695791506107f59050565b81610b7381612bb4565b9250505b80610b8181612bb4565b915050610b1c565b5060405162461bcd60e51b81526004016108f59061296c565b6005546001600160a01b03163314610bcc5760405162461bcd60e51b81526004016108f590612a09565b600d805460ff19811660ff90911615179055565b6005546001600160a01b03163314610c0a5760405162461bcd60e51b81526004016108f590612a09565b600d805461ff001981166101009182900460ff1615909102179055565b6005546001600160a01b03163314610c515760405162461bcd60e51b81526004016108f590612a09565b604051600090339047908381818185875af1925050503d8060008114610c93576040519150601f19603f3d011682016040523d82523d6000602084013e610c98565b606091505b5050905080610ca657600080fd5b50565b610ab983838360405180602001604052806000815250611457565b60606000610cd183610edc565b905060008167ffffffffffffffff811115610cee57610cee612c25565b604051908082528060200260200182016040528015610d17578160200160208202803683370190505b50905060005b82811015610d5e57610d2f8582610aef565b828281518110610d4157610d41612c0f565b602090810291909101015280610d5681612bb4565b915050610d1d565b509392505050565b6005546001600160a01b03163314610d905760405162461bcd60e51b81526004016108f590612a09565b600955565b6002546000908210610dfe5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108f5565b5090565b6005546001600160a01b03163314610e2c5760405162461bcd60e51b81526004016108f590612a09565b8051610e3f906006906020840190612351565b5050565b60008060028381548110610e5957610e59612c0f565b6000918252602090912001546001600160a01b03169050806107f55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108f5565b6006805461092790612b79565b60006001600160a01b038216610f475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108f5565b6000805b600254811015610fad57836001600160a01b031660028281548110610f7257610f72612c0f565b6000918252602090912001546001600160a01b03161415610f9b5781610f9781612bb4565b9250505b80610fa581612bb4565b915050610f4b565b5092915050565b6005546001600160a01b03163314610fde5760405162461bcd60e51b81526004016108f590612a09565b610fe86000611ebb565b565b60008033836040516020016110009291906127e6565b6040516020818303038152906040528051906020012090506000600a549050600061102c868385611f0d565b9695505050505050565b6005546001600160a01b031633146110605760405162461bcd60e51b81526004016108f590612a09565b600b55565b60606001805461080a90612b79565b600554600160a01b900460ff16156110ce5760405162461bcd60e51b815260206004820181905260248201527f63616e6e6f74207265656e7465722061206c6f636b65642066756e6374696f6e60448201526064016108f5565b6005805460ff60a01b1916600160a01b179055600d5460ff166111335760405162461bcd60e51b815260206004820152601960248201527f7075626c69632073616c65206973206e6f74206163746976650000000000000060448201526064016108f5565b600061113e60025490565b9050600082116111905760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108f5565b600b548211156111ee5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016108f5565b6101f46111fb8383612aeb565b11156112425760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108f5565b60095461124f9083612b17565b3410156112945760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da08115512081cd95b9d606a1b60448201526064016108f5565b60005b828110156112c4576112b2336112ad8385612aeb565b611f23565b806112bc81612bb4565b915050611297565b50506005805460ff60a01b1916905550565b6001600160a01b03821633141561132f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108f5565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146113c55760405162461bcd60e51b81526004016108f590612a09565b60006113d060025490565b90506101f46113df8383612aeb565b11156114265760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108f5565b60005b828110156114515761143f846112ad8385612aeb565b8061144981612bb4565b915050611429565b50505050565b6114613383611c7b565b61147d5760405162461bcd60e51b81526004016108f590612a3e565b61145184848484611f3d565b6005546001600160a01b031633146114b35760405162461bcd60e51b81526004016108f590612a09565b600a55565b6007805461092790612b79565b60606114d082611bc3565b6115345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f5565b600d54610100900460ff166115d5576008805461155090612b79565b80601f016020809104026020016040519081016040528092919081815260200182805461157c90612b79565b80156115c95780601f1061159e576101008083540402835291602001916115c9565b820191906000526020600020905b8154815290600101906020018083116115ac57829003601f168201915b50505050509050919050565b60006115df611f70565b905060008151116115ff576040518060200160405280600081525061162d565b8061160984611f7f565b600760405160200161161d9392919061281e565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461165e5760405162461bcd60e51b81526004016108f590612a09565b8051610e3f906007906020840190612351565b600554600160a01b900460ff16156116cb5760405162461bcd60e51b815260206004820181905260248201527f63616e6e6f74207265656e7465722061206c6f636b65642066756e6374696f6e60448201526064016108f5565b6005805460ff60a01b1916600160a01b179055600a5461172d5760405162461bcd60e51b815260206004820152601960248201527f636c61696d20706572696f64206e6f742073746172746564210000000000000060448201526064016108f5565b600061173860025490565b90506117476101f46001612aeb565b6117518383612aeb565b1061179e5760405162461bcd60e51b815260206004820152601d60248201527f6d617820636f6c6c656374696f6e206c696d697420657863656564656400000060448201526064016108f5565b6040516bffffffffffffffffffffffff193360601b1660208201526001600160f81b03198416603482015260009060350160405160208183030381529060405280519060200120905060006117f686600a5484611f0d565b9050806118555760405162461bcd60e51b815260206004820152602760248201527f756e617574686f72697a65642070726f6f662d6b657920636f6d626f20666f726044820152661039b2b73232b960c91b60648201526084016108f5565b60f885901c3461193d5761186a816001612aeb565b336000908152600e6020526040902054611895908790600160801b90046001600160801b0316612aeb565b106118e25760405162461bcd60e51b815260206004820152601c60248201527f6d61782066726565204e465420636c61696d732065786365656465640000000060448201526064016108f5565b336000908152600e602052604090208054869190601090611914908490600160801b90046001600160801b0316612ac0565b92506101000a8154816001600160801b0302191690836001600160801b03160217905550611a5c565b600c5461194b906001612aeb565b336000908152600e602052604090205461196f9087906001600160801b0316612aeb565b106119bc5760405162461bcd60e51b815260206004820152601a60248201527f6d6178204e4654207072652d73616c657320657863656564656400000000000060448201526064016108f5565b6009546119c99086612b17565b341015611a0f5760405162461bcd60e51b81526020600482015260146024820152731b9bdd08195b9bdd59da1d08115512081cd95b9d60621b60448201526064016108f5565b336000908152600e602052604081208054879290611a379084906001600160801b0316612ac0565b92506101000a8154816001600160801b0302191690836001600160801b031602179055505b60005b85811015611a8757611a75336112ad8388612aeb565b80611a7f81612bb4565b915050611a5f565b50506005805460ff60a01b19169055505050505050565b6005546001600160a01b03163314611ac85760405162461bcd60e51b81526004016108f590612a09565b8051610e3f906008906020840190612351565b6005546001600160a01b03163314611b055760405162461bcd60e51b81526004016108f590612a09565b6001600160a01b038116611b6a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f5565b610ca681611ebb565b60006001600160e01b031982166380ac58cd60e01b1480611ba457506001600160e01b03198216635b5e139f60e01b145b806107f557506301ffc9a760e01b6001600160e01b03198316146107f5565b600254600090821080156107f5575060006001600160a01b031660028381548110611bf057611bf0612c0f565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c4282610e43565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c8682611bc3565b611ce75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f5565b6000611cf283610e43565b9050806001600160a01b0316846001600160a01b03161480611d2d5750836001600160a01b0316611d228461088d565b6001600160a01b0316145b80611d5d57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d7882610e43565b6001600160a01b031614611de05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108f5565b6001600160a01b038216611e425760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108f5565b611e4d600082611c0d565b8160028281548110611e6157611e61612c0f565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611f1a858461207d565b14949350505050565b610e3f8282604051806020016040528060008152506120e9565b611f48848484611d65565b611f548484848461211c565b6114515760405162461bcd60e51b81526004016108f5906129b7565b60606006805461080a90612b79565b606081611fa35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fcd5780611fb781612bb4565b9150611fc69050600a83612b03565b9150611fa7565b60008167ffffffffffffffff811115611fe857611fe8612c25565b6040519080825280601f01601f191660200182016040528015612012576020820181803683370190505b5090505b8415611d5d57612027600183612b36565b9150612034600a86612bcf565b61203f906030612aeb565b60f81b81838151811061205457612054612c0f565b60200101906001600160f81b031916908160001a905350612076600a86612b03565b9450612016565b600081815b8451811015610d5e57600085828151811061209f5761209f612c0f565b602002602001015190508083116120c557600083815260208290526040902092506120d6565b600081815260208490526040902092505b50806120e181612bb4565b915050612082565b6120f38383612229565b612100600084848461211c565b610ab95760405162461bcd60e51b81526004016108f5906129b7565b60006001600160a01b0384163b1561221e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121609033908990889088906004016128e2565b602060405180830381600087803b15801561217a57600080fd5b505af19250505080156121aa575060408051601f3d908101601f191682019092526121a791810190612754565b60015b612204573d8080156121d8576040519150601f19603f3d011682016040523d82523d6000602084013e6121dd565b606091505b5080516121fc5760405162461bcd60e51b81526004016108f5906129b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d5d565b506001949350505050565b6001600160a01b03821661227f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108f5565b61228881611bc3565b156122d55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108f5565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461235d90612b79565b90600052602060002090601f01602090048101928261237f57600085556123c5565b82601f1061239857805160ff19168380011785556123c5565b828001600101855582156123c5579182015b828111156123c55782518255916020019190600101906123aa565b50610dfe9291505b80821115610dfe57600081556001016123cd565b600067ffffffffffffffff8311156123fb576123fb612c25565b61240e601f8401601f1916602001612a8f565b905082815283838301111561242257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461245057600080fd5b919050565b600082601f83011261246657600080fd5b8135602067ffffffffffffffff82111561248257612482612c25565b8160051b612491828201612a8f565b8381528281019086840183880185018910156124ac57600080fd5b600093505b858410156124cf5780358352600193909301929184019184016124b1565b50979650505050505050565b600082601f8301126124ec57600080fd5b61162d838335602085016123e1565b60006020828403121561250d57600080fd5b61162d82612439565b6000806040838503121561252957600080fd5b61253283612439565b915061254060208401612439565b90509250929050565b60008060006060848603121561255e57600080fd5b61256784612439565b925061257560208501612439565b9150604084013590509250925092565b6000806000806080858703121561259b57600080fd5b6125a485612439565b93506125b260208601612439565b925060408501359150606085013567ffffffffffffffff8111156125d557600080fd5b6125e1878288016124db565b91505092959194509250565b6000806040838503121561260057600080fd5b61260983612439565b91506020830135801515811461261e57600080fd5b809150509250929050565b6000806040838503121561263c57600080fd5b61264583612439565b946020939093013593505050565b60008060006060848603121561266857600080fd5b833567ffffffffffffffff81111561267f57600080fd5b61268b86828701612455565b93505060208401356001600160f81b0319811681146126a957600080fd5b929592945050506040919091013590565b600080604083850312156126cd57600080fd5b823567ffffffffffffffff808211156126e557600080fd5b6126f186838701612455565b9350602085013591508082111561270757600080fd5b50612714858286016124db565b9150509250929050565b60006020828403121561273057600080fd5b5035919050565b60006020828403121561274957600080fd5b813561162d81612c3b565b60006020828403121561276657600080fd5b815161162d81612c3b565b60006020828403121561278357600080fd5b813567ffffffffffffffff81111561279a57600080fd5b8201601f810184136127ab57600080fd5b611d5d848235602084016123e1565b600081518084526127d2816020860160208601612b4d565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff198360601b16815260008251612810816014850160208701612b4d565b919091016014019392505050565b6000845160206128318285838a01612b4d565b8551918401916128448184848a01612b4d565b8554920191600090600181811c908083168061286157607f831692505b85831081141561287f57634e487b7160e01b85526022600452602485fd5b80801561289357600181146128a4576128d1565b60ff198516885283880195506128d1565b60008b81526020902060005b858110156128c95781548a8201529084019088016128b0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061102c908301846127ba565b6020808252825182820181905260009190848201906040850190845b8181101561294d57835183529284019291840191600101612931565b50909695505050505050565b60208152600061162d60208301846127ba565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612ab857612ab8612c25565b604052919050565b60006001600160801b03808316818516808303821115612ae257612ae2612be3565b01949350505050565b60008219821115612afe57612afe612be3565b500190565b600082612b1257612b12612bf9565b500490565b6000816000190483118215151615612b3157612b31612be3565b500290565b600082821015612b4857612b48612be3565b500390565b60005b83811015612b68578181015183820152602001612b50565b838111156114515750506000910152565b600181811c90821680612b8d57607f821691505b60208210811415612bae57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bc857612bc8612be3565b5060010190565b600082612bde57612bde612bf9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ca657600080fdfea2646970667358221220f83bef1a9140d4c49af68fe7bed08876c0d506d6676290a19bf2514afc1afa3964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000013426f72656420426f6e65732047656e65736973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003424247000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044697066733a2f2f516d64694b574e7146696e424e655a62727670514c797356635674374545634d6371553546323873614e675043442f50726572657665616c2e6a736f6e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Bored Bones Genesis
Arg [1] : _symbol (string): BBG
Arg [2] : _initBaseURI (string):
Arg [3] : _initNotRevealedUri (string): ipfs://QmdiKWNqFinBNeZbrvpQLysVcVt7EEcMcqU5F28saNgPCD/Prereveal.json

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [5] : 426f72656420426f6e65732047656e6573697300000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4242470000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [10] : 697066733a2f2f516d64694b574e7146696e424e655a62727670514c79735663
Arg [11] : 5674374545634d6371553546323873614e675043442f50726572657665616c2e
Arg [12] : 6a736f6e00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41815:5358:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38233:224;;;;;;;;;;-1:-1:-1;38233:224:0;;;;;:::i;:::-;;:::i;:::-;;;10211:14:1;;10204:22;10186:41;;10174:2;10159:18;38233:224:0;;;;;;;;26667:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28226:221::-;;;;;;;;;;-1:-1:-1;28226:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8872:32:1;;;8854:51;;8842:2;8827:18;28226:221:0;8708:203:1;41990:28:0;;;;;;;;;;;;;:::i;42426:56::-;;;;;;;;;;-1:-1:-1;42426:56:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;42426:56:0;;;;-1:-1:-1;;;42426:56:0;;;;;;;;;-1:-1:-1;;;;;22452:15:1;;;22434:34;;22504:15;;;;22499:2;22484:18;;22477:43;22354:18;42426:56:0;22207:319:1;27749:411:0;;;;;;;;;;-1:-1:-1;27749:411:0;;;;;:::i;:::-;;:::i;:::-;;42063:25;;;;;;;;;;;;;;;;;;;10384::1;;;10372:2;10357:18;42063:25:0;10238:177:1;42023:31:0;;;;;;;;;;;;;;;;38533:110;;;;;;;;;;-1:-1:-1;38621:7:0;:14;38533:110;;42145:32;;;;;;;;;;;;;;;;29116:339;;;;;;;;;;-1:-1:-1;29116:339:0;;;;;:::i;:::-;;:::i;39009:490::-;;;;;;;;;;-1:-1:-1;39009:490:0;;;;;:::i;:::-;;:::i;45831:79::-;;;;;;;;;;;;;:::i;45918:72::-;;;;;;;;;;;;;:::i;47012:158::-;;;:::i;29526:185::-;;;;;;;;;;-1:-1:-1;29526:185:0;;;;;:::i;:::-;;:::i;44958:348::-;;;;;;;;;;-1:-1:-1;44958:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46444:80::-;;;;;;;;;;-1:-1:-1;46444:80:0;;;;;:::i;:::-;;:::i;38720:205::-;;;;;;;;;;-1:-1:-1;38720:205:0;;;;;:::i;:::-;;:::i;42257:28::-;;;;;;;;;;-1:-1:-1;42257:28:0;;;;;;;;;;;46652:98;;;;;;;;;;-1:-1:-1;46652:98:0;;;;;:::i;:::-;;:::i;26361:239::-;;;;;;;;;;-1:-1:-1;26361:239:0;;;;;:::i;:::-;;:::i;42222:30::-;;;;;;;;;;-1:-1:-1;42222:30:0;;;;;;;;41922:21;;;;;;;;;;;;;:::i;25967:332::-;;;;;;;;;;-1:-1:-1;25967:332:0;;;;;:::i;:::-;;:::i;41147:94::-;;;;;;;;;;;;;:::i;44639:307::-;;;;;;;;;;-1:-1:-1;44639:307:0;;;;;:::i;:::-;;:::i;46530:116::-;;;;;;;;;;-1:-1:-1;46530:116:0;;;;;:::i;:::-;;:::i;40496:87::-;;;;;;;;;;-1:-1:-1;40569:6:0;;-1:-1:-1;;;;;40569:6:0;40496:87;;26836:104;;;;;;;;;;;;;:::i;42885:551::-;;;;;;:::i;:::-;;:::i;28519:295::-;;;;;;;;;;-1:-1:-1;28519:295:0;;;;;:::i;:::-;;:::i;46106:300::-;;;;;;:::i;:::-;;:::i;29782:328::-;;;;;;;;;;-1:-1:-1;29782:328:0;;;;;:::i;:::-;;:::i;45998:96::-;;;;;;;;;;-1:-1:-1;45998:96:0;;;;;:::i;:::-;;:::i;41948:37::-;;;;;;;;;;;;;:::i;45312:497::-;;;;;;;;;;-1:-1:-1;45312:497:0;;;;;:::i;:::-;;:::i;42182:35::-;;;;;;;;;;;;;;;;42097:39;;;;;;;;;;;;42133:3;42097:39;;46756:122;;;;;;;;;;-1:-1:-1;46756:122:0;;;;;:::i;:::-;;:::i;43444:1183::-;;;;;;:::i;:::-;;:::i;28885:164::-;;;;;;;;;;-1:-1:-1;28885:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29006:25:0;;;28982:4;29006:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28885:164;46886:120;;;;;;;;;;-1:-1:-1;46886:120:0;;;;;:::i;:::-;;:::i;41396:192::-;;;;;;;;;;-1:-1:-1;41396:192:0;;;;;:::i;:::-;;:::i;38233:224::-;38335:4;-1:-1:-1;;;;;;38359:50:0;;-1:-1:-1;;;38359:50:0;;:90;;;38413:36;38437:11;38413:23;:36::i;:::-;38352:97;38233:224;-1:-1:-1;;38233:224:0:o;26667:100::-;26721:13;26754:5;26747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26667:100;:::o;28226:221::-;28302:7;28330:16;28338:7;28330;:16::i;:::-;28322:73;;;;-1:-1:-1;;;28322:73:0;;17038:2:1;28322:73:0;;;17020:21:1;17077:2;17057:18;;;17050:30;17116:34;17096:18;;;17089:62;-1:-1:-1;;;17167:18:1;;;17160:42;17219:19;;28322:73:0;;;;;;;;;-1:-1:-1;28415:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28415:24:0;;28226:221::o;41990:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27749:411::-;27830:13;27846:23;27861:7;27846:14;:23::i;:::-;27830:39;;27894:5;-1:-1:-1;;;;;27888:11:0;:2;-1:-1:-1;;;;;27888:11:0;;;27880:57;;;;-1:-1:-1;;;27880:57:0;;19340:2:1;27880:57:0;;;19322:21:1;19379:2;19359:18;;;19352:30;19418:34;19398:18;;;19391:62;-1:-1:-1;;;19469:18:1;;;19462:31;19510:19;;27880:57:0;19138:397:1;27880:57:0;23803:10;-1:-1:-1;;;;;27972:21:0;;;;:62;;-1:-1:-1;27997:37:0;28014:5;23803:10;28885:164;:::i;27997:37::-;27950:168;;;;-1:-1:-1;;;27950:168:0;;14317:2:1;27950:168:0;;;14299:21:1;14356:2;14336:18;;;14329:30;14395:34;14375:18;;;14368:62;14466:26;14446:18;;;14439:54;14510:19;;27950:168:0;14115:420:1;27950:168:0;28131:21;28140:2;28144:7;28131:8;:21::i;:::-;27819:341;27749:411;;:::o;29116:339::-;29311:41;23803:10;29344:7;29311:18;:41::i;:::-;29303:103;;;;-1:-1:-1;;;29303:103:0;;;;;;;:::i;:::-;29419:28;29429:4;29435:2;29439:7;29419:9;:28::i;39009:490::-;39106:15;39150:16;39160:5;39150:9;:16::i;:::-;39142:5;:24;39134:80;;;;-1:-1:-1;;;39134:80:0;;;;;;;:::i;:::-;39227:10;39252:6;39248:178;39264:7;:14;39260:18;;39248:178;;;39311:7;39319:1;39311:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;39302:19:0;;;39311:10;;39302:19;39299:116;;;39353:5;39344;:14;39341:58;;;39367:1;-1:-1:-1;39360:8:0;;-1:-1:-1;39360:8:0;39341:58;39392:7;;;;:::i;:::-;;;;39341:58;39280:3;;;;:::i;:::-;;;;39248:178;;;;39438:53;;-1:-1:-1;;;39438:53:0;;;;;;;:::i;45831:79::-;40569:6;;-1:-1:-1;;;;;40569:6:0;23803:10;40716:23;40708:68;;;;-1:-1:-1;;;40708:68:0;;;;;;;:::i;:::-;45894:10:::1;::::0;;-1:-1:-1;;45880:24:0;::::1;45894:10;::::0;;::::1;45893:11;45880:24;::::0;;45831:79::o;45918:72::-;40569:6;;-1:-1:-1;;;;;40569:6:0;23803:10;40716:23;40708:68;;;;-1:-1:-1;;;40708:68:0;;;;;;;:::i;:::-;45976:8:::1;::::0;;-1:-1:-1;;45964:20:0;::::1;45976:8;::::0;;;::::1;;;45975:9;45964:20:::0;;::::1;;::::0;;45918:72::o;47012:158::-;40569:6;;-1:-1:-1;;;;;40569:6:0;23803:10;40716:23;40708:68;;;;-1:-1:-1;;;40708:68:0;;;;;;;:::i;:::-;47083:58:::1;::::0;47065:12:::1;::::0;47091:10:::1;::::0;47115:21:::1;::::0;47065:12;47083:58;47065:12;47083:58;47115:21;47091:10;47083:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47064:77;;;47156:7;47148:16;;;::::0;::::1;;47057:113;47012:158::o:0;29526:185::-;29664:39;29681:4;29687:2;29691:7;29664:39;;;;;;;;;;;;:16;:39::i;44958:348::-;45033:16;45061:23;45087:17;45097:6;45087:9;:17::i;:::-;45061:43;;45111:25;45153:15;45139:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45139:30:0;;45111:58;;45181:9;45176:103;45196:15;45192:1;:19;45176:103;;;45241:30;45261:6;45269:1;45241:19;:30::i;:::-;45227:8;45236:1;45227:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45213:3;;;;:::i;:::-;;;;45176:103;;;-1:-1:-1;45292:8:0;44958:348;-1:-1:-1;;;44958:348:0:o;46444:80::-;40569:6;;-1:-1:-1;;;;;40569:6:0;23803:10;40716:23;40708:68;;;;-1:-1:-1;;;40708:68:0;;;;;;;:::i;:::-;46503:4:::1;:15:::0;46444:80::o;38720:205::-;38831:7;:14;38795:7;;38823:22;;38815:79;;;;-1:-1:-1;;;38815:79:0;;20160:2:1;38815:79:0;;;20142:21:1;20199:2;20179:18;;;20172:30;20238:34;20218:18;;;20211:62;-1:-1:-1;;;20289:18:1;;;20282:42;20341:19;;38815:79:0;19958:408:1;38815:79:0;-1:-1:-1;38912:5:0;38720:205::o;46652:98::-;40569:6;;-1:-1:-1;;;;;40569:6:0;23803:10;40716:23;40708:68;;;;-1:-1:-1;;;40708:68:0;;;;;;;:::i;:::-;46723:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46652:98:::0;:::o;26361:239::-;26433:7;26453:13;26469:7;26477;26469:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;26469:16:0;;-1:-1:-1;26504:19:0;26496:73;;;;-1:-1:-1;;;26496:73:0;;15153:2:1;26496:73:0;;;15135:21:1;15192:2;15172:18;;;15165:30;15231:34;15211:18;;;15204:62;-1:-1:-1;;;15282:18:1;;;15275:39;15331:19;;26496:73:0;14951:405:1;41922:21:0;;;;;;;:::i;25967:332::-;26039:7;-1:-1:-1;;;;;26067:19:0;;26059:74;;;;-1:-1:-1;;;26059:74:0;;14742:2:1;26059:74:0;;;14724:21:1;14781:2;14761:18;;;14754:30;14820:34;14800:18;;;14793:62;-1:-1:-1;;;14871:18:1;;;14864:40;14921:19;;26059:74:0;14540:406:1;26059:74:0;26138:21;26172:6;26168:93;26188:7;:14;26184:18;;26168:93;;;26232:5;-1:-1:-1;;;;;26218:19:0;:7;26226:1;26218:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;26218:10:0;:19;26215:40;;;26239:16;;;;:::i;:::-;;;;26215:40;26204:3;;;;:::i;:::-;;;;26168:93;;;-1:-1:-1;26278:13:0;25967:332;-1:-1:-1;;25967:332:0:o;41147:94::-;40569:6;;-1:-1:-1;;;;;40569:6:0;23803:10;40716:23;40708:68;;;;-1:-1:-1;;;40708:68:0;;;;;;;:::i;:::-;41212:21:::1;41230:1;41212:9;:21::i;:::-;41147:94::o:0;44639:307::-;44728:4;44741:18;44789:10;44801:3;44772:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44762:44;;;;;;44741:65;;44813:21;44837:10;;44813:34;;44854:11;44868:52;44887:5;44894:13;44909:10;44868:18;:52::i;:::-;44854:66;44639:307;-1:-1:-1;;;;;;44639:307:0:o;46530:116::-;40569:6;;-1:-1:-1;;;;;40569:6:0;23803:10;40716:23;40708:68;;;;-1:-1:-1;;;40708:68:0;;;;;;;:::i;:::-;46607:13:::1;:33:::0;46530:116::o;26836:104::-;26892:13;26925:7;26918:14;;;;;:::i;42885:551::-;24260:11;;-1:-1:-1;;;24260:11:0;;;;24259:12;24251:57;;;;-1:-1:-1;;;24251:57:0;;20573:2:1;24251:57:0;;;20555:21:1;;;20592:18;;;20585:30;20651:34;20631:18;;;20624:62;20703:18;;24251:57:0;20371:356:1;24251:57:0;24319:11;:18;;-1:-1:-1;;;;24319:18:0;-1:-1:-1;;;24319:18:0;;;42962:10:::1;::::0;24319:18;42962:10:::1;42954:48;;;::::0;-1:-1:-1;;;42954:48:0;;17451:2:1;42954:48:0::1;::::0;::::1;17433:21:1::0;17490:2;17470:18;;;17463:30;17529:27;17509:18;;;17502:55;17574:18;;42954:48:0::1;17249:349:1::0;42954:48:0::1;43009:14;43026:13;38621:7:::0;:14;;38533:110;43026:13:::1;43009:30;;43068:1;43054:11;:15;43046:55;;;::::0;-1:-1:-1;;;43046:55:0;;22053:2:1;43046:55:0::1;::::0;::::1;22035:21:1::0;22092:2;22072:18;;;22065:30;22131:29;22111:18;;;22104:57;22178:18;;43046:55:0::1;21851:351:1::0;43046:55:0::1;43131:13;;43116:11;:28;;43108:77;;;::::0;-1:-1:-1;;;43108:77:0;;15914:2:1;43108:77:0::1;::::0;::::1;15896:21:1::0;15953:2;15933:18;;;15926:30;15992:34;15972:18;;;15965:62;-1:-1:-1;;;16043:18:1;;;16036:34;16087:19;;43108:77:0::1;15712:400:1::0;43108:77:0::1;42133:3;43200:20;43209:11:::0;43200:6;:20:::1;:::i;:::-;:33;;43192:68;;;::::0;-1:-1:-1;;;43192:68:0;;15563:2:1;43192:68:0::1;::::0;::::1;15545:21:1::0;15602:2;15582:18;;;15575:30;-1:-1:-1;;;15621:18:1;;;15614:52;15683:18;;43192:68:0::1;15361:346:1::0;43192:68:0::1;43302:4;::::0;43288:18:::1;::::0;:11;:18:::1;:::i;:::-;43275:9;:31;;43267:63;;;::::0;-1:-1:-1;;;43267:63:0;;18576:2:1;43267:63:0::1;::::0;::::1;18558:21:1::0;18615:2;18595:18;;;18588:30;-1:-1:-1;;;18634:18:1;;;18627:49;18693:18;;43267:63:0::1;18374:343:1::0;43267:63:0::1;43344:9;43339:92;43363:11;43359:1;:15;43339:92;;;43390:33;43400:10;43412;43421:1:::0;43412:6;:10:::1;:::i;:::-;43390:9;:33::i;:::-;43376:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43339:92;;;-1:-1:-1::0;;24360:11:0;:19;;-1:-1:-1;;;;24360:19:0;;;-1:-1:-1;42885:551:0:o;28519:295::-;-1:-1:-1;;;;;28622:24:0;;23803:10;28622:24;;28614:62;;;;-1:-1:-1;;;28614:62:0;;12846:2:1;28614:62:0;;;12828:21:1;12885:2;12865:18;;;12858:30;12924:27;12904:18;;;12897:55;12969:18;;28614:62:0;12644:349:1;28614:62:0;23803:10;28689:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28689:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28689:53:0;;;;;;;;;;28758:48;;10186:41:1;;;28689:42:0;;23803:10;28758:48;;10159:18:1;28758:48:0;;;;;;;28519:295;;:::o;46106:300::-;40569:6;;-1:-1:-1;;;;;40569:6:0;23803:10;40716:23;40708:68;;;;-1:-1:-1;;;40708:68:0;;;;;;;:::i;:::-;46196:14:::1;46213:13;38621:7:::0;:14;;38533:110;46213:13:::1;46196:30:::0;-1:-1:-1;42133:3:0::1;46241:20;46250:11:::0;46196:30;46241:20:::1;:::i;:::-;:33;;46233:68;;;::::0;-1:-1:-1;;;46233:68:0;;15563:2:1;46233:68:0::1;::::0;::::1;15545:21:1::0;15602:2;15582:18;;;15575:30;-1:-1:-1;;;15621:18:1;;;15614:52;15683:18;;46233:68:0::1;15361:346:1::0;46233:68:0::1;46315:9;46310:91;46334:11;46330:1;:15;46310:91;;;46361:32;46371:9:::0;46382:10:::1;46391:1:::0;46382:6;:10:::1;:::i;46361:32::-;46347:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46310:91;;;;46189:217;46106:300:::0;;:::o;29782:328::-;29957:41;23803:10;29990:7;29957:18;:41::i;:::-;29949:103;;;;-1:-1:-1;;;29949:103:0;;;;;;;:::i;:::-;30063:39;30077:4;30083:2;30087:7;30096:5;30063:13;:39::i;45998:96::-;40569:6;;-1:-1:-1;;;;;40569:6:0;23803:10;40716:23;40708:68;;;;-1:-1:-1;;;40708:68:0;;;;;;;:::i;:::-;46064:10:::1;:24:::0;45998:96::o;41948:37::-;;;;;;;:::i;45312:497::-;45410:13;45451:16;45459:7;45451;:16::i;:::-;45435:97;;;;-1:-1:-1;;;45435:97:0;;18924:2:1;45435:97:0;;;18906:21:1;18963:2;18943:18;;;18936:30;19002:34;18982:18;;;18975:62;-1:-1:-1;;;19053:18:1;;;19046:45;19108:19;;45435:97:0;18722:411:1;45435:97:0;45548:8;;;;;;;45545:62;;45585:14;45578:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45312:497;;;:::o;45545:62::-;45615:28;45646:10;:8;:10::i;:::-;45615:41;;45701:1;45676:14;45670:28;:32;:133;;;;;;;;;;;;;;;;;45738:14;45754:18;:7;:16;:18::i;:::-;45774:13;45721:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45670:133;45663:140;45312:497;-1:-1:-1;;;45312:497:0:o;46756:122::-;40569:6;;-1:-1:-1;;;;;40569:6:0;23803:10;40716:23;40708:68;;;;-1:-1:-1;;;40708:68:0;;;;;;;:::i;:::-;46839:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;43444:1183::-:0;24260:11;;-1:-1:-1;;;24260:11:0;;;;24259:12;24251:57;;;;-1:-1:-1;;;24251:57:0;;20573:2:1;24251:57:0;;;20555:21:1;;;20592:18;;;20585:30;20651:34;20631:18;;;20624:62;20703:18;;24251:57:0;20371:356:1;24251:57:0;24319:11;:18;;-1:-1:-1;;;;24319:18:0;-1:-1:-1;;;24319:18:0;;;43575:10:::1;::::0;43567:55:::1;;;::::0;-1:-1:-1;;;43567:55:0;;21291:2:1;43567:55:0::1;::::0;::::1;21273:21:1::0;21330:2;21310:18;;;21303:30;21369:27;21349:18;;;21342:55;21414:18;;43567:55:0::1;21089:349:1::0;43567:55:0::1;43629:14;43646:13;38621:7:::0;:14;;38533:110;43646:13:::1;43629:30:::0;-1:-1:-1;43697:13:0::1;42133:3;43709:1;43697:13;:::i;:::-;43674:20;43683:11:::0;43674:6;:20:::1;:::i;:::-;:36;43666:78;;;::::0;-1:-1:-1;;;43666:78:0;;16319:2:1;43666:78:0::1;::::0;::::1;16301:21:1::0;16358:2;16338:18;;;16331:30;16397:31;16377:18;;;16370:59;16446:18;;43666:78:0::1;16117:353:1::0;43666:78:0::1;43782:43;::::0;-1:-1:-1;;43799:10:0::1;6424:2:1::0;6420:15;6416:53;43782:43:0::1;::::0;::::1;6404:66:1::0;-1:-1:-1;;;;;;6500:26:1;;6486:12;;;6479:48;43751:18:0::1;::::0;6543:12:1;;43782:43:0::1;;;;;;;;;;;;43772:54;;;;;;43751:75;;43833:11;43847:50;43866:6;43874:10;;43886;43847:18;:50::i;:::-;43833:64;;43909:6;43901:58;;;::::0;-1:-1:-1;;;43901:58:0;;21645:2:1;43901:58:0::1;::::0;::::1;21627:21:1::0;21684:2;21664:18;;;21657:30;21723:34;21703:18;;;21696:62;-1:-1:-1;;;21774:18:1;;;21767:37;21821:19;;43901:58:0::1;21443:403:1::0;43901:58:0::1;43984:20;::::0;;::::1;44011:9;44008:513;;44118:14;:10:::0;44131:1:::1;44118:14;:::i;:::-;44079:10;44064:26;::::0;;;:14:::1;:26;::::0;;;;:37;:51:::1;::::0;44104:11;;-1:-1:-1;;;44064:37:0;::::1;-1:-1:-1::0;;;;;44064:37:0::1;:51;:::i;:::-;:68;44056:109;;;::::0;-1:-1:-1;;;44056:109:0;;20934:2:1;44056:109:0::1;::::0;::::1;20916:21:1::0;20973:2;20953:18;;;20946:30;21012;20992:18;;;20985:58;21060:18;;44056:109:0::1;20732:352:1::0;44056:109:0::1;44185:10;44170:26;::::0;;;:14:::1;:26;::::0;;;;:61;;44219:11;;44170:26;:37:::1;::::0;:61:::1;::::0;44219:11;;-1:-1:-1;;;44170:61:0;::::1;-1:-1:-1::0;;;;;44170:61:0::1;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;44170:61:0::1;;;;;-1:-1:-1::0;;;;;44170:61:0::1;;;;;;44008:513;;;44327:16;::::0;:20:::1;::::0;44346:1:::1;44327:20;:::i;:::-;44285:10;44270:26;::::0;;;:14:::1;:26;::::0;;;;:40;:54:::1;::::0;44313:11;;-1:-1:-1;;;;;44270:40:0::1;:54;:::i;:::-;:77;44262:116;;;::::0;-1:-1:-1;;;44262:116:0;;13962:2:1;44262:116:0::1;::::0;::::1;13944:21:1::0;14001:2;13981:18;;;13974:30;14040:28;14020:18;;;14013:56;14086:18;;44262:116:0::1;13760:350:1::0;44262:116:0::1;44418:4;::::0;44404:18:::1;::::0;:11;:18:::1;:::i;:::-;44391:9;:31;;44383:64;;;::::0;-1:-1:-1;;;44383:64:0;;13613:2:1;44383:64:0::1;::::0;::::1;13595:21:1::0;13652:2;13632:18;;;13625:30;-1:-1:-1;;;13671:18:1;;;13664:50;13731:18;;44383:64:0::1;13411:344:1::0;44383:64:0::1;44467:10;44452:26;::::0;;;:14:::1;:26;::::0;;;;:64;;44504:11;;44452:26;:64:::1;::::0;44504:11;;-1:-1:-1;;;;;44452:64:0::1;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;44452:64:0::1;;;;;-1:-1:-1::0;;;;;44452:64:0::1;;;;;;44008:513;44535:9;44530:92;44554:11;44550:1;:15;44530:92;;;44581:33;44591:10;44603;44612:1:::0;44603:6;:10:::1;:::i;44581:33::-;44567:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44530:92;;;-1:-1:-1::0;;24360:11:0;:19;;-1:-1:-1;;;;24360:19:0;;;-1:-1:-1;;;;;;43444:1183:0:o;46886:120::-;40569:6;;-1:-1:-1;;;;;40569:6:0;23803:10;40716:23;40708:68;;;;-1:-1:-1;;;40708:68:0;;;;;;;:::i;:::-;46968:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;41396:192::-:0;40569:6;;-1:-1:-1;;;;;40569:6:0;23803:10;40716:23;40708:68;;;;-1:-1:-1;;;40708:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41485:22:0;::::1;41477:73;;;::::0;-1:-1:-1;;;41477:73:0;;11677:2:1;41477:73:0::1;::::0;::::1;11659:21:1::0;11716:2;11696:18;;;11689:30;11755:34;11735:18;;;11728:62;-1:-1:-1;;;11806:18:1;;;11799:36;11852:19;;41477:73:0::1;11475:402:1::0;41477:73:0::1;41561:19;41571:8;41561:9;:19::i;25598:305::-:0;25700:4;-1:-1:-1;;;;;;25737:40:0;;-1:-1:-1;;;25737:40:0;;:105;;-1:-1:-1;;;;;;;25794:48:0;;-1:-1:-1;;;25794:48:0;25737:105;:158;;;-1:-1:-1;;;;;;;;;;11189:40:0;;;25859:36;11080:157;31620:155;31719:7;:14;31685:4;;31709:24;;:58;;;;;31765:1;-1:-1:-1;;;;;31737:30:0;:7;31745;31737:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;31737:16:0;:30;;31702:65;31620:155;-1:-1:-1;;31620:155:0:o;35510:174::-;35585:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35585:29:0;-1:-1:-1;;;;;35585:29:0;;;;;;;;:24;;35639:23;35585:24;35639:14;:23::i;:::-;-1:-1:-1;;;;;35630:46:0;;;;;;;;;;;35510:174;;:::o;31942:348::-;32035:4;32060:16;32068:7;32060;:16::i;:::-;32052:73;;;;-1:-1:-1;;;32052:73:0;;13200:2:1;32052:73:0;;;13182:21:1;13239:2;13219:18;;;13212:30;13278:34;13258:18;;;13251:62;-1:-1:-1;;;13329:18:1;;;13322:42;13381:19;;32052:73:0;12998:408:1;32052:73:0;32136:13;32152:23;32167:7;32152:14;:23::i;:::-;32136:39;;32205:5;-1:-1:-1;;;;;32194:16:0;:7;-1:-1:-1;;;;;32194:16:0;;:51;;;;32238:7;-1:-1:-1;;;;;32214:31:0;:20;32226:7;32214:11;:20::i;:::-;-1:-1:-1;;;;;32214:31:0;;32194:51;:87;;;-1:-1:-1;;;;;;29006:25:0;;;28982:4;29006:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32249:32;32186:96;31942:348;-1:-1:-1;;;;31942:348:0:o;34874:518::-;35033:4;-1:-1:-1;;;;;35006:31:0;:23;35021:7;35006:14;:23::i;:::-;-1:-1:-1;;;;;35006:31:0;;34998:85;;;;-1:-1:-1;;;34998:85:0;;18166:2:1;34998:85:0;;;18148:21:1;18205:2;18185:18;;;18178:30;18244:34;18224:18;;;18217:62;-1:-1:-1;;;18295:18:1;;;18288:39;18344:19;;34998:85:0;17964:405:1;34998:85:0;-1:-1:-1;;;;;35102:16:0;;35094:65;;;;-1:-1:-1;;;35094:65:0;;12441:2:1;35094:65:0;;;12423:21:1;12480:2;12460:18;;;12453:30;12519:34;12499:18;;;12492:62;-1:-1:-1;;;12570:18:1;;;12563:34;12614:19;;35094:65:0;12239:400:1;35094:65:0;35276:29;35293:1;35297:7;35276:8;:29::i;:::-;35337:2;35318:7;35326;35318:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;35318:21:0;-1:-1:-1;;;;;35318:21:0;;;;;;35357:27;;35376:7;;35357:27;;;;;;;;;;35318:16;35357:27;34874:518;;;:::o;41596:173::-;41671:6;;;-1:-1:-1;;;;;41688:17:0;;;-1:-1:-1;;;;;;41688:17:0;;;;;;;41721:40;;41671:6;;;41688:17;41671:6;;41721:40;;41652:16;;41721:40;41641:128;41596:173;:::o;2207:190::-;2332:4;2385;2356:25;2369:5;2376:4;2356:12;:25::i;:::-;:33;;2207:190;-1:-1:-1;;;;2207:190:0:o;32632:110::-;32708:26;32718:2;32722:7;32708:26;;;;;;;;;;;;:9;:26::i;30992:315::-;31149:28;31159:4;31165:2;31169:7;31149:9;:28::i;:::-;31196:48;31219:4;31225:2;31229:7;31238:5;31196:22;:48::i;:::-;31188:111;;;;-1:-1:-1;;;31188:111:0;;;;;;;:::i;42764:102::-;42824:13;42853:7;42846:14;;;;;:::i;11555:723::-;11611:13;11832:10;11828:53;;-1:-1:-1;;11859:10:0;;;;;;;;;;;;-1:-1:-1;;;11859:10:0;;;;;11555:723::o;11828:53::-;11906:5;11891:12;11947:78;11954:9;;11947:78;;11980:8;;;;:::i;:::-;;-1:-1:-1;12003:10:0;;-1:-1:-1;12011:2:0;12003:10;;:::i;:::-;;;11947:78;;;12035:19;12067:6;12057:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12057:17:0;;12035:39;;12085:154;12092:10;;12085:154;;12119:11;12129:1;12119:11;;:::i;:::-;;-1:-1:-1;12188:10:0;12196:2;12188:5;:10;:::i;:::-;12175:24;;:2;:24;:::i;:::-;12162:39;;12145:6;12152;12145:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;12145:56:0;;;;;;;;-1:-1:-1;12216:11:0;12225:2;12216:11;;:::i;:::-;;;12085:154;;2759:675;2842:7;2885:4;2842:7;2900:497;2924:5;:12;2920:1;:16;2900:497;;;2958:20;2981:5;2987:1;2981:8;;;;;;;;:::i;:::-;;;;;;;2958:31;;3024:12;3008;:28;3004:382;;3510:13;3560:15;;;3596:4;3589:15;;;3643:4;3627:21;;3136:57;;3004:382;;;3510:13;3560:15;;;3596:4;3589:15;;;3643:4;3627:21;;3313:57;;3004:382;-1:-1:-1;2938:3:0;;;;:::i;:::-;;;;2900:497;;32969:321;33099:18;33105:2;33109:7;33099:5;:18::i;:::-;33150:54;33181:1;33185:2;33189:7;33198:5;33150:22;:54::i;:::-;33128:154;;;;-1:-1:-1;;;33128:154:0;;;;;;;:::i;36249:799::-;36404:4;-1:-1:-1;;;;;36425:13:0;;14403:20;14451:8;36421:620;;36461:72;;-1:-1:-1;;;36461:72:0;;-1:-1:-1;;;;;36461:36:0;;;;;:72;;23803:10;;36512:4;;36518:7;;36527:5;;36461:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36461:72:0;;;;;;;;-1:-1:-1;;36461:72:0;;;;;;;;;;;;:::i;:::-;;;36457:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36703:13:0;;36699:272;;36746:60;;-1:-1:-1;;;36746:60:0;;;;;;;:::i;36699:272::-;36921:6;36915:13;36906:6;36902:2;36898:15;36891:38;36457:529;-1:-1:-1;;;;;;36584:51:0;-1:-1:-1;;;36584:51:0;;-1:-1:-1;36577:58:0;;36421:620;-1:-1:-1;37025:4:0;36249:799;;;;;;:::o;33626:348::-;-1:-1:-1;;;;;33706:16:0;;33698:61;;;;-1:-1:-1;;;33698:61:0;;16677:2:1;33698:61:0;;;16659:21:1;;;16696:18;;;16689:30;16755:34;16735:18;;;16728:62;16807:18;;33698:61:0;16475:356:1;33698:61:0;33779:16;33787:7;33779;:16::i;:::-;33778:17;33770:58;;;;-1:-1:-1;;;33770:58:0;;12084:2:1;33770:58:0;;;12066:21:1;12123:2;12103:18;;;12096:30;12162;12142:18;;;12135:58;12210:18;;33770:58:0;11882:352:1;33770:58:0;33899:7;:16;;;;;;;-1:-1:-1;33899:16:0;;;;;;;-1:-1:-1;;;;;;33899:16:0;-1:-1:-1;;;;;33899:16:0;;;;;;;;33933:33;;33958:7;;-1:-1:-1;33933:33:0;;-1:-1:-1;;33933:33:0;33626:348;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;813:18;809:2;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:220::-;1373:5;1426:3;1419:4;1411:6;1407:17;1403:27;1393:55;;1444:1;1441;1434:12;1393:55;1466:79;1541:3;1532:6;1519:20;1512:4;1504:6;1500:17;1466:79;:::i;1556:186::-;1615:6;1668:2;1656:9;1647:7;1643:23;1639:32;1636:52;;;1684:1;1681;1674:12;1636:52;1707:29;1726:9;1707:29;:::i;1747:260::-;1815:6;1823;1876:2;1864:9;1855:7;1851:23;1847:32;1844:52;;;1892:1;1889;1882:12;1844:52;1915:29;1934:9;1915:29;:::i;:::-;1905:39;;1963:38;1997:2;1986:9;1982:18;1963:38;:::i;:::-;1953:48;;1747:260;;;;;:::o;2012:328::-;2089:6;2097;2105;2158:2;2146:9;2137:7;2133:23;2129:32;2126:52;;;2174:1;2171;2164:12;2126:52;2197:29;2216:9;2197:29;:::i;:::-;2187:39;;2245:38;2279:2;2268:9;2264:18;2245:38;:::i;:::-;2235:48;;2330:2;2319:9;2315:18;2302:32;2292:42;;2012:328;;;;;:::o;2345:537::-;2440:6;2448;2456;2464;2517:3;2505:9;2496:7;2492:23;2488:33;2485:53;;;2534:1;2531;2524:12;2485:53;2557:29;2576:9;2557:29;:::i;:::-;2547:39;;2605:38;2639:2;2628:9;2624:18;2605:38;:::i;:::-;2595:48;;2690:2;2679:9;2675:18;2662:32;2652:42;;2745:2;2734:9;2730:18;2717:32;2772:18;2764:6;2761:30;2758:50;;;2804:1;2801;2794:12;2758:50;2827:49;2868:7;2859:6;2848:9;2844:22;2827:49;:::i;:::-;2817:59;;;2345:537;;;;;;;:::o;2887:347::-;2952:6;2960;3013:2;3001:9;2992:7;2988:23;2984:32;2981:52;;;3029:1;3026;3019:12;2981:52;3052:29;3071:9;3052:29;:::i;:::-;3042:39;;3131:2;3120:9;3116:18;3103:32;3178:5;3171:13;3164:21;3157:5;3154:32;3144:60;;3200:1;3197;3190:12;3144:60;3223:5;3213:15;;;2887:347;;;;;:::o;3239:254::-;3307:6;3315;3368:2;3356:9;3347:7;3343:23;3339:32;3336:52;;;3384:1;3381;3374:12;3336:52;3407:29;3426:9;3407:29;:::i;:::-;3397:39;3483:2;3468:18;;;;3455:32;;-1:-1:-1;;;3239:254:1:o;3498:583::-;3599:6;3607;3615;3668:2;3656:9;3647:7;3643:23;3639:32;3636:52;;;3684:1;3681;3674:12;3636:52;3724:9;3711:23;3757:18;3749:6;3746:30;3743:50;;;3789:1;3786;3779:12;3743:50;3812:61;3865:7;3856:6;3845:9;3841:22;3812:61;:::i;:::-;3802:71;-1:-1:-1;;3923:2:1;3908:18;;3895:32;-1:-1:-1;;;;;;3956:25:1;;3946:36;;3936:64;;3996:1;3993;3986:12;3936:64;3498:583;;4019:5;;-1:-1:-1;;;4071:2:1;4056:18;;;;4043:32;;3498:583::o;4086:567::-;4188:6;4196;4249:2;4237:9;4228:7;4224:23;4220:32;4217:52;;;4265:1;4262;4255:12;4217:52;4305:9;4292:23;4334:18;4375:2;4367:6;4364:14;4361:34;;;4391:1;4388;4381:12;4361:34;4414:61;4467:7;4458:6;4447:9;4443:22;4414:61;:::i;:::-;4404:71;;4528:2;4517:9;4513:18;4500:32;4484:48;;4557:2;4547:8;4544:16;4541:36;;;4573:1;4570;4563:12;4541:36;;4596:51;4639:7;4628:8;4617:9;4613:24;4596:51;:::i;:::-;4586:61;;;4086:567;;;;;:::o;4658:180::-;4717:6;4770:2;4758:9;4749:7;4745:23;4741:32;4738:52;;;4786:1;4783;4776:12;4738:52;-1:-1:-1;4809:23:1;;4658:180;-1:-1:-1;4658:180:1:o;4843:245::-;4901:6;4954:2;4942:9;4933:7;4929:23;4925:32;4922:52;;;4970:1;4967;4960:12;4922:52;5009:9;4996:23;5028:30;5052:5;5028:30;:::i;5093:249::-;5162:6;5215:2;5203:9;5194:7;5190:23;5186:32;5183:52;;;5231:1;5228;5221:12;5183:52;5263:9;5257:16;5282:30;5306:5;5282:30;:::i;5347:450::-;5416:6;5469:2;5457:9;5448:7;5444:23;5440:32;5437:52;;;5485:1;5482;5475:12;5437:52;5525:9;5512:23;5558:18;5550:6;5547:30;5544:50;;;5590:1;5587;5580:12;5544:50;5613:22;;5666:4;5658:13;;5654:27;-1:-1:-1;5644:55:1;;5695:1;5692;5685:12;5644:55;5718:73;5783:7;5778:2;5765:16;5760:2;5756;5752:11;5718:73;:::i;5987:257::-;6028:3;6066:5;6060:12;6093:6;6088:3;6081:19;6109:63;6165:6;6158:4;6153:3;6149:14;6142:4;6135:5;6131:16;6109:63;:::i;:::-;6226:2;6205:15;-1:-1:-1;;6201:29:1;6192:39;;;;6233:4;6188:50;;5987:257;-1:-1:-1;;5987:257:1:o;6566:395::-;6778:26;6774:31;6765:6;6761:2;6757:15;6753:53;6748:3;6741:66;6723:3;6836:6;6830:13;6852:62;6907:6;6902:2;6897:3;6893:12;6886:4;6878:6;6874:17;6852:62;:::i;:::-;6934:16;;;;6952:2;6930:25;;6566:395;-1:-1:-1;;;6566:395:1:o;6966:1527::-;7190:3;7228:6;7222:13;7254:4;7267:51;7311:6;7306:3;7301:2;7293:6;7289:15;7267:51;:::i;:::-;7381:13;;7340:16;;;;7403:55;7381:13;7340:16;7425:15;;;7403:55;:::i;:::-;7547:13;;7480:20;;;7520:1;;7607;7629:18;;;;7682;;;;7709:93;;7787:4;7777:8;7773:19;7761:31;;7709:93;7850:2;7840:8;7837:16;7817:18;7814:40;7811:167;;;-1:-1:-1;;;7877:33:1;;7933:4;7930:1;7923:15;7963:4;7884:3;7951:17;7811:167;7994:18;8021:110;;;;8145:1;8140:328;;;;7987:481;;8021:110;-1:-1:-1;;8056:24:1;;8042:39;;8101:20;;;;-1:-1:-1;8021:110:1;;8140:328;23066:1;23059:14;;;23103:4;23090:18;;8235:1;8249:169;8263:8;8260:1;8257:15;8249:169;;;8345:14;;8330:13;;;8323:37;8388:16;;;;8280:10;;8249:169;;;8253:3;;8449:8;8442:5;8438:20;8431:27;;7987:481;-1:-1:-1;8484:3:1;;6966:1527;-1:-1:-1;;;;;;;;;;;6966:1527:1:o;8916:488::-;-1:-1:-1;;;;;9185:15:1;;;9167:34;;9237:15;;9232:2;9217:18;;9210:43;9284:2;9269:18;;9262:34;;;9332:3;9327:2;9312:18;;9305:31;;;9110:4;;9353:45;;9378:19;;9370:6;9353:45;:::i;9409:632::-;9580:2;9632:21;;;9702:13;;9605:18;;;9724:22;;;9551:4;;9580:2;9803:15;;;;9777:2;9762:18;;;9551:4;9846:169;9860:6;9857:1;9854:13;9846:169;;;9921:13;;9909:26;;9990:15;;;;9955:12;;;;9882:1;9875:9;9846:169;;;-1:-1:-1;10032:3:1;;9409:632;-1:-1:-1;;;;;;9409:632:1:o;10420:219::-;10569:2;10558:9;10551:21;10532:4;10589:44;10629:2;10618:9;10614:18;10606:6;10589:44;:::i;10644:407::-;10846:2;10828:21;;;10885:2;10865:18;;;10858:30;10924:34;10919:2;10904:18;;10897:62;-1:-1:-1;;;10990:2:1;10975:18;;10968:41;11041:3;11026:19;;10644:407::o;11056:414::-;11258:2;11240:21;;;11297:2;11277:18;;;11270:30;11336:34;11331:2;11316:18;;11309:62;-1:-1:-1;;;11402:2:1;11387:18;;11380:48;11460:3;11445:19;;11056:414::o;17603:356::-;17805:2;17787:21;;;17824:18;;;17817:30;17883:34;17878:2;17863:18;;17856:62;17950:2;17935:18;;17603:356::o;19540:413::-;19742:2;19724:21;;;19781:2;19761:18;;;19754:30;19820:34;19815:2;19800:18;;19793:62;-1:-1:-1;;;19886:2:1;19871:18;;19864:47;19943:3;19928:19;;19540:413::o;22713:275::-;22784:2;22778:9;22849:2;22830:13;;-1:-1:-1;;22826:27:1;22814:40;;22884:18;22869:34;;22905:22;;;22866:62;22863:88;;;22931:18;;:::i;:::-;22967:2;22960:22;22713:275;;-1:-1:-1;22713:275:1:o;23119:253::-;23159:3;-1:-1:-1;;;;;23248:2:1;23245:1;23241:10;23278:2;23275:1;23271:10;23309:3;23305:2;23301:12;23296:3;23293:21;23290:47;;;23317:18;;:::i;:::-;23353:13;;23119:253;-1:-1:-1;;;;23119:253:1:o;23377:128::-;23417:3;23448:1;23444:6;23441:1;23438:13;23435:39;;;23454:18;;:::i;:::-;-1:-1:-1;23490:9:1;;23377:128::o;23510:120::-;23550:1;23576;23566:35;;23581:18;;:::i;:::-;-1:-1:-1;23615:9:1;;23510:120::o;23635:168::-;23675:7;23741:1;23737;23733:6;23729:14;23726:1;23723:21;23718:1;23711:9;23704:17;23700:45;23697:71;;;23748:18;;:::i;:::-;-1:-1:-1;23788:9:1;;23635:168::o;23808:125::-;23848:4;23876:1;23873;23870:8;23867:34;;;23881:18;;:::i;:::-;-1:-1:-1;23918:9:1;;23808:125::o;23938:258::-;24010:1;24020:113;24034:6;24031:1;24028:13;24020:113;;;24110:11;;;24104:18;24091:11;;;24084:39;24056:2;24049:10;24020:113;;;24151:6;24148:1;24145:13;24142:48;;;-1:-1:-1;;24186:1:1;24168:16;;24161:27;23938:258::o;24201:380::-;24280:1;24276:12;;;;24323;;;24344:61;;24398:4;24390:6;24386:17;24376:27;;24344:61;24451:2;24443:6;24440:14;24420:18;24417:38;24414:161;;;24497:10;24492:3;24488:20;24485:1;24478:31;24532:4;24529:1;24522:15;24560:4;24557:1;24550:15;24414:161;;24201:380;;;:::o;24586:135::-;24625:3;-1:-1:-1;;24646:17:1;;24643:43;;;24666:18;;:::i;:::-;-1:-1:-1;24713:1:1;24702:13;;24586:135::o;24726:112::-;24758:1;24784;24774:35;;24789:18;;:::i;:::-;-1:-1:-1;24823:9:1;;24726:112::o;24843:127::-;24904:10;24899:3;24895:20;24892:1;24885:31;24935:4;24932:1;24925:15;24959:4;24956:1;24949:15;24975:127;25036:10;25031:3;25027:20;25024:1;25017:31;25067:4;25064:1;25057:15;25091:4;25088:1;25081:15;25107:127;25168:10;25163:3;25159:20;25156:1;25149:31;25199:4;25196:1;25189:15;25223:4;25220:1;25213:15;25239:127;25300:10;25295:3;25291:20;25288:1;25281:31;25331:4;25328:1;25321:15;25355:4;25352:1;25345:15;25371:131;-1:-1:-1;;;;;;25445:32:1;;25435:43;;25425:71;;25492:1;25489;25482:12

Swarm Source

ipfs://f83bef1a9140d4c49af68fe7bed08876c0d506d6676290a19bf2514afc1afa39
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.