ETH Price: $3,039.63 (+0.52%)
Gas: 3 Gwei

Token

Genesis Blocks (GEN)
 

Overview

Max Total Supply

2,500 GEN

Holders

1,086

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
delso.eth
Balance
8 GEN
0x641C2fEF13fb417dB01EF955a54904a6400F8b07
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Genesis is a collection of 2500 evolving unique NFTs. Each transfer generates a new line. Holders will benefit from the common fund and vote on investments. They will also get early access on upcoming drops. Check our website and whitepaper for more information.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GenesisBlocks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-15
*/

// SPDX-License-Identifier: MIT
// 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;
    }
}


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

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

    bool private _paused;

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

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

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

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

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

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

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


// 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/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;


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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: Genesis_blocks.sol
pragma solidity ^0.8.0;
contract GenesisBlocks is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 2500;
    uint256 public constant PRICE = 0.05 ether;
    uint256 public constant MAX_MINT = 10;
    uint256 public constant PRESALE_MAX_MINT = 5;
    uint256 public constant MAX_WALLET = 50;
    uint256 public constant RESERVED_NFTS = 30;
    address public constant genesisAddress = 0xa65159C939FbED795164bb40F7507d9E5D54Ff22;

    uint256 public reservedClaimed;

    uint256 public numTokensMinted;

    string public baseTokenURI;

    bool public publicSaleStarted;
    bool public presaleStarted;

    mapping(address => bool) private _presaleEligible;
    mapping(address => uint256) private _totalClaimed;

    event BaseURIChanged(string baseURI);
    event PresaleMint(address minter, uint256 amountOfTokens);
    event PublicSaleMint(address minter, uint256 amountOfTokens);

    modifier whenPresaleStarted() {
        require(presaleStarted, "Presale has not started");
        _;
    }

    modifier whenPublicSaleStarted() {
        require(publicSaleStarted, "Public sale has not started");
        _;
    }

    constructor(string memory baseURI) ERC721("Genesis Blocks", "GEN") {
        baseTokenURI = baseURI;
    }

    function claimReserved(address recipient, uint256 amount) external onlyOwner {
        require(reservedClaimed != RESERVED_NFTS, "Already have claimed all reserved tokens");
        require(reservedClaimed + amount <= RESERVED_NFTS, "Minting would exceed max reserved tokens");
        require(recipient != address(0), "Cannot add null address");
        require(totalSupply() < MAX_SUPPLY, "All tokens have been minted");
        require(totalSupply() + amount <= MAX_SUPPLY, "Minting would exceed max supply");

        uint256 _nextTokenId = numTokensMinted + 1;

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(recipient, _nextTokenId + i);
        }
        numTokensMinted += amount;
        reservedClaimed += amount;
    }
    
    function claimMultipleReserved(address[] calldata addresses) external onlyOwner{
        require(reservedClaimed != RESERVED_NFTS, "Already have claimed all reserved tokens");
        for (uint256 i = 0; i < addresses.length; i++) {
            uint256 _nextTokenId = numTokensMinted + 1;
            require(reservedClaimed + 1 <= RESERVED_NFTS, "Minting would exceed max reserved tokens");
            require(addresses[i] != address(0), "Cannot add null address");
            require(totalSupply() < MAX_SUPPLY, "All tokens have been minted");
            require(totalSupply() + 1 <= MAX_SUPPLY, "Minting would exceed max supply");
            _safeMint(addresses[i], _nextTokenId);
            numTokensMinted += 1;
            reservedClaimed += 1;
        }
    }
    
  
    function addToPresale(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");

            _presaleEligible[addresses[i]] = true;

            _totalClaimed[addresses[i]] > 0 ? _totalClaimed[addresses[i]] : 0;
        }
    }

    function checkPresaleEligiblity(address addr) external view returns (bool) {
        return _presaleEligible[addr];
    }

    function amountClaimedBy(address owner) external view returns (uint256) {
        require(owner != address(0), "Cannot add null address");

        return _totalClaimed[owner];
    }

    function mintPresale(uint256 amountOfTokens) external payable whenPresaleStarted {
        require(_presaleEligible[msg.sender], "You are not eligible for the presale");
        require(totalSupply() < MAX_SUPPLY, "All tokens have been minted");
        require(amountOfTokens <= PRESALE_MAX_MINT, "Cannot purchase this many tokens during presale");
        require(totalSupply() + amountOfTokens <= MAX_SUPPLY, "Minting would exceed max supply");
        require(_totalClaimed[msg.sender] + amountOfTokens <= PRESALE_MAX_MINT, "Purchase exceeds max allowed");
        require(amountOfTokens > 0, "Must mint at least one token");
        require(PRICE * amountOfTokens == msg.value, "ETH amount is incorrect");

        for (uint256 i = 0; i < amountOfTokens; i++) {
            uint256 tokenId = numTokensMinted + 1;

            numTokensMinted += 1;
            _totalClaimed[msg.sender] += 1;
            _safeMint(msg.sender, tokenId);
        }

        emit PresaleMint(msg.sender, amountOfTokens);
    }

    function mint(uint256 amountOfTokens) external payable whenPublicSaleStarted {
        require(totalSupply() < MAX_SUPPLY, "All tokens have been minted");
        require(amountOfTokens <= MAX_MINT, "Cannot purchase this many tokens in a transaction");
        require(totalSupply() + amountOfTokens <= MAX_SUPPLY, "Minting would exceed max supply");
        require(_totalClaimed[msg.sender] + amountOfTokens <= MAX_WALLET, "Purchase exceeds max allowed per address");
        require(amountOfTokens > 0, "Must mint at least one token");
        require(PRICE * amountOfTokens == msg.value, "ETH amount is incorrect");
        require( msg.sender == tx.origin, "No contracts!" );
        
        for (uint256 i = 0; i < amountOfTokens; i++) {
            uint256 tokenId = numTokensMinted + 1;

            numTokensMinted += 1;
            _totalClaimed[msg.sender] += 1;
            _safeMint(msg.sender, tokenId);
        }

        emit PublicSaleMint(msg.sender, amountOfTokens);
    }

    function togglePresaleStarted() external onlyOwner {
        presaleStarted = !presaleStarted;
    }

    function togglePublicSaleStarted() external onlyOwner {
        publicSaleStarted = !publicSaleStarted;
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
        emit BaseURIChanged(baseURI);
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        _widthdraw(genesisAddress, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{ value: _amount }("");
        require(success, "Failed to widthdraw Ether");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"PublicSaleMint","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":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_NFTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"amountClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkPresaleEligiblity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"claimMultipleReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesisAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedClaimed","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":[],"name":"togglePresaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620037a4380380620037a48339810160408190526200003491620001d1565b604080518082018252600e81526d47656e6573697320426c6f636b7360901b60208083019182528351808501909452600384526223a2a760e91b90840152815191929162000085916000916200012b565b5080516200009b9060019060208401906200012b565b505050620000b8620000b2620000d560201b60201c565b620000d9565b8051620000cd90600d9060208401906200012b565b505062000300565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013990620002ad565b90600052602060002090601f0160209004810192826200015d5760008555620001a8565b82601f106200017857805160ff1916838001178555620001a8565b82800160010185558215620001a8579182015b82811115620001a85782518255916020019190600101906200018b565b50620001b6929150620001ba565b5090565b5b80821115620001b65760008155600101620001bb565b60006020808385031215620001e557600080fd5b82516001600160401b0380821115620001fd57600080fd5b818501915085601f8301126200021257600080fd5b815181811115620002275762000227620002ea565b604051601f8201601f19908116603f01168101908382118183101715620002525762000252620002ea565b8160405282815288868487010111156200026b57600080fd5b600093505b828410156200028f578484018601518185018701529285019262000270565b82841115620002a15760008684830101525b98975050505050505050565b600181811c90821680620002c257607f821691505b60208210811415620002e457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61349480620003106000396000f3fe6080604052600436106102d15760003560e01c80636352211e11610179578063a2e91477116100d6578063df7787a41161008a578063f0292a0311610064578063f0292a0314610794578063f2fde38b146107a9578063f759867a146107c957600080fd5b8063df7787a414610721578063e985e9c514610736578063ed1fc2a21461077f57600080fd5b8063b88d4fde116100bb578063b88d4fde146106cc578063c87b56dd146106ec578063d547cfb71461070c57600080fd5b8063a2e9147714610692578063aef6ee1f146106ac57600080fd5b80638d859f3e1161012d57806395d89b411161011257806395d89b411461064a578063a0712d681461065f578063a22cb4651461067257600080fd5b80638d859f3e146106115780638da5cb5b1461062c57600080fd5b8063715018a61161015e578063715018a6146105d2578063853828b6146105e75780638a53388a146105fc57600080fd5b80636352211e1461059257806370a08231146105b257600080fd5b8063245100431161023257806342842e0e116101e6578063549527c3116101c0578063549527c31461053557806355f804b31461054a5780636065fb331461056a57600080fd5b806342842e0e146104d557806344f81194146104f55780634f6ccce71461051557600080fd5b80632f814575116102175780632f8145751461049457806332cb6b0c146104a95780634230baee146104bf57600080fd5b8063245100431461045e5780632f745c591461047457600080fd5b806318160ddd116102895780631978f4691161026e5780631978f469146103fe5780631b5757f21461041e57806323b872dd1461043e57600080fd5b806318160ddd146103a6578063191f65ac146103c557600080fd5b806306fdde03116102ba57806306fdde031461032a578063081812fc1461034c578063095ea7b31461038457600080fd5b806301ffc9a7146102d657806304549d6f1461030b575b600080fd5b3480156102e257600080fd5b506102f66102f136600461317c565b6107dc565b60405190151581526020015b60405180910390f35b34801561031757600080fd5b50600e546102f690610100900460ff1681565b34801561033657600080fd5b5061033f610807565b60405161030291906132af565b34801561035857600080fd5b5061036c6103673660046131ff565b610899565b6040516001600160a01b039091168152602001610302565b34801561039057600080fd5b506103a461039f3660046130dd565b610933565b005b3480156103b257600080fd5b506008545b604051908152602001610302565b3480156103d157600080fd5b506102f66103e0366004612f9b565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561040a57600080fd5b506103b7610419366004612f9b565b610a49565b34801561042a57600080fd5b506103a46104393660046130dd565b610abd565b34801561044a57600080fd5b506103a4610459366004612fe9565b610d65565b34801561046a57600080fd5b506103b7600b5481565b34801561048057600080fd5b506103b761048f3660046130dd565b610dec565b3480156104a057600080fd5b506103a4610e94565b3480156104b557600080fd5b506103b76109c481565b3480156104cb57600080fd5b506103b7600c5481565b3480156104e157600080fd5b506103a46104f0366004612fe9565b610ef0565b34801561050157600080fd5b506103a4610510366004613107565b610f0b565b34801561052157600080fd5b506103b76105303660046131ff565b6111fa565b34801561054157600080fd5b506103b7600581565b34801561055657600080fd5b506103a46105653660046131b6565b61129e565b34801561057657600080fd5b5061036c73a65159c939fbed795164bb40f7507d9e5d54ff2281565b34801561059e57600080fd5b5061036c6105ad3660046131ff565b611334565b3480156105be57600080fd5b506103b76105cd366004612f9b565b6113bf565b3480156105de57600080fd5b506103a4611459565b3480156105f357600080fd5b506103a46114ad565b34801561060857600080fd5b506103b7601e81565b34801561061d57600080fd5b506103b766b1a2bc2ec5000081565b34801561063857600080fd5b50600a546001600160a01b031661036c565b34801561065657600080fd5b5061033f611564565b6103a461066d3660046131ff565b611573565b34801561067e57600080fd5b506103a461068d3660046130a1565b61193a565b34801561069e57600080fd5b50600e546102f69060ff1681565b3480156106b857600080fd5b506103a46106c7366004613107565b6119ff565b3480156106d857600080fd5b506103a46106e7366004613025565b611be1565b3480156106f857600080fd5b5061033f6107073660046131ff565b611c6f565b34801561071857600080fd5b5061033f611d58565b34801561072d57600080fd5b506103b7603281565b34801561074257600080fd5b506102f6610751366004612fb6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078b57600080fd5b506103a4611de6565b3480156107a057600080fd5b506103b7600a81565b3480156107b557600080fd5b506103a46107c4366004612f9b565b611e4b565b6103a46107d73660046131ff565b611f18565b60006001600160e01b0319821663780e9d6360e01b14806108015750610801826122da565b92915050565b60606000805461081690613350565b80601f016020809104026020016040519081016040528092919081815260200182805461084290613350565b801561088f5780601f106108645761010080835404028352916020019161088f565b820191906000526020600020905b81548152906001019060200180831161087257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109175760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061093e82611334565b9050806001600160a01b0316836001600160a01b031614156109ac5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161090e565b336001600160a01b03821614806109c857506109c88133610751565b610a3a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161090e565b610a44838361232a565b505050565b60006001600160a01b038216610aa15760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015260640161090e565b506001600160a01b031660009081526010602052604090205490565b600a546001600160a01b03163314610b055760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b601e600b541415610b695760405162461bcd60e51b815260206004820152602860248201527f416c7265616479206861766520636c61696d656420616c6c20726573657276656044820152676420746f6b656e7360c01b606482015260840161090e565b601e81600b54610b7991906132c2565b1115610bd85760405162461bcd60e51b815260206004820152602860248201527f4d696e74696e6720776f756c6420657863656564206d617820726573657276656044820152676420746f6b656e7360c01b606482015260840161090e565b6001600160a01b038216610c2e5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015260640161090e565b6109c4610c3a60085490565b10610c875760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161090e565b6109c481610c9460085490565b610c9e91906132c2565b1115610cec5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604482015260640161090e565b6000600c546001610cfd91906132c2565b905060005b82811015610d2f57610d1d84610d1883856132c2565b612398565b80610d278161338b565b915050610d02565b5081600c6000828254610d4291906132c2565b9250508190555081600b6000828254610d5b91906132c2565b9091555050505050565b610d6f33826123b6565b610de15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161090e565b610a448383836124ad565b6000610df7836113bf565b8210610e6b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161090e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610edc5760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b600e805460ff19811660ff90911615179055565b610a4483838360405180602001604052806000815250611be1565b600a546001600160a01b03163314610f535760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b601e600b541415610fb75760405162461bcd60e51b815260206004820152602860248201527f416c7265616479206861766520636c61696d656420616c6c20726573657276656044820152676420746f6b656e7360c01b606482015260840161090e565b60005b81811015610a44576000600c546001610fd391906132c2565b9050601e600b546001610fe691906132c2565b11156110455760405162461bcd60e51b815260206004820152602860248201527f4d696e74696e6720776f756c6420657863656564206d617820726573657276656044820152676420746f6b656e7360c01b606482015260840161090e565b6000848484818110611059576110596133fc565b905060200201602081019061106e9190612f9b565b6001600160a01b031614156110c55760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015260640161090e565b6109c46110d160085490565b1061111e5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161090e565b6109c461112a60085490565b6111359060016132c2565b11156111835760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604482015260640161090e565b6111b3848484818110611198576111986133fc565b90506020020160208101906111ad9190612f9b565b82612398565b6001600c60008282546111c691906132c2565b925050819055506001600b60008282546111e091906132c2565b909155508291506111f290508161338b565b915050610fba565b600061120560085490565b82106112795760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161090e565b6008828154811061128c5761128c6133fc565b90600052602060002001549050919050565b600a546001600160a01b031633146112e65760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b80516112f990600d906020840190612e70565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68160405161132991906132af565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806108015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161090e565b60006001600160a01b03821661143d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161090e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114a15760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b6114ab600061266c565b565b600a546001600160a01b031633146114f55760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b47806115435760405162461bcd60e51b815260206004820152601360248201527f496e737566666963656e742062616c616e636500000000000000000000000000604482015260640161090e565b61156173a65159c939fbed795164bb40f7507d9e5d54ff22476126be565b50565b60606001805461081690613350565b600e5460ff166115c55760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f7420737461727465640000000000604482015260640161090e565b6109c46115d160085490565b1061161e5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161090e565b600a8111156116955760405162461bcd60e51b815260206004820152603160248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360448201527f20696e2061207472616e73616374696f6e000000000000000000000000000000606482015260840161090e565b6109c4816116a260085490565b6116ac91906132c2565b11156116fa5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604482015260640161090e565b336000908152601060205260409020546032906117189083906132c2565b111561178c5760405162461bcd60e51b815260206004820152602860248201527f50757263686173652065786365656473206d617820616c6c6f7765642070657260448201527f2061646472657373000000000000000000000000000000000000000000000000606482015260840161090e565b600081116117dc5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000604482015260640161090e565b346117ee8266b1a2bc2ec500006132ee565b1461183b5760405162461bcd60e51b815260206004820152601760248201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604482015260640161090e565b33321461188a5760405162461bcd60e51b815260206004820152600d60248201527f4e6f20636f6e7472616374732100000000000000000000000000000000000000604482015260640161090e565b60005b81811015611903576000600c5460016118a691906132c2565b90506001600c60008282546118bb91906132c2565b90915550503360009081526010602052604081208054600192906118e09084906132c2565b909155506118f090503382612398565b50806118fb8161338b565b91505061188d565b5060408051338152602081018390527f239739eec2dbaccb604ff1de6462a5eccd5f3148924696dd88f04d636ff582b59101611329565b6001600160a01b0382163314156119935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161090e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a475760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b60005b81811015610a44576000838383818110611a6657611a666133fc565b9050602002016020810190611a7b9190612f9b565b6001600160a01b03161415611ad25760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015260640161090e565b6001600f6000858585818110611aea57611aea6133fc565b9050602002016020810190611aff9190612f9b565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601081858585818110611b3f57611b3f6133fc565b9050602002016020810190611b549190612f9b565b6001600160a01b03166001600160a01b031681526020019081526020016000205411611b81576000611bce565b60106000848484818110611b9757611b976133fc565b9050602002016020810190611bac9190612f9b565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080611bd98161338b565b915050611a4a565b611beb33836123b6565b611c5d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161090e565b611c6984848484612761565b50505050565b6000818152600260205260409020546060906001600160a01b0316611cfc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161090e565b6000611d066127df565b90506000815111611d265760405180602001604052806000815250611d51565b80611d30846127ee565b604051602001611d41929190613244565b6040516020818303038152906040525b9392505050565b600d8054611d6590613350565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9190613350565b8015611dde5780601f10611db357610100808354040283529160200191611dde565b820191906000526020600020905b815481529060010190602001808311611dc157829003601f168201915b505050505081565b600a546001600160a01b03163314611e2e5760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b600e805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314611e935760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b6001600160a01b038116611f0f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161090e565b6115618161266c565b600e54610100900460ff16611f6f5760405162461bcd60e51b815260206004820152601760248201527f50726573616c6520686173206e6f742073746172746564000000000000000000604482015260640161090e565b336000908152600f602052604090205460ff16611fda5760405162461bcd60e51b8152602060048201526024808201527f596f7520617265206e6f7420656c696769626c6520666f72207468652070726560448201526373616c6560e01b606482015260840161090e565b6109c4611fe660085490565b106120335760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161090e565b60058111156120aa5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360448201527f20647572696e672070726573616c650000000000000000000000000000000000606482015260840161090e565b6109c4816120b760085490565b6120c191906132c2565b111561210f5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604482015260640161090e565b3360009081526010602052604090205460059061212d9083906132c2565b111561217b5760405162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604482015260640161090e565b600081116121cb5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000604482015260640161090e565b346121dd8266b1a2bc2ec500006132ee565b1461222a5760405162461bcd60e51b815260206004820152601760248201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604482015260640161090e565b60005b818110156122a3576000600c54600161224691906132c2565b90506001600c600082825461225b91906132c2565b90915550503360009081526010602052604081208054600192906122809084906132c2565b9091555061229090503382612398565b508061229b8161338b565b91505061222d565b5060408051338152602081018390527ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a39101611329565b60006001600160e01b031982166380ac58cd60e01b148061230b57506001600160e01b03198216635b5e139f60e01b145b8061080157506301ffc9a760e01b6001600160e01b0319831614610801565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061235f82611334565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6123b2828260405180602001604052806000815250612904565b5050565b6000818152600260205260408120546001600160a01b031661242f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090e565b600061243a83611334565b9050806001600160a01b0316846001600160a01b031614806124755750836001600160a01b031661246a84610899565b6001600160a01b0316145b806124a557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124c082611334565b6001600160a01b03161461253c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161090e565b6001600160a01b03821661259e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161090e565b6125a9838383612982565b6125b460008261232a565b6001600160a01b03831660009081526003602052604081208054600192906125dd90849061330d565b90915550506001600160a01b038216600090815260036020526040812080546001929061260b9084906132c2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461270b576040519150601f19603f3d011682016040523d82523d6000602084013e612710565b606091505b5050905080610a445760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f2077696474686472617720457468657200000000000000604482015260640161090e565b61276c8484846124ad565b61277884848484612a3a565b611c695760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161090e565b6060600d805461081690613350565b6060816128125750506040805180820190915260018152600360fc1b602082015290565b8160005b811561283c57806128268161338b565b91506128359050600a836132da565b9150612816565b60008167ffffffffffffffff81111561285757612857613412565b6040519080825280601f01601f191660200182016040528015612881576020820181803683370190505b5090505b84156124a55761289660018361330d565b91506128a3600a866133a6565b6128ae9060306132c2565b60f81b8183815181106128c3576128c36133fc565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506128fd600a866132da565b9450612885565b61290e8383612b92565b61291b6000848484612a3a565b610a445760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161090e565b6001600160a01b0383166129dd576129d881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612a00565b816001600160a01b0316836001600160a01b031614612a0057612a008382612ce0565b6001600160a01b038216612a1757610a4481612d7d565b826001600160a01b0316826001600160a01b031614610a4457610a448282612e2c565b60006001600160a01b0384163b15612b8757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a7e903390899088908890600401613273565b602060405180830381600087803b158015612a9857600080fd5b505af1925050508015612ac8575060408051601f3d908101601f19168201909252612ac591810190613199565b60015b612b6d573d808015612af6576040519150601f19603f3d011682016040523d82523d6000602084013e612afb565b606091505b508051612b655760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161090e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124a5565b506001949350505050565b6001600160a01b038216612be85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161090e565b6000818152600260205260409020546001600160a01b031615612c4d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161090e565b612c5960008383612982565b6001600160a01b0382166000908152600360205260408120805460019290612c829084906132c2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612ced846113bf565b612cf7919061330d565b600083815260076020526040902054909150808214612d4a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612d8f9060019061330d565b60008381526009602052604081205460088054939450909284908110612db757612db76133fc565b906000526020600020015490508060088381548110612dd857612dd86133fc565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612e1057612e106133e6565b6001900381819060005260206000200160009055905550505050565b6000612e37836113bf565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612e7c90613350565b90600052602060002090601f016020900481019282612e9e5760008555612ee4565b82601f10612eb757805160ff1916838001178555612ee4565b82800160010185558215612ee4579182015b82811115612ee4578251825591602001919060010190612ec9565b50612ef0929150612ef4565b5090565b5b80821115612ef05760008155600101612ef5565b600067ffffffffffffffff80841115612f2457612f24613412565b604051601f8501601f19908116603f01168101908282118183101715612f4c57612f4c613412565b81604052809350858152868686011115612f6557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612f9657600080fd5b919050565b600060208284031215612fad57600080fd5b611d5182612f7f565b60008060408385031215612fc957600080fd5b612fd283612f7f565b9150612fe060208401612f7f565b90509250929050565b600080600060608486031215612ffe57600080fd5b61300784612f7f565b925061301560208501612f7f565b9150604084013590509250925092565b6000806000806080858703121561303b57600080fd5b61304485612f7f565b935061305260208601612f7f565b925060408501359150606085013567ffffffffffffffff81111561307557600080fd5b8501601f8101871361308657600080fd5b61309587823560208401612f09565b91505092959194509250565b600080604083850312156130b457600080fd5b6130bd83612f7f565b9150602083013580151581146130d257600080fd5b809150509250929050565b600080604083850312156130f057600080fd5b6130f983612f7f565b946020939093013593505050565b6000806020838503121561311a57600080fd5b823567ffffffffffffffff8082111561313257600080fd5b818501915085601f83011261314657600080fd5b81358181111561315557600080fd5b8660208260051b850101111561316a57600080fd5b60209290920196919550909350505050565b60006020828403121561318e57600080fd5b8135611d5181613428565b6000602082840312156131ab57600080fd5b8151611d5181613428565b6000602082840312156131c857600080fd5b813567ffffffffffffffff8111156131df57600080fd5b8201601f810184136131f057600080fd5b6124a584823560208401612f09565b60006020828403121561321157600080fd5b5035919050565b60008151808452613230816020860160208601613324565b601f01601f19169290920160200192915050565b60008351613256818460208801613324565b83519083019061326a818360208801613324565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526132a56080830184613218565b9695505050505050565b602081526000611d516020830184613218565b600082198211156132d5576132d56133ba565b500190565b6000826132e9576132e96133d0565b500490565b6000816000190483118215151615613308576133086133ba565b500290565b60008282101561331f5761331f6133ba565b500390565b60005b8381101561333f578181015183820152602001613327565b83811115611c695750506000910152565b600181811c9082168061336457607f821691505b6020821081141561338557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561339f5761339f6133ba565b5060010190565b6000826133b5576133b56133d0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461156157600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220ed519c614e7331635aff804c38d27066bcaf40368bb4a887d10f6cd1bc6d3b4264736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f67656e65736973626c6f636b732e6172742f6170692f746f6b656e732f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102d15760003560e01c80636352211e11610179578063a2e91477116100d6578063df7787a41161008a578063f0292a0311610064578063f0292a0314610794578063f2fde38b146107a9578063f759867a146107c957600080fd5b8063df7787a414610721578063e985e9c514610736578063ed1fc2a21461077f57600080fd5b8063b88d4fde116100bb578063b88d4fde146106cc578063c87b56dd146106ec578063d547cfb71461070c57600080fd5b8063a2e9147714610692578063aef6ee1f146106ac57600080fd5b80638d859f3e1161012d57806395d89b411161011257806395d89b411461064a578063a0712d681461065f578063a22cb4651461067257600080fd5b80638d859f3e146106115780638da5cb5b1461062c57600080fd5b8063715018a61161015e578063715018a6146105d2578063853828b6146105e75780638a53388a146105fc57600080fd5b80636352211e1461059257806370a08231146105b257600080fd5b8063245100431161023257806342842e0e116101e6578063549527c3116101c0578063549527c31461053557806355f804b31461054a5780636065fb331461056a57600080fd5b806342842e0e146104d557806344f81194146104f55780634f6ccce71461051557600080fd5b80632f814575116102175780632f8145751461049457806332cb6b0c146104a95780634230baee146104bf57600080fd5b8063245100431461045e5780632f745c591461047457600080fd5b806318160ddd116102895780631978f4691161026e5780631978f469146103fe5780631b5757f21461041e57806323b872dd1461043e57600080fd5b806318160ddd146103a6578063191f65ac146103c557600080fd5b806306fdde03116102ba57806306fdde031461032a578063081812fc1461034c578063095ea7b31461038457600080fd5b806301ffc9a7146102d657806304549d6f1461030b575b600080fd5b3480156102e257600080fd5b506102f66102f136600461317c565b6107dc565b60405190151581526020015b60405180910390f35b34801561031757600080fd5b50600e546102f690610100900460ff1681565b34801561033657600080fd5b5061033f610807565b60405161030291906132af565b34801561035857600080fd5b5061036c6103673660046131ff565b610899565b6040516001600160a01b039091168152602001610302565b34801561039057600080fd5b506103a461039f3660046130dd565b610933565b005b3480156103b257600080fd5b506008545b604051908152602001610302565b3480156103d157600080fd5b506102f66103e0366004612f9b565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561040a57600080fd5b506103b7610419366004612f9b565b610a49565b34801561042a57600080fd5b506103a46104393660046130dd565b610abd565b34801561044a57600080fd5b506103a4610459366004612fe9565b610d65565b34801561046a57600080fd5b506103b7600b5481565b34801561048057600080fd5b506103b761048f3660046130dd565b610dec565b3480156104a057600080fd5b506103a4610e94565b3480156104b557600080fd5b506103b76109c481565b3480156104cb57600080fd5b506103b7600c5481565b3480156104e157600080fd5b506103a46104f0366004612fe9565b610ef0565b34801561050157600080fd5b506103a4610510366004613107565b610f0b565b34801561052157600080fd5b506103b76105303660046131ff565b6111fa565b34801561054157600080fd5b506103b7600581565b34801561055657600080fd5b506103a46105653660046131b6565b61129e565b34801561057657600080fd5b5061036c73a65159c939fbed795164bb40f7507d9e5d54ff2281565b34801561059e57600080fd5b5061036c6105ad3660046131ff565b611334565b3480156105be57600080fd5b506103b76105cd366004612f9b565b6113bf565b3480156105de57600080fd5b506103a4611459565b3480156105f357600080fd5b506103a46114ad565b34801561060857600080fd5b506103b7601e81565b34801561061d57600080fd5b506103b766b1a2bc2ec5000081565b34801561063857600080fd5b50600a546001600160a01b031661036c565b34801561065657600080fd5b5061033f611564565b6103a461066d3660046131ff565b611573565b34801561067e57600080fd5b506103a461068d3660046130a1565b61193a565b34801561069e57600080fd5b50600e546102f69060ff1681565b3480156106b857600080fd5b506103a46106c7366004613107565b6119ff565b3480156106d857600080fd5b506103a46106e7366004613025565b611be1565b3480156106f857600080fd5b5061033f6107073660046131ff565b611c6f565b34801561071857600080fd5b5061033f611d58565b34801561072d57600080fd5b506103b7603281565b34801561074257600080fd5b506102f6610751366004612fb6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078b57600080fd5b506103a4611de6565b3480156107a057600080fd5b506103b7600a81565b3480156107b557600080fd5b506103a46107c4366004612f9b565b611e4b565b6103a46107d73660046131ff565b611f18565b60006001600160e01b0319821663780e9d6360e01b14806108015750610801826122da565b92915050565b60606000805461081690613350565b80601f016020809104026020016040519081016040528092919081815260200182805461084290613350565b801561088f5780601f106108645761010080835404028352916020019161088f565b820191906000526020600020905b81548152906001019060200180831161087257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109175760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061093e82611334565b9050806001600160a01b0316836001600160a01b031614156109ac5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161090e565b336001600160a01b03821614806109c857506109c88133610751565b610a3a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161090e565b610a44838361232a565b505050565b60006001600160a01b038216610aa15760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015260640161090e565b506001600160a01b031660009081526010602052604090205490565b600a546001600160a01b03163314610b055760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b601e600b541415610b695760405162461bcd60e51b815260206004820152602860248201527f416c7265616479206861766520636c61696d656420616c6c20726573657276656044820152676420746f6b656e7360c01b606482015260840161090e565b601e81600b54610b7991906132c2565b1115610bd85760405162461bcd60e51b815260206004820152602860248201527f4d696e74696e6720776f756c6420657863656564206d617820726573657276656044820152676420746f6b656e7360c01b606482015260840161090e565b6001600160a01b038216610c2e5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015260640161090e565b6109c4610c3a60085490565b10610c875760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161090e565b6109c481610c9460085490565b610c9e91906132c2565b1115610cec5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604482015260640161090e565b6000600c546001610cfd91906132c2565b905060005b82811015610d2f57610d1d84610d1883856132c2565b612398565b80610d278161338b565b915050610d02565b5081600c6000828254610d4291906132c2565b9250508190555081600b6000828254610d5b91906132c2565b9091555050505050565b610d6f33826123b6565b610de15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161090e565b610a448383836124ad565b6000610df7836113bf565b8210610e6b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161090e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610edc5760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b600e805460ff19811660ff90911615179055565b610a4483838360405180602001604052806000815250611be1565b600a546001600160a01b03163314610f535760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b601e600b541415610fb75760405162461bcd60e51b815260206004820152602860248201527f416c7265616479206861766520636c61696d656420616c6c20726573657276656044820152676420746f6b656e7360c01b606482015260840161090e565b60005b81811015610a44576000600c546001610fd391906132c2565b9050601e600b546001610fe691906132c2565b11156110455760405162461bcd60e51b815260206004820152602860248201527f4d696e74696e6720776f756c6420657863656564206d617820726573657276656044820152676420746f6b656e7360c01b606482015260840161090e565b6000848484818110611059576110596133fc565b905060200201602081019061106e9190612f9b565b6001600160a01b031614156110c55760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015260640161090e565b6109c46110d160085490565b1061111e5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161090e565b6109c461112a60085490565b6111359060016132c2565b11156111835760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604482015260640161090e565b6111b3848484818110611198576111986133fc565b90506020020160208101906111ad9190612f9b565b82612398565b6001600c60008282546111c691906132c2565b925050819055506001600b60008282546111e091906132c2565b909155508291506111f290508161338b565b915050610fba565b600061120560085490565b82106112795760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161090e565b6008828154811061128c5761128c6133fc565b90600052602060002001549050919050565b600a546001600160a01b031633146112e65760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b80516112f990600d906020840190612e70565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68160405161132991906132af565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806108015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161090e565b60006001600160a01b03821661143d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161090e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114a15760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b6114ab600061266c565b565b600a546001600160a01b031633146114f55760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b47806115435760405162461bcd60e51b815260206004820152601360248201527f496e737566666963656e742062616c616e636500000000000000000000000000604482015260640161090e565b61156173a65159c939fbed795164bb40f7507d9e5d54ff22476126be565b50565b60606001805461081690613350565b600e5460ff166115c55760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f7420737461727465640000000000604482015260640161090e565b6109c46115d160085490565b1061161e5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161090e565b600a8111156116955760405162461bcd60e51b815260206004820152603160248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360448201527f20696e2061207472616e73616374696f6e000000000000000000000000000000606482015260840161090e565b6109c4816116a260085490565b6116ac91906132c2565b11156116fa5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604482015260640161090e565b336000908152601060205260409020546032906117189083906132c2565b111561178c5760405162461bcd60e51b815260206004820152602860248201527f50757263686173652065786365656473206d617820616c6c6f7765642070657260448201527f2061646472657373000000000000000000000000000000000000000000000000606482015260840161090e565b600081116117dc5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000604482015260640161090e565b346117ee8266b1a2bc2ec500006132ee565b1461183b5760405162461bcd60e51b815260206004820152601760248201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604482015260640161090e565b33321461188a5760405162461bcd60e51b815260206004820152600d60248201527f4e6f20636f6e7472616374732100000000000000000000000000000000000000604482015260640161090e565b60005b81811015611903576000600c5460016118a691906132c2565b90506001600c60008282546118bb91906132c2565b90915550503360009081526010602052604081208054600192906118e09084906132c2565b909155506118f090503382612398565b50806118fb8161338b565b91505061188d565b5060408051338152602081018390527f239739eec2dbaccb604ff1de6462a5eccd5f3148924696dd88f04d636ff582b59101611329565b6001600160a01b0382163314156119935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161090e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a475760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b60005b81811015610a44576000838383818110611a6657611a666133fc565b9050602002016020810190611a7b9190612f9b565b6001600160a01b03161415611ad25760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015260640161090e565b6001600f6000858585818110611aea57611aea6133fc565b9050602002016020810190611aff9190612f9b565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601081858585818110611b3f57611b3f6133fc565b9050602002016020810190611b549190612f9b565b6001600160a01b03166001600160a01b031681526020019081526020016000205411611b81576000611bce565b60106000848484818110611b9757611b976133fc565b9050602002016020810190611bac9190612f9b565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080611bd98161338b565b915050611a4a565b611beb33836123b6565b611c5d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161090e565b611c6984848484612761565b50505050565b6000818152600260205260409020546060906001600160a01b0316611cfc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161090e565b6000611d066127df565b90506000815111611d265760405180602001604052806000815250611d51565b80611d30846127ee565b604051602001611d41929190613244565b6040516020818303038152906040525b9392505050565b600d8054611d6590613350565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9190613350565b8015611dde5780601f10611db357610100808354040283529160200191611dde565b820191906000526020600020905b815481529060010190602001808311611dc157829003601f168201915b505050505081565b600a546001600160a01b03163314611e2e5760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b600e805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314611e935760405162461bcd60e51b8152602060048201819052602482015260008051602061343f833981519152604482015260640161090e565b6001600160a01b038116611f0f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161090e565b6115618161266c565b600e54610100900460ff16611f6f5760405162461bcd60e51b815260206004820152601760248201527f50726573616c6520686173206e6f742073746172746564000000000000000000604482015260640161090e565b336000908152600f602052604090205460ff16611fda5760405162461bcd60e51b8152602060048201526024808201527f596f7520617265206e6f7420656c696769626c6520666f72207468652070726560448201526373616c6560e01b606482015260840161090e565b6109c4611fe660085490565b106120335760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161090e565b60058111156120aa5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360448201527f20647572696e672070726573616c650000000000000000000000000000000000606482015260840161090e565b6109c4816120b760085490565b6120c191906132c2565b111561210f5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604482015260640161090e565b3360009081526010602052604090205460059061212d9083906132c2565b111561217b5760405162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604482015260640161090e565b600081116121cb5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000604482015260640161090e565b346121dd8266b1a2bc2ec500006132ee565b1461222a5760405162461bcd60e51b815260206004820152601760248201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604482015260640161090e565b60005b818110156122a3576000600c54600161224691906132c2565b90506001600c600082825461225b91906132c2565b90915550503360009081526010602052604081208054600192906122809084906132c2565b9091555061229090503382612398565b508061229b8161338b565b91505061222d565b5060408051338152602081018390527ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a39101611329565b60006001600160e01b031982166380ac58cd60e01b148061230b57506001600160e01b03198216635b5e139f60e01b145b8061080157506301ffc9a760e01b6001600160e01b0319831614610801565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061235f82611334565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6123b2828260405180602001604052806000815250612904565b5050565b6000818152600260205260408120546001600160a01b031661242f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090e565b600061243a83611334565b9050806001600160a01b0316846001600160a01b031614806124755750836001600160a01b031661246a84610899565b6001600160a01b0316145b806124a557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124c082611334565b6001600160a01b03161461253c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161090e565b6001600160a01b03821661259e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161090e565b6125a9838383612982565b6125b460008261232a565b6001600160a01b03831660009081526003602052604081208054600192906125dd90849061330d565b90915550506001600160a01b038216600090815260036020526040812080546001929061260b9084906132c2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461270b576040519150601f19603f3d011682016040523d82523d6000602084013e612710565b606091505b5050905080610a445760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f2077696474686472617720457468657200000000000000604482015260640161090e565b61276c8484846124ad565b61277884848484612a3a565b611c695760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161090e565b6060600d805461081690613350565b6060816128125750506040805180820190915260018152600360fc1b602082015290565b8160005b811561283c57806128268161338b565b91506128359050600a836132da565b9150612816565b60008167ffffffffffffffff81111561285757612857613412565b6040519080825280601f01601f191660200182016040528015612881576020820181803683370190505b5090505b84156124a55761289660018361330d565b91506128a3600a866133a6565b6128ae9060306132c2565b60f81b8183815181106128c3576128c36133fc565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506128fd600a866132da565b9450612885565b61290e8383612b92565b61291b6000848484612a3a565b610a445760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161090e565b6001600160a01b0383166129dd576129d881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612a00565b816001600160a01b0316836001600160a01b031614612a0057612a008382612ce0565b6001600160a01b038216612a1757610a4481612d7d565b826001600160a01b0316826001600160a01b031614610a4457610a448282612e2c565b60006001600160a01b0384163b15612b8757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a7e903390899088908890600401613273565b602060405180830381600087803b158015612a9857600080fd5b505af1925050508015612ac8575060408051601f3d908101601f19168201909252612ac591810190613199565b60015b612b6d573d808015612af6576040519150601f19603f3d011682016040523d82523d6000602084013e612afb565b606091505b508051612b655760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161090e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124a5565b506001949350505050565b6001600160a01b038216612be85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161090e565b6000818152600260205260409020546001600160a01b031615612c4d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161090e565b612c5960008383612982565b6001600160a01b0382166000908152600360205260408120805460019290612c829084906132c2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612ced846113bf565b612cf7919061330d565b600083815260076020526040902054909150808214612d4a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612d8f9060019061330d565b60008381526009602052604081205460088054939450909284908110612db757612db76133fc565b906000526020600020015490508060088381548110612dd857612dd86133fc565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612e1057612e106133e6565b6001900381819060005260206000200160009055905550505050565b6000612e37836113bf565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612e7c90613350565b90600052602060002090601f016020900481019282612e9e5760008555612ee4565b82601f10612eb757805160ff1916838001178555612ee4565b82800160010185558215612ee4579182015b82811115612ee4578251825591602001919060010190612ec9565b50612ef0929150612ef4565b5090565b5b80821115612ef05760008155600101612ef5565b600067ffffffffffffffff80841115612f2457612f24613412565b604051601f8501601f19908116603f01168101908282118183101715612f4c57612f4c613412565b81604052809350858152868686011115612f6557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612f9657600080fd5b919050565b600060208284031215612fad57600080fd5b611d5182612f7f565b60008060408385031215612fc957600080fd5b612fd283612f7f565b9150612fe060208401612f7f565b90509250929050565b600080600060608486031215612ffe57600080fd5b61300784612f7f565b925061301560208501612f7f565b9150604084013590509250925092565b6000806000806080858703121561303b57600080fd5b61304485612f7f565b935061305260208601612f7f565b925060408501359150606085013567ffffffffffffffff81111561307557600080fd5b8501601f8101871361308657600080fd5b61309587823560208401612f09565b91505092959194509250565b600080604083850312156130b457600080fd5b6130bd83612f7f565b9150602083013580151581146130d257600080fd5b809150509250929050565b600080604083850312156130f057600080fd5b6130f983612f7f565b946020939093013593505050565b6000806020838503121561311a57600080fd5b823567ffffffffffffffff8082111561313257600080fd5b818501915085601f83011261314657600080fd5b81358181111561315557600080fd5b8660208260051b850101111561316a57600080fd5b60209290920196919550909350505050565b60006020828403121561318e57600080fd5b8135611d5181613428565b6000602082840312156131ab57600080fd5b8151611d5181613428565b6000602082840312156131c857600080fd5b813567ffffffffffffffff8111156131df57600080fd5b8201601f810184136131f057600080fd5b6124a584823560208401612f09565b60006020828403121561321157600080fd5b5035919050565b60008151808452613230816020860160208601613324565b601f01601f19169290920160200192915050565b60008351613256818460208801613324565b83519083019061326a818360208801613324565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526132a56080830184613218565b9695505050505050565b602081526000611d516020830184613218565b600082198211156132d5576132d56133ba565b500190565b6000826132e9576132e96133d0565b500490565b6000816000190483118215151615613308576133086133ba565b500290565b60008282101561331f5761331f6133ba565b500390565b60005b8381101561333f578181015183820152602001613327565b83811115611c695750506000910152565b600181811c9082168061336457607f821691505b6020821081141561338557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561339f5761339f6133ba565b5060010190565b6000826133b5576133b56133d0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461156157600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220ed519c614e7331635aff804c38d27066bcaf40368bb4a887d10f6cd1bc6d3b4264736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f67656e65736973626c6f636b732e6172742f6170692f746f6b656e732f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://genesisblocks.art/api/tokens/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [2] : 68747470733a2f2f67656e65736973626c6f636b732e6172742f6170692f746f
Arg [3] : 6b656e732f000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45302:6548:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39100:224;;;;;;;;;;-1:-1:-1;39100:224:0;;;;;:::i;:::-;;:::i;:::-;;;6847:14:1;;6840:22;6822:41;;6810:2;6795:18;39100:224:0;;;;;;;;45923:26;;;;;;;;;;-1:-1:-1;45923:26:0;;;;;;;;;;;27004:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28563:221::-;;;;;;;;;;-1:-1:-1;28563:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5797:55:1;;;5779:74;;5767:2;5752:18;28563:221:0;5633:226:1;28086:411:0;;;;;;;;;;-1:-1:-1;28086:411:0;;;;;:::i;:::-;;:::i;:::-;;39740:113;;;;;;;;;;-1:-1:-1;39828:10:0;:17;39740:113;;;20803:25:1;;;20791:2;20776:18;39740:113:0;20657:177:1;48557:123:0;;;;;;;;;;-1:-1:-1;48557:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;48650:22:0;48626:4;48650:22;;;:16;:22;;;;;;;;;48557:123;48688:186;;;;;;;;;;-1:-1:-1;48688:186:0;;;;;:::i;:::-;;:::i;46612:765::-;;;;;;;;;;-1:-1:-1;46612:765:0;;;;;:::i;:::-;;:::i;29453:339::-;;;;;;;;;;-1:-1:-1;29453:339:0;;;;;:::i;:::-;;:::i;45774:30::-;;;;;;;;;;;;;;;;39408:256;;;;;;;;;;-1:-1:-1;39408:256:0;;;;;:::i;:::-;;:::i;51047:111::-;;;;;;;;;;;;;:::i;45395:41::-;;;;;;;;;;;;45432:4;45395:41;;45813:30;;;;;;;;;;;;;;;;29863:185;;;;;;;;;;-1:-1:-1;29863:185:0;;;;;:::i;:::-;;:::i;47389:783::-;;;;;;;;;;-1:-1:-1;47389:783:0;;;;;:::i;:::-;;:::i;39930:233::-;;;;;;;;;;-1:-1:-1;39930:233:0;;;;;:::i;:::-;;:::i;45536:44::-;;;;;;;;;;;;45579:1;45536:44;;51287:140;;;;;;;;;;-1:-1:-1;51287:140:0;;;;;:::i;:::-;;:::i;45682:83::-;;;;;;;;;;;;45723:42;45682:83;;26698:239;;;;;;;;;;-1:-1:-1;26698:239:0;;;;;:::i;:::-;;:::i;26428:208::-;;;;;;;;;;-1:-1:-1;26428:208:0;;;;;:::i;:::-;;:::i;4701:94::-;;;;;;;;;;;;;:::i;51435:212::-;;;;;;;;;;;;;:::i;45633:42::-;;;;;;;;;;;;45673:2;45633:42;;45443;;;;;;;;;;;;45475:10;45443:42;;4050:87;;;;;;;;;;-1:-1:-1;4123:6:0;;-1:-1:-1;;;;;4123:6:0;4050:87;;27173:104;;;;;;;;;;;;;:::i;49919:1010::-;;;;;;:::i;:::-;;:::i;28856:295::-;;;;;;;;;;-1:-1:-1;28856:295:0;;;;;:::i;:::-;;:::i;45887:29::-;;;;;;;;;;-1:-1:-1;45887:29:0;;;;;;;;48188:361;;;;;;;;;;-1:-1:-1;48188:361:0;;;;;:::i;:::-;;:::i;30119:328::-;;;;;;;;;;-1:-1:-1;30119:328:0;;;;;:::i;:::-;;:::i;27348:334::-;;;;;;;;;;-1:-1:-1;27348:334:0;;;;;:::i;:::-;;:::i;45852:26::-;;;;;;;;;;;;;:::i;45587:39::-;;;;;;;;;;;;45624:2;45587:39;;29222:164;;;;;;;;;;-1:-1:-1;29222:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29343:25:0;;;29319:4;29343:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29222:164;50937:102;;;;;;;;;;;;;:::i;45492:37::-;;;;;;;;;;;;45527:2;45492:37;;4950:192;;;;;;;;;;-1:-1:-1;4950:192:0;;;;;:::i;:::-;;:::i;48882:1029::-;;;;;;:::i;:::-;;:::i;39100:224::-;39202:4;-1:-1:-1;;;;;;39226:50:0;;-1:-1:-1;;;39226:50:0;;:90;;;39280:36;39304:11;39280:23;:36::i;:::-;39219:97;39100:224;-1:-1:-1;;39100:224:0:o;27004:100::-;27058:13;27091:5;27084:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27004:100;:::o;28563:221::-;28639:7;32046:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32046:16:0;28659:73;;;;-1:-1:-1;;;28659:73:0;;14742:2:1;28659:73:0;;;14724:21:1;14781:2;14761:18;;;14754:30;14820:34;14800:18;;;14793:62;-1:-1:-1;;;14871:18:1;;;14864:42;14923:19;;28659:73:0;;;;;;;;;-1:-1:-1;28752:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28752:24:0;;28563:221::o;28086:411::-;28167:13;28183:23;28198:7;28183:14;:23::i;:::-;28167:39;;28231:5;-1:-1:-1;;;;;28225:11:0;:2;-1:-1:-1;;;;;28225:11:0;;;28217:57;;;;-1:-1:-1;;;28217:57:0;;17810:2:1;28217:57:0;;;17792:21:1;17849:2;17829:18;;;17822:30;17888:34;17868:18;;;17861:62;-1:-1:-1;;;17939:18:1;;;17932:31;17980:19;;28217:57:0;17608:397:1;28217:57:0;732:10;-1:-1:-1;;;;;28309:21:0;;;;:62;;-1:-1:-1;28334:37:0;28351:5;732:10;29222:164;:::i;28334:37::-;28287:168;;;;-1:-1:-1;;;28287:168:0;;11596:2:1;28287:168:0;;;11578:21:1;11635:2;11615:18;;;11608:30;11674:34;11654:18;;;11647:62;11745:26;11725:18;;;11718:54;11789:19;;28287:168:0;11394:420:1;28287:168:0;28468:21;28477:2;28481:7;28468:8;:21::i;:::-;28156:341;28086:411;;:::o;48688:186::-;48751:7;-1:-1:-1;;;;;48779:19:0;;48771:55;;;;-1:-1:-1;;;48771:55:0;;18554:2:1;48771:55:0;;;18536:21:1;18593:2;18573:18;;;18566:30;18632:25;18612:18;;;18605:53;18675:18;;48771:55:0;18352:347:1;48771:55:0;-1:-1:-1;;;;;;48846:20:0;;;;;:13;:20;;;;;;;48688:186::o;46612:765::-;4123:6;;-1:-1:-1;;;;;4123:6:0;732:10;4270:23;4262:68;;;;-1:-1:-1;;;4262:68:0;;15503:2:1;4262:68:0;;;15485:21:1;;;15522:18;;;15515:30;-1:-1:-1;;;;;;;;;;;15561:18:1;;;15554:62;15633:18;;4262:68:0;15301:356:1;4262:68:0;45673:2:::1;46708:15;;:32;;46700:85;;;::::0;-1:-1:-1;;;46700:85:0;;19737:2:1;46700:85:0::1;::::0;::::1;19719:21:1::0;19776:2;19756:18;;;19749:30;19815:34;19795:18;;;19788:62;-1:-1:-1;;;19866:18:1;;;19859:38;19914:19;;46700:85:0::1;19535:404:1::0;46700:85:0::1;45673:2;46822:6;46804:15;;:24;;;;:::i;:::-;:41;;46796:94;;;::::0;-1:-1:-1;;;46796:94:0;;13202:2:1;46796:94:0::1;::::0;::::1;13184:21:1::0;13241:2;13221:18;;;13214:30;13280:34;13260:18;;;13253:62;-1:-1:-1;;;13331:18:1;;;13324:38;13379:19;;46796:94:0::1;13000:404:1::0;46796:94:0::1;-1:-1:-1::0;;;;;46909:23:0;::::1;46901:59;;;::::0;-1:-1:-1;;;46901:59:0;;18554:2:1;46901:59:0::1;::::0;::::1;18536:21:1::0;18593:2;18573:18;;;18566:30;18632:25;18612:18;;;18605:53;18675:18;;46901:59:0::1;18352:347:1::0;46901:59:0::1;45432:4;46979:13;39828:10:::0;:17;;39740:113;46979:13:::1;:26;46971:66;;;::::0;-1:-1:-1;;;46971:66:0;;20503:2:1;46971:66:0::1;::::0;::::1;20485:21:1::0;20542:2;20522:18;;;20515:30;20581:29;20561:18;;;20554:57;20628:18;;46971:66:0::1;20301:351:1::0;46971:66:0::1;45432:4;47072:6;47056:13;39828:10:::0;:17;;39740:113;47056:13:::1;:22;;;;:::i;:::-;:36;;47048:80;;;::::0;-1:-1:-1;;;47048:80:0;;12842:2:1;47048:80:0::1;::::0;::::1;12824:21:1::0;12881:2;12861:18;;;12854:30;12920:33;12900:18;;;12893:61;12971:18;;47048:80:0::1;12640:355:1::0;47048:80:0::1;47141:20;47164:15;;47182:1;47164:19;;;;:::i;:::-;47141:42;;47201:9;47196:102;47220:6;47216:1;:10;47196:102;;;47248:38;47258:9:::0;47269:16:::1;47284:1:::0;47269:12;:16:::1;:::i;:::-;47248:9;:38::i;:::-;47228:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47196:102;;;;47327:6;47308:15;;:25;;;;;;;:::i;:::-;;;;;;;;47363:6;47344:15;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;46612:765:0:o;29453:339::-;29648:41;732:10;29681:7;29648:18;:41::i;:::-;29640:103;;;;-1:-1:-1;;;29640:103:0;;18906:2:1;29640:103:0;;;18888:21:1;18945:2;18925:18;;;18918:30;18984:34;18964:18;;;18957:62;19055:19;19035:18;;;19028:47;19092:19;;29640:103:0;18704:413:1;29640:103:0;29756:28;29766:4;29772:2;29776:7;29756:9;:28::i;39408:256::-;39505:7;39541:23;39558:5;39541:16;:23::i;:::-;39533:5;:31;39525:87;;;;-1:-1:-1;;;39525:87:0;;8068:2:1;39525:87:0;;;8050:21:1;8107:2;8087:18;;;8080:30;8146:34;8126:18;;;8119:62;8217:13;8197:18;;;8190:41;8248:19;;39525:87:0;7866:407:1;39525:87:0;-1:-1:-1;;;;;;39630:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39408:256::o;51047:111::-;4123:6;;-1:-1:-1;;;;;4123:6:0;732:10;4270:23;4262:68;;;;-1:-1:-1;;;4262:68:0;;15503:2:1;4262:68:0;;;15485:21:1;;;15522:18;;;15515:30;-1:-1:-1;;;;;;;;;;;15561:18:1;;;15554:62;15633:18;;4262:68:0;15301:356:1;4262:68:0;51133:17:::1;::::0;;-1:-1:-1;;51112:38:0;::::1;51133:17;::::0;;::::1;51132:18;51112:38;::::0;;51047:111::o;29863:185::-;30001:39;30018:4;30024:2;30028:7;30001:39;;;;;;;;;;;;:16;:39::i;47389:783::-;4123:6;;-1:-1:-1;;;;;4123:6:0;732:10;4270:23;4262:68;;;;-1:-1:-1;;;4262:68:0;;15503:2:1;4262:68:0;;;15485:21:1;;;15522:18;;;15515:30;-1:-1:-1;;;;;;;;;;;15561:18:1;;;15554:62;15633:18;;4262:68:0;15301:356:1;4262:68:0;45673:2:::1;47487:15;;:32;;47479:85;;;::::0;-1:-1:-1;;;47479:85:0;;19737:2:1;47479:85:0::1;::::0;::::1;19719:21:1::0;19776:2;19756:18;;;19749:30;19815:34;19795:18;;;19788:62;-1:-1:-1;;;19866:18:1;;;19859:38;19914:19;;47479:85:0::1;19535:404:1::0;47479:85:0::1;47580:9;47575:590;47595:20:::0;;::::1;47575:590;;;47637:20;47660:15;;47678:1;47660:19;;;;:::i;:::-;47637:42;;45673:2;47702:15;;47720:1;47702:19;;;;:::i;:::-;:36;;47694:89;;;::::0;-1:-1:-1;;;47694:89:0;;13202:2:1;47694:89:0::1;::::0;::::1;13184:21:1::0;13241:2;13221:18;;;13214:30;13280:34;13260:18;;;13253:62;-1:-1:-1;;;13331:18:1;;;13324:38;13379:19;;47694:89:0::1;13000:404:1::0;47694:89:0::1;47830:1;47806:9:::0;;47816:1;47806:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47806:26:0::1;;;47798:62;;;::::0;-1:-1:-1;;;47798:62:0;;18554:2:1;47798:62:0::1;::::0;::::1;18536:21:1::0;18593:2;18573:18;;;18566:30;18632:25;18612:18;;;18605:53;18675:18;;47798:62:0::1;18352:347:1::0;47798:62:0::1;45432:4;47883:13;39828:10:::0;:17;;39740:113;47883:13:::1;:26;47875:66;;;::::0;-1:-1:-1;;;47875:66:0;;20503:2:1;47875:66:0::1;::::0;::::1;20485:21:1::0;20542:2;20522:18;;;20515:30;20581:29;20561:18;;;20554:57;20628:18;;47875:66:0::1;20301:351:1::0;47875:66:0::1;45432:4;47964:13;39828:10:::0;:17;;39740:113;47964:13:::1;:17;::::0;47980:1:::1;47964:17;:::i;:::-;:31;;47956:75;;;::::0;-1:-1:-1;;;47956:75:0;;12842:2:1;47956:75:0::1;::::0;::::1;12824:21:1::0;12881:2;12861:18;;;12854:30;12920:33;12900:18;;;12893:61;12971:18;;47956:75:0::1;12640:355:1::0;47956:75:0::1;48046:37;48056:9;;48066:1;48056:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;48070;48046:9;:37::i;:::-;48117:1;48098:15;;:20;;;;;;;:::i;:::-;;;;;;;;48152:1;48133:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;47617:3:0;;-1:-1:-1;47617:3:0::1;::::0;-1:-1:-1;47617:3:0;::::1;:::i;:::-;;;;47575:590;;39930:233:::0;40005:7;40041:30;39828:10;:17;;39740:113;40041:30;40033:5;:38;40025:95;;;;-1:-1:-1;;;40025:95:0;;19324:2:1;40025:95:0;;;19306:21:1;19363:2;19343:18;;;19336:30;19402:34;19382:18;;;19375:62;19473:14;19453:18;;;19446:42;19505:19;;40025:95:0;19122:408:1;40025:95:0;40138:10;40149:5;40138:17;;;;;;;;:::i;:::-;;;;;;;;;40131:24;;39930:233;;;:::o;51287:140::-;4123:6;;-1:-1:-1;;;;;4123:6:0;732:10;4270:23;4262:68;;;;-1:-1:-1;;;4262:68:0;;15503:2:1;4262:68:0;;;15485:21:1;;;15522:18;;;15515:30;-1:-1:-1;;;;;;;;;;;15561:18:1;;;15554:62;15633:18;;4262:68:0;15301:356:1;4262:68:0;51358:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51396:23;51411:7;51396:23;;;;;;:::i;:::-;;;;;;;;51287:140:::0;:::o;26698:239::-;26770:7;26806:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26806:16:0;26841:19;26833:73;;;;-1:-1:-1;;;26833:73:0;;12432:2:1;26833:73:0;;;12414:21:1;12471:2;12451:18;;;12444:30;12510:34;12490:18;;;12483:62;12581:11;12561:18;;;12554:39;12610:19;;26833:73:0;12230:405:1;26428:208:0;26500:7;-1:-1:-1;;;;;26528:19:0;;26520:74;;;;-1:-1:-1;;;26520:74:0;;12021:2:1;26520:74:0;;;12003:21:1;12060:2;12040:18;;;12033:30;12099:34;12079:18;;;12072:62;12170:12;12150:18;;;12143:40;12200:19;;26520:74:0;11819:406:1;26520:74:0;-1:-1:-1;;;;;;26612:16:0;;;;;:9;:16;;;;;;;26428:208::o;4701:94::-;4123:6;;-1:-1:-1;;;;;4123:6:0;732:10;4270:23;4262:68;;;;-1:-1:-1;;;4262:68:0;;15503:2:1;4262:68:0;;;15485:21:1;;;15522:18;;;15515:30;-1:-1:-1;;;;;;;;;;;15561:18:1;;;15554:62;15633:18;;4262:68:0;15301:356:1;4262:68:0;4766:21:::1;4784:1;4766:9;:21::i;:::-;4701:94::o:0;51435:212::-;4123:6;;-1:-1:-1;;;;;4123:6:0;732:10;4270:23;4262:68;;;;-1:-1:-1;;;4262:68:0;;15503:2:1;4262:68:0;;;15485:21:1;;;15522:18;;;15515:30;-1:-1:-1;;;;;;;;;;;15561:18:1;;;15554:62;15633:18;;4262:68:0;15301:356:1;4262:68:0;51504:21:::1;51544:11:::0;51536:43:::1;;;::::0;-1:-1:-1;;;51536:43:0;;15155:2:1;51536:43:0::1;::::0;::::1;15137:21:1::0;15194:2;15174:18;;;15167:30;15233:21;15213:18;;;15206:49;15272:18;;51536:43:0::1;14953:343:1::0;51536:43:0::1;51590:49;45723:42;51617:21;51590:10;:49::i;:::-;51475:172;51435:212::o:0;27173:104::-;27229:13;27262:7;27255:14;;;;;:::i;49919:1010::-;46419:17;;;;46411:57;;;;-1:-1:-1;;;46411:57:0;;9663:2:1;46411:57:0;;;9645:21:1;9702:2;9682:18;;;9675:30;9741:29;9721:18;;;9714:57;9788:18;;46411:57:0;9461:351:1;46411:57:0;45432:4:::1;50015:13;39828:10:::0;:17;;39740:113;50015:13:::1;:26;50007:66;;;::::0;-1:-1:-1;;;50007:66:0;;20503:2:1;50007:66:0::1;::::0;::::1;20485:21:1::0;20542:2;20522:18;;;20515:30;20581:29;20561:18;;;20554:57;20628:18;;50007:66:0::1;20301:351:1::0;50007:66:0::1;45527:2;50092:14;:26;;50084:88;;;::::0;-1:-1:-1;;;50084:88:0;;13611:2:1;50084:88:0::1;::::0;::::1;13593:21:1::0;13650:2;13630:18;;;13623:30;13689:34;13669:18;;;13662:62;13760:19;13740:18;;;13733:47;13797:19;;50084:88:0::1;13409:413:1::0;50084:88:0::1;45432:4;50207:14;50191:13;39828:10:::0;:17;;39740:113;50191:13:::1;:30;;;;:::i;:::-;:44;;50183:88;;;::::0;-1:-1:-1;;;50183:88:0;;12842:2:1;50183:88:0::1;::::0;::::1;12824:21:1::0;12881:2;12861:18;;;12854:30;12920:33;12900:18;;;12893:61;12971:18;;50183:88:0::1;12640:355:1::0;50183:88:0::1;50304:10;50290:25;::::0;;;:13:::1;:25;::::0;;;;;45624:2:::1;::::0;50290:42:::1;::::0;50318:14;;50290:42:::1;:::i;:::-;:56;;50282:109;;;::::0;-1:-1:-1;;;50282:109:0;;17401:2:1;50282:109:0::1;::::0;::::1;17383:21:1::0;17440:2;17420:18;;;17413:30;17479:34;17459:18;;;17452:62;17550:10;17530:18;;;17523:38;17578:19;;50282:109:0::1;17199:404:1::0;50282:109:0::1;50427:1;50410:14;:18;50402:59;;;::::0;-1:-1:-1;;;50402:59:0;;16690:2:1;50402:59:0::1;::::0;::::1;16672:21:1::0;16729:2;16709:18;;;16702:30;16768;16748:18;;;16741:58;16816:18;;50402:59:0::1;16488:352:1::0;50402:59:0::1;50506:9;50480:22;50488:14:::0;45475:10:::1;50480:22;:::i;:::-;:35;50472:71;;;::::0;-1:-1:-1;;;50472:71:0;;14390:2:1;50472:71:0::1;::::0;::::1;14372:21:1::0;14429:2;14409:18;;;14402:30;14468:25;14448:18;;;14441:53;14511:18;;50472:71:0::1;14188:347:1::0;50472:71:0::1;50563:10;50577:9;50563:23;50554:51;;;::::0;-1:-1:-1;;;50554:51:0;;18212:2:1;50554:51:0::1;::::0;::::1;18194:21:1::0;18251:2;18231:18;;;18224:30;18290:15;18270:18;;;18263:43;18323:18;;50554:51:0::1;18010:337:1::0;50554:51:0::1;50631:9;50626:236;50650:14;50646:1;:18;50626:236;;;50686:15;50704;;50722:1;50704:19;;;;:::i;:::-;50686:37;;50759:1;50740:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;50789:10:0::1;50775:25;::::0;;;:13:::1;:25;::::0;;;;:30;;50804:1:::1;::::0;50775:25;:30:::1;::::0;50804:1;;50775:30:::1;:::i;:::-;::::0;;;-1:-1:-1;50820:30:0::1;::::0;-1:-1:-1;50830:10:0::1;50842:7:::0;50820:9:::1;:30::i;:::-;-1:-1:-1::0;50666:3:0;::::1;::::0;::::1;:::i;:::-;;;;50626:236;;;-1:-1:-1::0;50879:42:0::1;::::0;;50894:10:::1;6554:74:1::0;;6659:2;6644:18;;6637:34;;;50879:42:0::1;::::0;6527:18:1;50879:42:0::1;6380:297:1::0;28856:295:0;-1:-1:-1;;;;;28959:24:0;;732:10;28959:24;;28951:62;;;;-1:-1:-1;;;28951:62:0;;10424:2:1;28951:62:0;;;10406:21:1;10463:2;10443:18;;;10436:30;10502:27;10482:18;;;10475:55;10547:18;;28951:62:0;10222:349:1;28951:62:0;732:10;29026:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29026:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29026:53:0;;;;;;;;;;29095:48;;6822:41:1;;;29026:42:0;;732:10;29095:48;;6795:18:1;29095:48:0;;;;;;;28856:295;;:::o;48188:361::-;4123:6;;-1:-1:-1;;;;;4123:6:0;732:10;4270:23;4262:68;;;;-1:-1:-1;;;4262:68:0;;15503:2:1;4262:68:0;;;15485:21:1;;;15522:18;;;15515:30;-1:-1:-1;;;;;;;;;;;15561:18:1;;;15554:62;15633:18;;4262:68:0;15301:356:1;4262:68:0;48275:9:::1;48270:272;48290:20:::0;;::::1;48270:272;;;48364:1;48340:9:::0;;48350:1;48340:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48340:26:0::1;;;48332:62;;;::::0;-1:-1:-1;;;48332:62:0;;18554:2:1;48332:62:0::1;::::0;::::1;18536:21:1::0;18593:2;18573:18;;;18566:30;18632:25;18612:18;;;18605:53;18675:18;;48332:62:0::1;18352:347:1::0;48332:62:0::1;48444:4;48411:16;:30;48428:9;;48438:1;48428:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48411:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48411:30:0;;;:37;;-1:-1:-1;;48411:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;48465:13:::1;-1:-1:-1::0;48479:9:0;;48489:1;48479:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48465:27:0::1;-1:-1:-1::0;;;;;48465:27:0::1;;;;;;;;;;;;;:31;:65;;48529:1;48465:65;;;48499:13;:27;48513:9;;48523:1;48513:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48499:27:0::1;-1:-1:-1::0;;;;;48499:27:0::1;;;;;;;;;;;;;48465:65;-1:-1:-1::0;48312:3:0;::::1;::::0;::::1;:::i;:::-;;;;48270:272;;30119:328:::0;30294:41;732:10;30327:7;30294:18;:41::i;:::-;30286:103;;;;-1:-1:-1;;;30286:103:0;;18906:2:1;30286:103:0;;;18888:21:1;18945:2;18925:18;;;18918:30;18984:34;18964:18;;;18957:62;19055:19;19035:18;;;19028:47;19092:19;;30286:103:0;18704:413:1;30286:103:0;30400:39;30414:4;30420:2;30424:7;30433:5;30400:13;:39::i;:::-;30119:328;;;;:::o;27348:334::-;32022:4;32046:16;;;:7;:16;;;;;;27421:13;;-1:-1:-1;;;;;32046:16:0;27447:76;;;;-1:-1:-1;;;27447:76:0;;16274:2:1;27447:76:0;;;16256:21:1;16313:2;16293:18;;;16286:30;16352:34;16332:18;;;16325:62;16423:17;16403:18;;;16396:45;16458:19;;27447:76:0;16072:411:1;27447:76:0;27536:21;27560:10;:8;:10::i;:::-;27536:34;;27612:1;27594:7;27588:21;:25;:86;;;;;;;;;;;;;;;;;27640:7;27649:18;:7;:16;:18::i;:::-;27623:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27588:86;27581:93;27348:334;-1:-1:-1;;;27348:334:0:o;45852:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50937:102::-;4123:6;;-1:-1:-1;;;;;4123:6:0;732:10;4270:23;4262:68;;;;-1:-1:-1;;;4262:68:0;;15503:2:1;4262:68:0;;;15485:21:1;;;15522:18;;;15515:30;-1:-1:-1;;;;;;;;;;;15561:18:1;;;15554:62;15633:18;;4262:68:0;15301:356:1;4262:68:0;51017:14:::1;::::0;;-1:-1:-1;;50999:32:0;::::1;51017:14;::::0;;;::::1;;;51016:15;50999:32:::0;;::::1;;::::0;;50937:102::o;4950:192::-;4123:6;;-1:-1:-1;;;;;4123:6:0;732:10;4270:23;4262:68;;;;-1:-1:-1;;;4262:68:0;;15503:2:1;4262:68:0;;;15485:21:1;;;15522:18;;;15515:30;-1:-1:-1;;;;;;;;;;;15561:18:1;;;15554:62;15633:18;;4262:68:0;15301:356:1;4262:68:0;-1:-1:-1;;;;;5039:22:0;::::1;5031:73;;;::::0;-1:-1:-1;;;5031:73:0;;8899:2:1;5031:73:0::1;::::0;::::1;8881:21:1::0;8938:2;8918:18;;;8911:30;8977:34;8957:18;;;8950:62;9048:8;9028:18;;;9021:36;9074:19;;5031:73:0::1;8697:402:1::0;5031:73:0::1;5115:19;5125:8;5115:9;:19::i;48882:1029::-:0;46297:14;;;;;;;46289:50;;;;-1:-1:-1;;;46289:50:0;;7300:2:1;46289:50:0;;;7282:21:1;7339:2;7319:18;;;7312:30;7378:25;7358:18;;;7351:53;7421:18;;46289:50:0;7098:347:1;46289:50:0;48999:10:::1;48982:28;::::0;;;:16:::1;:28;::::0;;;;;::::1;;48974:77;;;::::0;-1:-1:-1;;;48974:77:0;;10778:2:1;48974:77:0::1;::::0;::::1;10760:21:1::0;10817:2;10797:18;;;10790:30;10856:34;10836:18;;;10829:62;-1:-1:-1;;;10907:18:1;;;10900:34;10951:19;;48974:77:0::1;10576:400:1::0;48974:77:0::1;45432:4;49070:13;39828:10:::0;:17;;39740:113;49070:13:::1;:26;49062:66;;;::::0;-1:-1:-1;;;49062:66:0;;20503:2:1;49062:66:0::1;::::0;::::1;20485:21:1::0;20542:2;20522:18;;;20515:30;20581:29;20561:18;;;20554:57;20628:18;;49062:66:0::1;20301:351:1::0;49062:66:0::1;45579:1;49147:14;:34;;49139:94;;;::::0;-1:-1:-1;;;49139:94:0;;7652:2:1;49139:94:0::1;::::0;::::1;7634:21:1::0;7691:2;7671:18;;;7664:30;7730:34;7710:18;;;7703:62;7801:17;7781:18;;;7774:45;7836:19;;49139:94:0::1;7450:411:1::0;49139:94:0::1;45432:4;49268:14;49252:13;39828:10:::0;:17;;39740:113;49252:13:::1;:30;;;;:::i;:::-;:44;;49244:88;;;::::0;-1:-1:-1;;;49244:88:0;;12842:2:1;49244:88:0::1;::::0;::::1;12824:21:1::0;12881:2;12861:18;;;12854:30;12920:33;12900:18;;;12893:61;12971:18;;49244:88:0::1;12640:355:1::0;49244:88:0::1;49365:10;49351:25;::::0;;;:13:::1;:25;::::0;;;;;45579:1:::1;::::0;49351:42:::1;::::0;49379:14;;49351:42:::1;:::i;:::-;:62;;49343:103;;;::::0;-1:-1:-1;;;49343:103:0;;20146:2:1;49343:103:0::1;::::0;::::1;20128:21:1::0;20185:2;20165:18;;;20158:30;20224;20204:18;;;20197:58;20272:18;;49343:103:0::1;19944:352:1::0;49343:103:0::1;49482:1;49465:14;:18;49457:59;;;::::0;-1:-1:-1;;;49457:59:0;;16690:2:1;49457:59:0::1;::::0;::::1;16672:21:1::0;16729:2;16709:18;;;16702:30;16768;16748:18;;;16741:58;16816:18;;49457:59:0::1;16488:352:1::0;49457:59:0::1;49561:9;49535:22;49543:14:::0;45475:10:::1;49535:22;:::i;:::-;:35;49527:71;;;::::0;-1:-1:-1;;;49527:71:0;;14390:2:1;49527:71:0::1;::::0;::::1;14372:21:1::0;14429:2;14409:18;;;14402:30;14468:25;14448:18;;;14441:53;14511:18;;49527:71:0::1;14188:347:1::0;49527:71:0::1;49616:9;49611:236;49635:14;49631:1;:18;49611:236;;;49671:15;49689;;49707:1;49689:19;;;;:::i;:::-;49671:37;;49744:1;49725:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;49774:10:0::1;49760:25;::::0;;;:13:::1;:25;::::0;;;;:30;;49789:1:::1;::::0;49760:25;:30:::1;::::0;49789:1;;49760:30:::1;:::i;:::-;::::0;;;-1:-1:-1;49805:30:0::1;::::0;-1:-1:-1;49815:10:0::1;49827:7:::0;49805:9:::1;:30::i;:::-;-1:-1:-1::0;49651:3:0;::::1;::::0;::::1;:::i;:::-;;;;49611:236;;;-1:-1:-1::0;49864:39:0::1;::::0;;49876:10:::1;6554:74:1::0;;6659:2;6644:18;;6637:34;;;49864:39:0::1;::::0;6527:18:1;49864:39:0::1;6380:297:1::0;26059:305:0;26161:4;-1:-1:-1;;;;;;26198:40:0;;-1:-1:-1;;;26198:40:0;;:105;;-1:-1:-1;;;;;;;26255:48:0;;-1:-1:-1;;;26255:48:0;26198:105;:158;;;-1:-1:-1;;;;;;;;;;7078:40:0;;;26320:36;6969:157;35939:174;36014:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36014:29:0;-1:-1:-1;;;;;36014:29:0;;;;;;;;:24;;36068:23;36014:24;36068:14;:23::i;:::-;-1:-1:-1;;;;;36059:46:0;;;;;;;;;;;35939:174;;:::o;32941:110::-;33017:26;33027:2;33031:7;33017:26;;;;;;;;;;;;:9;:26::i;:::-;32941:110;;:::o;32251:348::-;32344:4;32046:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32046:16:0;32361:73;;;;-1:-1:-1;;;32361:73:0;;11183:2:1;32361:73:0;;;11165:21:1;11222:2;11202:18;;;11195:30;11261:34;11241:18;;;11234:62;-1:-1:-1;;;11312:18:1;;;11305:42;11364:19;;32361:73:0;10981:408:1;32361:73:0;32445:13;32461:23;32476:7;32461:14;:23::i;:::-;32445:39;;32514:5;-1:-1:-1;;;;;32503:16:0;:7;-1:-1:-1;;;;;32503:16:0;;:51;;;;32547:7;-1:-1:-1;;;;;32523:31:0;:20;32535:7;32523:11;:20::i;:::-;-1:-1:-1;;;;;32523:31:0;;32503:51;:87;;;-1:-1:-1;;;;;;29343:25:0;;;29319:4;29343:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32558:32;32495:96;32251:348;-1:-1:-1;;;;32251:348:0:o;35243:578::-;35402:4;-1:-1:-1;;;;;35375:31:0;:23;35390:7;35375:14;:23::i;:::-;-1:-1:-1;;;;;35375:31:0;;35367:85;;;;-1:-1:-1;;;35367:85:0;;15864:2:1;35367:85:0;;;15846:21:1;15903:2;15883:18;;;15876:30;15942:34;15922:18;;;15915:62;16013:11;15993:18;;;15986:39;16042:19;;35367:85:0;15662:405:1;35367:85:0;-1:-1:-1;;;;;35471:16:0;;35463:65;;;;-1:-1:-1;;;35463:65:0;;10019:2:1;35463:65:0;;;10001:21:1;10058:2;10038:18;;;10031:30;10097:34;10077:18;;;10070:62;-1:-1:-1;;;10148:18:1;;;10141:34;10192:19;;35463:65:0;9817:400:1;35463:65:0;35541:39;35562:4;35568:2;35572:7;35541:20;:39::i;:::-;35645:29;35662:1;35666:7;35645:8;:29::i;:::-;-1:-1:-1;;;;;35687:15:0;;;;;;:9;:15;;;;;:20;;35706:1;;35687:15;:20;;35706:1;;35687:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35718:13:0;;;;;;:9;:13;;;;;:18;;35735:1;;35718:13;:18;;35735:1;;35718:18;:::i;:::-;;;;-1:-1:-1;;35747:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35747:21:0;-1:-1:-1;;;;;35747:21:0;;;;;;;;;35786:27;;35747:16;;35786:27;;;;;;;35243:578;;;:::o;5150:173::-;5225:6;;;-1:-1:-1;;;;;5242:17:0;;;-1:-1:-1;;;;;;5242:17:0;;;;;;;5275:40;;5225:6;;;5242:17;5225:6;;5275:40;;5206:16;;5275:40;5195:128;5150:173;:::o;51655:192::-;51730:12;51748:8;-1:-1:-1;;;;;51748:13:0;51770:7;51748:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51729:54;;;51802:7;51794:45;;;;-1:-1:-1;;;51794:45:0;;17047:2:1;51794:45:0;;;17029:21:1;17086:2;17066:18;;;17059:30;17125:27;17105:18;;;17098:55;17170:18;;51794:45:0;16845:349:1;31329:315:0;31486:28;31496:4;31502:2;31506:7;31486:9;:28::i;:::-;31533:48;31556:4;31562:2;31566:7;31575:5;31533:22;:48::i;:::-;31525:111;;;;-1:-1:-1;;;31525:111:0;;8480:2:1;31525:111:0;;;8462:21:1;8519:2;8499:18;;;8492:30;8558:34;8538:18;;;8531:62;-1:-1:-1;;;8609:18:1;;;8602:48;8667:19;;31525:111:0;8278:414:1;51166:113:0;51226:13;51259:12;51252:19;;;;;:::i;13216:723::-;13272:13;13493:10;13489:53;;-1:-1:-1;;13520:10:0;;;;;;;;;;;;-1:-1:-1;;;13520:10:0;;;;;13216:723::o;13489:53::-;13567:5;13552:12;13608:78;13615:9;;13608:78;;13641:8;;;;:::i;:::-;;-1:-1:-1;13664:10:0;;-1:-1:-1;13672:2:0;13664:10;;:::i;:::-;;;13608:78;;;13696:19;13728:6;13718:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13718:17:0;;13696:39;;13746:154;13753:10;;13746:154;;13780:11;13790:1;13780:11;;:::i;:::-;;-1:-1:-1;13849:10:0;13857:2;13849:5;:10;:::i;:::-;13836:24;;:2;:24;:::i;:::-;13823:39;;13806:6;13813;13806:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;13877:11:0;13886:2;13877:11;;:::i;:::-;;;13746:154;;33278:321;33408:18;33414:2;33418:7;33408:5;:18::i;:::-;33459:54;33490:1;33494:2;33498:7;33507:5;33459:22;:54::i;:::-;33437:154;;;;-1:-1:-1;;;33437:154:0;;8480:2:1;33437:154:0;;;8462:21:1;8519:2;8499:18;;;8492:30;8558:34;8538:18;;;8531:62;-1:-1:-1;;;8609:18:1;;;8602:48;8667:19;;33437:154:0;8278:414:1;40776:589:0;-1:-1:-1;;;;;40982:18:0;;40978:187;;41017:40;41049:7;42192:10;:17;;42165:24;;;;:15;:24;;;;;:44;;;42220:24;;;;;;;;;;;;42088:164;41017:40;40978:187;;;41087:2;-1:-1:-1;;;;;41079:10:0;:4;-1:-1:-1;;;;;41079:10:0;;41075:90;;41106:47;41139:4;41145:7;41106:32;:47::i;:::-;-1:-1:-1;;;;;41179:16:0;;41175:183;;41212:45;41249:7;41212:36;:45::i;41175:183::-;41285:4;-1:-1:-1;;;;;41279:10:0;:2;-1:-1:-1;;;;;41279:10:0;;41275:83;;41306:40;41334:2;41338:7;41306:27;:40::i;36678:799::-;36833:4;-1:-1:-1;;;;;36854:13:0;;16058:20;16106:8;36850:620;;36890:72;;-1:-1:-1;;;36890:72:0;;-1:-1:-1;;;;;36890:36:0;;;;;:72;;732:10;;36941:4;;36947:7;;36956:5;;36890:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36890:72:0;;;;;;;;-1:-1:-1;;36890:72:0;;;;;;;;;;;;:::i;:::-;;;36886:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37132:13:0;;37128:272;;37175:60;;-1:-1:-1;;;37175:60:0;;8480:2:1;37175:60:0;;;8462:21:1;8519:2;8499:18;;;8492:30;8558:34;8538:18;;;8531:62;-1:-1:-1;;;8609:18:1;;;8602:48;8667:19;;37175:60:0;8278:414:1;37128:272:0;37350:6;37344:13;37335:6;37331:2;37327:15;37320:38;36886:529;-1:-1:-1;;;;;;37013:51:0;-1:-1:-1;;;37013:51:0;;-1:-1:-1;37006:58:0;;36850:620;-1:-1:-1;37454:4:0;36678:799;;;;;;:::o;33935:382::-;-1:-1:-1;;;;;34015:16:0;;34007:61;;;;-1:-1:-1;;;34007:61:0;;14029:2:1;34007:61:0;;;14011:21:1;;;14048:18;;;14041:30;14107:34;14087:18;;;14080:62;14159:18;;34007:61:0;13827:356:1;34007:61:0;32022:4;32046:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32046:16:0;:30;34079:58;;;;-1:-1:-1;;;34079:58:0;;9306:2:1;34079:58:0;;;9288:21:1;9345:2;9325:18;;;9318:30;9384;9364:18;;;9357:58;9432:18;;34079:58:0;9104:352:1;34079:58:0;34150:45;34179:1;34183:2;34187:7;34150:20;:45::i;:::-;-1:-1:-1;;;;;34208:13:0;;;;;;:9;:13;;;;;:18;;34225:1;;34208:13;:18;;34225:1;;34208:18;:::i;:::-;;;;-1:-1:-1;;34237:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34237:21:0;-1:-1:-1;;;;;34237:21:0;;;;;;;;34276:33;;34237:16;;;34276:33;;34237:16;;34276:33;33935:382;;:::o;42879:988::-;43145:22;43195:1;43170:22;43187:4;43170:16;:22::i;:::-;:26;;;;:::i;:::-;43207:18;43228:26;;;:17;:26;;;;;;43145:51;;-1:-1:-1;43361:28:0;;;43357:328;;-1:-1:-1;;;;;43428:18:0;;43406:19;43428:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43479:30;;;;;;:44;;;43596:30;;:17;:30;;;;;:43;;;43357:328;-1:-1:-1;43781:26:0;;;;:17;:26;;;;;;;;43774:33;;;-1:-1:-1;;;;;43825:18:0;;;;;:12;:18;;;;;:34;;;;;;;43818:41;42879:988::o;44162:1079::-;44440:10;:17;44415:22;;44440:21;;44460:1;;44440:21;:::i;:::-;44472:18;44493:24;;;:15;:24;;;;;;44866:10;:26;;44415:46;;-1:-1:-1;44493:24:0;;44415:46;;44866:26;;;;;;:::i;:::-;;;;;;;;;44844:48;;44930:11;44905:10;44916;44905:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45010:28;;;:15;:28;;;;;;;:41;;;45182:24;;;;;45175:31;45217:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44233:1008;;;44162:1079;:::o;41666:221::-;41751:14;41768:20;41785:2;41768:16;:20::i;:::-;-1:-1:-1;;;;;41799:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41844:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41666:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:186::-;910:6;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1002:29;1021:9;1002:29;:::i;1042:260::-;1110:6;1118;1171:2;1159:9;1150:7;1146:23;1142:32;1139:52;;;1187:1;1184;1177:12;1139:52;1210:29;1229:9;1210:29;:::i;:::-;1200:39;;1258:38;1292:2;1281:9;1277:18;1258:38;:::i;:::-;1248:48;;1042:260;;;;;:::o;1307:328::-;1384:6;1392;1400;1453:2;1441:9;1432:7;1428:23;1424:32;1421:52;;;1469:1;1466;1459:12;1421:52;1492:29;1511:9;1492:29;:::i;:::-;1482:39;;1540:38;1574:2;1563:9;1559:18;1540:38;:::i;:::-;1530:48;;1625:2;1614:9;1610:18;1597:32;1587:42;;1307:328;;;;;:::o;1640:666::-;1735:6;1743;1751;1759;1812:3;1800:9;1791:7;1787:23;1783:33;1780:53;;;1829:1;1826;1819:12;1780:53;1852:29;1871:9;1852:29;:::i;:::-;1842:39;;1900:38;1934:2;1923:9;1919:18;1900:38;:::i;:::-;1890:48;;1985:2;1974:9;1970:18;1957:32;1947:42;;2040:2;2029:9;2025:18;2012:32;2067:18;2059:6;2056:30;2053:50;;;2099:1;2096;2089:12;2053:50;2122:22;;2175:4;2167:13;;2163:27;-1:-1:-1;2153:55:1;;2204:1;2201;2194:12;2153:55;2227:73;2292:7;2287:2;2274:16;2269:2;2265;2261:11;2227:73;:::i;:::-;2217:83;;;1640:666;;;;;;;:::o;2311:347::-;2376:6;2384;2437:2;2425:9;2416:7;2412:23;2408:32;2405:52;;;2453:1;2450;2443:12;2405:52;2476:29;2495:9;2476:29;:::i;:::-;2466:39;;2555:2;2544:9;2540:18;2527:32;2602:5;2595:13;2588:21;2581:5;2578:32;2568:60;;2624:1;2621;2614:12;2568:60;2647:5;2637:15;;;2311:347;;;;;:::o;2663:254::-;2731:6;2739;2792:2;2780:9;2771:7;2767:23;2763:32;2760:52;;;2808:1;2805;2798:12;2760:52;2831:29;2850:9;2831:29;:::i;:::-;2821:39;2907:2;2892:18;;;;2879:32;;-1:-1:-1;;;2663:254:1:o;2922:615::-;3008:6;3016;3069:2;3057:9;3048:7;3044:23;3040:32;3037:52;;;3085:1;3082;3075:12;3037:52;3125:9;3112:23;3154:18;3195:2;3187:6;3184:14;3181:34;;;3211:1;3208;3201:12;3181:34;3249:6;3238:9;3234:22;3224:32;;3294:7;3287:4;3283:2;3279:13;3275:27;3265:55;;3316:1;3313;3306:12;3265:55;3356:2;3343:16;3382:2;3374:6;3371:14;3368:34;;;3398:1;3395;3388:12;3368:34;3451:7;3446:2;3436:6;3433:1;3429:14;3425:2;3421:23;3417:32;3414:45;3411:65;;;3472:1;3469;3462:12;3411:65;3503:2;3495:11;;;;;3525:6;;-1:-1:-1;2922:615:1;;-1:-1:-1;;;;2922:615:1:o;3542:245::-;3600:6;3653:2;3641:9;3632:7;3628:23;3624:32;3621:52;;;3669:1;3666;3659:12;3621:52;3708:9;3695:23;3727:30;3751:5;3727:30;:::i;3792:249::-;3861:6;3914:2;3902:9;3893:7;3889:23;3885:32;3882:52;;;3930:1;3927;3920:12;3882:52;3962:9;3956:16;3981:30;4005:5;3981:30;:::i;4046:450::-;4115:6;4168:2;4156:9;4147:7;4143:23;4139:32;4136:52;;;4184:1;4181;4174:12;4136:52;4224:9;4211:23;4257:18;4249:6;4246:30;4243:50;;;4289:1;4286;4279:12;4243:50;4312:22;;4365:4;4357:13;;4353:27;-1:-1:-1;4343:55:1;;4394:1;4391;4384:12;4343:55;4417:73;4482:7;4477:2;4464:16;4459:2;4455;4451:11;4417:73;:::i;4501:180::-;4560:6;4613:2;4601:9;4592:7;4588:23;4584:32;4581:52;;;4629:1;4626;4619:12;4581:52;-1:-1:-1;4652:23:1;;4501:180;-1:-1:-1;4501:180:1:o;4686:257::-;4727:3;4765:5;4759:12;4792:6;4787:3;4780:19;4808:63;4864:6;4857:4;4852:3;4848:14;4841:4;4834:5;4830:16;4808:63;:::i;:::-;4925:2;4904:15;-1:-1:-1;;4900:29:1;4891:39;;;;4932:4;4887:50;;4686:257;-1:-1:-1;;4686:257:1:o;4948:470::-;5127:3;5165:6;5159:13;5181:53;5227:6;5222:3;5215:4;5207:6;5203:17;5181:53;:::i;:::-;5297:13;;5256:16;;;;5319:57;5297:13;5256:16;5353:4;5341:17;;5319:57;:::i;:::-;5392:20;;4948:470;-1:-1:-1;;;;4948:470:1:o;5864:511::-;6058:4;-1:-1:-1;;;;;6168:2:1;6160:6;6156:15;6145:9;6138:34;6220:2;6212:6;6208:15;6203:2;6192:9;6188:18;6181:43;;6260:6;6255:2;6244:9;6240:18;6233:34;6303:3;6298:2;6287:9;6283:18;6276:31;6324:45;6364:3;6353:9;6349:19;6341:6;6324:45;:::i;:::-;6316:53;5864:511;-1:-1:-1;;;;;;5864:511:1:o;6874:219::-;7023:2;7012:9;7005:21;6986:4;7043:44;7083:2;7072:9;7068:18;7060:6;7043:44;:::i;20839:128::-;20879:3;20910:1;20906:6;20903:1;20900:13;20897:39;;;20916:18;;:::i;:::-;-1:-1:-1;20952:9:1;;20839:128::o;20972:120::-;21012:1;21038;21028:35;;21043:18;;:::i;:::-;-1:-1:-1;21077:9:1;;20972:120::o;21097:168::-;21137:7;21203:1;21199;21195:6;21191:14;21188:1;21185:21;21180:1;21173:9;21166:17;21162:45;21159:71;;;21210:18;;:::i;:::-;-1:-1:-1;21250:9:1;;21097:168::o;21270:125::-;21310:4;21338:1;21335;21332:8;21329:34;;;21343:18;;:::i;:::-;-1:-1:-1;21380:9:1;;21270:125::o;21400:258::-;21472:1;21482:113;21496:6;21493:1;21490:13;21482:113;;;21572:11;;;21566:18;21553:11;;;21546:39;21518:2;21511:10;21482:113;;;21613:6;21610:1;21607:13;21604:48;;;-1:-1:-1;;21648:1:1;21630:16;;21623:27;21400:258::o;21663:380::-;21742:1;21738:12;;;;21785;;;21806:61;;21860:4;21852:6;21848:17;21838:27;;21806:61;21913:2;21905:6;21902:14;21882:18;21879:38;21876:161;;;21959:10;21954:3;21950:20;21947:1;21940:31;21994:4;21991:1;21984:15;22022:4;22019:1;22012:15;21876:161;;21663:380;;;:::o;22048:135::-;22087:3;-1:-1:-1;;22108:17:1;;22105:43;;;22128:18;;:::i;:::-;-1:-1:-1;22175:1:1;22164:13;;22048:135::o;22188:112::-;22220:1;22246;22236:35;;22251:18;;:::i;:::-;-1:-1:-1;22285:9:1;;22188:112::o;22305:127::-;22366:10;22361:3;22357:20;22354:1;22347:31;22397:4;22394:1;22387:15;22421:4;22418:1;22411:15;22437:127;22498:10;22493:3;22489:20;22486:1;22479:31;22529:4;22526:1;22519:15;22553:4;22550:1;22543:15;22569:127;22630:10;22625:3;22621:20;22618:1;22611:31;22661:4;22658:1;22651:15;22685:4;22682:1;22675:15;22701:127;22762:10;22757:3;22753:20;22750:1;22743:31;22793:4;22790:1;22783:15;22817:4;22814:1;22807:15;22833:127;22894:10;22889:3;22885:20;22882:1;22875:31;22925:4;22922:1;22915:15;22949:4;22946:1;22939:15;22965:131;-1:-1:-1;;;;;;23039:32:1;;23029:43;;23019:71;;23086:1;23083;23076:12

Swarm Source

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