ETH Price: $3,381.56 (-1.84%)
Gas: 4 Gwei

Token

Genesis Blue (Blue)
 

Overview

Max Total Supply

1,618 Blue

Holders

199

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cryptoxic.eth
Balance
4 Blue
0x771e9a80ca48265e2c44c0d444c047d023c3c142
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
GenesisBlueKepriEstates

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;

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

library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

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

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

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

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




contract GenesisBlueKepriEstates is ERC721Enumerable, Ownable {
  using Strings for uint256;
  using SafeMath for uint256;
  string private baseURI;
  bool public isSaleStarted = false;
  string public notRevealedUri;
  uint256 private totalMinted;

  uint256 public cost = 0.05 ether;
  uint256 public maxSupply = 3000;
  uint256 public nftPerAddressLimit = 5;
  uint256 public remainingNftForSale = 3000;

  bool public paused = false;
  bool public revealed = true;
  
  mapping(address => uint256) public addressMinted;


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

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


    function mintAsOwner(uint _mintAmount) public  onlyOwner{
        
        require(!paused, "the contract is paused");
        require(remainingNftForSale >= _mintAmount, "Exceeds Remaining NFT for sale");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply, "Exceeds maximum Originators supply");
        uint256 _mintedSupply = totalMinted;
        for (uint256 i = 1; i <= _mintAmount; i++) {
             remainingNftForSale--;
            _safeMint(msg.sender, _mintedSupply + i);
             totalMinted++;
        }
    }

    function mint(uint _mintAmount) public payable {
        require(isSaleStarted,"sale is not started");
        require(!paused, "the contract is paused");
        require(remainingNftForSale >= _mintAmount, "Exceeds Remaining NFT for sale");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply, "Exceeds maximum Originators supply");       
        
        require(msg.value >= getMintFees(_mintAmount), "Insufficient funds");
        uint256 ownerMintedCount = addressMinted[msg.sender];
        require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "Max NFTs per address exceeded.");
        uint256 _mintedSupply = totalMinted;
        for (uint256 i = 1; i <= _mintAmount; i++) {
            remainingNftForSale--;
            addressMinted[msg.sender]++;
            _safeMint(msg.sender, _mintedSupply + i);
            totalMinted++;
        }
        
    }

    function multiTransfer(address[] memory _address, uint256[] memory _tokenIds) external{
        for (uint256 i; i < _tokenIds.length; i++) {
            safeTransferFrom(msg.sender,_address[i],_tokenIds[i]);
        }
    }

    function Burn(uint256 tokenId) public {
        address owner = ERC721.ownerOf(tokenId);
        require(msg.sender  == owner, "Caller is not onwer");
        _burn(tokenId);
    }

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

  function getMintFees(uint _mintAmount) public view returns(uint256) {
        return cost * _mintAmount;
  }
    
  function tokenURI(uint256 tokenId) public view virtual override returns (string memory){      
    require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");    
    if(revealed == false) {
        return string(abi.encodePacked(notRevealedUri, tokenId.toString()));
    }
    string memory currentBaseURI = _baseURI();
    return string(abi.encodePacked(currentBaseURI, tokenId.toString()));
  }


  function setNftCost(uint price) public onlyOwner {
      cost = price;
  }

  function setRemainingNftForSale(uint _remainingNftForSale) public onlyOwner {
      remainingNftForSale = _remainingNftForSale;
  }


  function setNftPerAddressLimit(uint _nftPerAddressLimit) public onlyOwner {
      nftPerAddressLimit = _nftPerAddressLimit;
  }
  

  function setMaxSupply(uint _maxSupply) public onlyOwner {
      maxSupply = _maxSupply;
  }


  function startSale() public onlyOwner {
      isSaleStarted = true;
  }

  function stopSale() public onlyOwner {
      isSaleStarted = false;
  }

  function reveal(bool _reveal) public onlyOwner {
      revealed = _reveal;
  }
  
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }
  
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  
    function withdraw(uint256 amount) public onlyOwner {
        payable(msg.sender).transfer(amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMinted","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"getMintFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintAsOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingNftForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setNftCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftPerAddressLimit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_remainingNftForSale","type":"uint256"}],"name":"setRemainingNftForSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040819052600c805460ff1916905566b1a2bc2ec50000600f55610bb8601081905560056011556012556013805461ffff1916610100179055620030dc3881900390819083398101604081905262000059916200027e565b83836000620000698382620003c6565b506001620000788282620003c6565b50505060006200008d620000fb60201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000e682620000ff565b620000f18162000160565b5050505062000492565b3390565b600a546001600160a01b031633146200014e5760405162461bcd60e51b81526020600482018190526024820152600080516020620030bc83398151915260448201526064015b60405180910390fd5b600b6200015c8282620003c6565b5050565b600a546001600160a01b03163314620001ab5760405162461bcd60e51b81526020600482018190526024820152600080516020620030bc833981519152604482015260640162000145565b600d6200015c8282620003c6565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001e157600080fd5b81516001600160401b0380821115620001fe57620001fe620001b9565b604051601f8301601f19908116603f01168101908282118183101715620002295762000229620001b9565b816040528381526020925086838588010111156200024657600080fd5b600091505b838210156200026a57858201830151818301840152908201906200024b565b600093810190920192909252949350505050565b600080600080608085870312156200029557600080fd5b84516001600160401b0380821115620002ad57600080fd5b620002bb88838901620001cf565b95506020870151915080821115620002d257600080fd5b620002e088838901620001cf565b94506040870151915080821115620002f757600080fd5b6200030588838901620001cf565b935060608701519150808211156200031c57600080fd5b506200032b87828801620001cf565b91505092959194509250565b600181811c908216806200034c57607f821691505b6020821081036200036d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003c157600081815260208120601f850160051c810160208610156200039c5750805b601f850160051c820191505b81811015620003bd57828155600101620003a8565b5050505b505050565b81516001600160401b03811115620003e257620003e2620001b9565b620003fa81620003f3845462000337565b8462000373565b602080601f831160018114620004325760008415620004195750858301515b600019600386901b1c1916600185901b178555620003bd565b600085815260208120601f198616915b82811015620004635788860151825594840194600190910190840162000442565b5085821015620004825787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612c1a80620004a26000396000f3fe6080604052600436106102725760003560e01c80636f8b44b01161014f578063b88d4fde116100c1578063e36b0b371161007a578063e36b0b3714610728578063e985e9c51461073d578063f2c4ce1e14610786578063f2fde38b146107a6578063f606faea146107c6578063fa30297e146107e657600080fd5b8063b88d4fde1461067c578063b90306ad1461069c578063ba7d2c76146106bc578063c87b56dd146106d2578063d0eb26b0146106f2578063d5abeb011461071257600080fd5b8063940cd05b11610113578063940cd05b146105df57806395d89b41146105ff578063a0712d6814610614578063a22cb46514610627578063b28a2c5714610647578063b66a0e5d1461066757600080fd5b80636f8b44b01461054c57806370a082311461056c578063715018a61461058c5780638a7d04d2146105a15780638da5cb5b146105c157600080fd5b80632e1a7d4d116101e85780634f6ccce7116101ac5780634f6ccce71461049357806351830227146104b357806355f804b3146104d25780635c975abb146104f25780636352211e1461050c57806367f141331461052c57600080fd5b80632e1a7d4d146103ec5780632f745c591461040c5780633b80b7d31461042c57806342842e0e14610446578063438b63001461046657600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806315eb65031461038157806318160ddd146103975780631e89d545146103ac57806323b872dd146103cc57600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046122d2565b610813565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c736600461230b565b61083e565b005b3480156102da57600080fd5b506102e3610884565b6040516102a39190612376565b3480156102fc57600080fd5b5061031061030b366004612389565b610916565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e36109ab565b34801561034957600080fd5b506102cc6103583660046123b9565b610a39565b34801561036957600080fd5b50610373600f5481565b6040519081526020016102a3565b34801561038d57600080fd5b5061037360125481565b3480156103a357600080fd5b50600854610373565b3480156103b857600080fd5b506102cc6103c73660046124b9565b610b4e565b3480156103d857600080fd5b506102cc6103e7366004612579565b610ba9565b3480156103f857600080fd5b506102cc610407366004612389565b610bda565b34801561041857600080fd5b506103736104273660046123b9565b610c35565b34801561043857600080fd5b50600c546102979060ff1681565b34801561045257600080fd5b506102cc610461366004612579565b610ccb565b34801561047257600080fd5b506104866104813660046125b5565b610ce6565b6040516102a391906125d0565b34801561049f57600080fd5b506103736104ae366004612389565b610d88565b3480156104bf57600080fd5b5060135461029790610100900460ff1681565b3480156104de57600080fd5b506102cc6104ed36600461266c565b610e1b565b3480156104fe57600080fd5b506013546102979060ff1681565b34801561051857600080fd5b50610310610527366004612389565b610e51565b34801561053857600080fd5b50610373610547366004612389565b610ec8565b34801561055857600080fd5b506102cc610567366004612389565b610ed8565b34801561057857600080fd5b506103736105873660046125b5565b610f07565b34801561059857600080fd5b506102cc610f8e565b3480156105ad57600080fd5b506102cc6105bc366004612389565b611002565b3480156105cd57600080fd5b50600a546001600160a01b0316610310565b3480156105eb57600080fd5b506102cc6105fa36600461230b565b611031565b34801561060b57600080fd5b506102e3611075565b6102cc610622366004612389565b611084565b34801561063357600080fd5b506102cc6106423660046126b5565b6112e0565b34801561065357600080fd5b506102cc610662366004612389565b6113a4565b34801561067357600080fd5b506102cc611504565b34801561068857600080fd5b506102cc6106973660046126e8565b61153d565b3480156106a857600080fd5b506102cc6106b7366004612389565b61156f565b3480156106c857600080fd5b5061037360115481565b3480156106de57600080fd5b506102e36106ed366004612389565b6115d3565b3480156106fe57600080fd5b506102cc61070d366004612389565b6116d6565b34801561071e57600080fd5b5061037360105481565b34801561073457600080fd5b506102cc611705565b34801561074957600080fd5b50610297610758366004612764565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079257600080fd5b506102cc6107a136600461266c565b61173b565b3480156107b257600080fd5b506102cc6107c13660046125b5565b611771565b3480156107d257600080fd5b506102cc6107e1366004612389565b61185c565b3480156107f257600080fd5b506103736108013660046125b5565b60146020526000908152604090205481565b60006001600160e01b0319821663780e9d6360e01b148061083857506108388261188b565b92915050565b600a546001600160a01b031633146108715760405162461bcd60e51b81526004016108689061278e565b60405180910390fd5b6013805460ff1916911515919091179055565b606060008054610893906127c3565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf906127c3565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661098f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610868565b506000908152600460205260409020546001600160a01b031690565b600d80546109b8906127c3565b80601f01602080910402602001604051908101604052809291908181526020018280546109e4906127c3565b8015610a315780601f10610a0657610100808354040283529160200191610a31565b820191906000526020600020905b815481529060010190602001808311610a1457829003601f168201915b505050505081565b6000610a4482610e51565b9050806001600160a01b0316836001600160a01b031603610ab15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610868565b336001600160a01b0382161480610acd5750610acd8133610758565b610b3f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610868565b610b4983836118db565b505050565b60005b8151811015610b4957610b9733848381518110610b7057610b706127fd565b6020026020010151848481518110610b8a57610b8a6127fd565b6020026020010151610ccb565b80610ba181612829565b915050610b51565b610bb33382611949565b610bcf5760405162461bcd60e51b815260040161086890612842565b610b49838383611a40565b600a546001600160a01b03163314610c045760405162461bcd60e51b81526004016108689061278e565b604051339082156108fc029083906000818181858888f19350505050158015610c31573d6000803e3d6000fd5b5050565b6000610c4083610f07565b8210610ca25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610868565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b498383836040518060200160405280600081525061153d565b60606000610cf383610f07565b905060008167ffffffffffffffff811115610d1057610d106123e3565b604051908082528060200260200182016040528015610d39578160200160208202803683370190505b50905060005b82811015610d8057610d518582610c35565b828281518110610d6357610d636127fd565b602090810291909101015280610d7881612829565b915050610d3f565b509392505050565b6000610d9360085490565b8210610df65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610868565b60088281548110610e0957610e096127fd565b90600052602060002001549050919050565b600a546001600160a01b03163314610e455760405162461bcd60e51b81526004016108689061278e565b600b610c3182826128e1565b6000818152600260205260408120546001600160a01b0316806108385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610868565b600081600f5461083891906129a1565b600a546001600160a01b03163314610f025760405162461bcd60e51b81526004016108689061278e565b601055565b60006001600160a01b038216610f725760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610868565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fb85760405162461bcd60e51b81526004016108689061278e565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331461102c5760405162461bcd60e51b81526004016108689061278e565b601255565b600a546001600160a01b0316331461105b5760405162461bcd60e51b81526004016108689061278e565b601380549115156101000261ff0019909216919091179055565b606060018054610893906127c3565b600c5460ff166110cc5760405162461bcd60e51b81526020600482015260136024820152721cd85b19481a5cc81b9bdd081cdd185c9d1959606a1b6044820152606401610868565b60135460ff16156111185760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610868565b80601254101561116a5760405162461bcd60e51b815260206004820152601e60248201527f457863656564732052656d61696e696e67204e465420666f722073616c6500006044820152606401610868565b600061117560085490565b60105490915061118583836129b8565b11156111a35760405162461bcd60e51b8152600401610868906129cb565b6111ac82610ec8565b3410156111f05760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610868565b3360009081526014602052604090205460115461120d84836129b8565b111561125b5760405162461bcd60e51b815260206004820152601e60248201527f4d6178204e4654732070657220616464726573732065786365656465642e00006044820152606401610868565b600e5460015b8481116112d9576012805490600061127883612a0d565b909155505033600090815260146020526040812080549161129883612829565b909155506112b19050336112ac83856129b8565b611beb565b600e80549060006112c183612829565b919050555080806112d190612829565b915050611261565b5050505050565b336001600160a01b038316036113385760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610868565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113ce5760405162461bcd60e51b81526004016108689061278e565b60135460ff161561141a5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610868565b80601254101561146c5760405162461bcd60e51b815260206004820152601e60248201527f457863656564732052656d61696e696e67204e465420666f722073616c6500006044820152606401610868565b600061147760085490565b60105490915061148783836129b8565b11156114a55760405162461bcd60e51b8152600401610868906129cb565b600e5460015b8381116114fe57601280549060006114c283612a0d565b909155506114d69050336112ac83856129b8565b600e80549060006114e683612829565b919050555080806114f690612829565b9150506114ab565b50505050565b600a546001600160a01b0316331461152e5760405162461bcd60e51b81526004016108689061278e565b600c805460ff19166001179055565b6115473383611949565b6115635760405162461bcd60e51b815260040161086890612842565b6114fe84848484611c05565b600061157a82610e51565b9050336001600160a01b038216146115ca5760405162461bcd60e51b815260206004820152601360248201527221b0b63632b91034b9903737ba1037b73bb2b960691b6044820152606401610868565b610c3182611c38565b6000818152600260205260409020546060906001600160a01b03166116525760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610868565b601354610100900460ff16151560000361169857600d61167183611cdf565b604051602001611682929190612a24565b6040516020818303038152906040529050919050565b60006116a2611de0565b9050806116ae84611cdf565b6040516020016116bf929190612aab565b604051602081830303815290604052915050919050565b600a546001600160a01b031633146117005760405162461bcd60e51b81526004016108689061278e565b601155565b600a546001600160a01b0316331461172f5760405162461bcd60e51b81526004016108689061278e565b600c805460ff19169055565b600a546001600160a01b031633146117655760405162461bcd60e51b81526004016108689061278e565b600d610c3182826128e1565b600a546001600160a01b0316331461179b5760405162461bcd60e51b81526004016108689061278e565b6001600160a01b0381166118005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610868565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146118865760405162461bcd60e51b81526004016108689061278e565b600f55565b60006001600160e01b031982166380ac58cd60e01b14806118bc57506001600160e01b03198216635b5e139f60e01b145b8061083857506301ffc9a760e01b6001600160e01b0319831614610838565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061191082610e51565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119c25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610868565b60006119cd83610e51565b9050806001600160a01b0316846001600160a01b03161480611a085750836001600160a01b03166119fd84610916565b6001600160a01b0316145b80611a3857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a5382610e51565b6001600160a01b031614611abb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610868565b6001600160a01b038216611b1d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610868565b611b28838383611def565b611b336000826118db565b6001600160a01b0383166000908152600360205260408120805460019290611b5c908490612ad1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b8a9084906129b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c31828260405180602001604052806000815250611ea7565b611c10848484611a40565b611c1c84848484611eda565b6114fe5760405162461bcd60e51b815260040161086890612ae4565b6000611c4382610e51565b9050611c5181600084611def565b611c5c6000836118db565b6001600160a01b0381166000908152600360205260408120805460019290611c85908490612ad1565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081600003611d065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d305780611d1a81612829565b9150611d299050600a83612b4c565b9150611d0a565b60008167ffffffffffffffff811115611d4b57611d4b6123e3565b6040519080825280601f01601f191660200182016040528015611d75576020820181803683370190505b5090505b8415611a3857611d8a600183612ad1565b9150611d97600a86612b60565b611da29060306129b8565b60f81b818381518110611db757611db76127fd565b60200101906001600160f81b031916908160001a905350611dd9600a86612b4c565b9450611d79565b6060600b8054610893906127c3565b6001600160a01b038316611e4a57611e4581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e6d565b816001600160a01b0316836001600160a01b031614611e6d57611e6d8382611fdb565b6001600160a01b038216611e8457610b4981612078565b826001600160a01b0316826001600160a01b031614610b4957610b498282612127565b611eb1838361216b565b611ebe6000848484611eda565b610b495760405162461bcd60e51b815260040161086890612ae4565b60006001600160a01b0384163b15611fd057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f1e903390899088908890600401612b74565b6020604051808303816000875af1925050508015611f59575060408051601f3d908101601f19168201909252611f5691810190612bb1565b60015b611fb6573d808015611f87576040519150601f19603f3d011682016040523d82523d6000602084013e611f8c565b606091505b508051600003611fae5760405162461bcd60e51b815260040161086890612ae4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a38565b506001949350505050565b60006001611fe884610f07565b611ff29190612ad1565b600083815260076020526040902054909150808214612045576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061208a90600190612ad1565b600083815260096020526040812054600880549394509092849081106120b2576120b26127fd565b9060005260206000200154905080600883815481106120d3576120d36127fd565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061210b5761210b612bce565b6001900381819060005260206000200160009055905550505050565b600061213283610f07565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121c15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610868565b6000818152600260205260409020546001600160a01b0316156122265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610868565b61223260008383611def565b6001600160a01b038216600090815260036020526040812080546001929061225b9084906129b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146122cf57600080fd5b50565b6000602082840312156122e457600080fd5b81356122ef816122b9565b9392505050565b8035801515811461230657600080fd5b919050565b60006020828403121561231d57600080fd5b6122ef826122f6565b60005b83811015612341578181015183820152602001612329565b50506000910152565b60008151808452612362816020860160208601612326565b601f01601f19169290920160200192915050565b6020815260006122ef602083018461234a565b60006020828403121561239b57600080fd5b5035919050565b80356001600160a01b038116811461230657600080fd5b600080604083850312156123cc57600080fd5b6123d5836123a2565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612422576124226123e3565b604052919050565b600067ffffffffffffffff821115612444576124446123e3565b5060051b60200190565b600082601f83011261245f57600080fd5b8135602061247461246f8361242a565b6123f9565b82815260059290921b8401810191818101908684111561249357600080fd5b8286015b848110156124ae5780358352918301918301612497565b509695505050505050565b600080604083850312156124cc57600080fd5b823567ffffffffffffffff808211156124e457600080fd5b818501915085601f8301126124f857600080fd5b8135602061250861246f8361242a565b82815260059290921b8401810191818101908984111561252757600080fd5b948201945b8386101561254c5761253d866123a2565b8252948201949082019061252c565b9650508601359250508082111561256257600080fd5b5061256f8582860161244e565b9150509250929050565b60008060006060848603121561258e57600080fd5b612597846123a2565b92506125a5602085016123a2565b9150604084013590509250925092565b6000602082840312156125c757600080fd5b6122ef826123a2565b6020808252825182820181905260009190848201906040850190845b81811015612608578351835292840192918401916001016125ec565b50909695505050505050565b600067ffffffffffffffff83111561262e5761262e6123e3565b612641601f8401601f19166020016123f9565b905082815283838301111561265557600080fd5b828260208301376000602084830101529392505050565b60006020828403121561267e57600080fd5b813567ffffffffffffffff81111561269557600080fd5b8201601f810184136126a657600080fd5b611a3884823560208401612614565b600080604083850312156126c857600080fd5b6126d1836123a2565b91506126df602084016122f6565b90509250929050565b600080600080608085870312156126fe57600080fd5b612707856123a2565b9350612715602086016123a2565b925060408501359150606085013567ffffffffffffffff81111561273857600080fd5b8501601f8101871361274957600080fd5b61275887823560208401612614565b91505092959194509250565b6000806040838503121561277757600080fd5b612780836123a2565b91506126df602084016123a2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806127d757607f821691505b6020821081036127f757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161283b5761283b612813565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b601f821115610b4957600081815260208120601f850160051c810160208610156128ba5750805b601f850160051c820191505b818110156128d9578281556001016128c6565b505050505050565b815167ffffffffffffffff8111156128fb576128fb6123e3565b61290f8161290984546127c3565b84612893565b602080601f831160018114612944576000841561292c5750858301515b600019600386901b1c1916600185901b1785556128d9565b600085815260208120601f198616915b8281101561297357888601518255948401946001909101908401612954565b50858210156129915787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761083857610838612813565b8082018082111561083857610838612813565b60208082526022908201527f45786365656473206d6178696d756d204f726967696e61746f727320737570706040820152616c7960f01b606082015260800190565b600081612a1c57612a1c612813565b506000190190565b6000808454612a32816127c3565b60018281168015612a4a5760018114612a5f57612a8e565b60ff1984168752821515830287019450612a8e565b8860005260208060002060005b85811015612a855781548a820152908401908201612a6c565b50505082870194505b505050508351612aa2818360208801612326565b01949350505050565b60008351612abd818460208801612326565b835190830190612aa2818360208801612326565b8181038181111561083857610838612813565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612b5b57612b5b612b36565b500490565b600082612b6f57612b6f612b36565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ba79083018461234a565b9695505050505050565b600060208284031215612bc357600080fd5b81516122ef816122b9565b634e487b7160e01b600052603160045260246000fdfea26469706673582212204649c853a8872345736483e82d4a1931b16b945c630b3b89cec7609e9a24664264736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000c47656e6573697320426c756500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004426c756500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f74656c6f6a616e6e66742e636f6d2f6d657461646174612f626c75654e66742f72657665616c3f69643d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f74656c6f6a616e6e66742e636f6d2f6d657461646174612f626c75654e66742f6e6f7472657665616c3f69643d0000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636f8b44b01161014f578063b88d4fde116100c1578063e36b0b371161007a578063e36b0b3714610728578063e985e9c51461073d578063f2c4ce1e14610786578063f2fde38b146107a6578063f606faea146107c6578063fa30297e146107e657600080fd5b8063b88d4fde1461067c578063b90306ad1461069c578063ba7d2c76146106bc578063c87b56dd146106d2578063d0eb26b0146106f2578063d5abeb011461071257600080fd5b8063940cd05b11610113578063940cd05b146105df57806395d89b41146105ff578063a0712d6814610614578063a22cb46514610627578063b28a2c5714610647578063b66a0e5d1461066757600080fd5b80636f8b44b01461054c57806370a082311461056c578063715018a61461058c5780638a7d04d2146105a15780638da5cb5b146105c157600080fd5b80632e1a7d4d116101e85780634f6ccce7116101ac5780634f6ccce71461049357806351830227146104b357806355f804b3146104d25780635c975abb146104f25780636352211e1461050c57806367f141331461052c57600080fd5b80632e1a7d4d146103ec5780632f745c591461040c5780633b80b7d31461042c57806342842e0e14610446578063438b63001461046657600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806315eb65031461038157806318160ddd146103975780631e89d545146103ac57806323b872dd146103cc57600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046122d2565b610813565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c736600461230b565b61083e565b005b3480156102da57600080fd5b506102e3610884565b6040516102a39190612376565b3480156102fc57600080fd5b5061031061030b366004612389565b610916565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e36109ab565b34801561034957600080fd5b506102cc6103583660046123b9565b610a39565b34801561036957600080fd5b50610373600f5481565b6040519081526020016102a3565b34801561038d57600080fd5b5061037360125481565b3480156103a357600080fd5b50600854610373565b3480156103b857600080fd5b506102cc6103c73660046124b9565b610b4e565b3480156103d857600080fd5b506102cc6103e7366004612579565b610ba9565b3480156103f857600080fd5b506102cc610407366004612389565b610bda565b34801561041857600080fd5b506103736104273660046123b9565b610c35565b34801561043857600080fd5b50600c546102979060ff1681565b34801561045257600080fd5b506102cc610461366004612579565b610ccb565b34801561047257600080fd5b506104866104813660046125b5565b610ce6565b6040516102a391906125d0565b34801561049f57600080fd5b506103736104ae366004612389565b610d88565b3480156104bf57600080fd5b5060135461029790610100900460ff1681565b3480156104de57600080fd5b506102cc6104ed36600461266c565b610e1b565b3480156104fe57600080fd5b506013546102979060ff1681565b34801561051857600080fd5b50610310610527366004612389565b610e51565b34801561053857600080fd5b50610373610547366004612389565b610ec8565b34801561055857600080fd5b506102cc610567366004612389565b610ed8565b34801561057857600080fd5b506103736105873660046125b5565b610f07565b34801561059857600080fd5b506102cc610f8e565b3480156105ad57600080fd5b506102cc6105bc366004612389565b611002565b3480156105cd57600080fd5b50600a546001600160a01b0316610310565b3480156105eb57600080fd5b506102cc6105fa36600461230b565b611031565b34801561060b57600080fd5b506102e3611075565b6102cc610622366004612389565b611084565b34801561063357600080fd5b506102cc6106423660046126b5565b6112e0565b34801561065357600080fd5b506102cc610662366004612389565b6113a4565b34801561067357600080fd5b506102cc611504565b34801561068857600080fd5b506102cc6106973660046126e8565b61153d565b3480156106a857600080fd5b506102cc6106b7366004612389565b61156f565b3480156106c857600080fd5b5061037360115481565b3480156106de57600080fd5b506102e36106ed366004612389565b6115d3565b3480156106fe57600080fd5b506102cc61070d366004612389565b6116d6565b34801561071e57600080fd5b5061037360105481565b34801561073457600080fd5b506102cc611705565b34801561074957600080fd5b50610297610758366004612764565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079257600080fd5b506102cc6107a136600461266c565b61173b565b3480156107b257600080fd5b506102cc6107c13660046125b5565b611771565b3480156107d257600080fd5b506102cc6107e1366004612389565b61185c565b3480156107f257600080fd5b506103736108013660046125b5565b60146020526000908152604090205481565b60006001600160e01b0319821663780e9d6360e01b148061083857506108388261188b565b92915050565b600a546001600160a01b031633146108715760405162461bcd60e51b81526004016108689061278e565b60405180910390fd5b6013805460ff1916911515919091179055565b606060008054610893906127c3565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf906127c3565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661098f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610868565b506000908152600460205260409020546001600160a01b031690565b600d80546109b8906127c3565b80601f01602080910402602001604051908101604052809291908181526020018280546109e4906127c3565b8015610a315780601f10610a0657610100808354040283529160200191610a31565b820191906000526020600020905b815481529060010190602001808311610a1457829003601f168201915b505050505081565b6000610a4482610e51565b9050806001600160a01b0316836001600160a01b031603610ab15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610868565b336001600160a01b0382161480610acd5750610acd8133610758565b610b3f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610868565b610b4983836118db565b505050565b60005b8151811015610b4957610b9733848381518110610b7057610b706127fd565b6020026020010151848481518110610b8a57610b8a6127fd565b6020026020010151610ccb565b80610ba181612829565b915050610b51565b610bb33382611949565b610bcf5760405162461bcd60e51b815260040161086890612842565b610b49838383611a40565b600a546001600160a01b03163314610c045760405162461bcd60e51b81526004016108689061278e565b604051339082156108fc029083906000818181858888f19350505050158015610c31573d6000803e3d6000fd5b5050565b6000610c4083610f07565b8210610ca25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610868565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b498383836040518060200160405280600081525061153d565b60606000610cf383610f07565b905060008167ffffffffffffffff811115610d1057610d106123e3565b604051908082528060200260200182016040528015610d39578160200160208202803683370190505b50905060005b82811015610d8057610d518582610c35565b828281518110610d6357610d636127fd565b602090810291909101015280610d7881612829565b915050610d3f565b509392505050565b6000610d9360085490565b8210610df65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610868565b60088281548110610e0957610e096127fd565b90600052602060002001549050919050565b600a546001600160a01b03163314610e455760405162461bcd60e51b81526004016108689061278e565b600b610c3182826128e1565b6000818152600260205260408120546001600160a01b0316806108385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610868565b600081600f5461083891906129a1565b600a546001600160a01b03163314610f025760405162461bcd60e51b81526004016108689061278e565b601055565b60006001600160a01b038216610f725760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610868565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fb85760405162461bcd60e51b81526004016108689061278e565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331461102c5760405162461bcd60e51b81526004016108689061278e565b601255565b600a546001600160a01b0316331461105b5760405162461bcd60e51b81526004016108689061278e565b601380549115156101000261ff0019909216919091179055565b606060018054610893906127c3565b600c5460ff166110cc5760405162461bcd60e51b81526020600482015260136024820152721cd85b19481a5cc81b9bdd081cdd185c9d1959606a1b6044820152606401610868565b60135460ff16156111185760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610868565b80601254101561116a5760405162461bcd60e51b815260206004820152601e60248201527f457863656564732052656d61696e696e67204e465420666f722073616c6500006044820152606401610868565b600061117560085490565b60105490915061118583836129b8565b11156111a35760405162461bcd60e51b8152600401610868906129cb565b6111ac82610ec8565b3410156111f05760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610868565b3360009081526014602052604090205460115461120d84836129b8565b111561125b5760405162461bcd60e51b815260206004820152601e60248201527f4d6178204e4654732070657220616464726573732065786365656465642e00006044820152606401610868565b600e5460015b8481116112d9576012805490600061127883612a0d565b909155505033600090815260146020526040812080549161129883612829565b909155506112b19050336112ac83856129b8565b611beb565b600e80549060006112c183612829565b919050555080806112d190612829565b915050611261565b5050505050565b336001600160a01b038316036113385760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610868565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113ce5760405162461bcd60e51b81526004016108689061278e565b60135460ff161561141a5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610868565b80601254101561146c5760405162461bcd60e51b815260206004820152601e60248201527f457863656564732052656d61696e696e67204e465420666f722073616c6500006044820152606401610868565b600061147760085490565b60105490915061148783836129b8565b11156114a55760405162461bcd60e51b8152600401610868906129cb565b600e5460015b8381116114fe57601280549060006114c283612a0d565b909155506114d69050336112ac83856129b8565b600e80549060006114e683612829565b919050555080806114f690612829565b9150506114ab565b50505050565b600a546001600160a01b0316331461152e5760405162461bcd60e51b81526004016108689061278e565b600c805460ff19166001179055565b6115473383611949565b6115635760405162461bcd60e51b815260040161086890612842565b6114fe84848484611c05565b600061157a82610e51565b9050336001600160a01b038216146115ca5760405162461bcd60e51b815260206004820152601360248201527221b0b63632b91034b9903737ba1037b73bb2b960691b6044820152606401610868565b610c3182611c38565b6000818152600260205260409020546060906001600160a01b03166116525760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610868565b601354610100900460ff16151560000361169857600d61167183611cdf565b604051602001611682929190612a24565b6040516020818303038152906040529050919050565b60006116a2611de0565b9050806116ae84611cdf565b6040516020016116bf929190612aab565b604051602081830303815290604052915050919050565b600a546001600160a01b031633146117005760405162461bcd60e51b81526004016108689061278e565b601155565b600a546001600160a01b0316331461172f5760405162461bcd60e51b81526004016108689061278e565b600c805460ff19169055565b600a546001600160a01b031633146117655760405162461bcd60e51b81526004016108689061278e565b600d610c3182826128e1565b600a546001600160a01b0316331461179b5760405162461bcd60e51b81526004016108689061278e565b6001600160a01b0381166118005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610868565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146118865760405162461bcd60e51b81526004016108689061278e565b600f55565b60006001600160e01b031982166380ac58cd60e01b14806118bc57506001600160e01b03198216635b5e139f60e01b145b8061083857506301ffc9a760e01b6001600160e01b0319831614610838565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061191082610e51565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119c25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610868565b60006119cd83610e51565b9050806001600160a01b0316846001600160a01b03161480611a085750836001600160a01b03166119fd84610916565b6001600160a01b0316145b80611a3857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a5382610e51565b6001600160a01b031614611abb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610868565b6001600160a01b038216611b1d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610868565b611b28838383611def565b611b336000826118db565b6001600160a01b0383166000908152600360205260408120805460019290611b5c908490612ad1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b8a9084906129b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c31828260405180602001604052806000815250611ea7565b611c10848484611a40565b611c1c84848484611eda565b6114fe5760405162461bcd60e51b815260040161086890612ae4565b6000611c4382610e51565b9050611c5181600084611def565b611c5c6000836118db565b6001600160a01b0381166000908152600360205260408120805460019290611c85908490612ad1565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081600003611d065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d305780611d1a81612829565b9150611d299050600a83612b4c565b9150611d0a565b60008167ffffffffffffffff811115611d4b57611d4b6123e3565b6040519080825280601f01601f191660200182016040528015611d75576020820181803683370190505b5090505b8415611a3857611d8a600183612ad1565b9150611d97600a86612b60565b611da29060306129b8565b60f81b818381518110611db757611db76127fd565b60200101906001600160f81b031916908160001a905350611dd9600a86612b4c565b9450611d79565b6060600b8054610893906127c3565b6001600160a01b038316611e4a57611e4581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e6d565b816001600160a01b0316836001600160a01b031614611e6d57611e6d8382611fdb565b6001600160a01b038216611e8457610b4981612078565b826001600160a01b0316826001600160a01b031614610b4957610b498282612127565b611eb1838361216b565b611ebe6000848484611eda565b610b495760405162461bcd60e51b815260040161086890612ae4565b60006001600160a01b0384163b15611fd057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f1e903390899088908890600401612b74565b6020604051808303816000875af1925050508015611f59575060408051601f3d908101601f19168201909252611f5691810190612bb1565b60015b611fb6573d808015611f87576040519150601f19603f3d011682016040523d82523d6000602084013e611f8c565b606091505b508051600003611fae5760405162461bcd60e51b815260040161086890612ae4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a38565b506001949350505050565b60006001611fe884610f07565b611ff29190612ad1565b600083815260076020526040902054909150808214612045576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061208a90600190612ad1565b600083815260096020526040812054600880549394509092849081106120b2576120b26127fd565b9060005260206000200154905080600883815481106120d3576120d36127fd565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061210b5761210b612bce565b6001900381819060005260206000200160009055905550505050565b600061213283610f07565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121c15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610868565b6000818152600260205260409020546001600160a01b0316156122265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610868565b61223260008383611def565b6001600160a01b038216600090815260036020526040812080546001929061225b9084906129b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146122cf57600080fd5b50565b6000602082840312156122e457600080fd5b81356122ef816122b9565b9392505050565b8035801515811461230657600080fd5b919050565b60006020828403121561231d57600080fd5b6122ef826122f6565b60005b83811015612341578181015183820152602001612329565b50506000910152565b60008151808452612362816020860160208601612326565b601f01601f19169290920160200192915050565b6020815260006122ef602083018461234a565b60006020828403121561239b57600080fd5b5035919050565b80356001600160a01b038116811461230657600080fd5b600080604083850312156123cc57600080fd5b6123d5836123a2565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612422576124226123e3565b604052919050565b600067ffffffffffffffff821115612444576124446123e3565b5060051b60200190565b600082601f83011261245f57600080fd5b8135602061247461246f8361242a565b6123f9565b82815260059290921b8401810191818101908684111561249357600080fd5b8286015b848110156124ae5780358352918301918301612497565b509695505050505050565b600080604083850312156124cc57600080fd5b823567ffffffffffffffff808211156124e457600080fd5b818501915085601f8301126124f857600080fd5b8135602061250861246f8361242a565b82815260059290921b8401810191818101908984111561252757600080fd5b948201945b8386101561254c5761253d866123a2565b8252948201949082019061252c565b9650508601359250508082111561256257600080fd5b5061256f8582860161244e565b9150509250929050565b60008060006060848603121561258e57600080fd5b612597846123a2565b92506125a5602085016123a2565b9150604084013590509250925092565b6000602082840312156125c757600080fd5b6122ef826123a2565b6020808252825182820181905260009190848201906040850190845b81811015612608578351835292840192918401916001016125ec565b50909695505050505050565b600067ffffffffffffffff83111561262e5761262e6123e3565b612641601f8401601f19166020016123f9565b905082815283838301111561265557600080fd5b828260208301376000602084830101529392505050565b60006020828403121561267e57600080fd5b813567ffffffffffffffff81111561269557600080fd5b8201601f810184136126a657600080fd5b611a3884823560208401612614565b600080604083850312156126c857600080fd5b6126d1836123a2565b91506126df602084016122f6565b90509250929050565b600080600080608085870312156126fe57600080fd5b612707856123a2565b9350612715602086016123a2565b925060408501359150606085013567ffffffffffffffff81111561273857600080fd5b8501601f8101871361274957600080fd5b61275887823560208401612614565b91505092959194509250565b6000806040838503121561277757600080fd5b612780836123a2565b91506126df602084016123a2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806127d757607f821691505b6020821081036127f757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161283b5761283b612813565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b601f821115610b4957600081815260208120601f850160051c810160208610156128ba5750805b601f850160051c820191505b818110156128d9578281556001016128c6565b505050505050565b815167ffffffffffffffff8111156128fb576128fb6123e3565b61290f8161290984546127c3565b84612893565b602080601f831160018114612944576000841561292c5750858301515b600019600386901b1c1916600185901b1785556128d9565b600085815260208120601f198616915b8281101561297357888601518255948401946001909101908401612954565b50858210156129915787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761083857610838612813565b8082018082111561083857610838612813565b60208082526022908201527f45786365656473206d6178696d756d204f726967696e61746f727320737570706040820152616c7960f01b606082015260800190565b600081612a1c57612a1c612813565b506000190190565b6000808454612a32816127c3565b60018281168015612a4a5760018114612a5f57612a8e565b60ff1984168752821515830287019450612a8e565b8860005260208060002060005b85811015612a855781548a820152908401908201612a6c565b50505082870194505b505050508351612aa2818360208801612326565b01949350505050565b60008351612abd818460208801612326565b835190830190612aa2818360208801612326565b8181038181111561083857610838612813565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612b5b57612b5b612b36565b500490565b600082612b6f57612b6f612b36565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ba79083018461234a565b9695505050505050565b600060208284031215612bc357600080fd5b81516122ef816122b9565b634e487b7160e01b600052603160045260246000fdfea26469706673582212204649c853a8872345736483e82d4a1931b16b945c630b3b89cec7609e9a24664264736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000c47656e6573697320426c756500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004426c756500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f74656c6f6a616e6e66742e636f6d2f6d657461646174612f626c75654e66742f72657665616c3f69643d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f74656c6f6a616e6e66742e636f6d2f6d657461646174612f626c75654e66742f6e6f7472657665616c3f69643d0000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Genesis Blue
