ETH Price: $3,278.57 (+0.84%)
Gas: 1 Gwei

Token

wdms2022 (wdms)
 

Overview

Max Total Supply

550 wdms

Holders

341

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 wdms
0x5e15d13a7525eaa829cd7ab3b5a07332e9f106f9
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:
WDMS

Compiler Version
v0.7.2+commit.51b20bc0

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-29
*/

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

/**
 *Submitted for verification at Etherscan.io on 2021-04-22
 */
// File: @openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
// File: @openzeppelin/contracts/introspection/IERC165.sol
pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );
    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );
    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol
pragma solidity >=0.6.2 <0.8.0;

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

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
pragma solidity >=0.6.0 <0.8.0;

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

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;
    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor() internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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)
    {
        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)
    {
        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)
    {
        // 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)
    {
        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)
    {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity >=0.6.2 <0.8.0;

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

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.
    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];
        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.
            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;
            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
            bytes32 lastvalue = set._values[lastIndex];
            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based
            // Delete the slot where the moved value was stored
            set._values.pop();
            // Delete the index for the deleted slot
            delete set._indexes[value];
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value)
        private
        view
        returns (bool)
    {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index)
        private
        view
        returns (bytes32)
    {
        require(
            set._values.length > index,
            "EnumerableSet: index out of bounds"
        );
        return set._values[index];
    }

    // Bytes32Set
    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index)
        internal
        view
        returns (bytes32)
    {
        return _at(set._inner, index);
    }

    // AddressSet
    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    // UintSet
    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index)
        internal
        view
        returns (uint256)
    {
        return uint256(_at(set._inner, index));
    }
}
// File: @openzeppelin/contracts/utils/EnumerableMap.sol
pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.
    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }
    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;
        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(
        Map storage map,
        bytes32 key,
        bytes32 value
    ) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) {
            // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({_key: key, _value: value}));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];
        if (keyIndex != 0) {
            // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.
            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;
            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
            MapEntry storage lastEntry = map._entries[lastIndex];
            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based
            // Delete the slot where the moved entry was stored
            map._entries.pop();
            // Delete the index for the deleted slot
            delete map._indexes[key];
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key)
        private
        view
        returns (bool)
    {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

    /**
     * @dev Returns the key-value pair stored at position `index` in the map. O(1).
     *
     * Note that there are no guarantees on the ordering of entries inside the
     * array, and it may change when more entries are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Map storage map, uint256 index)
        private
        view
        returns (bytes32, bytes32)
    {
        require(
            map._entries.length > index,
            "EnumerableMap: index out of bounds"
        );
        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key)
        private
        view
        returns (bool, bytes32)
    {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(
        Map storage map,
        bytes32 key,
        string memory errorMessage
    ) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap
    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        UintToAddressMap storage map,
        uint256 key,
        address value
    ) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key)
        internal
        returns (bool)
    {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool)
    {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map)
        internal
        view
        returns (uint256)
    {
        return _length(map._inner);
    }

    /**
     * @dev Returns the element stored at position `index` in the set. O(1).
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintToAddressMap storage map, uint256 index)
        internal
        view
        returns (uint256, address)
    {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool, address)
    {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        UintToAddressMap storage map,
        uint256 key,
        string memory errorMessage
    ) internal view returns (address) {
        return
            address(
                uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))
            );
    }
}
// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + (temp % 10)));
            temp /= 10;
        }
        return string(buffer);
    }
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity >=0.6.0 <0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;
    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;
    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping(address => EnumerableSet.UintSet) private _holderTokens;
    mapping(address => EnumerableSet.UintSet) private _vipHolders;
    mapping(address => EnumerableSet.UintSet) private _svipHolders;
    mapping(address => EnumerableSet.UintSet) private _commonHolders;
    // Mapping from token ID to token type
    //mapping (uint256 => string) private _tokenType;
    mapping(uint256 => uint256) private _tokenType;
    uint256 private _svipType = 0;
    uint256 private _vipType = 1;
    uint256 private _commonType = 2;
    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;
    // 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;
    // Token name
    string private _name;
    // Token symbol
    string private _symbol;
    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;
    // Base URI
    string private _baseURI;

    uint32 constant SVIP = 0;
    uint32 constant VIP = 1;
    uint32 constant COMMON = 2;
    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;
    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;
    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     *     0  svip
     *     1  vip
     *     2  common(free)
     */
    function roleOfTokenId(uint256 tokenId)
        public
        view
        virtual
        returns (uint256)
    {
        require(_exists(tokenId), "nonexistent token");
        return _tokenType[tokenId];
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    function svipBalanceOf(address owner)
        public
        view
        virtual
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _svipHolders[owner].length();
    }

    function vipBalanceOf(address owner) public view virtual returns (uint256) {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _vipHolders[owner].length();
    }

    function commonBalanceOf(address owner)
        public
        view
        virtual
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _commonHolders[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        return
            _tokenOwners.get(
                tokenId,
                "ERC721: owner query for nonexistent token"
            );
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();
        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, return the token URI.
        if (bytes(_tokenURI).length > 0) {
            return string(_tokenURI);
        }

        // If there is a baseURI but no tokenURI, concatenate the tokenId to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
     * @dev Returns the base URI set via {_setBaseURI}. This will be
     * automatically added as a prefix in {tokenURI} to each token's URI, or
     * to the token ID if no specific URI is set for that token ID.
     */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _holderTokens[owner].at(index);
    }

    function svipTokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        returns (uint256)
    {
        return _svipHolders[owner].at(index);
    }

    function vipTokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        returns (uint256)
    {
        return _vipHolders[owner].at(index);
    }

    function commonTokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        returns (uint256)
    {
        return _commonHolders[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 ||
                ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 ||
            ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @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 {
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
        _mint(to, tokenId, _data);
    }

    function isEqual(string memory a, string memory b)
        public
        pure
        returns (bool)
    {
        bytes memory aa = bytes(a);
        bytes memory bb = bytes(b);
        if (aa.length != bb.length) return false;
        for (uint256 i = 0; i < aa.length; i++) {
            if (aa[i] != bb[i]) return false;
        }
        return true;
    }

    function _mint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");
        _beforeTokenTransfer(address(0), to, tokenId);
        _holderTokens[to].add(tokenId);
        _tokenOwners.set(tokenId, to);
        if (isEqual(string(_data), "svip")) {
            _tokenType[tokenId] = _svipType;
            _svipHolders[to].add(tokenId);
        } else if (isEqual(string(_data), "vip")) {
            _tokenType[tokenId] = _vipType;
            _vipHolders[to].add(tokenId);
        } else if (isEqual(string(_data), "common")) {
            _commonHolders[to].add(tokenId);
            _tokenType[tokenId] = _commonType;
        }
        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); // internal owner
        _beforeTokenTransfer(owner, address(0), tokenId);
        // Clear approvals
        _approve(address(0), tokenId);
        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
        _holderTokens[owner].remove(tokenId);
        _tokenOwners.remove(tokenId);
        //todo
        if (_tokenType[tokenId] == _svipType) {
            _svipHolders[owner].remove(tokenId);
        } else if (_tokenType[tokenId] == _vipType) {
            _vipHolders[owner].remove(tokenId);
        } else if (_tokenType[tokenId] == _commonType) {
            _commonHolders[owner].remove(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"
        ); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");
        _beforeTokenTransfer(from, to, tokenId);
        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);
        if (_tokenType[tokenId] == _svipType) {
            _svipHolders[from].remove(tokenId);
            _svipHolders[to].add(tokenId);
        } else if (_tokenType[tokenId] == _vipType) {
            _vipHolders[from].remove(tokenId);
            _vipHolders[to].add(tokenId);
        } else if (_tokenType[tokenId] == _commonType) {
            _commonHolders[from].remove(tokenId);
            _commonHolders[to].add(tokenId);
        }
        _tokenOwners.set(tokenId, to);
        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            // is normal
            return true;
        }
        bytes memory returndata = to.functionCall(
            abi.encodeWithSelector(
                IERC721Receiver(to).onERC721Received.selector,
                _msgSender(),
                from,
                tokenId,
                _data
            ),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

    /**
     * @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 {}
}
// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity >=0.6.0 <0.8.0;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        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;
    }
}
// File: contracts/wdms.sol
pragma solidity ^0.7.0;

/**
 * @title WDMS contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract WDMS is ERC721, Ownable {
    using SafeMath for uint256;
    using EnumerableSet for EnumerableSet.UintSet;
    uint256 public constant wdmsPrice = 0; //free
    uint256 public constant singleMaxMint = 20;
    uint256 public MAX_WDMS;
    bool public saleIsActive = false;
    uint256 private SVIP_INIT_TOKENID = 0;
    uint256 private VIP_INIT_TOKENID = 1000;
    uint256 private COMMON_INIT_TOKENID = 2000;

    constructor(
        string memory name,
        string memory symbol,
        uint256 maxNftSupply
    ) ERC721(name, symbol) {
        MAX_WDMS = maxNftSupply;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        msg.sender.transfer(balance);
    }

    function setTokenURI(uint256 tokenId, string memory tokenURI)
        public
        onlyOwner
    {
        _setTokenURI(tokenId, tokenURI);
    }

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

    function setMAX_WDMS(uint256 amount) public onlyOwner {
        MAX_WDMS = amount;
    }

    /*
     * Pause sale if active, make active if paused
     */
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    /**
     * Mints tickets
     */
    function mintSvip(uint256 numberOfTokens) public onlyOwner {
        require(saleIsActive, "Sale must be active to mint wdms");
        require(
            numberOfTokens <= singleMaxMint,
            "Can only mint 20 tokens at a time"
        );
        require(
            totalSupply().add(numberOfTokens) <= MAX_WDMS,
            "Purchase would exceed max supply of wdms"
        );
        for (uint256 i = 0; i < numberOfTokens; i++) {
            if (totalSupply() < MAX_WDMS) {
                _safeMint(msg.sender, SVIP_INIT_TOKENID, "svip");
            }

            SVIP_INIT_TOKENID++;
        }
    }

    function mintVip(uint256 numberOfTokens) public onlyOwner {
        require(saleIsActive, "Sale must be active to mint wdms");
        require(
            numberOfTokens <= singleMaxMint,
            "Can only mint 20 tokens at a time"
        );
        require(
            totalSupply().add(numberOfTokens) <= MAX_WDMS,
            "Purchase would exceed max supply of wdms"
        );
        for (uint256 i = 0; i < numberOfTokens; i++) {
            if (totalSupply() < MAX_WDMS) {
                _safeMint(msg.sender, VIP_INIT_TOKENID, "vip");
            }
            VIP_INIT_TOKENID++;
        }
    }

    function mintCommon(uint256 numberOfTokens) public onlyOwner {
        require(saleIsActive, "Sale must be active to mint wdms");
        require(
            numberOfTokens <= singleMaxMint,
            "Can only mint 20 tokens at a time"
        );
        require(
            totalSupply().add(numberOfTokens) <= MAX_WDMS,
            "Purchase would exceed max supply of wdms"
        );
        for (uint256 i = 0; i < numberOfTokens; i++) {
            if (totalSupply() < MAX_WDMS) {
                _safeMint(msg.sender, COMMON_INIT_TOKENID, "common");
            }
            COMMON_INIT_TOKENID++;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxNftSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_WDMS","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"commonBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"commonTokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"a","type":"string"},{"internalType":"string","name":"b","type":"string"}],"name":"isEqual","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCommon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintSvip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintVip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"roleOfTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMAX_WDMS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"singleMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"svipBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"svipTokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"vipBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"vipTokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wdmsPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006006819055600160075560026008556013805460ff191690556014556103e86015556107d06016553480156200003b57600080fd5b506040516200343838038062003438833981810160405260608110156200006157600080fd5b81019080805160405193929190846401000000008211156200008257600080fd5b9083019060208201858111156200009857600080fd5b8251640100000000811182820188101715620000b357600080fd5b82525081516020918201929091019080838360005b83811015620000e2578181015183820152602001620000c8565b50505050905090810190601f168015620001105780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200013457600080fd5b9083019060208201858111156200014a57600080fd5b82516401000000008111828201881017156200016557600080fd5b82525081516020918201929091019080838360005b83811015620001945781810151838201526020016200017a565b50505050905090810190601f168015620001c25780820380516001836020036101000a031916815260200191505b5060405260200151915083905082620001e26301ffc9a760e01b620002ad565b8151620001f790600d90602085019062000336565b5080516200020d90600e90602084019062000336565b50620002206380ac58cd60e01b620002ad565b62000232635b5e139f60e01b620002ad565b6200024463780e9d6360e01b620002ad565b50600090506200025362000332565b601180546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060125550620003d29050565b6001600160e01b031980821614156200030d576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200037957805160ff1916838001178555620003a9565b82800160010185558215620003a9579182015b82811115620003a95782518255916020019190600101906200038c565b50620003b7929150620003bb565b5090565b5b80821115620003b75760008155600101620003bc565b61305680620003e26000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80634f6ccce71161013b578063abb403fb116100b8578063df30c66c1161007c578063df30c66c146109af578063e985e9c5146109cc578063eb8d2444146109fa578063efcdf69714610a02578063f2fde38b14610a0a57610248565b8063abb403fb1461085f578063b6e148e114610885578063b88d4fde146108b1578063c87b56dd14610975578063d32642221461099257610248565b806370a08231116100ff57806370a08231146107f3578063715018a6146108195780638da5cb5b1461082157806395d89b4114610829578063a22cb4651461083157610248565b80634f6ccce7146107055780635251eb2f1461072257806355f804b31461072a5780636352211e146107ce5780636c0360eb146107eb57610248565b80632952f6b1116101c95780634079108e1161018d5780634079108e1461053d57806342842e0e14610563578063465c4105146105995780634d289572146106c25780634eda4f89146106e857610248565b80632952f6b1146104cd5780632f745c59146104d557806334918dfd146105015780633c34a9a2146105095780633ccfd60b1461053557610248565b8063162094c411610210578063162094c4146103aa57806318160ddd146104555780631c77c0fd1461045d57806323b872dd1461047a57806327c4228a146104b057610248565b806301ffc9a71461024d57806306fdde0314610288578063081812fc14610305578063095ea7b31461033e5780630df2078f1461036c575b600080fd5b6102746004803603602081101561026357600080fd5b50356001600160e01b031916610a30565b604080519115158252519081900360200190f35b610290610a53565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ca5781810151838201526020016102b2565b50505050905090810190601f1680156102f75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103226004803603602081101561031b57600080fd5b5035610ae9565b604080516001600160a01b039092168252519081900360200190f35b61036a6004803603604081101561035457600080fd5b506001600160a01b038135169060200135610b4b565b005b6103986004803603604081101561038257600080fd5b506001600160a01b038135169060200135610c26565b60408051918252519081900360200190f35b61036a600480360360408110156103c057600080fd5b81359190810190604081016020820135600160201b8111156103e157600080fd5b8201836020820111156103f357600080fd5b803590602001918460018302840111600160201b8311171561041457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610c51945050505050565b610398610cc1565b61036a6004803603602081101561047357600080fd5b5035610cd2565b61036a6004803603606081101561049057600080fd5b506001600160a01b03813581169160208101359091169060400135610e74565b61036a600480360360208110156104c657600080fd5b5035610ecb565b610398611069565b610398600480360360408110156104eb57600080fd5b506001600160a01b03813516906020013561106f565b61036a611091565b6103986004803603604081101561051f57600080fd5b506001600160a01b038135169060200135611107565b61036a611129565b6103986004803603602081101561055357600080fd5b50356001600160a01b03166111ba565b61036a6004803603606081101561057957600080fd5b506001600160a01b03813581169160208101359091169060400135611222565b610274600480360360408110156105af57600080fd5b810190602081018135600160201b8111156105c957600080fd5b8201836020820111156105db57600080fd5b803590602001918460018302840111600160201b831117156105fc57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561064e57600080fd5b82018360208201111561066057600080fd5b803590602001918460018302840111600160201b8311171561068157600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061123d945050505050565b610398600480360360208110156106d857600080fd5b50356001600160a01b03166112c5565b61036a600480360360208110156106fe57600080fd5b503561132d565b6103986004803603602081101561071b57600080fd5b50356114c8565b6103986114de565b61036a6004803603602081101561074057600080fd5b810190602081018135600160201b81111561075a57600080fd5b82018360208201111561076c57600080fd5b803590602001918460018302840111600160201b8311171561078d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506114e3945050505050565b610322600480360360208110156107e457600080fd5b5035611551565b610290611579565b6103986004803603602081101561080957600080fd5b50356001600160a01b03166115da565b61036a611642565b6103226116ee565b6102906116fd565b61036a6004803603604081101561084757600080fd5b506001600160a01b038135169060200135151561175e565b6103986004803603602081101561087557600080fd5b50356001600160a01b0316611863565b6103986004803603604081101561089b57600080fd5b506001600160a01b0381351690602001356118cb565b61036a600480360360808110156108c757600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561090157600080fd5b82018360208201111561091357600080fd5b803590602001918460018302840111600160201b8311171561093457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506118ed945050505050565b6102906004803603602081101561098b57600080fd5b503561194b565b610398600480360360208110156109a857600080fd5b5035611b1c565b61036a600480360360208110156109c557600080fd5b5035611b7f565b610274600480360360408110156109e257600080fd5b506001600160a01b0381358116916020013516611be6565b610274611c14565b610398611c1d565b61036a60048036036020811015610a2057600080fd5b50356001600160a01b0316611c22565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610adf5780601f10610ab457610100808354040283529160200191610adf565b820191906000526020600020905b815481529060010190602001808311610ac257829003601f168201915b5050505050905090565b6000610af482611d25565b610b2f5760405162461bcd60e51b815260040180806020018281038252602c815260200180612ed7602c913960400191505060405180910390fd5b506000908152600b60205260409020546001600160a01b031690565b6000610b5682611551565b9050806001600160a01b0316836001600160a01b03161415610ba95760405162461bcd60e51b8152600401808060200182810382526021815260200180612fa76021913960400191505060405180910390fd5b806001600160a01b0316610bbb611d32565b6001600160a01b03161480610bdc5750610bdc81610bd7611d32565b611be6565b610c175760405162461bcd60e51b8152600401808060200182810382526038815260200180612e2a6038913960400191505060405180910390fd5b610c218383611d36565b505050565b6001600160a01b0382166000908152600360205260408120610c489083611da4565b90505b92915050565b610c59611d32565b6001600160a01b0316610c6a6116ee565b6001600160a01b031614610cb3576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b610cbd8282611db0565b5050565b6000610ccd6009611e13565b905090565b610cda611d32565b6001600160a01b0316610ceb6116ee565b6001600160a01b031614610d34576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b60135460ff16610d8b576040805162461bcd60e51b815260206004820181905260248201527f53616c65206d7573742062652061637469766520746f206d696e742077646d73604482015290519081900360640190fd5b6014811115610dcb5760405162461bcd60e51b8152600401808060200182810382526021815260200180612e096021913960400191505060405180910390fd5b601254610de082610dda610cc1565b90611e1e565b1115610e1d5760405162461bcd60e51b8152600401808060200182810382526028815260200180612fc86028913960400191505060405180910390fd5b60005b81811015610cbd57601254610e33610cc1565b1015610e6257610e6233601454604051806040016040528060048152602001630737669760e41b815250611e78565b60148054600190810190915501610e20565b610e85610e7f611d32565b82611ecb565b610ec05760405162461bcd60e51b8152600401808060200182810382526031815260200180612ff06031913960400191505060405180910390fd5b610c21838383611f6f565b610ed3611d32565b6001600160a01b0316610ee46116ee565b6001600160a01b031614610f2d576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b60135460ff16610f84576040805162461bcd60e51b815260206004820181905260248201527f53616c65206d7573742062652061637469766520746f206d696e742077646d73604482015290519081900360640190fd5b6014811115610fc45760405162461bcd60e51b8152600401808060200182810382526021815260200180612e096021913960400191505060405180910390fd5b601254610fd382610dda610cc1565b11156110105760405162461bcd60e51b8152600401808060200182810382526028815260200180612fc86028913960400191505060405180910390fd5b60005b81811015610cbd57601254611026610cc1565b101561105757611057336016546040518060400160405280600681526020016531b7b6b6b7b760d11b815250611e78565b60168054600190810190915501611013565b60125481565b6001600160a01b0382166000908152600160205260408120610c489083611da4565b611099611d32565b6001600160a01b03166110aa6116ee565b6001600160a01b0316146110f3576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b6013805460ff19811660ff90911615179055565b6001600160a01b0382166000908152600460205260408120610c489083611da4565b611131611d32565b6001600160a01b03166111426116ee565b6001600160a01b03161461118b576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610cbd573d6000803e3d6000fd5b60006001600160a01b0382166112015760405162461bcd60e51b815260040180806020018281038252602a815260200180612e62602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600460205260409020610c4b90611e13565b610c21838383604051806020016040528060008152506118ed565b80518251600091849184911461125857600092505050610c4b565b60005b82518110156112b95781818151811061127057fe5b602001015160f81c60f81b6001600160f81b03191683828151811061129157fe5b01602001516001600160f81b031916146112b15760009350505050610c4b565b60010161125b565b50600195945050505050565b60006001600160a01b03821661130c5760405162461bcd60e51b815260040180806020018281038252602a815260200180612e62602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600260205260409020610c4b90611e13565b611335611d32565b6001600160a01b03166113466116ee565b6001600160a01b03161461138f576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b60135460ff166113e6576040805162461bcd60e51b815260206004820181905260248201527f53616c65206d7573742062652061637469766520746f206d696e742077646d73604482015290519081900360640190fd5b60148111156114265760405162461bcd60e51b8152600401808060200182810382526021815260200180612e096021913960400191505060405180910390fd5b60125461143582610dda610cc1565b11156114725760405162461bcd60e51b8152600401808060200182810382526028815260200180612fc86028913960400191505060405180910390fd5b60005b81811015610cbd57601254611488610cc1565b10156114b6576114b6336015546040518060400160405280600381526020016207669760ec1b815250611e78565b60158054600190810190915501611475565b6000806114d66009846121da565b509392505050565b600081565b6114eb611d32565b6001600160a01b03166114fc6116ee565b6001600160a01b031614611545576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b61154e816121f6565b50565b6000610c4b82604051806060016040528060298152602001612e8c6029913960099190612209565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610adf5780601f10610ab457610100808354040283529160200191610adf565b60006001600160a01b0382166116215760405162461bcd60e51b815260040180806020018281038252602a815260200180612e62602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020610c4b90611e13565b61164a611d32565b6001600160a01b031661165b6116ee565b6001600160a01b0316146116a4576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b6011546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3601180546001600160a01b0319169055565b6011546001600160a01b031690565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610adf5780601f10610ab457610100808354040283529160200191610adf565b611766611d32565b6001600160a01b0316826001600160a01b031614156117cc576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600c60006117d9611d32565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561181d611d32565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60006001600160a01b0382166118aa5760405162461bcd60e51b815260040180806020018281038252602a815260200180612e62602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600360205260409020610c4b90611e13565b6001600160a01b0382166000908152600260205260408120610c489083611da4565b6118fe6118f8611d32565b83611ecb565b6119395760405162461bcd60e51b8152600401808060200182810382526031815260200180612ff06031913960400191505060405180910390fd5b61194584848484612220565b50505050565b606061195682611d25565b6119915760405162461bcd60e51b815260040180806020018281038252602f815260200180612f78602f913960400191505060405180910390fd5b6000828152600f602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611a265780601f106119fb57610100808354040283529160200191611a26565b820191906000526020600020905b815481529060010190602001808311611a0957829003601f168201915b505050505090506060611a37611579565b9050805160001415611a4b57509050610a4e565b815115611a5a57509050610a4e565b80611a6485612272565b6040516020018083805190602001908083835b60208310611a965780518252601f199092019160209182019101611a77565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611ade5780518252601f199092019160209182019101611abf565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b6000611b2782611d25565b611b6c576040805162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b604482015290519081900360640190fd5b5060009081526005602052604090205490565b611b87611d32565b6001600160a01b0316611b986116ee565b6001600160a01b031614611be1576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b601255565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205460ff1690565b60135460ff1681565b601481565b611c2a611d32565b6001600160a01b0316611c3b6116ee565b6001600160a01b031614611c84576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b6001600160a01b038116611cc95760405162461bcd60e51b8152600401808060200182810382526026815260200180612d6d6026913960400191505060405180910390fd5b6011546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c4b60098361234d565b3390565b6000818152600b6020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d6b82611551565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610c488383612359565b611db982611d25565b611df45760405162461bcd60e51b815260040180806020018281038252602c815260200180612f03602c913960400191505060405180910390fd5b6000828152600f602090815260409091208251610c2192840190612c85565b6000610c4b826123bd565b600082820183811015610c48576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b611e8560008484846123c1565b611ec05760405162461bcd60e51b8152600401808060200182810382526032815260200180612d3b6032913960400191505060405180910390fd5b610c21838383612529565b6000611ed682611d25565b611f115760405162461bcd60e51b815260040180806020018281038252602c815260200180612ddd602c913960400191505060405180910390fd5b6000611f1c83611551565b9050806001600160a01b0316846001600160a01b03161480611f575750836001600160a01b0316611f4c84610ae9565b6001600160a01b0316145b80611f675750611f678185611be6565b949350505050565b826001600160a01b0316611f8282611551565b6001600160a01b031614611fc75760405162461bcd60e51b8152600401808060200182810382526029815260200180612f4f6029913960400191505060405180910390fd5b6001600160a01b03821661200c5760405162461bcd60e51b8152600401808060200182810382526024815260200180612d936024913960400191505060405180910390fd5b612017838383610c21565b612022600082611d36565b6001600160a01b0383166000908152600160205260409020612044908261277c565b506001600160a01b03821660009081526001602052604090206120679082612788565b5060065460008281526005602052604090205414156120cb576001600160a01b03831660009081526003602052604090206120a2908261277c565b506001600160a01b03821660009081526003602052604090206120c59082612788565b50612187565b6007546000828152600560205260409020541415612128576001600160a01b0383166000908152600260205260409020612105908261277c565b506001600160a01b03821660009081526002602052604090206120c59082612788565b6008546000828152600560205260409020541415612187576001600160a01b0383166000908152600460205260409020612162908261277c565b506001600160a01b03821660009081526004602052604090206121859082612788565b505b61219360098284612794565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008080806121e986866127aa565b9097909650945050505050565b8051610cbd906010906020840190612c85565b6000612216848484612825565b90505b9392505050565b61222b848484611f6f565b612237848484846123c1565b6119455760405162461bcd60e51b8152600401808060200182810382526032815260200180612d3b6032913960400191505060405180910390fd5b60608161229757506040805180820190915260018152600360fc1b6020820152610a4e565b8160005b81156122af57600101600a8204915061229b565b60608167ffffffffffffffff811180156122c857600080fd5b506040519080825280601f01601f1916602001820160405280156122f3576020820181803683370190505b50859350905060001982015b831561234457600a840660300160f81b8282806001900393508151811061232257fe5b60200101906001600160f81b031916908160001a905350600a840493506122ff565b50949350505050565b6000610c4883836128ef565b8154600090821061239b5760405162461bcd60e51b8152600401808060200182810382526022815260200180612d196022913960400191505060405180910390fd5b8260000182815481106123aa57fe5b9060005260206000200154905092915050565b5490565b60006123d5846001600160a01b0316612907565b6123e157506001611f67565b60606124ef630a85bd0160e11b6123f6611d32565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561245d578181015183820152602001612445565b50505050905090810190601f16801561248a5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612d3b603291396001600160a01b038816919061290d565b9050600081806020019051602081101561250857600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b038316612584576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61258d82611d25565b156125df576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6125eb60008484610c21565b6001600160a01b038316600090815260016020526040902061260d9083612788565b5061261a60098385612794565b5061264181604051806040016040528060048152602001630737669760e41b81525061123d565b1561267f576006546000838152600560209081526040808320939093556001600160a01b038616825260039052206126799083612788565b5061273f565b6126a4816040518060400160405280600381526020016207669760ec1b81525061123d565b156126dc576007546000838152600560209081526040808320939093556001600160a01b038616825260029052206126799083612788565b612704816040518060400160405280600681526020016531b7b6b6b7b760d11b81525061123d565b1561273f576001600160a01b038316600090815260046020526040902061272b9083612788565b506008546000838152600560205260409020555b60405182906001600160a01b038516906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4505050565b6000610c48838361291c565b6000610c4883836129e2565b600061221684846001600160a01b038516612a2c565b8154600090819083106127ee5760405162461bcd60e51b8152600401808060200182810382526022815260200180612eb56022913960400191505060405180910390fd5b60008460000184815481106127ff57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816128c05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561288557818101518382015260200161286d565b50505050905090810190601f1680156128b25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106128d357fe5b9060005260206000209060020201600101549150509392505050565b60009081526001919091016020526040902054151590565b3b151590565b60606122168484600085612ac3565b600081815260018301602052604081205480156129d8578354600019808301919081019060009087908390811061294f57fe5b906000526020600020015490508087600001848154811061296c57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061299c57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610c4b565b6000915050610c4b565b60006129ee83836128ef565b612a2457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c4b565b506000610c4b565b600082815260018401602052604081205480612a91575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055612219565b82856000016001830381548110612aa457fe5b9060005260206000209060020201600101819055506000915050612219565b606082471015612b045760405162461bcd60e51b8152600401808060200182810382526026815260200180612db76026913960400191505060405180910390fd5b612b0d85612907565b612b5e576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612b9d5780518252601f199092019160209182019101612b7e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612bff576040519150601f19603f3d011682016040523d82523d6000602084013e612c04565b606091505b5091509150612c14828286612c1f565b979650505050505050565b60608315612c2e575081612219565b825115612c3e5782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561288557818101518382015260200161286d565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612cc657805160ff1916838001178555612cf3565b82800160010185558215612cf3579182015b82811115612cf3578251825591602001919060010190612cd8565b50612cff929150612d03565b5090565b5b80821115612cff5760008155600101612d0456fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e6572507572636861736520776f756c6420657863656564206d617820737570706c79206f662077646d734552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220a7ed6d116e321df24674c804b56dbbb5c11c3fb9bd94861dca3bc3ebb3da6a9664736f6c63430007020033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000000877646d7332303232000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000477646d7300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c80634f6ccce71161013b578063abb403fb116100b8578063df30c66c1161007c578063df30c66c146109af578063e985e9c5146109cc578063eb8d2444146109fa578063efcdf69714610a02578063f2fde38b14610a0a57610248565b8063abb403fb1461085f578063b6e148e114610885578063b88d4fde146108b1578063c87b56dd14610975578063d32642221461099257610248565b806370a08231116100ff57806370a08231146107f3578063715018a6146108195780638da5cb5b1461082157806395d89b4114610829578063a22cb4651461083157610248565b80634f6ccce7146107055780635251eb2f1461072257806355f804b31461072a5780636352211e146107ce5780636c0360eb146107eb57610248565b80632952f6b1116101c95780634079108e1161018d5780634079108e1461053d57806342842e0e14610563578063465c4105146105995780634d289572146106c25780634eda4f89146106e857610248565b80632952f6b1146104cd5780632f745c59146104d557806334918dfd146105015780633c34a9a2146105095780633ccfd60b1461053557610248565b8063162094c411610210578063162094c4146103aa57806318160ddd146104555780631c77c0fd1461045d57806323b872dd1461047a57806327c4228a146104b057610248565b806301ffc9a71461024d57806306fdde0314610288578063081812fc14610305578063095ea7b31461033e5780630df2078f1461036c575b600080fd5b6102746004803603602081101561026357600080fd5b50356001600160e01b031916610a30565b604080519115158252519081900360200190f35b610290610a53565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ca5781810151838201526020016102b2565b50505050905090810190601f1680156102f75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103226004803603602081101561031b57600080fd5b5035610ae9565b604080516001600160a01b039092168252519081900360200190f35b61036a6004803603604081101561035457600080fd5b506001600160a01b038135169060200135610b4b565b005b6103986004803603604081101561038257600080fd5b506001600160a01b038135169060200135610c26565b60408051918252519081900360200190f35b61036a600480360360408110156103c057600080fd5b81359190810190604081016020820135600160201b8111156103e157600080fd5b8201836020820111156103f357600080fd5b803590602001918460018302840111600160201b8311171561041457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610c51945050505050565b610398610cc1565b61036a6004803603602081101561047357600080fd5b5035610cd2565b61036a6004803603606081101561049057600080fd5b506001600160a01b03813581169160208101359091169060400135610e74565b61036a600480360360208110156104c657600080fd5b5035610ecb565b610398611069565b610398600480360360408110156104eb57600080fd5b506001600160a01b03813516906020013561106f565b61036a611091565b6103986004803603604081101561051f57600080fd5b506001600160a01b038135169060200135611107565b61036a611129565b6103986004803603602081101561055357600080fd5b50356001600160a01b03166111ba565b61036a6004803603606081101561057957600080fd5b506001600160a01b03813581169160208101359091169060400135611222565b610274600480360360408110156105af57600080fd5b810190602081018135600160201b8111156105c957600080fd5b8201836020820111156105db57600080fd5b803590602001918460018302840111600160201b831117156105fc57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561064e57600080fd5b82018360208201111561066057600080fd5b803590602001918460018302840111600160201b8311171561068157600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061123d945050505050565b610398600480360360208110156106d857600080fd5b50356001600160a01b03166112c5565b61036a600480360360208110156106fe57600080fd5b503561132d565b6103986004803603602081101561071b57600080fd5b50356114c8565b6103986114de565b61036a6004803603602081101561074057600080fd5b810190602081018135600160201b81111561075a57600080fd5b82018360208201111561076c57600080fd5b803590602001918460018302840111600160201b8311171561078d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506114e3945050505050565b610322600480360360208110156107e457600080fd5b5035611551565b610290611579565b6103986004803603602081101561080957600080fd5b50356001600160a01b03166115da565b61036a611642565b6103226116ee565b6102906116fd565b61036a6004803603604081101561084757600080fd5b506001600160a01b038135169060200135151561175e565b6103986004803603602081101561087557600080fd5b50356001600160a01b0316611863565b6103986004803603604081101561089b57600080fd5b506001600160a01b0381351690602001356118cb565b61036a600480360360808110156108c757600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561090157600080fd5b82018360208201111561091357600080fd5b803590602001918460018302840111600160201b8311171561093457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506118ed945050505050565b6102906004803603602081101561098b57600080fd5b503561194b565b610398600480360360208110156109a857600080fd5b5035611b1c565b61036a600480360360208110156109c557600080fd5b5035611b7f565b610274600480360360408110156109e257600080fd5b506001600160a01b0381358116916020013516611be6565b610274611c14565b610398611c1d565b61036a60048036036020811015610a2057600080fd5b50356001600160a01b0316611c22565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610adf5780601f10610ab457610100808354040283529160200191610adf565b820191906000526020600020905b815481529060010190602001808311610ac257829003601f168201915b5050505050905090565b6000610af482611d25565b610b2f5760405162461bcd60e51b815260040180806020018281038252602c815260200180612ed7602c913960400191505060405180910390fd5b506000908152600b60205260409020546001600160a01b031690565b6000610b5682611551565b9050806001600160a01b0316836001600160a01b03161415610ba95760405162461bcd60e51b8152600401808060200182810382526021815260200180612fa76021913960400191505060405180910390fd5b806001600160a01b0316610bbb611d32565b6001600160a01b03161480610bdc5750610bdc81610bd7611d32565b611be6565b610c175760405162461bcd60e51b8152600401808060200182810382526038815260200180612e2a6038913960400191505060405180910390fd5b610c218383611d36565b505050565b6001600160a01b0382166000908152600360205260408120610c489083611da4565b90505b92915050565b610c59611d32565b6001600160a01b0316610c6a6116ee565b6001600160a01b031614610cb3576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b610cbd8282611db0565b5050565b6000610ccd6009611e13565b905090565b610cda611d32565b6001600160a01b0316610ceb6116ee565b6001600160a01b031614610d34576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b60135460ff16610d8b576040805162461bcd60e51b815260206004820181905260248201527f53616c65206d7573742062652061637469766520746f206d696e742077646d73604482015290519081900360640190fd5b6014811115610dcb5760405162461bcd60e51b8152600401808060200182810382526021815260200180612e096021913960400191505060405180910390fd5b601254610de082610dda610cc1565b90611e1e565b1115610e1d5760405162461bcd60e51b8152600401808060200182810382526028815260200180612fc86028913960400191505060405180910390fd5b60005b81811015610cbd57601254610e33610cc1565b1015610e6257610e6233601454604051806040016040528060048152602001630737669760e41b815250611e78565b60148054600190810190915501610e20565b610e85610e7f611d32565b82611ecb565b610ec05760405162461bcd60e51b8152600401808060200182810382526031815260200180612ff06031913960400191505060405180910390fd5b610c21838383611f6f565b610ed3611d32565b6001600160a01b0316610ee46116ee565b6001600160a01b031614610f2d576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b60135460ff16610f84576040805162461bcd60e51b815260206004820181905260248201527f53616c65206d7573742062652061637469766520746f206d696e742077646d73604482015290519081900360640190fd5b6014811115610fc45760405162461bcd60e51b8152600401808060200182810382526021815260200180612e096021913960400191505060405180910390fd5b601254610fd382610dda610cc1565b11156110105760405162461bcd60e51b8152600401808060200182810382526028815260200180612fc86028913960400191505060405180910390fd5b60005b81811015610cbd57601254611026610cc1565b101561105757611057336016546040518060400160405280600681526020016531b7b6b6b7b760d11b815250611e78565b60168054600190810190915501611013565b60125481565b6001600160a01b0382166000908152600160205260408120610c489083611da4565b611099611d32565b6001600160a01b03166110aa6116ee565b6001600160a01b0316146110f3576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b6013805460ff19811660ff90911615179055565b6001600160a01b0382166000908152600460205260408120610c489083611da4565b611131611d32565b6001600160a01b03166111426116ee565b6001600160a01b03161461118b576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610cbd573d6000803e3d6000fd5b60006001600160a01b0382166112015760405162461bcd60e51b815260040180806020018281038252602a815260200180612e62602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600460205260409020610c4b90611e13565b610c21838383604051806020016040528060008152506118ed565b80518251600091849184911461125857600092505050610c4b565b60005b82518110156112b95781818151811061127057fe5b602001015160f81c60f81b6001600160f81b03191683828151811061129157fe5b01602001516001600160f81b031916146112b15760009350505050610c4b565b60010161125b565b50600195945050505050565b60006001600160a01b03821661130c5760405162461bcd60e51b815260040180806020018281038252602a815260200180612e62602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600260205260409020610c4b90611e13565b611335611d32565b6001600160a01b03166113466116ee565b6001600160a01b03161461138f576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b60135460ff166113e6576040805162461bcd60e51b815260206004820181905260248201527f53616c65206d7573742062652061637469766520746f206d696e742077646d73604482015290519081900360640190fd5b60148111156114265760405162461bcd60e51b8152600401808060200182810382526021815260200180612e096021913960400191505060405180910390fd5b60125461143582610dda610cc1565b11156114725760405162461bcd60e51b8152600401808060200182810382526028815260200180612fc86028913960400191505060405180910390fd5b60005b81811015610cbd57601254611488610cc1565b10156114b6576114b6336015546040518060400160405280600381526020016207669760ec1b815250611e78565b60158054600190810190915501611475565b6000806114d66009846121da565b509392505050565b600081565b6114eb611d32565b6001600160a01b03166114fc6116ee565b6001600160a01b031614611545576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b61154e816121f6565b50565b6000610c4b82604051806060016040528060298152602001612e8c6029913960099190612209565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610adf5780601f10610ab457610100808354040283529160200191610adf565b60006001600160a01b0382166116215760405162461bcd60e51b815260040180806020018281038252602a815260200180612e62602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020610c4b90611e13565b61164a611d32565b6001600160a01b031661165b6116ee565b6001600160a01b0316146116a4576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b6011546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3601180546001600160a01b0319169055565b6011546001600160a01b031690565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610adf5780601f10610ab457610100808354040283529160200191610adf565b611766611d32565b6001600160a01b0316826001600160a01b031614156117cc576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600c60006117d9611d32565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561181d611d32565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b60006001600160a01b0382166118aa5760405162461bcd60e51b815260040180806020018281038252602a815260200180612e62602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600360205260409020610c4b90611e13565b6001600160a01b0382166000908152600260205260408120610c489083611da4565b6118fe6118f8611d32565b83611ecb565b6119395760405162461bcd60e51b8152600401808060200182810382526031815260200180612ff06031913960400191505060405180910390fd5b61194584848484612220565b50505050565b606061195682611d25565b6119915760405162461bcd60e51b815260040180806020018281038252602f815260200180612f78602f913960400191505060405180910390fd5b6000828152600f602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611a265780601f106119fb57610100808354040283529160200191611a26565b820191906000526020600020905b815481529060010190602001808311611a0957829003601f168201915b505050505090506060611a37611579565b9050805160001415611a4b57509050610a4e565b815115611a5a57509050610a4e565b80611a6485612272565b6040516020018083805190602001908083835b60208310611a965780518252601f199092019160209182019101611a77565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611ade5780518252601f199092019160209182019101611abf565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b6000611b2782611d25565b611b6c576040805162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b604482015290519081900360640190fd5b5060009081526005602052604090205490565b611b87611d32565b6001600160a01b0316611b986116ee565b6001600160a01b031614611be1576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b601255565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205460ff1690565b60135460ff1681565b601481565b611c2a611d32565b6001600160a01b0316611c3b6116ee565b6001600160a01b031614611c84576040805162461bcd60e51b81526020600482018190526024820152600080516020612f2f833981519152604482015290519081900360640190fd5b6001600160a01b038116611cc95760405162461bcd60e51b8152600401808060200182810382526026815260200180612d6d6026913960400191505060405180910390fd5b6011546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c4b60098361234d565b3390565b6000818152600b6020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d6b82611551565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610c488383612359565b611db982611d25565b611df45760405162461bcd60e51b815260040180806020018281038252602c815260200180612f03602c913960400191505060405180910390fd5b6000828152600f602090815260409091208251610c2192840190612c85565b6000610c4b826123bd565b600082820183811015610c48576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b611e8560008484846123c1565b611ec05760405162461bcd60e51b8152600401808060200182810382526032815260200180612d3b6032913960400191505060405180910390fd5b610c21838383612529565b6000611ed682611d25565b611f115760405162461bcd60e51b815260040180806020018281038252602c815260200180612ddd602c913960400191505060405180910390fd5b6000611f1c83611551565b9050806001600160a01b0316846001600160a01b03161480611f575750836001600160a01b0316611f4c84610ae9565b6001600160a01b0316145b80611f675750611f678185611be6565b949350505050565b826001600160a01b0316611f8282611551565b6001600160a01b031614611fc75760405162461bcd60e51b8152600401808060200182810382526029815260200180612f4f6029913960400191505060405180910390fd5b6001600160a01b03821661200c5760405162461bcd60e51b8152600401808060200182810382526024815260200180612d936024913960400191505060405180910390fd5b612017838383610c21565b612022600082611d36565b6001600160a01b0383166000908152600160205260409020612044908261277c565b506001600160a01b03821660009081526001602052604090206120679082612788565b5060065460008281526005602052604090205414156120cb576001600160a01b03831660009081526003602052604090206120a2908261277c565b506001600160a01b03821660009081526003602052604090206120c59082612788565b50612187565b6007546000828152600560205260409020541415612128576001600160a01b0383166000908152600260205260409020612105908261277c565b506001600160a01b03821660009081526002602052604090206120c59082612788565b6008546000828152600560205260409020541415612187576001600160a01b0383166000908152600460205260409020612162908261277c565b506001600160a01b03821660009081526004602052604090206121859082612788565b505b61219360098284612794565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008080806121e986866127aa565b9097909650945050505050565b8051610cbd906010906020840190612c85565b6000612216848484612825565b90505b9392505050565b61222b848484611f6f565b612237848484846123c1565b6119455760405162461bcd60e51b8152600401808060200182810382526032815260200180612d3b6032913960400191505060405180910390fd5b60608161229757506040805180820190915260018152600360fc1b6020820152610a4e565b8160005b81156122af57600101600a8204915061229b565b60608167ffffffffffffffff811180156122c857600080fd5b506040519080825280601f01601f1916602001820160405280156122f3576020820181803683370190505b50859350905060001982015b831561234457600a840660300160f81b8282806001900393508151811061232257fe5b60200101906001600160f81b031916908160001a905350600a840493506122ff565b50949350505050565b6000610c4883836128ef565b8154600090821061239b5760405162461bcd60e51b8152600401808060200182810382526022815260200180612d196022913960400191505060405180910390fd5b8260000182815481106123aa57fe5b9060005260206000200154905092915050565b5490565b60006123d5846001600160a01b0316612907565b6123e157506001611f67565b60606124ef630a85bd0160e11b6123f6611d32565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561245d578181015183820152602001612445565b50505050905090810190601f16801561248a5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612d3b603291396001600160a01b038816919061290d565b9050600081806020019051602081101561250857600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b038316612584576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61258d82611d25565b156125df576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6125eb60008484610c21565b6001600160a01b038316600090815260016020526040902061260d9083612788565b5061261a60098385612794565b5061264181604051806040016040528060048152602001630737669760e41b81525061123d565b1561267f576006546000838152600560209081526040808320939093556001600160a01b038616825260039052206126799083612788565b5061273f565b6126a4816040518060400160405280600381526020016207669760ec1b81525061123d565b156126dc576007546000838152600560209081526040808320939093556001600160a01b038616825260029052206126799083612788565b612704816040518060400160405280600681526020016531b7b6b6b7b760d11b81525061123d565b1561273f576001600160a01b038316600090815260046020526040902061272b9083612788565b506008546000838152600560205260409020555b60405182906001600160a01b038516906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4505050565b6000610c48838361291c565b6000610c4883836129e2565b600061221684846001600160a01b038516612a2c565b8154600090819083106127ee5760405162461bcd60e51b8152600401808060200182810382526022815260200180612eb56022913960400191505060405180910390fd5b60008460000184815481106127ff57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816128c05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561288557818101518382015260200161286d565b50505050905090810190601f1680156128b25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106128d357fe5b9060005260206000209060020201600101549150509392505050565b60009081526001919091016020526040902054151590565b3b151590565b60606122168484600085612ac3565b600081815260018301602052604081205480156129d8578354600019808301919081019060009087908390811061294f57fe5b906000526020600020015490508087600001848154811061296c57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061299c57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610c4b565b6000915050610c4b565b60006129ee83836128ef565b612a2457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c4b565b506000610c4b565b600082815260018401602052604081205480612a91575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055612219565b82856000016001830381548110612aa457fe5b9060005260206000209060020201600101819055506000915050612219565b606082471015612b045760405162461bcd60e51b8152600401808060200182810382526026815260200180612db76026913960400191505060405180910390fd5b612b0d85612907565b612b5e576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612b9d5780518252601f199092019160209182019101612b7e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612bff576040519150601f19603f3d011682016040523d82523d6000602084013e612c04565b606091505b5091509150612c14828286612c1f565b979650505050505050565b60608315612c2e575081612219565b825115612c3e5782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561288557818101518382015260200161286d565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612cc657805160ff1916838001178555612cf3565b82800160010185558215612cf3579182015b82811115612cf3578251825591602001919060010190612cd8565b50612cff929150612d03565b5090565b5b80821115612cff5760008155600101612d0456fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e6572507572636861736520776f756c6420657863656564206d617820737570706c79206f662077646d734552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220a7ed6d116e321df24674c804b56dbbb5c11c3fb9bd94861dca3bc3ebb3da6a9664736f6c63430007020033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000000000000000000000000000000000000000000877646d7332303232000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000477646d7300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): wdms2022
Arg [1] : symbol (string): wdms
Arg [2] : maxNftSupply (uint256): 3000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 77646d7332303232000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 77646d7300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

73689:3256:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10630:200;;;;;;;;;;;;;;;;-1:-1:-1;10630:200:0;-1:-1:-1;;;;;;10630:200:0;;:::i;:::-;;;;;;;;;;;;;;;;;;55744:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59249:306;;;;;;;;;;;;;;;;-1:-1:-1;59249:306:0;;:::i;:::-;;;;-1:-1:-1;;;;;59249:306:0;;;;;;;;;;;;;;58752:431;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;58752:431:0;;;;;;;;:::i;:::-;;57546:180;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;57546:180:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;74447:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;74447:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;74447:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74447:152:0;;-1:-1:-1;74447:152:0;;-1:-1:-1;;;;;74447:152:0:i;58180:211::-;;;:::i;75018:636::-;;;;;;;;;;;;;;;;-1:-1:-1;75018:636:0;;:::i;60304:374::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;60304:374:0;;;;;;;;;;;;;;;;;:::i;76300:642::-;;;;;;;;;;;;;;;;-1:-1:-1;76300:642:0;;:::i;73914:23::-;;;:::i;57326:212::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;57326:212:0;;;;;;;;:::i;74881:89::-;;;:::i;57920:184::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;57920:184:0;;;;;;;;:::i;74305:134::-;;;:::i;55029:297::-;;;;;;;;;;;;;;;;-1:-1:-1;55029:297:0;-1:-1:-1;;;;;55029:297:0;;:::i;60749:185::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;60749:185:0;;;;;;;;;;;;;;;;;:::i;64233:374::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;64233:374:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;64233:374:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64233:374:0;;;;;;;;-1:-1:-1;64233:374:0;;-1:-1:-1;;;;;64233:374:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;64233:374:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64233:374:0;;-1:-1:-1;64233:374:0;;-1:-1:-1;;;;;64233:374:0:i;54771:250::-;;;;;;;;;;;;;;;;-1:-1:-1;54771:250:0;-1:-1:-1;;;;;54771:250:0;;:::i;75662:630::-;;;;;;;;;;;;;;;;-1:-1:-1;75662:630:0;;:::i;58468:222::-;;;;;;;;;;;;;;;;-1:-1:-1;58468:222:0;;:::i;73814:37::-;;;:::i;74607:99::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;74607:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;74607:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74607:99:0;;-1:-1:-1;74607:99:0;;-1:-1:-1;;;;;74607:99:0:i;55388:289::-;;;;;;;;;;;;;;;;-1:-1:-1;55388:289:0;;:::i;57145:97::-;;;:::i;54154:308::-;;;;;;;;;;;;;;;;-1:-1:-1;54154:308:0;-1:-1:-1;;;;;54154:308:0;;:::i;72936:148::-;;;:::i;72285:87::-;;;:::i;55913:104::-;;;:::i;59627:325::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;59627:325:0;;;;;;;;;;:::i;54470:293::-;;;;;;;;;;;;;;;;-1:-1:-1;54470:293:0;-1:-1:-1;;;;;54470:293:0;;:::i;57734:178::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;57734:178:0;;;;;;;;:::i;61005:365::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61005:365:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;61005:365:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;61005:365:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61005:365:0;;-1:-1:-1;61005:365:0;;-1:-1:-1;;;;;61005:365:0:i;56088:814::-;;;;;;;;;;;;;;;;-1:-1:-1;56088:814:0;;:::i;53869:221::-;;;;;;;;;;;;;;;;-1:-1:-1;53869:221:0;;:::i;74714:90::-;;;;;;;;;;;;;;;;-1:-1:-1;74714:90:0;;:::i;60023:214::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;60023:214:0;;;;;;;;;;:::i;73944:32::-;;;:::i;73865:42::-;;;:::i;73239:281::-;;;;;;;;;;;;;;;;-1:-1:-1;73239:281:0;-1:-1:-1;;;;;73239:281:0;;:::i;10630:200::-;-1:-1:-1;;;;;;10789:33:0;;10760:4;10789:33;;;;;;;;;;;;;10630:200;;;;:::o;55744:100::-;55831:5;55824:12;;;;;;;;-1:-1:-1;;55824:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55798:13;;55824:12;;55831:5;;55824:12;;55831:5;55824:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55744:100;:::o;59249:306::-;59370:7;59417:16;59425:7;59417;:16::i;:::-;59395:110;;;;-1:-1:-1;;;59395:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59523:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;59523:24:0;;59249:306::o;58752:431::-;58833:13;58849:23;58864:7;58849:14;:23::i;:::-;58833:39;;58897:5;-1:-1:-1;;;;;58891:11:0;:2;-1:-1:-1;;;;;58891:11:0;;;58883:57;;;;-1:-1:-1;;;58883:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58989:5;-1:-1:-1;;;;;58973:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;58973:21:0;;:86;;;;59015:44;59039:5;59046:12;:10;:12::i;:::-;59015:23;:44::i;:::-;58951:192;;;;-1:-1:-1;;;58951:192:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59154:21;59163:2;59167:7;59154:8;:21::i;:::-;58752:431;;;:::o;57546:180::-;-1:-1:-1;;;;;57689:19:0;;57657:7;57689:19;;;:12;:19;;;;;:29;;57712:5;57689:22;:29::i;:::-;57682:36;;57546:180;;;;;:::o;74447:152::-;72516:12;:10;:12::i;:::-;-1:-1:-1;;;;;72505:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;72505:23:0;;72497:68;;;;;-1:-1:-1;;;72497:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;72497:68:0;;;;;;;;;;;;;;;74560:31:::1;74573:7;74582:8;74560:12;:31::i;:::-;74447:152:::0;;:::o;58180:211::-;58241:7;58362:21;:12;:19;:21::i;:::-;58355:28;;58180:211;:::o;75018:636::-;72516:12;:10;:12::i;:::-;-1:-1:-1;;;;;72505:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;72505:23:0;;72497:68;;;;;-1:-1:-1;;;72497:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;72497:68:0;;;;;;;;;;;;;;;75096:12:::1;::::0;::::1;;75088:57;;;::::0;;-1:-1:-1;;;75088:57:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;73905:2;75178:14;:31;;75156:114;;;;-1:-1:-1::0;;;75156:114:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75340:8;;75303:33;75321:14;75303:13;:11;:13::i;:::-;:17:::0;::::1;:33::i;:::-;:45;;75281:135;;;;-1:-1:-1::0;;;75281:135:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75432:9;75427:220;75451:14;75447:1;:18;75427:220;;;75507:8;;75491:13;:11;:13::i;:::-;:24;75487:113;;;75536:48;75546:10;75558:17;;75536:48;;;;;;;;;;;;;-1:-1:-1::0;;;75536:48:0::1;;::::0;:9:::1;:48::i;:::-;75616:17;:19:::0;;::::1;::::0;;::::1;::::0;;;75467:3:::1;75427:220;;60304:374:::0;60513:41;60532:12;:10;:12::i;:::-;60546:7;60513:18;:41::i;:::-;60491:140;;;;-1:-1:-1;;;60491:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60642:28;60652:4;60658:2;60662:7;60642:9;:28::i;76300:642::-;72516:12;:10;:12::i;:::-;-1:-1:-1;;;;;72505:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;72505:23:0;;72497:68;;;;;-1:-1:-1;;;72497:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;72497:68:0;;;;;;;;;;;;;;;76380:12:::1;::::0;::::1;;76372:57;;;::::0;;-1:-1:-1;;;76372:57:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;73905:2;76462:14;:31;;76440:114;;;;-1:-1:-1::0;;;76440:114:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76624:8;;76587:33;76605:14;76587:13;:11;:13::i;:33::-;:45;;76565:135;;;;-1:-1:-1::0;;;76565:135:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76716:9;76711:224;76735:14;76731:1;:18;76711:224;;;76791:8;;76775:13;:11;:13::i;:::-;:24;76771:117;;;76820:52;76830:10;76842:19;;76820:52;;;;;;;;;;;;;-1:-1:-1::0;;;76820:52:0::1;;::::0;:9:::1;:52::i;:::-;76902:19;:21:::0;;::::1;::::0;;::::1;::::0;;;76751:3:::1;76711:224;;73914:23:::0;;;;:::o;57326:212::-;-1:-1:-1;;;;;57500:20:0;;57468:7;57500:20;;;:13;:20;;;;;:30;;57524:5;57500:23;:30::i;74881:89::-;72516:12;:10;:12::i;:::-;-1:-1:-1;;;;;72505:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;72505:23:0;;72497:68;;;;;-1:-1:-1;;;72497:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;72497:68:0;;;;;;;;;;;;;;;74950:12:::1;::::0;;-1:-1:-1;;74934:28:0;::::1;74950:12;::::0;;::::1;74949:13;74934:28;::::0;;74881:89::o;57920:184::-;-1:-1:-1;;;;;58065:21:0;;58033:7;58065:21;;;:14;:21;;;;;:31;;58090:5;58065:24;:31::i;74305:134::-;72516:12;:10;:12::i;:::-;-1:-1:-1;;;;;72505:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;72505:23:0;;72497:68;;;;;-1:-1:-1;;;72497:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;72497:68:0;;;;;;;;;;;;;;;74403:28:::1;::::0;74371:21:::1;::::0;74403:10:::1;::::0;:28;::::1;;;::::0;74371:21;;74353:15:::1;74403:28:::0;74353:15;74403:28;74371:21;74403:10;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;55029:297:::0;55134:7;-1:-1:-1;;;;;55181:19:0;;55159:111;;;;-1:-1:-1;;;55159:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55288:21:0;;;;;;:14;:21;;;;;:30;;:28;:30::i;60749:185::-;60887:39;60904:4;60910:2;60914:7;60887:39;;;;;;;;;;;;:16;:39::i;64233:374::-;64445:9;;64432;;64332:4;;64378:1;;64415;;64432:22;64428:40;;64463:5;64456:12;;;;;;64428:40;64484:9;64479:99;64503:2;:9;64499:1;:13;64479:99;;;64547:2;64550:1;64547:5;;;;;;;;;;;;;;;;-1:-1:-1;;;;;64538:14:0;;:2;64541:1;64538:5;;;;;;;;;;;;-1:-1:-1;;;;;;64538:5:0;:14;64534:32;;64561:5;64554:12;;;;;;;64534:32;64514:3;;64479:99;;;-1:-1:-1;64595:4:0;;64233:374;-1:-1:-1;;;;;64233:374:0:o;54771:250::-;54837:7;-1:-1:-1;;;;;54879:19:0;;54857:111;;;;-1:-1:-1;;;54857:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54986:18:0;;;;;;:11;:18;;;;;:27;;:25;:27::i;75662:630::-;72516:12;:10;:12::i;:::-;-1:-1:-1;;;;;72505:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;72505:23:0;;72497:68;;;;;-1:-1:-1;;;72497:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;72497:68:0;;;;;;;;;;;;;;;75739:12:::1;::::0;::::1;;75731:57;;;::::0;;-1:-1:-1;;;75731:57:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;73905:2;75821:14;:31;;75799:114;;;;-1:-1:-1::0;;;75799:114:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75983:8;;75946:33;75964:14;75946:13;:11;:13::i;:33::-;:45;;75924:135;;;;-1:-1:-1::0;;;75924:135:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76075:9;76070:215;76094:14;76090:1;:18;76070:215;;;76150:8;;76134:13;:11;:13::i;:::-;:24;76130:111;;;76179:46;76189:10;76201:16;;76179:46;;;;;;;;;;;;;-1:-1:-1::0;;;76179:46:0::1;;::::0;:9:::1;:46::i;:::-;76255:16;:18:::0;;::::1;::::0;;::::1;::::0;;;76110:3:::1;76070:215;;58468:222:::0;58588:7;;58635:22;:12;58651:5;58635:15;:22::i;:::-;-1:-1:-1;58613:44:0;58468:222;-1:-1:-1;;;58468:222:0:o;73814:37::-;73850:1;73814:37;:::o;74607:99::-;72516:12;:10;:12::i;:::-;-1:-1:-1;;;;;72505:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;72505:23:0;;72497:68;;;;;-1:-1:-1;;;72497:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;72497:68:0;;;;;;;;;;;;;;;74678:20:::1;74690:7;74678:11;:20::i;:::-;74607:99:::0;:::o;55388:289::-;55505:7;55550:119;55585:7;55550:119;;;;;;;;;;;;;;;;;:12;;:119;:16;:119::i;57145:97::-;57226:8;57219:15;;;;;;;;-1:-1:-1;;57219:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57193:13;;57219:15;;57226:8;;57219:15;;57226:8;57219:15;;;;;;;;;;;;;;;;;;;;;;;;54154:308;54271:7;-1:-1:-1;;;;;54318:19:0;;54296:111;;;;-1:-1:-1;;;54296:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54425:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;72936:148::-;72516:12;:10;:12::i;:::-;-1:-1:-1;;;;;72505:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;72505:23:0;;72497:68;;;;;-1:-1:-1;;;72497:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;72497:68:0;;;;;;;;;;;;;;;73027:6:::1;::::0;73006:40:::1;::::0;73043:1:::1;::::0;-1:-1:-1;;;;;73027:6:0::1;::::0;73006:40:::1;::::0;73043:1;;73006:40:::1;73057:6;:19:::0;;-1:-1:-1;;;;;;73057:19:0::1;::::0;;72936:148::o;72285:87::-;72358:6;;-1:-1:-1;;;;;72358:6:0;72285:87;:::o;55913:104::-;56002:7;55995:14;;;;;;;;-1:-1:-1;;55995:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55969:13;;55995:14;;56002:7;;55995:14;;56002:7;55995:14;;;;;;;;;;;;;;;;;;;;;;;;59627:325;59774:12;:10;:12::i;:::-;-1:-1:-1;;;;;59762:24:0;:8;-1:-1:-1;;;;;59762:24:0;;;59754:62;;;;;-1:-1:-1;;;59754:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;59872:8;59827:18;:32;59846:12;:10;:12::i;:::-;-1:-1:-1;;;;;59827:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;59827:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;59827:53:0;;;;;;;;;;;59911:12;:10;:12::i;:::-;-1:-1:-1;;;;;59896:48:0;;59935:8;59896:48;;;;;;;;;;;;;;;;;;;;59627:325;;:::o;54470:293::-;54573:7;-1:-1:-1;;;;;54620:19:0;;54598:111;;;;-1:-1:-1;;;54598:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54727:19:0;;;;;;:12;:19;;;;;:28;;:26;:28::i;57734:178::-;-1:-1:-1;;;;;57876:18:0;;57844:7;57876:18;;;:11;:18;;;;;:28;;57898:5;57876:21;:28::i;61005:365::-;61194:41;61213:12;:10;:12::i;:::-;61227:7;61194:18;:41::i;:::-;61172:140;;;;-1:-1:-1;;;61172:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61323:39;61337:4;61343:2;61347:7;61356:5;61323:13;:39::i;:::-;61005:365;;;;:::o;56088:814::-;56206:13;56259:16;56267:7;56259;:16::i;:::-;56237:113;;;;-1:-1:-1;;;56237:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56387:19;;;;:10;:19;;;;;;;;;56361:45;;;;;;-1:-1:-1;;56361:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;56387:19;56361:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56417:18;56438:9;:7;:9::i;:::-;56417:30;;56527:4;56521:18;56543:1;56521:23;56517:72;;;-1:-1:-1;56568:9:0;-1:-1:-1;56561:16:0;;56517:72;56654:23;;:27;56650:84;;-1:-1:-1;56712:9:0;-1:-1:-1;56698:24:0;;56650:84;56868:4;56874:18;:7;:16;:18::i;:::-;56851:42;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56851:42:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56851:42:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56851:42:0;;;;;;;;;;;;;-1:-1:-1;;56851:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56837:57;;;;56088:814;;;:::o;53869:221::-;53974:7;54007:16;54015:7;54007;:16::i;:::-;53999:46;;;;;-1:-1:-1;;;53999:46:0;;;;;;;;;;;;-1:-1:-1;;;53999:46:0;;;;;;;;;;;;;;;-1:-1:-1;54063:19:0;;;;:10;:19;;;;;;;53869:221::o;74714:90::-;72516:12;:10;:12::i;:::-;-1:-1:-1;;;;;72505:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;72505:23:0;;72497:68;;;;;-1:-1:-1;;;72497:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;72497:68:0;;;;;;;;;;;;;;;74779:8:::1;:17:::0;74714:90::o;60023:214::-;-1:-1:-1;;;;;60194:25:0;;;60165:4;60194:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;60023:214::o;73944:32::-;;;;;;:::o;73865:42::-;73905:2;73865:42;:::o;73239:281::-;72516:12;:10;:12::i;:::-;-1:-1:-1;;;;;72505:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;72505:23:0;;72497:68;;;;;-1:-1:-1;;;72497:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;72497:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;73342:22:0;::::1;73320:110;;;;-1:-1:-1::0;;;73320:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73467:6;::::0;73446:38:::1;::::0;-1:-1:-1;;;;;73446:38:0;;::::1;::::0;73467:6:::1;::::0;73446:38:::1;::::0;73467:6:::1;::::0;73446:38:::1;73495:6;:17:::0;;-1:-1:-1;;;;;;73495:17:0::1;-1:-1:-1::0;;;;;73495:17:0;;;::::1;::::0;;;::::1;::::0;;73239:281::o;62917:127::-;62982:4;63006:30;:12;63028:7;63006:21;:30::i;804:106::-;892:10;804:106;:::o;70222:192::-;70297:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;70297:29:0;-1:-1:-1;;;;;70297:29:0;;;;;;;;:24;;70351:23;70297:24;70351:14;:23::i;:::-;-1:-1:-1;;;;;70342:46:0;;;;;;;;;;;70222:192;;:::o;37841:169::-;37939:7;37979:22;37983:3;37995:5;37979:3;:22::i;68213:275::-;68350:16;68358:7;68350;:16::i;:::-;68328:110;;;;-1:-1:-1;;;68328:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68449:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;46369:155::-;46465:7;46497:19;46505:3;46497:7;:19::i;14394:179::-;14452:7;14484:5;;;14508:6;;;;14500:46;;;;;-1:-1:-1;;;14500:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;63897:328;64049:54;64080:1;64084:2;64088:7;64097:5;64049:22;:54::i;:::-;64027:154;;;;-1:-1:-1;;;64027:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64192:25;64198:2;64202:7;64211:5;64192;:25::i;63211:459::-;63340:4;63384:16;63392:7;63384;:16::i;:::-;63362:110;;;;-1:-1:-1;;;63362:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63483:13;63499:23;63514:7;63499:14;:23::i;:::-;63483:39;;63552:5;-1:-1:-1;;;;;63541:16:0;:7;-1:-1:-1;;;;;63541:16:0;;:64;;;;63598:7;-1:-1:-1;;;;;63574:31:0;:20;63586:7;63574:11;:20::i;:::-;-1:-1:-1;;;;;63574:31:0;;63541:64;:120;;;;63622:39;63646:5;63653:7;63622:23;:39::i;:::-;63533:129;63211:459;-1:-1:-1;;;;63211:459:0:o;66943:1114::-;67116:4;-1:-1:-1;;;;;67089:31:0;:23;67104:7;67089:14;:23::i;:::-;-1:-1:-1;;;;;67089:31:0;;67067:122;;;;-1:-1:-1;;;67067:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;67226:16:0;;67218:65;;;;-1:-1:-1;;;67218:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67294:39;67315:4;67321:2;67325:7;67294:20;:39::i;:::-;67396:29;67413:1;67417:7;67396:8;:29::i;:::-;-1:-1:-1;;;;;67436:19:0;;;;;;:13;:19;;;;;:35;;67463:7;67436:26;:35::i;:::-;-1:-1:-1;;;;;;67482:17:0;;;;;;:13;:17;;;;;:30;;67504:7;67482:21;:30::i;:::-;-1:-1:-1;67550:9:0;;67527:19;;;;:10;:19;;;;;;:32;67523:444;;;-1:-1:-1;;;;;67576:18:0;;;;;;:12;:18;;;;;:34;;67602:7;67576:25;:34::i;:::-;-1:-1:-1;;;;;;67625:16:0;;;;;;:12;:16;;;;;:29;;67646:7;67625:20;:29::i;:::-;;67523:444;;;67699:8;;67676:19;;;;:10;:19;;;;;;:31;67672:295;;;-1:-1:-1;;;;;67724:17:0;;;;;;:11;:17;;;;;:33;;67749:7;67724:24;:33::i;:::-;-1:-1:-1;;;;;;67772:15:0;;;;;;:11;:15;;;;;:28;;67792:7;67772:19;:28::i;67672:295::-;67845:11;;67822:19;;;;:10;:19;;;;;;:34;67818:149;;;-1:-1:-1;;;;;67873:20:0;;;;;;:14;:20;;;;;:36;;67901:7;67873:27;:36::i;:::-;-1:-1:-1;;;;;;67924:18:0;;;;;;:14;:18;;;;;:31;;67947:7;67924:22;:31::i;:::-;;67818:149;67977:29;:12;67994:7;68003:2;67977:16;:29::i;:::-;;68041:7;68037:2;-1:-1:-1;;;;;68022:27:0;68031:4;-1:-1:-1;;;;;68022:27:0;;;;;;;;;;;66943:1114;;;:::o;46872:268::-;46979:7;;;;47044:22;47048:3;47060:5;47044:3;:22::i;:::-;47013:53;;;;-1:-1:-1;46872:268:0;-1:-1:-1;;;;;46872:268:0:o;68718:100::-;68791:19;;;;:8;;:19;;;;;:::i;48254:292::-;48395:7;48477:44;48482:3;48502;48508:12;48477:4;:44::i;:::-;48469:53;-1:-1:-1;48254:292:0;;;;;;:::o;62252:352::-;62409:28;62419:4;62425:2;62429:7;62409:9;:28::i;:::-;62470:48;62493:4;62499:2;62503:7;62512:5;62470:22;:48::i;:::-;62448:148;;;;-1:-1:-1;;;62448:148:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48789:746;48845:13;49064:10;49060:53;;-1:-1:-1;49091:10:0;;;;;;;;;;;;-1:-1:-1;;;49091:10:0;;;;;;49060:53;49138:5;49123:12;49179:78;49186:9;;49179:78;;49212:8;;49243:2;49235:10;;;;49179:78;;;49267:19;49299:6;49289:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49289:17:0;-1:-1:-1;49361:5:0;;-1:-1:-1;49267:39:0;-1:-1:-1;;;49333:10:0;;49377:119;49384:9;;49377:119;;49454:2;49447:4;:9;49441:2;:16;49428:31;;49410:6;49417:7;;;;;;;49410:15;;;;;;;;;;;:49;-1:-1:-1;;;;;49410:49:0;;;;;;;;-1:-1:-1;49482:2:0;49474:10;;;;49377:119;;;-1:-1:-1;49520:6:0;48789:746;-1:-1:-1;;;;48789:746:0:o;46098:183::-;46209:4;46238:35;46248:3;46268;46238:9;:35::i;32513:273::-;32654:18;;32607:7;;32654:26;-1:-1:-1;32632:110:0;;;;-1:-1:-1;;;32632:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32760:3;:11;;32772:5;32760:18;;;;;;;;;;;;;;;;32753:25;;32513:273;;;;:::o;42718:110::-;42801:19;;42718:110::o;69383:720::-;69538:4;69560:15;:2;-1:-1:-1;;;;;69560:13:0;;:15::i;:::-;69555:86;;-1:-1:-1;69625:4:0;69618:11;;69555:86;69651:23;69677:313;-1:-1:-1;;;69812:12:0;:10;:12::i;:::-;69843:4;69866:7;69892:5;69707:205;;;;;;-1:-1:-1;;;;;69707:205:0;;;;;;-1:-1:-1;;;;;69707:205:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;69707:205:0;;;;;;;-1:-1:-1;;;;;69707:205:0;;;;;;;;;;;69677:313;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;69677:15:0;;;:313;:15;:313::i;:::-;69651:339;;70001:13;70028:10;70017:32;;;;;;;;;;;;;;;-1:-1:-1;70017:32:0;-1:-1:-1;;;;;;70068:26:0;-1:-1:-1;;;70068:26:0;;-1:-1:-1;;;69383:720:0;;;;;;:::o;64615:889::-;-1:-1:-1;;;;;64749:16:0;;64741:61;;;;;-1:-1:-1;;;64741:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64822:16;64830:7;64822;:16::i;:::-;64821:17;64813:58;;;;;-1:-1:-1;;;64813:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;64882:45;64911:1;64915:2;64919:7;64882:20;:45::i;:::-;-1:-1:-1;;;;;64938:17:0;;;;;;:13;:17;;;;;:30;;64960:7;64938:21;:30::i;:::-;-1:-1:-1;64979:29:0;:12;64996:7;65005:2;64979:16;:29::i;:::-;;65023:30;65038:5;65023:30;;;;;;;;;;;;;-1:-1:-1;;;65023:30:0;;;:7;:30::i;:::-;65019:429;;;65092:9;;65070:19;;;;:10;:19;;;;;;;;:31;;;;-1:-1:-1;;;;;65116:16:0;;;;:12;:16;;;:29;;65081:7;65116:20;:29::i;:::-;;65019:429;;;65167:29;65182:5;65167:29;;;;;;;;;;;;;-1:-1:-1;;;65167:29:0;;;:7;:29::i;:::-;65163:285;;;65235:8;;65213:19;;;;:10;:19;;;;;;;;:30;;;;-1:-1:-1;;;;;65258:15:0;;;;:11;:15;;;:28;;65224:7;65258:19;:28::i;65163:285::-;65308:32;65323:5;65308:32;;;;;;;;;;;;;-1:-1:-1;;;65308:32:0;;;:7;:32::i;:::-;65304:144;;;-1:-1:-1;;;;;65357:18:0;;;;;;:14;:18;;;;;:31;;65380:7;65357:22;:31::i;:::-;-1:-1:-1;65425:11:0;;65403:19;;;;:10;:19;;;;;:33;65304:144;65463:33;;65488:7;;-1:-1:-1;;;;;65463:33:0;;;65480:1;;65463:33;;65480:1;;65463:33;64615:889;;;:::o;36863:160::-;36951:4;36980:35;36988:3;37008:5;36980:7;:35::i;36556:131::-;36623:4;36647:32;36652:3;36672:5;36647:4;:32::i;45464:219::-;45587:4;45611:64;45616:3;45636;-1:-1:-1;;;;;45650:23:0;;45611:4;:64::i;43193:346::-;43343:19;;43287:7;;;;43343:27;-1:-1:-1;43321:111:0;;;;-1:-1:-1;;;43321:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43443:22;43468:3;:12;;43481:5;43468:19;;;;;;;;;;;;;;;;;;43443:44;;43506:5;:10;;;43518:5;:12;;;43498:33;;;;;43193:346;;;;;:::o;44789:353::-;44917:7;44956:17;;;:12;;;:17;;;;;;45007:12;44992:13;44984:36;;;;-1:-1:-1;;;44984:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45074:3;:12;;45098:1;45087:8;:12;45074:26;;;;;;;;;;;;;;;;;;:33;;;45067:40;;;44789:353;;;;;:::o;42466:157::-;42564:4;42593:17;;;:12;;;;;:17;;;;;;:22;;;42466:157::o;19929:442::-;20307:20;20355:8;;;19929:442::o;22962:229::-;23099:12;23131:52;23153:6;23161:4;23167:1;23170:12;23131:21;:52::i;30176:1541::-;30242:4;30381:19;;;:12;;;:19;;;;;;30415:15;;30411:1299;;30861:18;;-1:-1:-1;;30812:14:0;;;;30861:22;;;;30788:21;;30861:3;;:22;;31144;;;;;;;;;;;;;;31124:42;;31288:9;31259:3;:11;;31271:13;31259:26;;;;;;;;;;;;;;;;;;;:38;;;;31365:23;;;31407:1;31365:12;;;:23;;;;;;31391:17;;;31365:43;;31515:17;;31365:3;;31515:17;;;;;;;;;;;;;;;;;;;;;;31608:3;:12;;:19;31621:5;31608:19;;;;;;;;;;;31601:26;;;31649:4;31642:11;;;;;;;;30411:1299;31693:5;31686:12;;;;;29586:414;29649:4;29671:21;29681:3;29686:5;29671:9;:21::i;:::-;29666:327;;-1:-1:-1;29709:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;29892:18;;29870:19;;;:12;;;:19;;;;;;:40;;;;29925:11;;29666:327;-1:-1:-1;29976:5:0;29969:12;;39926:735;40036:4;40171:17;;;:12;;;:17;;;;;;40203:13;40199:455;;-1:-1:-1;;40301:36:0;;;;;;;;;;;;;;;;;;40283:55;;;;;;;;:12;:55;;;;;;;;;;;;;;;;;;;;;;;;40496:19;;40476:17;;;:12;;;:17;;;;;;;:39;40530:11;;40199:455;40610:5;40574:3;:12;;40598:1;40587:8;:12;40574:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;40637:5;40630:12;;;;;24178:630;24348:12;24420:5;24395:21;:30;;24373:118;;;;-1:-1:-1;;;24373:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24510:18;24521:6;24510:10;:18::i;:::-;24502:60;;;;;-1:-1:-1;;;24502:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24634:12;24648:23;24675:6;-1:-1:-1;;;;;24675:11:0;24694:5;24715:4;24675:55;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;24675:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24633:97;;;;24748:52;24766:7;24775:10;24787:12;24748:17;:52::i;:::-;24741:59;24178:630;-1:-1:-1;;;;;;;24178:630:0:o;27095:775::-;27245:12;27274:7;27270:593;;;-1:-1:-1;27305:10:0;27298:17;;27270:593;27419:17;;:21;27415:437;;27680:10;27674:17;27741:15;27728:10;27724:2;27720:19;27713:44;27628:148;27816:20;;-1:-1:-1;;;27816:20:0;;;;;;;;;;;;;;;;;27823:12;;27816:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;

Swarm Source

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