ETH Price: $3,389.40 (-2.02%)
Gas: 6 Gwei

Token

MyNFThouse (MyNFThouse)
 

Overview

Max Total Supply

382 MyNFThouse

Holders

206

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
m3x1d0.eth
Balance
2 MyNFThouse
0xbAc5c05FEacef303D742BA8e32365bC37C51dC2C
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:
MyNFThouse

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-28
*/

// 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 MyNFThouse is ERC721Enumerable, Ownable {
  using Strings for uint256;
  using SafeMath for uint256;
  string private baseURI;
  bool public isSaleStarted = true;
  string public notRevealedUri;
  uint256 private totalMinted;

  uint256 public cost = 0.07 ether;
  uint256 public maxSupply = 1234;
  uint256 public nftPerAddressLimit = 2;
  uint256 public discountFeePercentage = 8;
  uint256 public discountFirstNFTs = 250;
  uint256 public remainingNftForSale = 250;

  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) {
        uint256 supply = totalSupply();
        if(supply < discountFirstNFTs) {
            return (cost * _mintAmount).sub((cost * _mintAmount).mul(discountFeePercentage).div(100));
        }else{
            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 setDiscountFeePercentage(uint _discountFeePercentage) public onlyOwner {
      discountFeePercentage = _discountFeePercentage;
  }


  function setDiscountFirstNFTs(uint _discountFirstNFTs) public onlyOwner {
      discountFirstNFTs = _discountFirstNFTs;
  }

  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":[],"name":"discountFeePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discountFirstNFTs","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":"_discountFeePercentage","type":"uint256"}],"name":"setDiscountFeePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_discountFirstNFTs","type":"uint256"}],"name":"setDiscountFirstNFTs","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"}]

60806040819052600c805460ff1916600117905566f8b0a10e470000600f556104d26010556002601155600860125560fa60138190556014556015805461ffff19166101001790556200321c3881900390819083398101604081905262000066916200033c565b8351849084906200007f906000906020850190620001df565b50805162000095906001906020840190620001df565b5050506000620000aa6200011860201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000103826200011c565b6200010e8162000184565b5050505062000448565b3390565b600a546001600160a01b031633146200016b5760405162461bcd60e51b81526020600482018190526024820152600080516020620031fc83398151915260448201526064015b60405180910390fd5b80516200018090600b906020840190620001df565b5050565b600a546001600160a01b03163314620001cf5760405162461bcd60e51b81526020600482018190526024820152600080516020620031fc833981519152604482015260640162000162565b80516200018090600d9060208401905b828054620001ed90620003f5565b90600052602060002090601f0160209004810192826200021157600085556200025c565b82601f106200022c57805160ff19168380011785556200025c565b828001600101855582156200025c579182015b828111156200025c5782518255916020019190600101906200023f565b506200026a9291506200026e565b5090565b5b808211156200026a57600081556001016200026f565b600082601f8301126200029757600080fd5b81516001600160401b0380821115620002b457620002b462000432565b604051601f8301601f19908116603f01168101908282118183101715620002df57620002df62000432565b81604052838152602092508683858801011115620002fc57600080fd5b600091505b8382101562000320578582018301518183018401529082019062000301565b83821115620003325760008385830101525b9695505050505050565b600080600080608085870312156200035357600080fd5b84516001600160401b03808211156200036b57600080fd5b620003798883890162000285565b955060208701519150808211156200039057600080fd5b6200039e8883890162000285565b94506040870151915080821115620003b557600080fd5b620003c38883890162000285565b93506060870151915080821115620003da57600080fd5b50620003e98782880162000285565b91505092959194509250565b600181811c908216806200040a57607f821691505b602082108114156200042c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612da480620004586000396000f3fe6080604052600436106102ae5760003560e01c80636f8b44b011610175578063b88d4fde116100dc578063dfcf0fb411610095578063f2c4ce1e1161006f578063f2c4ce1e1461082e578063f2fde38b1461084e578063f606faea1461086e578063fa30297e1461088e57600080fd5b8063dfcf0fb4146107ba578063e36b0b37146107d0578063e985e9c5146107e557600080fd5b8063b88d4fde1461070e578063b90306ad1461072e578063ba7d2c761461074e578063c87b56dd14610764578063d0eb26b014610784578063d5abeb01146107a457600080fd5b8063940cd05b1161012e578063940cd05b1461067157806395d89b4114610691578063a0712d68146106a6578063a22cb465146106b9578063b28a2c57146106d9578063b66a0e5d146106f957600080fd5b80636f8b44b0146105c857806370a08231146105e8578063715018a61461060857806371ff1c061461061d5780638a7d04d2146106335780638da5cb5b1461065357600080fd5b80632f745c59116102195780634f6ccce7116101d25780634f6ccce71461050f578063518302271461052f57806355f804b31461054e5780635c975abb1461056e5780636352211e1461058857806367f14133146105a857600080fd5b80632f745c59146104485780633050767c1461046857806330d772f9146104885780633b80b7d3146104a857806342842e0e146104c2578063438b6300146104e257600080fd5b806313faede61161026b57806313faede61461039957806315eb6503146103bd57806318160ddd146103d35780631e89d545146103e857806323b872dd146104085780632e1a7d4d1461042857600080fd5b806301ffc9a7146102b357806302329a29146102e857806306fdde031461030a578063081812fc1461032c578063081c8c4414610364578063095ea7b314610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612821565b6108bb565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612806565b6108e6565b005b34801561031657600080fd5b5061031f61092c565b6040516102df9190612a5c565b34801561033857600080fd5b5061034c6103473660046128a4565b6109be565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061031f610a53565b34801561038557600080fd5b50610308610394366004612715565b610ae1565b3480156103a557600080fd5b506103af600f5481565b6040519081526020016102df565b3480156103c957600080fd5b506103af60145481565b3480156103df57600080fd5b506008546103af565b3480156103f457600080fd5b5061030861040336600461273f565b610bf7565b34801561041457600080fd5b50610308610423366004612633565b610c52565b34801561043457600080fd5b506103086104433660046128a4565b610c83565b34801561045457600080fd5b506103af610463366004612715565b610cde565b34801561047457600080fd5b506103086104833660046128a4565b610d74565b34801561049457600080fd5b506103086104a33660046128a4565b610da3565b3480156104b457600080fd5b50600c546102d39060ff1681565b3480156104ce57600080fd5b506103086104dd366004612633565b610dd2565b3480156104ee57600080fd5b506105026104fd3660046125e5565b610ded565b6040516102df9190612a18565b34801561051b57600080fd5b506103af61052a3660046128a4565b610e8f565b34801561053b57600080fd5b506015546102d390610100900460ff1681565b34801561055a57600080fd5b5061030861056936600461285b565b610f22565b34801561057a57600080fd5b506015546102d39060ff1681565b34801561059457600080fd5b5061034c6105a33660046128a4565b610f5f565b3480156105b457600080fd5b506103af6105c33660046128a4565b610fd6565b3480156105d457600080fd5b506103086105e33660046128a4565b611045565b3480156105f457600080fd5b506103af6106033660046125e5565b611074565b34801561061457600080fd5b506103086110fb565b34801561062957600080fd5b506103af60135481565b34801561063f57600080fd5b5061030861064e3660046128a4565b61116f565b34801561065f57600080fd5b50600a546001600160a01b031661034c565b34801561067d57600080fd5b5061030861068c366004612806565b61119e565b34801561069d57600080fd5b5061031f6111e2565b6103086106b43660046128a4565b6111f1565b3480156106c557600080fd5b506103086106d43660046126eb565b61144d565b3480156106e557600080fd5b506103086106f43660046128a4565b611512565b34801561070557600080fd5b50610308611672565b34801561071a57600080fd5b5061030861072936600461266f565b6116ab565b34801561073a57600080fd5b506103086107493660046128a4565b6116dd565b34801561075a57600080fd5b506103af60115481565b34801561077057600080fd5b5061031f61077f3660046128a4565b611741565b34801561079057600080fd5b5061030861079f3660046128a4565b61183f565b3480156107b057600080fd5b506103af60105481565b3480156107c657600080fd5b506103af60125481565b3480156107dc57600080fd5b5061030861186e565b3480156107f157600080fd5b506102d3610800366004612600565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083a57600080fd5b5061030861084936600461285b565b6118a4565b34801561085a57600080fd5b506103086108693660046125e5565b6118e1565b34801561087a57600080fd5b506103086108893660046128a4565b6119cc565b34801561089a57600080fd5b506103af6108a93660046125e5565b60166020526000908152604090205481565b60006001600160e01b0319821663780e9d6360e01b14806108e057506108e0826119fb565b92915050565b600a546001600160a01b031633146109195760405162461bcd60e51b815260040161091090612b03565b60405180910390fd5b6015805460ff1916911515919091179055565b60606000805461093b90612c83565b80601f016020809104026020016040519081016040528092919081815260200182805461096790612c83565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610910565b506000908152600460205260409020546001600160a01b031690565b600d8054610a6090612c83565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8c90612c83565b8015610ad95780601f10610aae57610100808354040283529160200191610ad9565b820191906000526020600020905b815481529060010190602001808311610abc57829003601f168201915b505050505081565b6000610aec82610f5f565b9050806001600160a01b0316836001600160a01b03161415610b5a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610910565b336001600160a01b0382161480610b765750610b768133610800565b610be85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610910565b610bf28383611a4b565b505050565b60005b8151811015610bf257610c4033848381518110610c1957610c19612d29565b6020026020010151848481518110610c3357610c33612d29565b6020026020010151610dd2565b80610c4a81612cb8565b915050610bfa565b610c5c3382611ab9565b610c785760405162461bcd60e51b815260040161091090612b38565b610bf2838383611bb0565b600a546001600160a01b03163314610cad5760405162461bcd60e51b815260040161091090612b03565b604051339082156108fc029083906000818181858888f19350505050158015610cda573d6000803e3d6000fd5b5050565b6000610ce983611074565b8210610d4b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610910565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d9e5760405162461bcd60e51b815260040161091090612b03565b601355565b600a546001600160a01b03163314610dcd5760405162461bcd60e51b815260040161091090612b03565b601255565b610bf2838383604051806020016040528060008152506116ab565b60606000610dfa83611074565b905060008167ffffffffffffffff811115610e1757610e17612d3f565b604051908082528060200260200182016040528015610e40578160200160208202803683370190505b50905060005b82811015610e8757610e588582610cde565b828281518110610e6a57610e6a612d29565b602090810291909101015280610e7f81612cb8565b915050610e46565b509392505050565b6000610e9a60085490565b8210610efd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610910565b60088281548110610f1057610f10612d29565b90600052602060002001549050919050565b600a546001600160a01b03163314610f4c5760405162461bcd60e51b815260040161091090612b03565b8051610cda90600b906020840190612456565b6000818152600260205260408120546001600160a01b0316806108e05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610910565b600080610fe260085490565b90506013548110156110315761102a611016606461101060125487600f5461100a9190612c0a565b90611d5b565b90611d67565b84600f546110249190612c0a565b90611d73565b9392505050565b82600f5461102a9190612c0a565b50919050565b600a546001600160a01b0316331461106f5760405162461bcd60e51b815260040161091090612b03565b601055565b60006001600160a01b0382166110df5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610910565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111255760405162461bcd60e51b815260040161091090612b03565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146111995760405162461bcd60e51b815260040161091090612b03565b601455565b600a546001600160a01b031633146111c85760405162461bcd60e51b815260040161091090612b03565b601580549115156101000261ff0019909216919091179055565b60606001805461093b90612c83565b600c5460ff166112395760405162461bcd60e51b81526020600482015260136024820152721cd85b19481a5cc81b9bdd081cdd185c9d1959606a1b6044820152606401610910565b60155460ff16156112855760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610910565b8060145410156112d75760405162461bcd60e51b815260206004820152601e60248201527f457863656564732052656d61696e696e67204e465420666f722073616c6500006044820152606401610910565b60006112e260085490565b6010549091506112f28383612bde565b11156113105760405162461bcd60e51b815260040161091090612ac1565b61131982610fd6565b34101561135d5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610910565b3360009081526016602052604090205460115461137a8483612bde565b11156113c85760405162461bcd60e51b815260206004820152601e60248201527f4d6178204e4654732070657220616464726573732065786365656465642e00006044820152606401610910565b600e5460015b84811161144657601480549060006113e583612c6c565b909155505033600090815260166020526040812080549161140583612cb8565b9091555061141e9050336114198385612bde565b611d7f565b600e805490600061142e83612cb8565b9190505550808061143e90612cb8565b9150506113ce565b5050505050565b6001600160a01b0382163314156114a65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610910565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461153c5760405162461bcd60e51b815260040161091090612b03565b60155460ff16156115885760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610910565b8060145410156115da5760405162461bcd60e51b815260206004820152601e60248201527f457863656564732052656d61696e696e67204e465420666f722073616c6500006044820152606401610910565b60006115e560085490565b6010549091506115f58383612bde565b11156116135760405162461bcd60e51b815260040161091090612ac1565b600e5460015b83811161166c576014805490600061163083612c6c565b909155506116449050336114198385612bde565b600e805490600061165483612cb8565b9190505550808061166490612cb8565b915050611619565b50505050565b600a546001600160a01b0316331461169c5760405162461bcd60e51b815260040161091090612b03565b600c805460ff19166001179055565b6116b53383611ab9565b6116d15760405162461bcd60e51b815260040161091090612b38565b61166c84848484611d99565b60006116e882610f5f565b9050336001600160a01b038216146117385760405162461bcd60e51b815260206004820152601360248201527221b0b63632b91034b9903737ba1037b73bb2b960691b6044820152606401610910565b610cda82611dcc565b6000818152600260205260409020546060906001600160a01b03166117c05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610910565b601554610100900460ff1661180157600d6117da83611e73565b6040516020016117eb929190612934565b6040516020818303038152906040529050919050565b600061180b611f71565b90508061181784611e73565b604051602001611828929190612905565b604051602081830303815290604052915050919050565b600a546001600160a01b031633146118695760405162461bcd60e51b815260040161091090612b03565b601155565b600a546001600160a01b031633146118985760405162461bcd60e51b815260040161091090612b03565b600c805460ff19169055565b600a546001600160a01b031633146118ce5760405162461bcd60e51b815260040161091090612b03565b8051610cda90600d906020840190612456565b600a546001600160a01b0316331461190b5760405162461bcd60e51b815260040161091090612b03565b6001600160a01b0381166119705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610910565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146119f65760405162461bcd60e51b815260040161091090612b03565b600f55565b60006001600160e01b031982166380ac58cd60e01b1480611a2c57506001600160e01b03198216635b5e139f60e01b145b806108e057506301ffc9a760e01b6001600160e01b03198316146108e0565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a8082610f5f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b325760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610910565b6000611b3d83610f5f565b9050806001600160a01b0316846001600160a01b03161480611b785750836001600160a01b0316611b6d846109be565b6001600160a01b0316145b80611ba857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bc382610f5f565b6001600160a01b031614611c2b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610910565b6001600160a01b038216611c8d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610910565b611c98838383611f80565b611ca3600082611a4b565b6001600160a01b0383166000908152600360205260408120805460019290611ccc908490612c29565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cfa908490612bde565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061102a8284612c0a565b600061102a8284612bf6565b600061102a8284612c29565b610cda828260405180602001604052806000815250612038565b611da4848484611bb0565b611db08484848461206b565b61166c5760405162461bcd60e51b815260040161091090612a6f565b6000611dd782610f5f565b9050611de581600084611f80565b611df0600083611a4b565b6001600160a01b0381166000908152600360205260408120805460019290611e19908490612c29565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081611e975750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ec15780611eab81612cb8565b9150611eba9050600a83612bf6565b9150611e9b565b60008167ffffffffffffffff811115611edc57611edc612d3f565b6040519080825280601f01601f191660200182016040528015611f06576020820181803683370190505b5090505b8415611ba857611f1b600183612c29565b9150611f28600a86612cd3565b611f33906030612bde565b60f81b818381518110611f4857611f48612d29565b60200101906001600160f81b031916908160001a905350611f6a600a86612bf6565b9450611f0a565b6060600b805461093b90612c83565b6001600160a01b038316611fdb57611fd681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ffe565b816001600160a01b0316836001600160a01b031614611ffe57611ffe8382612178565b6001600160a01b03821661201557610bf281612215565b826001600160a01b0316826001600160a01b031614610bf257610bf282826122c4565b6120428383612308565b61204f600084848461206b565b610bf25760405162461bcd60e51b815260040161091090612a6f565b60006001600160a01b0384163b1561216d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120af9033908990889088906004016129db565b602060405180830381600087803b1580156120c957600080fd5b505af19250505080156120f9575060408051601f3d908101601f191682019092526120f69181019061283e565b60015b612153573d808015612127576040519150601f19603f3d011682016040523d82523d6000602084013e61212c565b606091505b50805161214b5760405162461bcd60e51b815260040161091090612a6f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ba8565b506001949350505050565b6000600161218584611074565b61218f9190612c29565b6000838152600760205260409020549091508082146121e2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061222790600190612c29565b6000838152600960205260408120546008805493945090928490811061224f5761224f612d29565b90600052602060002001549050806008838154811061227057612270612d29565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122a8576122a8612d13565b6001900381819060005260206000200160009055905550505050565b60006122cf83611074565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661235e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610910565b6000818152600260205260409020546001600160a01b0316156123c35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610910565b6123cf60008383611f80565b6001600160a01b03821660009081526003602052604081208054600192906123f8908490612bde565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461246290612c83565b90600052602060002090601f01602090048101928261248457600085556124ca565b82601f1061249d57805160ff19168380011785556124ca565b828001600101855582156124ca579182015b828111156124ca5782518255916020019190600101906124af565b506124d69291506124da565b5090565b5b808211156124d657600081556001016124db565b600067ffffffffffffffff83111561250957612509612d3f565b61251c601f8401601f1916602001612b89565b905082815283838301111561253057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461255e57600080fd5b919050565b600082601f83011261257457600080fd5b8135602061258961258483612bba565b612b89565b80838252828201915082860187848660051b89010111156125a957600080fd5b60005b858110156125c8578135845292840192908401906001016125ac565b5090979650505050505050565b8035801515811461255e57600080fd5b6000602082840312156125f757600080fd5b61102a82612547565b6000806040838503121561261357600080fd5b61261c83612547565b915061262a60208401612547565b90509250929050565b60008060006060848603121561264857600080fd5b61265184612547565b925061265f60208501612547565b9150604084013590509250925092565b6000806000806080858703121561268557600080fd5b61268e85612547565b935061269c60208601612547565b925060408501359150606085013567ffffffffffffffff8111156126bf57600080fd5b8501601f810187136126d057600080fd5b6126df878235602084016124ef565b91505092959194509250565b600080604083850312156126fe57600080fd5b61270783612547565b915061262a602084016125d5565b6000806040838503121561272857600080fd5b61273183612547565b946020939093013593505050565b6000806040838503121561275257600080fd5b823567ffffffffffffffff8082111561276a57600080fd5b818501915085601f83011261277e57600080fd5b8135602061278e61258483612bba565b8083825282820191508286018a848660051b89010111156127ae57600080fd5b600096505b848710156127d8576127c481612547565b8352600196909601959183019183016127b3565b50965050860135925050808211156127ef57600080fd5b506127fc85828601612563565b9150509250929050565b60006020828403121561281857600080fd5b61102a826125d5565b60006020828403121561283357600080fd5b813561102a81612d55565b60006020828403121561285057600080fd5b815161102a81612d55565b60006020828403121561286d57600080fd5b813567ffffffffffffffff81111561288457600080fd5b8201601f8101841361289557600080fd5b611ba8848235602084016124ef565b6000602082840312156128b657600080fd5b5035919050565b600081518084526128d5816020860160208601612c40565b601f01601f19169290920160200192915050565b600081516128fb818560208601612c40565b9290920192915050565b60008351612917818460208801612c40565b83519083019061292b818360208801612c40565b01949350505050565b600080845481600182811c91508083168061295057607f831692505b602080841082141561297057634e487b7160e01b86526022600452602486fd5b8180156129845760018114612995576129c2565b60ff198616895284890196506129c2565b60008b81526020902060005b868110156129ba5781548b8201529085019083016129a1565b505084890196505b5050505050506129d281856128e9565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a0e908301846128bd565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612a5057835183529284019291840191600101612a34565b50909695505050505050565b60208152600061102a60208301846128bd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f45786365656473206d6178696d756d204f726967696e61746f727320737570706040820152616c7960f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612bb257612bb2612d3f565b604052919050565b600067ffffffffffffffff821115612bd457612bd4612d3f565b5060051b60200190565b60008219821115612bf157612bf1612ce7565b500190565b600082612c0557612c05612cfd565b500490565b6000816000190483118215151615612c2457612c24612ce7565b500290565b600082821015612c3b57612c3b612ce7565b500390565b60005b83811015612c5b578181015183820152602001612c43565b8381111561166c5750506000910152565b600081612c7b57612c7b612ce7565b506000190190565b600181811c90821680612c9757607f821691505b6020821081141561103f57634e487b7160e01b600052602260045260246000fd5b6000600019821415612ccc57612ccc612ce7565b5060010190565b600082612ce257612ce2612cfd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612d6b57600080fd5b5056fea264697066735822122057e9062abce489c9667f21addcc75631c9bd16c5b81bae0dab2788c967df18d364736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a4d794e4654686f75736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4d794e4654686f75736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f6e66742e6d796e6674686f7573656d696e742e636f2e756b2f72657665616c2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6e66742e6d796e6674686f7573656d696e742e636f2e756b2f6e6f7472657665616c2f6d657461646174612f000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636f8b44b011610175578063b88d4fde116100dc578063dfcf0fb411610095578063f2c4ce1e1161006f578063f2c4ce1e1461082e578063f2fde38b1461084e578063f606faea1461086e578063fa30297e1461088e57600080fd5b8063dfcf0fb4146107ba578063e36b0b37146107d0578063e985e9c5146107e557600080fd5b8063b88d4fde1461070e578063b90306ad1461072e578063ba7d2c761461074e578063c87b56dd14610764578063d0eb26b014610784578063d5abeb01146107a457600080fd5b8063940cd05b1161012e578063940cd05b1461067157806395d89b4114610691578063a0712d68146106a6578063a22cb465146106b9578063b28a2c57146106d9578063b66a0e5d146106f957600080fd5b80636f8b44b0146105c857806370a08231146105e8578063715018a61461060857806371ff1c061461061d5780638a7d04d2146106335780638da5cb5b1461065357600080fd5b80632f745c59116102195780634f6ccce7116101d25780634f6ccce71461050f578063518302271461052f57806355f804b31461054e5780635c975abb1461056e5780636352211e1461058857806367f14133146105a857600080fd5b80632f745c59146104485780633050767c1461046857806330d772f9146104885780633b80b7d3146104a857806342842e0e146104c2578063438b6300146104e257600080fd5b806313faede61161026b57806313faede61461039957806315eb6503146103bd57806318160ddd146103d35780631e89d545146103e857806323b872dd146104085780632e1a7d4d1461042857600080fd5b806301ffc9a7146102b357806302329a29146102e857806306fdde031461030a578063081812fc1461032c578063081c8c4414610364578063095ea7b314610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612821565b6108bb565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612806565b6108e6565b005b34801561031657600080fd5b5061031f61092c565b6040516102df9190612a5c565b34801561033857600080fd5b5061034c6103473660046128a4565b6109be565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061031f610a53565b34801561038557600080fd5b50610308610394366004612715565b610ae1565b3480156103a557600080fd5b506103af600f5481565b6040519081526020016102df565b3480156103c957600080fd5b506103af60145481565b3480156103df57600080fd5b506008546103af565b3480156103f457600080fd5b5061030861040336600461273f565b610bf7565b34801561041457600080fd5b50610308610423366004612633565b610c52565b34801561043457600080fd5b506103086104433660046128a4565b610c83565b34801561045457600080fd5b506103af610463366004612715565b610cde565b34801561047457600080fd5b506103086104833660046128a4565b610d74565b34801561049457600080fd5b506103086104a33660046128a4565b610da3565b3480156104b457600080fd5b50600c546102d39060ff1681565b3480156104ce57600080fd5b506103086104dd366004612633565b610dd2565b3480156104ee57600080fd5b506105026104fd3660046125e5565b610ded565b6040516102df9190612a18565b34801561051b57600080fd5b506103af61052a3660046128a4565b610e8f565b34801561053b57600080fd5b506015546102d390610100900460ff1681565b34801561055a57600080fd5b5061030861056936600461285b565b610f22565b34801561057a57600080fd5b506015546102d39060ff1681565b34801561059457600080fd5b5061034c6105a33660046128a4565b610f5f565b3480156105b457600080fd5b506103af6105c33660046128a4565b610fd6565b3480156105d457600080fd5b506103086105e33660046128a4565b611045565b3480156105f457600080fd5b506103af6106033660046125e5565b611074565b34801561061457600080fd5b506103086110fb565b34801561062957600080fd5b506103af60135481565b34801561063f57600080fd5b5061030861064e3660046128a4565b61116f565b34801561065f57600080fd5b50600a546001600160a01b031661034c565b34801561067d57600080fd5b5061030861068c366004612806565b61119e565b34801561069d57600080fd5b5061031f6111e2565b6103086106b43660046128a4565b6111f1565b3480156106c557600080fd5b506103086106d43660046126eb565b61144d565b3480156106e557600080fd5b506103086106f43660046128a4565b611512565b34801561070557600080fd5b50610308611672565b34801561071a57600080fd5b5061030861072936600461266f565b6116ab565b34801561073a57600080fd5b506103086107493660046128a4565b6116dd565b34801561075a57600080fd5b506103af60115481565b34801561077057600080fd5b5061031f61077f3660046128a4565b611741565b34801561079057600080fd5b5061030861079f3660046128a4565b61183f565b3480156107b057600080fd5b506103af60105481565b3480156107c657600080fd5b506103af60125481565b3480156107dc57600080fd5b5061030861186e565b3480156107f157600080fd5b506102d3610800366004612600565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083a57600080fd5b5061030861084936600461285b565b6118a4565b34801561085a57600080fd5b506103086108693660046125e5565b6118e1565b34801561087a57600080fd5b506103086108893660046128a4565b6119cc565b34801561089a57600080fd5b506103af6108a93660046125e5565b60166020526000908152604090205481565b60006001600160e01b0319821663780e9d6360e01b14806108e057506108e0826119fb565b92915050565b600a546001600160a01b031633146109195760405162461bcd60e51b815260040161091090612b03565b60405180910390fd5b6015805460ff1916911515919091179055565b60606000805461093b90612c83565b80601f016020809104026020016040519081016040528092919081815260200182805461096790612c83565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610910565b506000908152600460205260409020546001600160a01b031690565b600d8054610a6090612c83565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8c90612c83565b8015610ad95780601f10610aae57610100808354040283529160200191610ad9565b820191906000526020600020905b815481529060010190602001808311610abc57829003601f168201915b505050505081565b6000610aec82610f5f565b9050806001600160a01b0316836001600160a01b03161415610b5a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610910565b336001600160a01b0382161480610b765750610b768133610800565b610be85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610910565b610bf28383611a4b565b505050565b60005b8151811015610bf257610c4033848381518110610c1957610c19612d29565b6020026020010151848481518110610c3357610c33612d29565b6020026020010151610dd2565b80610c4a81612cb8565b915050610bfa565b610c5c3382611ab9565b610c785760405162461bcd60e51b815260040161091090612b38565b610bf2838383611bb0565b600a546001600160a01b03163314610cad5760405162461bcd60e51b815260040161091090612b03565b604051339082156108fc029083906000818181858888f19350505050158015610cda573d6000803e3d6000fd5b5050565b6000610ce983611074565b8210610d4b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610910565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d9e5760405162461bcd60e51b815260040161091090612b03565b601355565b600a546001600160a01b03163314610dcd5760405162461bcd60e51b815260040161091090612b03565b601255565b610bf2838383604051806020016040528060008152506116ab565b60606000610dfa83611074565b905060008167ffffffffffffffff811115610e1757610e17612d3f565b604051908082528060200260200182016040528015610e40578160200160208202803683370190505b50905060005b82811015610e8757610e588582610cde565b828281518110610e6a57610e6a612d29565b602090810291909101015280610e7f81612cb8565b915050610e46565b509392505050565b6000610e9a60085490565b8210610efd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610910565b60088281548110610f1057610f10612d29565b90600052602060002001549050919050565b600a546001600160a01b03163314610f4c5760405162461bcd60e51b815260040161091090612b03565b8051610cda90600b906020840190612456565b6000818152600260205260408120546001600160a01b0316806108e05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610910565b600080610fe260085490565b90506013548110156110315761102a611016606461101060125487600f5461100a9190612c0a565b90611d5b565b90611d67565b84600f546110249190612c0a565b90611d73565b9392505050565b82600f5461102a9190612c0a565b50919050565b600a546001600160a01b0316331461106f5760405162461bcd60e51b815260040161091090612b03565b601055565b60006001600160a01b0382166110df5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610910565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111255760405162461bcd60e51b815260040161091090612b03565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146111995760405162461bcd60e51b815260040161091090612b03565b601455565b600a546001600160a01b031633146111c85760405162461bcd60e51b815260040161091090612b03565b601580549115156101000261ff0019909216919091179055565b60606001805461093b90612c83565b600c5460ff166112395760405162461bcd60e51b81526020600482015260136024820152721cd85b19481a5cc81b9bdd081cdd185c9d1959606a1b6044820152606401610910565b60155460ff16156112855760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610910565b8060145410156112d75760405162461bcd60e51b815260206004820152601e60248201527f457863656564732052656d61696e696e67204e465420666f722073616c6500006044820152606401610910565b60006112e260085490565b6010549091506112f28383612bde565b11156113105760405162461bcd60e51b815260040161091090612ac1565b61131982610fd6565b34101561135d5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610910565b3360009081526016602052604090205460115461137a8483612bde565b11156113c85760405162461bcd60e51b815260206004820152601e60248201527f4d6178204e4654732070657220616464726573732065786365656465642e00006044820152606401610910565b600e5460015b84811161144657601480549060006113e583612c6c565b909155505033600090815260166020526040812080549161140583612cb8565b9091555061141e9050336114198385612bde565b611d7f565b600e805490600061142e83612cb8565b9190505550808061143e90612cb8565b9150506113ce565b5050505050565b6001600160a01b0382163314156114a65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610910565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461153c5760405162461bcd60e51b815260040161091090612b03565b60155460ff16156115885760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610910565b8060145410156115da5760405162461bcd60e51b815260206004820152601e60248201527f457863656564732052656d61696e696e67204e465420666f722073616c6500006044820152606401610910565b60006115e560085490565b6010549091506115f58383612bde565b11156116135760405162461bcd60e51b815260040161091090612ac1565b600e5460015b83811161166c576014805490600061163083612c6c565b909155506116449050336114198385612bde565b600e805490600061165483612cb8565b9190505550808061166490612cb8565b915050611619565b50505050565b600a546001600160a01b0316331461169c5760405162461bcd60e51b815260040161091090612b03565b600c805460ff19166001179055565b6116b53383611ab9565b6116d15760405162461bcd60e51b815260040161091090612b38565b61166c84848484611d99565b60006116e882610f5f565b9050336001600160a01b038216146117385760405162461bcd60e51b815260206004820152601360248201527221b0b63632b91034b9903737ba1037b73bb2b960691b6044820152606401610910565b610cda82611dcc565b6000818152600260205260409020546060906001600160a01b03166117c05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610910565b601554610100900460ff1661180157600d6117da83611e73565b6040516020016117eb929190612934565b6040516020818303038152906040529050919050565b600061180b611f71565b90508061181784611e73565b604051602001611828929190612905565b604051602081830303815290604052915050919050565b600a546001600160a01b031633146118695760405162461bcd60e51b815260040161091090612b03565b601155565b600a546001600160a01b031633146118985760405162461bcd60e51b815260040161091090612b03565b600c805460ff19169055565b600a546001600160a01b031633146118ce5760405162461bcd60e51b815260040161091090612b03565b8051610cda90600d906020840190612456565b600a546001600160a01b0316331461190b5760405162461bcd60e51b815260040161091090612b03565b6001600160a01b0381166119705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610910565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146119f65760405162461bcd60e51b815260040161091090612b03565b600f55565b60006001600160e01b031982166380ac58cd60e01b1480611a2c57506001600160e01b03198216635b5e139f60e01b145b806108e057506301ffc9a760e01b6001600160e01b03198316146108e0565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a8082610f5f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b325760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610910565b6000611b3d83610f5f565b9050806001600160a01b0316846001600160a01b03161480611b785750836001600160a01b0316611b6d846109be565b6001600160a01b0316145b80611ba857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bc382610f5f565b6001600160a01b031614611c2b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610910565b6001600160a01b038216611c8d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610910565b611c98838383611f80565b611ca3600082611a4b565b6001600160a01b0383166000908152600360205260408120805460019290611ccc908490612c29565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cfa908490612bde565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061102a8284612c0a565b600061102a8284612bf6565b600061102a8284612c29565b610cda828260405180602001604052806000815250612038565b611da4848484611bb0565b611db08484848461206b565b61166c5760405162461bcd60e51b815260040161091090612a6f565b6000611dd782610f5f565b9050611de581600084611f80565b611df0600083611a4b565b6001600160a01b0381166000908152600360205260408120805460019290611e19908490612c29565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081611e975750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ec15780611eab81612cb8565b9150611eba9050600a83612bf6565b9150611e9b565b60008167ffffffffffffffff811115611edc57611edc612d3f565b6040519080825280601f01601f191660200182016040528015611f06576020820181803683370190505b5090505b8415611ba857611f1b600183612c29565b9150611f28600a86612cd3565b611f33906030612bde565b60f81b818381518110611f4857611f48612d29565b60200101906001600160f81b031916908160001a905350611f6a600a86612bf6565b9450611f0a565b6060600b805461093b90612c83565b6001600160a01b038316611fdb57611fd681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ffe565b816001600160a01b0316836001600160a01b031614611ffe57611ffe8382612178565b6001600160a01b03821661201557610bf281612215565b826001600160a01b0316826001600160a01b031614610bf257610bf282826122c4565b6120428383612308565b61204f600084848461206b565b610bf25760405162461bcd60e51b815260040161091090612a6f565b60006001600160a01b0384163b1561216d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120af9033908990889088906004016129db565b602060405180830381600087803b1580156120c957600080fd5b505af19250505080156120f9575060408051601f3d908101601f191682019092526120f69181019061283e565b60015b612153573d808015612127576040519150601f19603f3d011682016040523d82523d6000602084013e61212c565b606091505b50805161214b5760405162461bcd60e51b815260040161091090612a6f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ba8565b506001949350505050565b6000600161218584611074565b61218f9190612c29565b6000838152600760205260409020549091508082146121e2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061222790600190612c29565b6000838152600960205260408120546008805493945090928490811061224f5761224f612d29565b90600052602060002001549050806008838154811061227057612270612d29565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122a8576122a8612d13565b6001900381819060005260206000200160009055905550505050565b60006122cf83611074565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661235e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610910565b6000818152600260205260409020546001600160a01b0316156123c35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610910565b6123cf60008383611f80565b6001600160a01b03821660009081526003602052604081208054600192906123f8908490612bde565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461246290612c83565b90600052602060002090601f01602090048101928261248457600085556124ca565b82601f1061249d57805160ff19168380011785556124ca565b828001600101855582156124ca579182015b828111156124ca5782518255916020019190600101906124af565b506124d69291506124da565b5090565b5b808211156124d657600081556001016124db565b600067ffffffffffffffff83111561250957612509612d3f565b61251c601f8401601f1916602001612b89565b905082815283838301111561253057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461255e57600080fd5b919050565b600082601f83011261257457600080fd5b8135602061258961258483612bba565b612b89565b80838252828201915082860187848660051b89010111156125a957600080fd5b60005b858110156125c8578135845292840192908401906001016125ac565b5090979650505050505050565b8035801515811461255e57600080fd5b6000602082840312156125f757600080fd5b61102a82612547565b6000806040838503121561261357600080fd5b61261c83612547565b915061262a60208401612547565b90509250929050565b60008060006060848603121561264857600080fd5b61265184612547565b925061265f60208501612547565b9150604084013590509250925092565b6000806000806080858703121561268557600080fd5b61268e85612547565b935061269c60208601612547565b925060408501359150606085013567ffffffffffffffff8111156126bf57600080fd5b8501601f810187136126d057600080fd5b6126df878235602084016124ef565b91505092959194509250565b600080604083850312156126fe57600080fd5b61270783612547565b915061262a602084016125d5565b6000806040838503121561272857600080fd5b61273183612547565b946020939093013593505050565b6000806040838503121561275257600080fd5b823567ffffffffffffffff8082111561276a57600080fd5b818501915085601f83011261277e57600080fd5b8135602061278e61258483612bba565b8083825282820191508286018a848660051b89010111156127ae57600080fd5b600096505b848710156127d8576127c481612547565b8352600196909601959183019183016127b3565b50965050860135925050808211156127ef57600080fd5b506127fc85828601612563565b9150509250929050565b60006020828403121561281857600080fd5b61102a826125d5565b60006020828403121561283357600080fd5b813561102a81612d55565b60006020828403121561285057600080fd5b815161102a81612d55565b60006020828403121561286d57600080fd5b813567ffffffffffffffff81111561288457600080fd5b8201601f8101841361289557600080fd5b611ba8848235602084016124ef565b6000602082840312156128b657600080fd5b5035919050565b600081518084526128d5816020860160208601612c40565b601f01601f19169290920160200192915050565b600081516128fb818560208601612c40565b9290920192915050565b60008351612917818460208801612c40565b83519083019061292b818360208801612c40565b01949350505050565b600080845481600182811c91508083168061295057607f831692505b602080841082141561297057634e487b7160e01b86526022600452602486fd5b8180156129845760018114612995576129c2565b60ff198616895284890196506129c2565b60008b81526020902060005b868110156129ba5781548b8201529085019083016129a1565b505084890196505b5050505050506129d281856128e9565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a0e908301846128bd565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612a5057835183529284019291840191600101612a34565b50909695505050505050565b60208152600061102a60208301846128bd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f45786365656473206d6178696d756d204f726967696e61746f727320737570706040820152616c7960f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612bb257612bb2612d3f565b604052919050565b600067ffffffffffffffff821115612bd457612bd4612d3f565b5060051b60200190565b60008219821115612bf157612bf1612ce7565b500190565b600082612c0557612c05612cfd565b500490565b6000816000190483118215151615612c2457612c24612ce7565b500290565b600082821015612c3b57612c3b612ce7565b500390565b60005b83811015612c5b578181015183820152602001612c43565b8381111561166c5750506000910152565b600081612c7b57612c7b612ce7565b506000190190565b600181811c90821680612c9757607f821691505b6020821081141561103f57634e487b7160e01b600052602260045260246000fd5b6000600019821415612ccc57612ccc612ce7565b5060010190565b600082612ce257612ce2612cfd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612d6b57600080fd5b5056fea264697066735822122057e9062abce489c9667f21addcc75631c9bd16c5b81bae0dab2788c967df18d364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a4d794e4654686f75736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4d794e4654686f75736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f6e66742e6d796e6674686f7573656d696e742e636f2e756b2f72657665616c2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6e66742e6d796e6674686f7573656d696e742e636f2e756b2f6e6f7472657665616c2f6d657461646174612f000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MyNFThouse
Arg [1] : _symbol (string): MyNFThouse
Arg [2] : _initBaseURI (string): https://nft.mynfthousemint.co.uk/reveal/metadata/
Arg [3] : _initNotRevealedUri (string): https://nft.mynfthousemint.co.uk/notreveal/metadata/

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 4d794e4654686f75736500000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 4d794e4654686f75736500000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [9] : 68747470733a2f2f6e66742e6d796e6674686f7573656d696e742e636f2e756b
Arg [10] : 2f72657665616c2f6d657461646174612f000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [12] : 68747470733a2f2f6e66742e6d796e6674686f7573656d696e742e636f2e756b
Arg [13] : 2f6e6f7472657665616c2f6d657461646174612f000000000000000000000000


Deployed Bytecode Sourcemap

46722:5476:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40589:237;;;;;;;;;;-1:-1:-1;40589:237:0;;;;;:::i;:::-;;:::i;:::-;;;9524:14:1;;9517:22;9499:41;;9487:2;9472:18;40589:237:0;;;;;;;;52002:73;;;;;;;;;;-1:-1:-1;52002:73:0;;;;;:::i;:::-;;:::i;:::-;;29108:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30568:221::-;;;;;;;;;;-1:-1:-1;30568:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8185:32:1;;;8167:51;;8155:2;8140:18;30568:221:0;8021:203:1;46901:28:0;;;;;;;;;;;;;:::i;30105:397::-;;;;;;;;;;-1:-1:-1;30105:397:0;;;;;:::i;:::-;;:::i;46968:32::-;;;;;;;;;;;;;;;;;;;19643:25:1;;;19631:2;19616:18;46968:32:0;19497:177:1;47171:40:0;;;;;;;;;;;;;;;;41242:113;;;;;;;;;;-1:-1:-1;41330:10:0;:17;41242:113;;49256:227;;;;;;;;;;-1:-1:-1;49256:227:0;;;;;:::i;:::-;;:::i;31458:305::-;;;;;;;;;;-1:-1:-1;31458:305:0;;;;;:::i;:::-;;:::i;52089:106::-;;;;;;;;;;-1:-1:-1;52089:106:0;;;;;:::i;:::-;;:::i;40910:256::-;;;;;;;;;;-1:-1:-1;40910:256:0;;;;;:::i;:::-;;:::i;51292:125::-;;;;;;;;;;-1:-1:-1;51292:125:0;;;;;:::i;:::-;;:::i;51143:141::-;;;;;;;;;;-1:-1:-1;51143:141:0;;;;;:::i;:::-;;:::i;46864:32::-;;;;;;;;;;-1:-1:-1;46864:32:0;;;;;;;;31834:151;;;;;;;;;;-1:-1:-1;31834:151:0;;;;;:::i;:::-;;:::i;49681:329::-;;;;;;;;;;-1:-1:-1;49681:329:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41432:233::-;;;;;;;;;;-1:-1:-1;41432:233:0;;;;;:::i;:::-;;:::i;47249:27::-;;;;;;;;;;-1:-1:-1;47249:27:0;;;;;;;;;;;51770:98;;;;;;;;;;-1:-1:-1;51770:98:0;;;;;:::i;:::-;;:::i;47218:26::-;;;;;;;;;;-1:-1:-1;47218:26:0;;;;;;;;28802:239;;;;;;;;;;-1:-1:-1;28802:239:0;;;;;:::i;:::-;;:::i;50016:328::-;;;;;;;;;;-1:-1:-1;50016:328:0;;;;;:::i;:::-;;:::i;51423:93::-;;;;;;;;;;-1:-1:-1;51423:93:0;;;;;:::i;:::-;;:::i;28532:208::-;;;;;;;;;;-1:-1:-1;28532:208:0;;;;;:::i;:::-;;:::i;18913:148::-;;;;;;;;;;;;;:::i;47128:38::-;;;;;;;;;;;;;;;;50865:133;;;;;;;;;;-1:-1:-1;50865:133:0;;;;;:::i;:::-;;:::i;18262:87::-;;;;;;;;;;-1:-1:-1;18335:6:0;;-1:-1:-1;;;;;18335:6:0;18262:87;;51682:80;;;;;;;;;;-1:-1:-1;51682:80:0;;;;;:::i;:::-;;:::i;29277:104::-;;;;;;;;;;;;;:::i;48318:930::-;;;;;;:::i;:::-;;:::i;30861:295::-;;;;;;;;;;-1:-1:-1;30861:295:0;;;;;:::i;:::-;;:::i;47731:579::-;;;;;;;;;;-1:-1:-1;47731:579:0;;;;;:::i;:::-;;:::i;51524:73::-;;;;;;;;;;;;;:::i;32056:285::-;;;;;;;;;;-1:-1:-1;32056:285:0;;;;;:::i;:::-;;:::i;49491:184::-;;;;;;;;;;-1:-1:-1;49491:184:0;;;;;:::i;:::-;;:::i;47041:37::-;;;;;;;;;;;;;;;;50354:421;;;;;;;;;;-1:-1:-1;50354:421:0;;;;;:::i;:::-;;:::i;51006:129::-;;;;;;;;;;-1:-1:-1;51006:129:0;;;;;:::i;:::-;;:::i;47005:31::-;;;;;;;;;;;;;;;;47083:40;;;;;;;;;;;;;;;;51603: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;51874:120;;;;;;;;;;-1:-1:-1;51874:120:0;;;;;:::i;:::-;;:::i;19216:244::-;;;;;;;;;;-1:-1:-1;19216:244:0;;;;;:::i;:::-;;:::i;50783:76::-;;;;;;;;;;-1:-1:-1;50783:76:0;;;;;:::i;:::-;;:::i;47285:48::-;;;;;;;;;;-1:-1:-1;47285: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;52002:73::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;;;;;;;;;52054:6:::1;:15:::0;;-1:-1:-1;;52054:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52002: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;;15808:2:1;30664:73:0;;;15790:21:1;15847:2;15827:18;;;15820:30;15886:34;15866:18;;;15859:62;-1:-1:-1;;;15937:18:1;;;15930:42;15989:19;;30664:73:0;15606:408:1;30664:73:0;-1:-1:-1;30757:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30757:24:0;;30568:221::o;46901: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;;18107:2:1;30236:57:0;;;18089:21:1;18146:2;18126:18;;;18119:30;18185:34;18165:18;;;18158:62;-1:-1:-1;;;18236:18:1;;;18229:31;18277:19;;30236:57:0;17905: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;;13853:2:1;30306:154:0;;;13835:21:1;13892:2;13872:18;;;13865:30;13931:34;13911:18;;;13904:62;14002:26;13982:18;;;13975:54;14046:19;;30306:154:0;13651:420:1;30306:154:0;30473:21;30482:2;30486:7;30473:8;:21::i;:::-;30175:327;30105:397;;:::o;49256:227::-;49358:9;49353:123;49373:9;:16;49369:1;:20;49353:123;;;49411:53;49428:10;49439:8;49448:1;49439:11;;;;;;;;:::i;:::-;;;;;;;49451:9;49461:1;49451:12;;;;;;;;:::i;:::-;;;;;;;49411:16;:53::i;:::-;49391:3;;;;:::i;:::-;;;;49353: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;52089:106::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;52151:36:::1;::::0;52159:10:::1;::::0;52151:36;::::1;;;::::0;52180:6;;52151:36:::1;::::0;;;52180:6;52159:10;52151:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52089: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;;9977:2:1;41027:87:0;;;9959:21:1;10016:2;9996:18;;;9989:30;10055:34;10035:18;;;10028:62;-1:-1:-1;;;10106:18:1;;;10099:41;10157:19;;41027:87:0;9775:407:1;41027:87:0;-1:-1:-1;;;;;;41132:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40910:256::o;51292:125::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51373:17:::1;:38:::0;51292:125::o;51143:141::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51232:21:::1;:46:::0;51143:141::o;31834:151::-;31938:39;31955:4;31961:2;31965:7;31938:39;;;;;;;;;;;;:16;:39::i;49681:329::-;49741:16;49765:23;49791:17;49801:6;49791:9;:17::i;:::-;49765:43;;49815:25;49857:15;49843:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49843:30:0;;49815:58;;49885:9;49880:103;49900:15;49896:1;:19;49880:103;;;49945:30;49965:6;49973:1;49945:19;:30::i;:::-;49931:8;49940:1;49931:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;49917:3;;;;:::i;:::-;;;;49880:103;;;-1:-1:-1;49996:8:0;49681:329;-1:-1:-1;;;49681: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;;18927:2:1;41527:95:0;;;18909:21:1;18966:2;18946:18;;;18939:30;19005:34;18985:18;;;18978:62;-1:-1:-1;;;19056:18:1;;;19049:42;19108:19;;41527:95:0;18725:408:1;41527:95:0;41640:10;41651:5;41640:17;;;;;;;;:::i;:::-;;;;;;;;;41633:24;;41432:233;;;:::o;51770:98::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51841:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;28802:239::-:0;28874:7;28910:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28910:16:0;28945:19;28937:73;;;;-1:-1:-1;;;28937:73:0;;14689:2:1;28937:73:0;;;14671:21:1;14728:2;14708:18;;;14701:30;14767:34;14747:18;;;14740:62;-1:-1:-1;;;14818:18:1;;;14811:39;14867:19;;28937:73:0;14487:405:1;50016:328:0;50075:7;50095:14;50112:13;41330:10;:17;;41242:113;50112:13;50095:30;;50148:17;;50139:6;:26;50136:203;;;50189:82;50214:56;50266:3;50214:47;50239:21;;50222:11;50215:4;;:18;;;;:::i;:::-;50214:24;;:47::i;:::-;:51;;:56::i;:::-;50197:11;50190:4;;:18;;;;:::i;:::-;50189:24;;:82::i;:::-;50182:89;50016:328;-1:-1:-1;;;50016:328:0:o;50136:203::-;50316:11;50309:4;;:18;;;;:::i;50136:203::-;50084:260;50016:328;;;:::o;51423:93::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51488:9:::1;:22:::0;51423:93::o;28532:208::-;28604:7;-1:-1:-1;;;;;28632:19:0;;28624:74;;;;-1:-1:-1;;;28624:74:0;;14278:2:1;28624:74:0;;;14260:21:1;14317:2;14297:18;;;14290:30;14356:34;14336:18;;;14329:62;-1:-1:-1;;;14407:18:1;;;14400:40;14457:19;;28624:74:0;14076: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;50865:133::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;50950:19:::1;:42:::0;50865:133::o;51682:80::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51738:8:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;51738:18:0;;::::1;::::0;;;::::1;::::0;;51682:80::o;29277:104::-;29333:13;29366:7;29359:14;;;;;:::i;48318:930::-;48384:13;;;;48376:44;;;;-1:-1:-1;;;48376:44:0;;17759:2:1;48376:44:0;;;17741:21:1;17798:2;17778:18;;;17771:30;-1:-1:-1;;;17817:18:1;;;17810:49;17876:18;;48376:44:0;17557:343:1;48376:44:0;48440:6;;;;48439:7;48431:42;;;;-1:-1:-1;;;48431:42:0;;16582:2:1;48431:42:0;;;16564:21:1;16621:2;16601:18;;;16594:30;-1:-1:-1;;;16640:18:1;;;16633:52;16702:18;;48431:42:0;16380:346:1;48431:42:0;48515:11;48492:19;;:34;;48484:77;;;;-1:-1:-1;;;48484:77:0;;13147:2:1;48484:77:0;;;13129:21:1;13186:2;13166:18;;;13159:30;13225:32;13205:18;;;13198:60;13275:18;;48484:77:0;12945:354:1;48484:77:0;48572:14;48589:13;41330:10;:17;;41242:113;48589:13;48645:9;;48572:30;;-1:-1:-1;48621:20:0;48630:11;48572:30;48621:20;:::i;:::-;:33;;48613:80;;;;-1:-1:-1;;;48613:80:0;;;;;;;:::i;:::-;48742:24;48754:11;48742;:24::i;:::-;48729:9;:37;;48721:68;;;;-1:-1:-1;;;48721:68:0;;13506:2:1;48721:68:0;;;13488:21:1;13545:2;13525:18;;;13518:30;-1:-1:-1;;;13564:18:1;;;13557:48;13622:18;;48721:68:0;13304:342:1;48721:68:0;48841:10;48800:24;48827:25;;;:13;:25;;;;;;48905:18;;48871:30;48890:11;48827:25;48871:30;:::i;:::-;:52;;48863:95;;;;-1:-1:-1;;;48863:95:0;;19340:2:1;48863:95:0;;;19322:21:1;19379:2;19359:18;;;19352:30;19418:32;19398:18;;;19391:60;19468:18;;48863:95:0;19138:354:1;48863:95:0;48993:11;;49032:1;49015:216;49040:11;49035:1;:16;49015:216;;49073:19;:21;;;:19;:21;;;:::i;:::-;;;;-1:-1:-1;;49123:10:0;49109:25;;;;:13;:25;;;;;:27;;;;;;:::i;:::-;;;;-1:-1:-1;49151:40:0;;-1:-1:-1;49161:10:0;49173:17;49189:1;49173:13;:17;:::i;:::-;49151:9;:40::i;:::-;49206:11;:13;;;:11;:13;;;:::i;:::-;;;;;;49053:3;;;;;:::i;:::-;;;;49015:216;;;;48365:883;;;48318:930;:::o;30861:295::-;-1:-1:-1;;;;;30964:24:0;;16986:10;30964:24;;30956:62;;;;-1:-1:-1;;;30956:62:0;;12380:2:1;30956:62:0;;;12362:21:1;12419:2;12399:18;;;12392:30;12458:27;12438:18;;;12431:55;12503:18;;30956:62:0;12178: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;;9499:41:1;;;31031:42:0;;16986:10;31100:48;;9472:18:1;31100:48:0;;;;;;;30861:295;;:::o;47731:579::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;47817:6:::1;::::0;::::1;;47816:7;47808:42;;;::::0;-1:-1:-1;;;47808:42:0;;16582:2:1;47808:42:0::1;::::0;::::1;16564:21:1::0;16621:2;16601:18;;;16594:30;-1:-1:-1;;;16640:18:1;;;16633:52;16702:18;;47808:42:0::1;16380:346:1::0;47808:42:0::1;47892:11;47869:19;;:34;;47861:77;;;::::0;-1:-1:-1;;;47861:77:0;;13147:2:1;47861:77:0::1;::::0;::::1;13129:21:1::0;13186:2;13166:18;;;13159:30;13225:32;13205:18;;;13198:60;13275:18;;47861:77:0::1;12945:354:1::0;47861:77:0::1;47949:14;47966:13;41330:10:::0;:17;;41242:113;47966:13:::1;48022:9;::::0;47949:30;;-1:-1:-1;47998:20:0::1;48007:11:::0;47949:30;47998:20:::1;:::i;:::-;:33;;47990:80;;;;-1:-1:-1::0;;;47990:80:0::1;;;;;;;:::i;:::-;48105:11;::::0;48144:1:::1;48127:176;48152:11;48147:1;:16;48127:176;;48186:19;:21:::0;;;:19:::1;:21;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;48222:40:0::1;::::0;-1:-1:-1;48232:10:0::1;48244:17;48260:1:::0;48244:13;:17:::1;:::i;48222:40::-;48278:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;48165:3;;;;;:::i;:::-;;;;48127:176;;;;47787:523;;47731:579:::0;:::o;51524:73::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51571:13:::1;:20:::0;;-1:-1:-1;;51571:20:0::1;51587:4;51571:20;::::0;;51524: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;49491:184::-;49540:13;49556:23;49571:7;49556:14;:23::i;:::-;49540:39;-1:-1:-1;49598:10:0;-1:-1:-1;;;;;49598:20:0;;;49590:52;;;;-1:-1:-1;;;49590:52:0;;15099:2:1;49590:52:0;;;15081:21:1;15138:2;15118:18;;;15111:30;-1:-1:-1;;;15157:18:1;;;15150:49;15216:18;;49590:52:0;14897:343:1;49590:52:0;49653:14;49659:7;49653:5;:14::i;50354:421::-;33873:4;33897:16;;;:7;:16;;;;;;50427:13;;-1:-1:-1;;;;;33897:16:0;50454:75;;;;-1:-1:-1;;;50454:75:0;;17343:2:1;50454:75:0;;;17325:21:1;17382:2;17362:18;;;17355:30;17421:34;17401:18;;;17394:62;-1:-1:-1;;;17472:18:1;;;17465:45;17527:19;;50454:75:0;17141:411:1;50454:75:0;50543:8;;;;;;;50540:108;;50604:14;50620:18;:7;:16;:18::i;:::-;50587:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50573:67;;50354:421;;;:::o;50540:108::-;50654:28;50685:10;:8;:10::i;:::-;50654:41;;50733:14;50749:18;:7;:16;:18::i;:::-;50716:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50702:67;;;50354:421;;;:::o;51006:129::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51089:18:::1;:40:::0;51006:129::o;51603:73::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51649:13:::1;:21:::0;;-1:-1:-1;;51649:21:0::1;::::0;;51603:73::o;51874:120::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;51956:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::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;;10808:2:1;19297:73:0::1;::::0;::::1;10790:21:1::0;10847:2;10827:18;;;10820:30;10886:34;10866:18;;;10859:62;-1:-1:-1;;;10937:18:1;;;10930:36;10983:19;;19297:73:0::1;10606: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;50783:76::-;18335:6;;-1:-1:-1;;;;;18335:6:0;16986:10;18482:23;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;50841:4:::1;:12:::0;50783: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;;12734:2:1;34212:73:0;;;12716:21:1;12773:2;12753:18;;;12746:30;12812:34;12792:18;;;12785:62;-1:-1:-1;;;12863:18:1;;;12856:42;12915:19;;34212:73:0;12532: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;;16933:2:1;37113:85:0;;;16915:21:1;16972:2;16952:18;;;16945:30;17011:34;16991:18;;;16984:62;-1:-1:-1;;;17062:18:1;;;17055:39;17111:19;;37113:85:0;16731:405:1;37113:85:0;-1:-1:-1;;;;;37217:16:0;;37209:65;;;;-1:-1:-1;;;37209:65:0;;11975:2:1;37209:65:0;;;11957:21:1;12014:2;11994:18;;;11987:30;12053:34;12033:18;;;12026:62;-1:-1:-1;;;12104:18:1;;;12097:34;12148:19;;37209:65:0;11773: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;22906:98::-;22964:7;22991:5;22995:1;22991;:5;:::i;23305:98::-;23363:7;23390:5;23394:1;23390;:5;:::i;22549:98::-;22607:7;22634:5;22638:1;22634;:5;:::i;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: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;;47619:102;47679:13;47708:7;47701: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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38853:13:0;;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;;15447:2:1;35787:61:0;;;15429:21:1;;;15466:18;;;15459:30;15525:34;15505:18;;;15498:62;15577:18;;35787:61:0;15245: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;;11618:2:1;35859:58:0;;;11600:21:1;11657:2;11637:18;;;11630:30;11696;11676:18;;;11669:58;11744:18;;35859:58:0;11416: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;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:673::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:163;1098:2;1095:1;1092:9;1084:163;;;1155:17;;1143:30;;1193:12;;;;1225;;;;1116:1;1109:9;1084:163;;;-1:-1:-1;1265:5:1;;603:673;-1:-1:-1;;;;;;;603:673:1:o;1281:160::-;1346:20;;1402:13;;1395:21;1385:32;;1375:60;;1431:1;1428;1421:12;1446:186;1505:6;1558:2;1546:9;1537:7;1533:23;1529:32;1526:52;;;1574:1;1571;1564:12;1526:52;1597:29;1616:9;1597:29;:::i;1637:260::-;1705:6;1713;1766:2;1754:9;1745:7;1741:23;1737:32;1734:52;;;1782:1;1779;1772:12;1734:52;1805:29;1824:9;1805:29;:::i;:::-;1795:39;;1853:38;1887:2;1876:9;1872:18;1853:38;:::i;:::-;1843:48;;1637:260;;;;;:::o;1902:328::-;1979:6;1987;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;;2135:38;2169:2;2158:9;2154:18;2135:38;:::i;:::-;2125:48;;2220:2;2209:9;2205:18;2192:32;2182:42;;1902:328;;;;;:::o;2235:666::-;2330:6;2338;2346;2354;2407:3;2395:9;2386:7;2382:23;2378:33;2375:53;;;2424:1;2421;2414:12;2375:53;2447:29;2466:9;2447:29;:::i;:::-;2437:39;;2495:38;2529:2;2518:9;2514:18;2495:38;:::i;:::-;2485:48;;2580:2;2569:9;2565:18;2552:32;2542:42;;2635:2;2624:9;2620:18;2607:32;2662:18;2654:6;2651:30;2648:50;;;2694:1;2691;2684:12;2648:50;2717:22;;2770:4;2762:13;;2758:27;-1:-1:-1;2748:55:1;;2799:1;2796;2789:12;2748:55;2822:73;2887:7;2882:2;2869:16;2864:2;2860;2856:11;2822:73;:::i;:::-;2812:83;;;2235:666;;;;;;;:::o;2906:254::-;2971:6;2979;3032:2;3020:9;3011:7;3007:23;3003:32;3000:52;;;3048:1;3045;3038:12;3000:52;3071:29;3090:9;3071:29;:::i;:::-;3061:39;;3119:35;3150:2;3139:9;3135:18;3119:35;:::i;3165:254::-;3233:6;3241;3294:2;3282:9;3273:7;3269:23;3265:32;3262:52;;;3310:1;3307;3300:12;3262:52;3333:29;3352:9;3333:29;:::i;:::-;3323:39;3409:2;3394:18;;;;3381:32;;-1:-1:-1;;;3165:254:1:o;3424:1157::-;3542:6;3550;3603:2;3591:9;3582:7;3578:23;3574:32;3571:52;;;3619:1;3616;3609:12;3571:52;3659:9;3646:23;3688:18;3729:2;3721:6;3718:14;3715:34;;;3745:1;3742;3735:12;3715:34;3783:6;3772:9;3768:22;3758:32;;3828:7;3821:4;3817:2;3813:13;3809:27;3799:55;;3850:1;3847;3840:12;3799:55;3886:2;3873:16;3908:4;3932:60;3948:43;3988:2;3948:43;:::i;3932:60::-;4014:3;4038:2;4033:3;4026:15;4066:2;4061:3;4057:12;4050:19;;4097:2;4093;4089:11;4145:7;4140:2;4134;4131:1;4127:10;4123:2;4119:19;4115:28;4112:41;4109:61;;;4166:1;4163;4156:12;4109:61;4188:1;4179:10;;4198:169;4212:2;4209:1;4206:9;4198:169;;;4269:23;4288:3;4269:23;:::i;:::-;4257:36;;4230:1;4223:9;;;;;4313:12;;;;4345;;4198:169;;;-1:-1:-1;4386:5:1;-1:-1:-1;;4429:18:1;;4416:32;;-1:-1:-1;;4460:16:1;;;4457:36;;;4489:1;4486;4479:12;4457:36;;4512:63;4567:7;4556:8;4545:9;4541:24;4512:63;:::i;:::-;4502:73;;;3424:1157;;;;;:::o;4586:180::-;4642:6;4695:2;4683:9;4674:7;4670:23;4666:32;4663:52;;;4711:1;4708;4701:12;4663:52;4734:26;4750:9;4734:26;:::i;4771:245::-;4829:6;4882:2;4870:9;4861:7;4857:23;4853:32;4850:52;;;4898:1;4895;4888:12;4850:52;4937:9;4924:23;4956:30;4980:5;4956:30;:::i;5021:249::-;5090:6;5143:2;5131:9;5122:7;5118:23;5114:32;5111:52;;;5159:1;5156;5149:12;5111:52;5191:9;5185:16;5210:30;5234:5;5210:30;:::i;5275:450::-;5344:6;5397:2;5385:9;5376:7;5372:23;5368:32;5365:52;;;5413:1;5410;5403:12;5365:52;5453:9;5440:23;5486:18;5478:6;5475:30;5472:50;;;5518:1;5515;5508:12;5472:50;5541:22;;5594:4;5586:13;;5582:27;-1:-1:-1;5572:55:1;;5623:1;5620;5613:12;5572:55;5646:73;5711:7;5706:2;5693:16;5688:2;5684;5680:11;5646:73;:::i;5730:180::-;5789:6;5842:2;5830:9;5821:7;5817:23;5813:32;5810:52;;;5858:1;5855;5848:12;5810:52;-1:-1:-1;5881:23:1;;5730:180;-1:-1:-1;5730:180:1:o;5915:257::-;5956:3;5994:5;5988:12;6021:6;6016:3;6009:19;6037:63;6093:6;6086:4;6081:3;6077:14;6070:4;6063:5;6059:16;6037:63;:::i;:::-;6154:2;6133:15;-1:-1:-1;;6129:29:1;6120:39;;;;6161:4;6116:50;;5915:257;-1:-1:-1;;5915:257:1:o;6177:185::-;6219:3;6257:5;6251:12;6272:52;6317:6;6312:3;6305:4;6298:5;6294:16;6272:52;:::i;:::-;6340:16;;;;;6177:185;-1:-1:-1;;6177:185:1:o;6367:470::-;6546:3;6584:6;6578:13;6600:53;6646:6;6641:3;6634:4;6626:6;6622:17;6600:53;:::i;:::-;6716:13;;6675:16;;;;6738:57;6716:13;6675:16;6772:4;6760:17;;6738:57;:::i;:::-;6811:20;;6367:470;-1:-1:-1;;;;6367:470:1:o;6842:1174::-;7018:3;7047:1;7080:6;7074:13;7110:3;7132:1;7160:9;7156:2;7152:18;7142:28;;7220:2;7209:9;7205:18;7242;7232:61;;7286:4;7278:6;7274:17;7264:27;;7232:61;7312:2;7360;7352:6;7349:14;7329:18;7326:38;7323:165;;;-1:-1:-1;;;7387:33:1;;7443:4;7440:1;7433:15;7473:4;7394:3;7461:17;7323:165;7504:18;7531:104;;;;7649:1;7644:320;;;;7497:467;;7531:104;-1:-1:-1;;7564:24:1;;7552:37;;7609:16;;;;-1:-1:-1;7531:104:1;;7644:320;20220:1;20213:14;;;20257:4;20244:18;;7739:1;7753:165;7767:6;7764:1;7761:13;7753:165;;;7845:14;;7832:11;;;7825:35;7888:16;;;;7782:10;;7753:165;;;7757:3;;7947:6;7942:3;7938:16;7931:23;;7497:467;;;;;;;7980:30;8006:3;7998:6;7980:30;:::i;:::-;7973:37;6842:1174;-1:-1:-1;;;;;6842:1174:1:o;8229:488::-;-1:-1:-1;;;;;8498:15:1;;;8480:34;;8550:15;;8545:2;8530:18;;8523:43;8597:2;8582:18;;8575:34;;;8645:3;8640:2;8625:18;;8618:31;;;8423:4;;8666:45;;8691:19;;8683:6;8666:45;:::i;:::-;8658:53;8229:488;-1:-1:-1;;;;;;8229:488:1:o;8722:632::-;8893:2;8945:21;;;9015:13;;8918:18;;;9037:22;;;8864:4;;8893:2;9116:15;;;;9090:2;9075:18;;;8864:4;9159:169;9173:6;9170:1;9167:13;9159:169;;;9234:13;;9222:26;;9303:15;;;;9268:12;;;;9195:1;9188:9;9159:169;;;-1:-1:-1;9345:3:1;;8722:632;-1:-1:-1;;;;;;8722:632:1:o;9551:219::-;9700:2;9689:9;9682:21;9663:4;9720:44;9760:2;9749:9;9745:18;9737:6;9720:44;:::i;10187:414::-;10389:2;10371:21;;;10428:2;10408:18;;;10401:30;10467:34;10462:2;10447:18;;10440:62;-1:-1:-1;;;10533:2:1;10518:18;;10511:48;10591:3;10576:19;;10187:414::o;11013:398::-;11215:2;11197:21;;;11254:2;11234:18;;;11227:30;11293:34;11288:2;11273:18;;11266:62;-1:-1:-1;;;11359:2:1;11344:18;;11337:32;11401:3;11386:19;;11013:398::o;16019:356::-;16221:2;16203:21;;;16240:18;;;16233:30;16299:34;16294:2;16279:18;;16272:62;16366:2;16351:18;;16019:356::o;18307:413::-;18509:2;18491:21;;;18548:2;18528:18;;;18521:30;18587:34;18582:2;18567:18;;18560:62;-1:-1:-1;;;18653:2:1;18638:18;;18631:47;18710:3;18695:19;;18307:413::o;19679:275::-;19750:2;19744:9;19815:2;19796:13;;-1:-1:-1;;19792:27:1;19780:40;;19850:18;19835:34;;19871:22;;;19832:62;19829:88;;;19897:18;;:::i;:::-;19933:2;19926:22;19679:275;;-1:-1:-1;19679:275:1:o;19959:183::-;20019:4;20052:18;20044:6;20041:30;20038:56;;;20074:18;;:::i;:::-;-1:-1:-1;20119:1:1;20115:14;20131:4;20111:25;;19959:183::o;20273:128::-;20313:3;20344:1;20340:6;20337:1;20334:13;20331:39;;;20350:18;;:::i;:::-;-1:-1:-1;20386:9:1;;20273:128::o;20406:120::-;20446:1;20472;20462:35;;20477:18;;:::i;:::-;-1:-1:-1;20511:9:1;;20406:120::o;20531:168::-;20571:7;20637:1;20633;20629:6;20625:14;20622:1;20619:21;20614:1;20607:9;20600:17;20596:45;20593:71;;;20644:18;;:::i;:::-;-1:-1:-1;20684:9:1;;20531:168::o;20704:125::-;20744:4;20772:1;20769;20766:8;20763:34;;;20777:18;;:::i;:::-;-1:-1:-1;20814:9:1;;20704:125::o;20834:258::-;20906:1;20916:113;20930:6;20927:1;20924:13;20916:113;;;21006:11;;;21000:18;20987:11;;;20980:39;20952:2;20945:10;20916:113;;;21047:6;21044:1;21041:13;21038:48;;;-1:-1:-1;;21082:1:1;21064:16;;21057:27;20834:258::o;21097:136::-;21136:3;21164:5;21154:39;;21173:18;;:::i;:::-;-1:-1:-1;;;21209:18:1;;21097:136::o;21238:380::-;21317:1;21313:12;;;;21360;;;21381:61;;21435:4;21427:6;21423:17;21413:27;;21381:61;21488:2;21480:6;21477:14;21457:18;21454:38;21451:161;;;21534:10;21529:3;21525:20;21522:1;21515:31;21569:4;21566:1;21559:15;21597:4;21594:1;21587:15;21623:135;21662:3;-1:-1:-1;;21683:17:1;;21680:43;;;21703:18;;:::i;:::-;-1:-1:-1;21750:1:1;21739:13;;21623:135::o;21763:112::-;21795:1;21821;21811:35;;21826:18;;:::i;:::-;-1:-1:-1;21860:9:1;;21763:112::o;21880:127::-;21941:10;21936:3;21932:20;21929:1;21922:31;21972:4;21969:1;21962:15;21996:4;21993:1;21986:15;22012:127;22073:10;22068:3;22064:20;22061:1;22054:31;22104:4;22101:1;22094:15;22128:4;22125:1;22118:15;22144:127;22205:10;22200:3;22196:20;22193:1;22186:31;22236:4;22233:1;22226:15;22260:4;22257:1;22250:15;22276:127;22337:10;22332:3;22328:20;22325:1;22318:31;22368:4;22365:1;22358:15;22392:4;22389:1;22382:15;22408:127;22469:10;22464:3;22460:20;22457:1;22450:31;22500:4;22497:1;22490:15;22524:4;22521:1;22514:15;22540:131;-1:-1:-1;;;;;;22614:32:1;;22604:43;;22594:71;;22661:1;22658;22651:12;22594:71;22540:131;:::o

Swarm Source

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