Arg [1] : _symbol (string): Blue
Arg [2] : _initBaseURI (string): https://telojannft.com/metadata/blueNft/reveal?id=
Arg [3] : _initNotRevealedUri (string): https://telojannft.com/metadata/blueNft/notreveal?id=

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 47656e6573697320426c75650000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 426c756500000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [9] : 68747470733a2f2f74656c6f6a616e6e66742e636f6d2f6d657461646174612f
Arg [10] : 626c75654e66742f72657665616c3f69643d0000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [12] : 68747470733a2f2f74656c6f6a616e6e66742e636f6d2f6d657461646174612f
Arg [13] : 626c75654e66742f6e6f7472657665616c3f69643d0000000000000000000000


Deployed Bytecode Sourcemap

46722:4907:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40589:237;;;;;;;;;;-1:-1:-1;40589:237:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;40589:237:0;;;;;;;;51433:73;;;;;;;;;;-1:-1:-1;51433:73:0;;;;;:::i;:::-;;:::i;:::-;;29108:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30568:221::-;;;;;;;;;;-1:-1:-1;30568:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2047:32:1;;;2029:51;;2017:2;2002:18;30568:221:0;1883:203:1;46915:28:0;;;;;;;;;;;;;:::i;30105:397::-;;;;;;;;;;-1:-1:-1;30105:397:0;;;;;:::i;:::-;;:::i;46982:32::-;;;;;;;;;;;;;;;;;;;2674:25:1;;;2662:2;2647:18;46982:32:0;2528:177:1;47097:41:0;;;;;;;;;;;;;;;;41242:113;;;;;;;;;;-1:-1:-1;41330:10:0;:17;41242:113;;49183:227;;;;;;;;;;-1:-1:-1;49183:227:0;;;;;:::i;:::-;;:::i;31458:305::-;;;;;;;;;;-1:-1:-1;31458:305:0;;;;;:::i;:::-;;:::i;51520:106::-;;;;;;;;;;-1:-1:-1;51520:106:0;;;;;:::i;:::-;;:::i;40910:256::-;;;;;;;;;;-1:-1:-1;40910:256:0;;;;;:::i;:::-;;:::i;46877:33::-;;;;;;;;;;-1:-1:-1;46877:33:0;;;;;;;;31834:151;;;;;;;;;;-1:-1:-1;31834:151:0;;;;;:::i;:::-;;:::i;49608:329::-;;;;;;;;;;-1:-1:-1;49608:329:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41432:233::-;;;;;;;;;;-1:-1:-1;41432:233:0;;;;;:::i;:::-;;:::i;47176:27::-;;;;;;;;;;-1:-1:-1;47176:27:0;;;;;;;;;;;51201:98;;;;;;;;;;-1:-1:-1;51201:98:0;;;;;:::i;:::-;;:::i;47145:26::-;;;;;;;;;;-1:-1:-1;47145:26:0;;;;;;;;28802:239;;;;;;;;;;-1:-1:-1;28802:239:0;;;;;:::i;:::-;;:::i;49943:110::-;;;;;;;;;;-1:-1:-1;49943:110:0;;;;;:::i;:::-;;:::i;50854:93::-;;;;;;;;;;-1:-1:-1;50854:93:0;;;;;:::i;:::-;;:::i;28532:208::-;;;;;;;;;;-1:-1:-1;28532:208:0;;;;;:::i;:::-;;:::i;18913:148::-;;;;;;;;;;;;;:::i;50574:133::-;;;;;;;;;;-1:-1:-1;50574:133:0;;;;;:::i;:::-;;:::i;18262:87::-;;;;;;;;;;-1:-1:-1;18335:6:0;;-1:-1:-1;;;;;18335:6:0;18262:87;;51113:80;;;;;;;;;;-1:-1:-1;51113:80:0;;;;;:::i;:::-;;:::i;29277:104::-;;;;;;;;;;;;;:::i;48245:930::-;;;;;;:::i;:::-;;:::i;30861:295::-;;;;;;;;;;-1:-1:-1;30861:295:0;;;;;:::i;:::-;;:::i;47658:579::-;;;;;;;;;;-1:-1:-1;47658:579:0;;;;;:::i;:::-;;:::i;50955:73::-;;;;;;;;;;;;;:::i;32056:285::-;;;;;;;;;;-1:-1:-1;32056:285:0;;;;;:::i;:::-;;:::i;49418:184::-;;;;;;;;;;-1:-1:-1;49418:184:0;;;;;:::i;:::-;;:::i;47055:37::-;;;;;;;;;;;;;;;;50063:421;;;;;;;;;;-1:-1:-1;50063:421:0;;;;;:::i;:::-;;:::i;50715:129::-;;;;;;;;;;-1:-1:-1;50715:129:0;;;;;:::i;:::-;;:::i;47019:31::-;;;;;;;;;;;;;;;;51034:73;;;;;;;;;;;;;:::i;31227:164::-;;;;;;;;;;-1:-1:-1;31227:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31348:25:0;;;31324:4;31348:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31227:164;51305:120;;;;;;;;;;-1:-1:-1;51305:120:0;;;;;:::i;:::-;;:::i;19216:244::-;;;;;;;;;;-1:-1:-1;19216:244:0;;;;;:::i;:::-;;:::i;50492:76::-;;;;;;;;;;-1:-1:-1;50492:76:0;;;;;:::i;:::-;;:::i;47212:48::-;;;;;;;;;;-1:-1:-1;47212:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;40589:237;40691:4;-1:-1:-1;;;;;;40715:50:0;;-1:-1:-1;;;40715:50:0;;:103;;;40782:36;40806:11;40782:23;:36::i;:::-;40708:110;40589:237;-1:-1:-1;;40589:237:0:o;51433:73::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;;;;;;;;;51485:6:::1;:15:::0;;-1:-1:-1;;51485:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51433:73::o;29108:100::-;29162:13;29195:5;29188:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29108:100;:::o;30568:221::-;30644:7;33897:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33897:16:0;30664:73;;;;-1:-1:-1;;;30664:73:0;;9301:2:1;30664:73:0;;;9283:21:1;9340:2;9320:18;;;9313:30;9379:34;9359:18;;;9352:62;-1:-1:-1;;;9430:18:1;;;9423:42;9482:19;;30664:73:0;9099:408:1;30664:73:0;-1:-1:-1;30757:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30757:24:0;;30568:221::o;46915:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30105:397::-;30186:13;30202:23;30217:7;30202:14;:23::i;:::-;30186:39;;30250:5;-1:-1:-1;;;;;30244:11:0;:2;-1:-1:-1;;;;;30244:11:0;;30236:57;;;;-1:-1:-1;;;30236:57:0;;9714:2:1;30236:57:0;;;9696:21:1;9753:2;9733:18;;;9726:30;9792:34;9772:18;;;9765:62;-1:-1:-1;;;9843:18:1;;;9836:31;9884:19;;30236:57:0;9512:397:1;30236:57:0;16986:10;-1:-1:-1;;;;;30314:21:0;;;;:62;;-1:-1:-1;30339:37:0;30356:5;16986:10;31227:164;:::i;30339:37::-;30306:154;;;;-1:-1:-1;;;30306:154:0;;10116:2:1;30306:154:0;;;10098:21:1;10155:2;10135:18;;;10128:30;10194:34;10174:18;;;10167:62;10265:26;10245:18;;;10238:54;10309:19;;30306:154:0;9914:420:1;30306:154:0;30473:21;30482:2;30486:7;30473:8;:21::i;:::-;30175:327;30105:397;;:::o;49183:227::-;49285:9;49280:123;49300:9;:16;49296:1;:20;49280:123;;;49338:53;49355:10;49366:8;49375:1;49366:11;;;;;;;;:::i;:::-;;;;;;;49378:9;49388:1;49378:12;;;;;;;;:::i;:::-;;;;;;;49338:16;:53::i;:::-;49318:3;;;;:::i;:::-;;;;49280:123;;31458:305;31619:41;16986:10;31652:7;31619:18;:41::i;:::-;31611:103;;;;-1:-1:-1;;;31611:103:0;;;;;;;:::i;:::-;31727:28;31737:4;31743:2;31747:7;31727:9;:28::i;51520:106::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51582:36:::1;::::0;51590:10:::1;::::0;51582:36;::::1;;;::::0;51611:6;;51582:36:::1;::::0;;;51611:6;51590:10;51582:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51520:106:::0;:::o;40910:256::-;41007:7;41043:23;41060:5;41043:16;:23::i;:::-;41035:5;:31;41027:87;;;;-1:-1:-1;;;41027:87:0;;11363:2:1;41027:87:0;;;11345:21:1;11402:2;11382:18;;;11375:30;11441:34;11421:18;;;11414:62;-1:-1:-1;;;11492:18:1;;;11485:41;11543:19;;41027:87:0;11161:407:1;41027:87:0;-1:-1:-1;;;;;;41132:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40910:256::o;31834:151::-;31938:39;31955:4;31961:2;31965:7;31938:39;;;;;;;;;;;;:16;:39::i;49608:329::-;49668:16;49692:23;49718:17;49728:6;49718:9;:17::i;:::-;49692:43;;49742:25;49784:15;49770:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49770:30:0;;49742:58;;49812:9;49807:103;49827:15;49823:1;:19;49807:103;;;49872:30;49892:6;49900:1;49872:19;:30::i;:::-;49858:8;49867:1;49858:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;49844:3;;;;:::i;:::-;;;;49807:103;;;-1:-1:-1;49923:8:0;49608:329;-1:-1:-1;;;49608:329:0:o;41432:233::-;41507:7;41543:30;41330:10;:17;;41242:113;41543:30;41535:5;:38;41527:95;;;;-1:-1:-1;;;41527:95:0;;11775:2:1;41527:95:0;;;11757:21:1;11814:2;11794:18;;;11787:30;11853:34;11833:18;;;11826:62;-1:-1:-1;;;11904:18:1;;;11897:42;11956:19;;41527:95:0;11573:408:1;41527:95:0;41640:10;41651:5;41640:17;;;;;;;;:::i;:::-;;;;;;;;;41633:24;;41432:233;;;:::o;51201:98::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51272:7:::1;:21;51282:11:::0;51272:7;:21:::1;:::i;28802:239::-:0;28874:7;28910:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28910:16:0;;28937:73;;;;-1:-1:-1;;;28937:73:0;;14392:2:1;28937:73:0;;;14374:21:1;14431:2;14411:18;;;14404:30;14470:34;14450:18;;;14443:62;-1:-1:-1;;;14521:18:1;;;14514:39;14570:19;;28937:73:0;14190:405:1;49943:110:0;50002:7;50036:11;50029:4;;:18;;;;:::i;50854:93::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;50919:9:::1;:22:::0;50854:93::o;28532:208::-;28604:7;-1:-1:-1;;;;;28632:19:0;;28624:74;;;;-1:-1:-1;;;28624:74:0;;14975:2:1;28624:74:0;;;14957:21:1;15014:2;14994:18;;;14987:30;15053:34;15033:18;;;15026:62;-1:-1:-1;;;15104:18:1;;;15097:40;15154:19;;28624:74:0;14773:406:1;28624:74:0;-1:-1:-1;;;;;;28716:16:0;;;;;:9;:16;;;;;;;28532:208::o;18913:148::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;19004:6:::1;::::0;18983:40:::1;::::0;19020:1:::1;::::0;-1:-1:-1;;;;;19004:6:0::1;::::0;18983:40:::1;::::0;19020:1;;18983:40:::1;19034:6;:19:::0;;-1:-1:-1;;;;;;19034:19:0::1;::::0;;18913:148::o;50574:133::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;50659:19:::1;:42:::0;50574:133::o;51113:80::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51169:8:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;51169:18:0;;::::1;::::0;;;::::1;::::0;;51113:80::o;29277:104::-;29333:13;29366:7;29359:14;;;;;:::i;48245:930::-;48311:13;;;;48303:44;;;;-1:-1:-1;;;48303:44:0;;15386:2:1;48303:44:0;;;15368:21:1;15425:2;15405:18;;;15398:30;-1:-1:-1;;;15444:18:1;;;15437:49;15503:18;;48303:44:0;15184:343:1;48303:44:0;48367:6;;;;48366:7;48358:42;;;;-1:-1:-1;;;48358:42:0;;15734:2:1;48358:42:0;;;15716:21:1;15773:2;15753:18;;;15746:30;-1:-1:-1;;;15792:18:1;;;15785:52;15854:18;;48358:42:0;15532:346:1;48358:42:0;48442:11;48419:19;;:34;;48411:77;;;;-1:-1:-1;;;48411:77:0;;16085:2:1;48411:77:0;;;16067:21:1;16124:2;16104:18;;;16097:30;16163:32;16143:18;;;16136:60;16213:18;;48411:77:0;15883:354:1;48411:77:0;48499:14;48516:13;41330:10;:17;;41242:113;48516:13;48572:9;;48499:30;;-1:-1:-1;48548:20:0;48557:11;48499:30;48548:20;:::i;:::-;:33;;48540:80;;;;-1:-1:-1;;;48540:80:0;;;;;;;:::i;:::-;48669:24;48681:11;48669;:24::i;:::-;48656:9;:37;;48648:68;;;;-1:-1:-1;;;48648:68:0;;16977:2:1;48648:68:0;;;16959:21:1;17016:2;16996:18;;;16989:30;-1:-1:-1;;;17035:18:1;;;17028:48;17093:18;;48648:68:0;16775:342:1;48648:68:0;48768:10;48727:24;48754:25;;;:13;:25;;;;;;48832:18;;48798:30;48817:11;48754:25;48798:30;:::i;:::-;:52;;48790:95;;;;-1:-1:-1;;;48790:95:0;;17324:2:1;48790:95:0;;;17306:21:1;17363:2;17343:18;;;17336:30;17402:32;17382:18;;;17375:60;17452:18;;48790:95:0;17122:354:1;48790:95:0;48920:11;;48959:1;48942:216;48967:11;48962:1;:16;48942:216;;49000:19;:21;;;:19;:21;;;:::i;:::-;;;;-1:-1:-1;;49050:10:0;49036:25;;;;:13;:25;;;;;:27;;;;;;:::i;:::-;;;;-1:-1:-1;49078:40:0;;-1:-1:-1;49088:10:0;49100:17;49116:1;49100:13;:17;:::i;:::-;49078:9;:40::i;:::-;49133:11;:13;;;:11;:13;;;:::i;:::-;;;;;;48980:3;;;;;:::i;:::-;;;;48942:216;;;;48292:883;;;48245:930;:::o;30861:295::-;16986:10;-1:-1:-1;;;;;30964:24:0;;;30956:62;;;;-1:-1:-1;;;30956:62:0;;17824:2:1;30956:62:0;;;17806:21:1;17863:2;17843:18;;;17836:30;17902:27;17882:18;;;17875:55;17947:18;;30956:62:0;17622:349:1;30956:62:0;16986:10;31031:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31031:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31031:53:0;;;;;;;;;;31100:48;;540:41:1;;;31031:42:0;;16986:10;31100:48;;513:18:1;31100:48:0;;;;;;;30861:295;;:::o;47658:579::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;47744:6:::1;::::0;::::1;;47743:7;47735:42;;;::::0;-1:-1:-1;;;47735:42:0;;15734:2:1;47735:42:0::1;::::0;::::1;15716:21:1::0;15773:2;15753:18;;;15746:30;-1:-1:-1;;;15792:18:1;;;15785:52;15854:18;;47735:42:0::1;15532:346:1::0;47735:42:0::1;47819:11;47796:19;;:34;;47788:77;;;::::0;-1:-1:-1;;;47788:77:0;;16085:2:1;47788:77:0::1;::::0;::::1;16067:21:1::0;16124:2;16104:18;;;16097:30;16163:32;16143:18;;;16136:60;16213:18;;47788:77:0::1;15883:354:1::0;47788:77:0::1;47876:14;47893:13;41330:10:::0;:17;;41242:113;47893:13:::1;47949:9;::::0;47876:30;;-1:-1:-1;47925:20:0::1;47934:11:::0;47876:30;47925:20:::1;:::i;:::-;:33;;47917:80;;;;-1:-1:-1::0;;;47917:80:0::1;;;;;;;:::i;:::-;48032:11;::::0;48071:1:::1;48054:176;48079:11;48074:1;:16;48054:176;;48113:19;:21:::0;;;:19:::1;:21;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;48149:40:0::1;::::0;-1:-1:-1;48159:10:0::1;48171:17;48187:1:::0;48171:13;:17:::1;:::i;48149:40::-;48205:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;48092:3;;;;;:::i;:::-;;;;48054:176;;;;47714:523;;47658:579:::0;:::o;50955:73::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51002:13:::1;:20:::0;;-1:-1:-1;;51002:20:0::1;51018:4;51002:20;::::0;;50955:73::o;32056:285::-;32188:41;16986:10;32221:7;32188:18;:41::i;:::-;32180:103;;;;-1:-1:-1;;;32180:103:0;;;;;;;:::i;:::-;32294:39;32308:4;32314:2;32318:7;32327:5;32294:13;:39::i;49418:184::-;49467:13;49483:23;49498:7;49483:14;:23::i;:::-;49467:39;-1:-1:-1;49525:10:0;-1:-1:-1;;;;;49525:20:0;;;49517:52;;;;-1:-1:-1;;;49517:52:0;;18178:2:1;49517:52:0;;;18160:21:1;18217:2;18197:18;;;18190:30;-1:-1:-1;;;18236:18:1;;;18229:49;18295:18;;49517:52:0;17976:343:1;49517:52:0;49580:14;49586:7;49580:5;:14::i;50063:421::-;33873:4;33897:16;;;:7;:16;;;;;;50136:13;;-1:-1:-1;;;;;33897:16:0;50163:75;;;;-1:-1:-1;;;50163:75:0;;18526:2:1;50163:75:0;;;18508:21:1;18565:2;18545:18;;;18538:30;18604:34;18584:18;;;18577:62;-1:-1:-1;;;18655:18:1;;;18648:45;18710:19;;50163:75:0;18324:411:1;50163:75:0;50252:8;;;;;;;:17;;50264:5;50252:17;50249:108;;50313:14;50329:18;:7;:16;:18::i;:::-;50296:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50282:67;;50063:421;;;:::o;50249:108::-;50363:28;50394:10;:8;:10::i;:::-;50363:41;;50442:14;50458:18;:7;:16;:18::i;:::-;50425:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50411:67;;;50063:421;;;:::o;50715:129::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;50798:18:::1;:40:::0;50715:129::o;51034:73::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51080:13:::1;:21:::0;;-1:-1:-1;;51080:21:0::1;::::0;;51034:73::o;51305:120::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51387:14:::1;:32;51404:15:::0;51387:14;:32:::1;:::i;19216:244::-:0;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19305:22:0;::::1;19297:73;;;::::0;-1:-1:-1;;;19297:73:0;;20468:2:1;19297:73:0::1;::::0;::::1;20450:21:1::0;20507:2;20487:18;;;20480:30;20546:34;20526:18;;;20519:62;-1:-1:-1;;;20597:18:1;;;20590:36;20643:19;;19297:73:0::1;20266:402:1::0;19297:73:0::1;19407:6;::::0;19386:38:::1;::::0;-1:-1:-1;;;;;19386:38:0;;::::1;::::0;19407:6:::1;::::0;19386:38:::1;::::0;19407:6:::1;::::0;19386:38:::1;19435:6;:17:::0;;-1:-1:-1;;;;;;19435:17:0::1;-1:-1:-1::0;;;;;19435:17:0;;;::::1;::::0;;;::::1;::::0;;19216:244::o;50492:76::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;50550:4:::1;:12:::0;50492:76::o;28176:292::-;28278:4;-1:-1:-1;;;;;;28302:40:0;;-1:-1:-1;;;28302:40:0;;:105;;-1:-1:-1;;;;;;;28359:48:0;;-1:-1:-1;;;28359:48:0;28302:105;:158;;;-1:-1:-1;;;;;;;;;;10559:40:0;;;28424:36;10450:157;37685:174;37760:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37760:29:0;-1:-1:-1;;;;;37760:29:0;;;;;;;;:24;;37814:23;37760:24;37814:14;:23::i;:::-;-1:-1:-1;;;;;37805:46:0;;;;;;;;;;;37685:174;;:::o;34102:348::-;34195:4;33897:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33897:16:0;34212:73;;;;-1:-1:-1;;;34212:73:0;;20875:2:1;34212:73:0;;;20857:21:1;20914:2;20894:18;;;20887:30;20953:34;20933:18;;;20926:62;-1:-1:-1;;;21004:18:1;;;20997:42;21056:19;;34212:73:0;20673:408:1;34212:73:0;34296:13;34312:23;34327:7;34312:14;:23::i;:::-;34296:39;;34365:5;-1:-1:-1;;;;;34354:16:0;:7;-1:-1:-1;;;;;34354:16:0;;:51;;;;34398:7;-1:-1:-1;;;;;34374:31:0;:20;34386:7;34374:11;:20::i;:::-;-1:-1:-1;;;;;34374:31:0;;34354:51;:87;;;-1:-1:-1;;;;;;31348:25:0;;;31324:4;31348:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34409:32;34346:96;34102:348;-1:-1:-1;;;;34102:348:0:o;37023:544::-;37148:4;-1:-1:-1;;;;;37121:31:0;:23;37136:7;37121:14;:23::i;:::-;-1:-1:-1;;;;;37121:31:0;;37113:85;;;;-1:-1:-1;;;37113:85:0;;21288:2:1;37113:85:0;;;21270:21:1;21327:2;21307:18;;;21300:30;21366:34;21346:18;;;21339:62;-1:-1:-1;;;21417:18:1;;;21410:39;21466:19;;37113:85:0;21086:405:1;37113:85:0;-1:-1:-1;;;;;37217:16:0;;37209:65;;;;-1:-1:-1;;;37209:65:0;;21698:2:1;37209:65:0;;;21680:21:1;21737:2;21717:18;;;21710:30;21776:34;21756:18;;;21749:62;-1:-1:-1;;;21827:18:1;;;21820:34;21871:19;;37209:65:0;21496:400:1;37209:65:0;37287:39;37308:4;37314:2;37318:7;37287:20;:39::i;:::-;37391:29;37408:1;37412:7;37391:8;:29::i;:::-;-1:-1:-1;;;;;37433:15:0;;;;;;:9;:15;;;;;:20;;37452:1;;37433:15;:20;;37452:1;;37433:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37464:13:0;;;;;;:9;:13;;;;;:18;;37481:1;;37464:13;:18;;37481:1;;37464:18;:::i;:::-;;;;-1:-1:-1;;37493:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37493:21:0;-1:-1:-1;;;;;37493:21:0;;;;;;;;;37532:27;;37493:16;;37532:27;;;;;;;37023:544;;;:::o;34792:110::-;34868:26;34878:2;34882:7;34868:26;;;;;;;;;;;;:9;:26::i;33223:272::-;33337:28;33347:4;33353:2;33357:7;33337:9;:28::i;:::-;33384:48;33407:4;33413:2;33417:7;33426:5;33384:22;:48::i;:::-;33376:111;;;;-1:-1:-1;;;33376:111:0;;;;;;;:::i;36326:360::-;36386:13;36402:23;36417:7;36402:14;:23::i;:::-;36386:39;;36438:48;36459:5;36474:1;36478:7;36438:20;:48::i;:::-;36527:29;36544:1;36548:7;36527:8;:29::i;:::-;-1:-1:-1;;;;;36569:16:0;;;;;;:9;:16;;;;;:21;;36589:1;;36569:16;:21;;36589:1;;36569:21;:::i;:::-;;;;-1:-1:-1;;36608:16:0;;;;:7;:16;;;;;;36601:23;;-1:-1:-1;;;;;;36601:23:0;;;36642:36;36616:7;;36608:16;-1:-1:-1;;;;;36642:36:0;;;;;36608:16;;36642:36;36375:311;36326:360;:::o;717:723::-;773:13;994:5;1003:1;994:10;990:53;;-1:-1:-1;;1021:10:0;;;;;;;;;;;;-1:-1:-1;;;1021:10:0;;;;;717:723::o;990:53::-;1068:5;1053:12;1109:78;1116:9;;1109:78;;1142:8;;;;:::i;:::-;;-1:-1:-1;1165:10:0;;-1:-1:-1;1173:2:0;1165:10;;:::i;:::-;;;1109:78;;;1197:19;1229:6;1219:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1219:17:0;;1197:39;;1247:154;1254:10;;1247:154;;1281:11;1291:1;1281:11;;:::i;:::-;;-1:-1:-1;1350:10:0;1358:2;1350:5;:10;:::i;:::-;1337:24;;:2;:24;:::i;:::-;1324:39;;1307:6;1314;1307:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1307:56:0;;;;;;;;-1:-1:-1;1378:11:0;1387:2;1378:11;;:::i;:::-;;;1247:154;;47546:102;47606:13;47635:7;47628:14;;;;;:::i;42278:555::-;-1:-1:-1;;;;;42450:18:0;;42446:187;;42485:40;42517:7;43660:10;:17;;43633:24;;;;:15;:24;;;;;:44;;;43688:24;;;;;;;;;;;;43556:164;42485:40;42446:187;;;42555:2;-1:-1:-1;;;;;42547:10:0;:4;-1:-1:-1;;;;;42547:10:0;;42543:90;;42574:47;42607:4;42613:7;42574:32;:47::i;:::-;-1:-1:-1;;;;;42647:16:0;;42643:183;;42680:45;42717:7;42680:36;:45::i;42643:183::-;42753:4;-1:-1:-1;;;;;42747:10:0;:2;-1:-1:-1;;;;;42747:10:0;;42743:83;;42774:40;42802:2;42806:7;42774:27;:40::i;35129:250::-;35225:18;35231:2;35235:7;35225:5;:18::i;:::-;35262:54;35293:1;35297:2;35301:7;35310:5;35262:22;:54::i;:::-;35254:117;;;;-1:-1:-1;;;35254:117:0;;;;;;;:::i;38424:843::-;38545:4;-1:-1:-1;;;;;38571:13:0;;3451:20;3490:8;38567:693;;38607:72;;-1:-1:-1;;;38607:72:0;;-1:-1:-1;;;;;38607:36:0;;;;;:72;;16986:10;;38658:4;;38664:7;;38673:5;;38607:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38607:72:0;;;;;;;;-1:-1:-1;;38607:72:0;;;;;;;;;;;;:::i;:::-;;;38603:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38853:6;:13;38870:1;38853:18;38849:341;;38896:60;;-1:-1:-1;;;38896:60:0;;;;;;;:::i;38849:341::-;39140:6;39134:13;39125:6;39121:2;39117:15;39110:38;38603:602;-1:-1:-1;;;;;;38730:55:0;-1:-1:-1;;;38730:55:0;;-1:-1:-1;38723:62:0;;38567:693;-1:-1:-1;39244:4:0;38424:843;;;;;;:::o;44347:988::-;44613:22;44663:1;44638:22;44655:4;44638:16;:22::i;:::-;:26;;;;:::i;:::-;44675:18;44696:26;;;:17;:26;;;;;;44613:51;;-1:-1:-1;44829:28:0;;;44825:328;;-1:-1:-1;;;;;44896:18:0;;44874:19;44896:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44947:30;;;;;;:44;;;45064:30;;:17;:30;;;;;:43;;;44825:328;-1:-1:-1;45249:26:0;;;;:17;:26;;;;;;;;45242:33;;;-1:-1:-1;;;;;45293:18:0;;;;;:12;:18;;;;;:34;;;;;;;45286:41;44347:988::o;45630:1079::-;45908:10;:17;45883:22;;45908:21;;45928:1;;45908:21;:::i;:::-;45940:18;45961:24;;;:15;:24;;;;;;46334:10;:26;;45883:46;;-1:-1:-1;45961:24:0;;45883:46;;46334:26;;;;;;:::i;:::-;;;;;;;;;46312:48;;46398:11;46373:10;46384;46373:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46478:28;;;:15;:28;;;;;;;:41;;;46650:24;;;;;46643:31;46685:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45701:1008;;;45630:1079;:::o;43134:221::-;43219:14;43236:20;43253:2;43236:16;:20::i;:::-;-1:-1:-1;;;;;43267:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43312:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43134:221:0:o;35715:382::-;-1:-1:-1;;;;;35795:16:0;;35787:61;;;;-1:-1:-1;;;35787:61:0;;23909:2:1;35787:61:0;;;23891:21:1;;;23928:18;;;23921:30;23987:34;23967:18;;;23960:62;24039:18;;35787:61:0;23707:356:1;35787:61:0;33873:4;33897:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33897:16:0;:30;35859:58;;;;-1:-1:-1;;;35859:58:0;;24270:2:1;35859:58:0;;;24252:21:1;24309:2;24289:18;;;24282:30;24348;24328:18;;;24321:58;24396:18;;35859:58:0;24068:352:1;35859:58:0;35930:45;35959:1;35963:2;35967:7;35930:20;:45::i;:::-;-1:-1:-1;;;;;35988:13:0;;;;;;:9;:13;;;;;:18;;36005:1;;35988:13;:18;;36005:1;;35988:18;:::i;:::-;;;;-1:-1:-1;;36017:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36017:21:0;-1:-1:-1;;;;;36017:21:0;;;;;;;;36056:33;;36017:16;;;36056:33;;36017:16;;36056:33;35715:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;68:71;14:131;:::o;150:245::-;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:250::-;1027:1;1037:113;1051:6;1048:1;1045:13;1037:113;;;1127:11;;;1121:18;1108:11;;;1101:39;1073:2;1066:10;1037:113;;;-1:-1:-1;;1184:1:1;1166:16;;1159:27;942:250::o;1197:271::-;1239:3;1277:5;1271:12;1304:6;1299:3;1292:19;1320:76;1389:6;1382:4;1377:3;1373:14;1366:4;1359:5;1355:16;1320:76;:::i;:::-;1450:2;1429:15;-1:-1:-1;;1425:29:1;1416:39;;;;1457:4;1412:50;;1197:271;-1:-1:-1;;1197:271:1:o;1473:220::-;1622:2;1611:9;1604:21;1585:4;1642:45;1683:2;1672:9;1668:18;1660:6;1642:45;:::i;1698:180::-;1757:6;1810:2;1798:9;1789:7;1785:23;1781:32;1778:52;;;1826:1;1823;1816:12;1778:52;-1:-1:-1;1849:23:1;;1698:180;-1:-1:-1;1698:180:1:o;2091:173::-;2159:20;;-1:-1:-1;;;;;2208:31:1;;2198:42;;2188:70;;2254:1;2251;2244:12;2269:254;2337:6;2345;2398:2;2386:9;2377:7;2373:23;2369:32;2366:52;;;2414:1;2411;2404:12;2366:52;2437:29;2456:9;2437:29;:::i;:::-;2427:39;2513:2;2498:18;;;;2485:32;;-1:-1:-1;;;2269:254:1:o;2710:127::-;2771:10;2766:3;2762:20;2759:1;2752:31;2802:4;2799:1;2792:15;2826:4;2823:1;2816:15;2842:275;2913:2;2907:9;2978:2;2959:13;;-1:-1:-1;;2955:27:1;2943:40;;3013:18;2998:34;;3034:22;;;2995:62;2992:88;;;3060:18;;:::i;:::-;3096:2;3089:22;2842:275;;-1:-1:-1;2842:275:1:o;3122:183::-;3182:4;3215:18;3207:6;3204:30;3201:56;;;3237:18;;:::i;:::-;-1:-1:-1;3282:1:1;3278:14;3294:4;3274:25;;3122:183::o;3310:662::-;3364:5;3417:3;3410:4;3402:6;3398:17;3394:27;3384:55;;3435:1;3432;3425:12;3384:55;3471:6;3458:20;3497:4;3521:60;3537:43;3577:2;3537:43;:::i;:::-;3521:60;:::i;:::-;3615:15;;;3701:1;3697:10;;;;3685:23;;3681:32;;;3646:12;;;;3725:15;;;3722:35;;;3753:1;3750;3743:12;3722:35;3789:2;3781:6;3777:15;3801:142;3817:6;3812:3;3809:15;3801:142;;;3883:17;;3871:30;;3921:12;;;;3834;;3801:142;;;-1:-1:-1;3961:5:1;3310:662;-1:-1:-1;;;;;;3310:662:1:o;3977:1146::-;4095:6;4103;4156:2;4144:9;4135:7;4131:23;4127:32;4124:52;;;4172:1;4169;4162:12;4124:52;4212:9;4199:23;4241:18;4282:2;4274:6;4271:14;4268:34;;;4298:1;4295;4288:12;4268:34;4336:6;4325:9;4321:22;4311:32;;4381:7;4374:4;4370:2;4366:13;4362:27;4352:55;;4403:1;4400;4393:12;4352:55;4439:2;4426:16;4461:4;4485:60;4501:43;4541:2;4501:43;:::i;4485:60::-;4579:15;;;4661:1;4657:10;;;;4649:19;;4645:28;;;4610:12;;;;4685:19;;;4682:39;;;4717:1;4714;4707:12;4682:39;4741:11;;;;4761:148;4777:6;4772:3;4769:15;4761:148;;;4843:23;4862:3;4843:23;:::i;:::-;4831:36;;4794:12;;;;4887;;;;4761:148;;;4928:5;-1:-1:-1;;4971:18:1;;4958:32;;-1:-1:-1;;5002:16:1;;;4999:36;;;5031:1;5028;5021:12;4999:36;;5054:63;5109:7;5098:8;5087:9;5083:24;5054:63;:::i;:::-;5044:73;;;3977:1146;;;;;:::o;5128:328::-;5205:6;5213;5221;5274:2;5262:9;5253:7;5249:23;5245:32;5242:52;;;5290:1;5287;5280:12;5242:52;5313:29;5332:9;5313:29;:::i;:::-;5303:39;;5361:38;5395:2;5384:9;5380:18;5361:38;:::i;:::-;5351:48;;5446:2;5435:9;5431:18;5418:32;5408:42;;5128:328;;;;;:::o;5461:186::-;5520:6;5573:2;5561:9;5552:7;5548:23;5544:32;5541:52;;;5589:1;5586;5579:12;5541:52;5612:29;5631:9;5612:29;:::i;5652:632::-;5823:2;5875:21;;;5945:13;;5848:18;;;5967:22;;;5794:4;;5823:2;6046:15;;;;6020:2;6005:18;;;5794:4;6089:169;6103:6;6100:1;6097:13;6089:169;;;6164:13;;6152:26;;6233:15;;;;6198:12;;;;6125:1;6118:9;6089:169;;;-1:-1:-1;6275:3:1;;5652:632;-1:-1:-1;;;;;;5652:632:1:o;6289:407::-;6354:5;6388:18;6380:6;6377:30;6374:56;;;6410:18;;:::i;:::-;6448:57;6493:2;6472:15;;-1:-1:-1;;6468:29:1;6499:4;6464:40;6448:57;:::i;:::-;6439:66;;6528:6;6521:5;6514:21;6568:3;6559:6;6554:3;6550:16;6547:25;6544:45;;;6585:1;6582;6575:12;6544:45;6634:6;6629:3;6622:4;6615:5;6611:16;6598:43;6688:1;6681:4;6672:6;6665:5;6661:18;6657:29;6650:40;6289:407;;;;;:::o;6701:451::-;6770:6;6823:2;6811:9;6802:7;6798:23;6794:32;6791:52;;;6839:1;6836;6829:12;6791:52;6879:9;6866:23;6912:18;6904:6;6901:30;6898:50;;;6944:1;6941;6934:12;6898:50;6967:22;;7020:4;7012:13;;7008:27;-1:-1:-1;6998:55:1;;7049:1;7046;7039:12;6998:55;7072:74;7138:7;7133:2;7120:16;7115:2;7111;7107:11;7072:74;:::i;7157:254::-;7222:6;7230;7283:2;7271:9;7262:7;7258:23;7254:32;7251:52;;;7299:1;7296;7289:12;7251:52;7322:29;7341:9;7322:29;:::i;:::-;7312:39;;7370:35;7401:2;7390:9;7386:18;7370:35;:::i;:::-;7360:45;;7157:254;;;;;:::o;7416:667::-;7511:6;7519;7527;7535;7588:3;7576:9;7567:7;7563:23;7559:33;7556:53;;;7605:1;7602;7595:12;7556:53;7628:29;7647:9;7628:29;:::i;:::-;7618:39;;7676:38;7710:2;7699:9;7695:18;7676:38;:::i;:::-;7666:48;;7761:2;7750:9;7746:18;7733:32;7723:42;;7816:2;7805:9;7801:18;7788:32;7843:18;7835:6;7832:30;7829:50;;;7875:1;7872;7865:12;7829:50;7898:22;;7951:4;7943:13;;7939:27;-1:-1:-1;7929:55:1;;7980:1;7977;7970:12;7929:55;8003:74;8069:7;8064:2;8051:16;8046:2;8042;8038:11;8003:74;:::i;:::-;7993:84;;;7416:667;;;;;;;:::o;8088:260::-;8156:6;8164;8217:2;8205:9;8196:7;8192:23;8188:32;8185:52;;;8233:1;8230;8223:12;8185:52;8256:29;8275:9;8256:29;:::i;:::-;8246:39;;8304:38;8338:2;8327:9;8323:18;8304:38;:::i;8353:356::-;8555:2;8537:21;;;8574:18;;;8567:30;8633:34;8628:2;8613:18;;8606:62;8700:2;8685:18;;8353:356::o;8714:380::-;8793:1;8789:12;;;;8836;;;8857:61;;8911:4;8903:6;8899:17;8889:27;;8857:61;8964:2;8956:6;8953:14;8933:18;8930:38;8927:161;;9010:10;9005:3;9001:20;8998:1;8991:31;9045:4;9042:1;9035:15;9073:4;9070:1;9063:15;8927:161;;8714:380;;;:::o;10339:127::-;10400:10;10395:3;10391:20;10388:1;10381:31;10431:4;10428:1;10421:15;10455:4;10452:1;10445:15;10471:127;10532:10;10527:3;10523:20;10520:1;10513:31;10563:4;10560:1;10553:15;10587:4;10584:1;10577:15;10603:135;10642:3;10663:17;;;10660:43;;10683:18;;:::i;:::-;-1:-1:-1;10730:1:1;10719:13;;10603:135::o;10743:413::-;10945:2;10927:21;;;10984:2;10964:18;;;10957:30;11023:34;11018:2;11003:18;;10996:62;-1:-1:-1;;;11089:2:1;11074:18;;11067:47;11146:3;11131:19;;10743:413::o;12112:545::-;12214:2;12209:3;12206:11;12203:448;;;12250:1;12275:5;12271:2;12264:17;12320:4;12316:2;12306:19;12390:2;12378:10;12374:19;12371:1;12367:27;12361:4;12357:38;12426:4;12414:10;12411:20;12408:47;;;-1:-1:-1;12449:4:1;12408:47;12504:2;12499:3;12495:12;12492:1;12488:20;12482:4;12478:31;12468:41;;12559:82;12577:2;12570:5;12567:13;12559:82;;;12622:17;;;12603:1;12592:13;12559:82;;;12563:3;;;12112:545;;;:::o;12833:1352::-;12959:3;12953:10;12986:18;12978:6;12975:30;12972:56;;;13008:18;;:::i;:::-;13037:97;13127:6;13087:38;13119:4;13113:11;13087:38;:::i;:::-;13081:4;13037:97;:::i;:::-;13189:4;;13253:2;13242:14;;13270:1;13265:663;;;;13972:1;13989:6;13986:89;;;-1:-1:-1;14041:19:1;;;14035:26;13986:89;-1:-1:-1;;12790:1:1;12786:11;;;12782:24;12778:29;12768:40;12814:1;12810:11;;;12765:57;14088:81;;13235:944;;13265:663;12059:1;12052:14;;;12096:4;12083:18;;-1:-1:-1;;13301:20:1;;;13419:236;13433:7;13430:1;13427:14;13419:236;;;13522:19;;;13516:26;13501:42;;13614:27;;;;13582:1;13570:14;;;;13449:19;;13419:236;;;13423:3;13683:6;13674:7;13671:19;13668:201;;;13744:19;;;13738:26;-1:-1:-1;;13827:1:1;13823:14;;;13839:3;13819:24;13815:37;13811:42;13796:58;13781:74;;13668:201;-1:-1:-1;;;;;13915:1:1;13899:14;;;13895:22;13882:36;;-1:-1:-1;12833:1352:1:o;14600:168::-;14673:9;;;14704;;14721:15;;;14715:22;;14701:37;14691:71;;14742:18;;:::i;16242:125::-;16307:9;;;16328:10;;;16325:36;;;16341:18;;:::i;16372:398::-;16574:2;16556:21;;;16613:2;16593:18;;;16586:30;16652:34;16647:2;16632:18;;16625:62;-1:-1:-1;;;16718:2:1;16703:18;;16696:32;16760:3;16745:19;;16372:398::o;17481:136::-;17520:3;17548:5;17538:39;;17557:18;;:::i;:::-;-1:-1:-1;;;17593:18:1;;17481:136::o;18740:1020::-;18916:3;18945:1;18978:6;18972:13;19008:36;19034:9;19008:36;:::i;:::-;19063:1;19080:18;;;19107:133;;;;19254:1;19249:356;;;;19073:532;;19107:133;-1:-1:-1;;19140:24:1;;19128:37;;19213:14;;19206:22;19194:35;;19185:45;;;-1:-1:-1;19107:133:1;;19249:356;19280:6;19277:1;19270:17;19310:4;19355:2;19352:1;19342:16;19380:1;19394:165;19408:6;19405:1;19402:13;19394:165;;;19486:14;;19473:11;;;19466:35;19529:16;;;;19423:10;;19394:165;;;19398:3;;;19588:6;19583:3;19579:16;19572:23;;19073:532;;;;;19636:6;19630:13;19652:68;19711:8;19706:3;19699:4;19691:6;19687:17;19652:68;:::i;:::-;19736:18;;18740:1020;-1:-1:-1;;;;18740:1020:1:o;19765:496::-;19944:3;19982:6;19976:13;19998:66;20057:6;20052:3;20045:4;20037:6;20033:17;19998:66;:::i;:::-;20127:13;;20086:16;;;;20149:70;20127:13;20086:16;20196:4;20184:17;;20149:70;:::i;21901:128::-;21968:9;;;21989:11;;;21986:37;;;22003:18;;:::i;22034:414::-;22236:2;22218:21;;;22275:2;22255:18;;;22248:30;22314:34;22309:2;22294:18;;22287:62;-1:-1:-1;;;22380:2:1;22365:18;;22358:48;22438:3;22423:19;;22034:414::o;22453:127::-;22514:10;22509:3;22505:20;22502:1;22495:31;22545:4;22542:1;22535:15;22569:4;22566:1;22559:15;22585:120;22625:1;22651;22641:35;;22656:18;;:::i;:::-;-1:-1:-1;22690:9:1;;22585:120::o;22710:112::-;22742:1;22768;22758:35;;22773:18;;:::i;:::-;-1:-1:-1;22807:9:1;;22710:112::o;22827:489::-;-1:-1:-1;;;;;23096:15:1;;;23078:34;;23148:15;;23143:2;23128:18;;23121:43;23195:2;23180:18;;23173:34;;;23243:3;23238:2;23223:18;;23216:31;;;23021:4;;23264:46;;23290:19;;23282:6;23264:46;:::i;:::-;23256:54;22827:489;-1:-1:-1;;;;;;22827:489:1:o;23321:249::-;23390:6;23443:2;23431:9;23422:7;23418:23;23414:32;23411:52;;;23459:1;23456;23449:12;23411:52;23491:9;23485:16;23510:30;23534:5;23510:30;:::i;23575:127::-;23636:10;23631:3;23627:20;23624:1;23617:31;23667:4;23664:1;23657:15;23691:4;23688:1;23681:15

Swarm Source

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