ETH Price: $3,400.96 (-1.27%)
Gas: 5 Gwei

Token

SunMoonbirds (SUNMOON)
 

Overview

Max Total Supply

1,608 SUNMOON

Holders

160

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
caiiiyua.eth
Balance
10 SUNMOON
0x84f6f9867ac2c4e8d990825d440cd6da1de3309f
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:
SunMoonbirds

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-16
*/

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

/**
 *Submitted for verification at Etherscan.io on 2022-03-12
*/

/**
 *Submitted for verification at Etherscan.io on 2022-03-04
*/

// SPDX-License-Identifier: MIT

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

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

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

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

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

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

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

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

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

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


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

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


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

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// Creator: Chiru Labs

pragma solidity ^0.8.0;


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol





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

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity >=0.7.0 <0.9.0;

contract SunMoonbirds is ERC721A, Ownable {
  using Strings for uint256;
  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.009 ether;
  uint256 public maxSupply = 3333;
  uint256 public maxMintAmount = 10;
  uint256 public maxFREEMintAmount = 3;
  uint256 public FREEnftPerAddressLimit = 3;
  uint256 public FREE_MAX_SUPPLY = 1500;
  address[] public whitelistedAddresses;
  string public notRevealedUri;
  bool public paused = true;
  bool public revealed = false;


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

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if (FREE_MAX_SUPPLY >= supply + _mintAmount) {
            require(_mintAmount <= maxFREEMintAmount, "max mint amount per session exceeded");
            require(numberMinted(msg.sender) + _mintAmount <= FREEnftPerAddressLimit, "max NFT per address exceeded");
        } else {
            require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
            require(msg.value >= _mintAmount * cost, "Invalid funds provided");
        }
    }
    
    _safeMint(msg.sender, _mintAmount);
    
  }

  function WLmint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
    require(isWhitelisted(msg.sender), "user is not whitelisted");
    _safeMint(msg.sender, _mintAmount);
    
  }

  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }


  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

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

  //only owner

  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }


  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    FREEnftPerAddressLimit = _limit;
  }

  function setFreeMaxSupply(uint256 _FreeMaxAmount) public onlyOwner {
    FREE_MAX_SUPPLY = _FreeMaxAmount;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

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

  function setFreeMaxMintAmount(uint256 _newFreeMaxMintAmount) public onlyOwner {
    maxFREEMintAmount = _newFreeMaxMintAmount;
    FREEnftPerAddressLimit = _newFreeMaxMintAmount;
  }

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

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREEnftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"WLmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFREEMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFreeMaxMintAmount","type":"uint256"}],"name":"setFreeMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_FreeMaxAmount","type":"uint256"}],"name":"setFreeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a090815262000028916009919062000212565b50661ff973cafa8000600a908155610d05600b55600c556003600d819055600e556105dc600f556012805461ffff191660011790553480156200006a57600080fd5b5060405162002ca738038062002ca78339810160408190526200008d916200036f565b835184908490620000a690600190602085019062000212565b508051620000bc90600290602084019062000212565b505050620000d9620000d3620000f960201b60201c565b620000fd565b620000e4826200014f565b620000ef81620001b7565b505050506200047b565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031633146200019e5760405162461bcd60e51b8152602060048201819052602482015260008051602062002c8783398151915260448201526064015b60405180910390fd5b8051620001b390600890602084019062000212565b5050565b6007546001600160a01b03163314620002025760405162461bcd60e51b8152602060048201819052602482015260008051602062002c87833981519152604482015260640162000195565b8051620001b39060119060208401905b828054620002209062000428565b90600052602060002090601f0160209004810192826200024457600085556200028f565b82601f106200025f57805160ff19168380011785556200028f565b828001600101855582156200028f579182015b828111156200028f57825182559160200191906001019062000272565b506200029d929150620002a1565b5090565b5b808211156200029d5760008155600101620002a2565b600082601f830112620002ca57600080fd5b81516001600160401b0380821115620002e757620002e762000465565b604051601f8301601f19908116603f0116810190828211818310171562000312576200031262000465565b816040528381526020925086838588010111156200032f57600080fd5b600091505b8382101562000353578582018301518183018401529082019062000334565b83821115620003655760008385830101525b9695505050505050565b600080600080608085870312156200038657600080fd5b84516001600160401b03808211156200039e57600080fd5b620003ac88838901620002b8565b95506020870151915080821115620003c357600080fd5b620003d188838901620002b8565b94506040870151915080821115620003e857600080fd5b620003f688838901620002b8565b935060608701519150808211156200040d57600080fd5b506200041c87828801620002b8565b91505092959194509250565b600181811c908216806200043d57607f821691505b602082108114156200045f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6127fc806200048b6000396000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063c6682862116100c1578063da3ef23f1161007a578063da3ef23f146106e8578063dc33e68114610708578063e985e9c514610728578063edec5f2714610771578063f2c4ce1e14610791578063f2fde38b146107b157600080fd5b8063c66828621461063d578063c87b56dd14610652578063d0eb26b014610672578063d223a63114610692578063d4fcb2ae146106b2578063d5abeb01146106d257600080fd5b80638da5cb5b116101135780638da5cb5b1461059757806395d89b41146105b5578063a0712d68146105ca578063a22cb465146105dd578063b88d4fde146105fd578063ba4e5c491461061d57600080fd5b806370a0823114610516578063715018a6146105365780637c7c867f1461054b5780637f00c7a6146105615780638069876d1461058157600080fd5b80633af32abf116101e85780634f6ccce7116101ac5780634f6ccce714610467578063518302271461048757806355f804b3146104a6578063586963d9146104c65780635c975abb146104dc5780636352211e146104f657600080fd5b80633af32abf146103ec5780633c773c251461040c5780633ccfd60b1461041f57806342842e0e1461042757806344a0d68a1461044757600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd14610381578063239c70ae1461039657806323b872dd146103ac5780632f745c59146103cc57600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046123b8565b6107d1565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c736600461239d565b61083e565b005b3480156102da57600080fd5b506102e3610884565b6040516102a39190612581565b3480156102fc57600080fd5b5061031061030b36600461243b565b610916565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e36109a1565b34801561034957600080fd5b506102cc6103583660046122fe565b610a2f565b34801561036957600080fd5b50610373600a5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600054610373565b3480156103a257600080fd5b50610373600c5481565b3480156103b857600080fd5b506102cc6103c736600461221c565b610b47565b3480156103d857600080fd5b506103736103e73660046122fe565b610b52565b3480156103f857600080fd5b506102976104073660046121ce565b610caf565b6102cc61041a36600461243b565b610d19565b6102cc610e1f565b34801561043357600080fd5b506102cc61044236600461221c565b610ebd565b34801561045357600080fd5b506102cc61046236600461243b565b610ed8565b34801561047357600080fd5b5061037361048236600461243b565b610f07565b34801561049357600080fd5b5060125461029790610100900460ff1681565b3480156104b257600080fd5b506102cc6104c13660046123f2565b610f69565b3480156104d257600080fd5b50610373600e5481565b3480156104e857600080fd5b506012546102979060ff1681565b34801561050257600080fd5b5061031061051136600461243b565b610fa6565b34801561052257600080fd5b506103736105313660046121ce565b610fb8565b34801561054257600080fd5b506102cc611049565b34801561055757600080fd5b50610373600d5481565b34801561056d57600080fd5b506102cc61057c36600461243b565b61107f565b34801561058d57600080fd5b50610373600f5481565b3480156105a357600080fd5b506007546001600160a01b0316610310565b3480156105c157600080fd5b506102e36110ae565b6102cc6105d836600461243b565b6110bd565b3480156105e957600080fd5b506102cc6105f83660046122d4565b611287565b34801561060957600080fd5b506102cc610618366004612258565b61134c565b34801561062957600080fd5b5061031061063836600461243b565b611385565b34801561064957600080fd5b506102e36113af565b34801561065e57600080fd5b506102e361066d36600461243b565b6113bc565b34801561067e57600080fd5b506102cc61068d36600461243b565b61152d565b34801561069e57600080fd5b506102cc6106ad36600461243b565b61155c565b3480156106be57600080fd5b506102cc6106cd36600461243b565b61158b565b3480156106de57600080fd5b50610373600b5481565b3480156106f457600080fd5b506102cc6107033660046123f2565b6115bf565b34801561071457600080fd5b506103736107233660046121ce565b6115fc565b34801561073457600080fd5b506102976107433660046121e9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561077d57600080fd5b506102cc61078c366004612328565b611607565b34801561079d57600080fd5b506102cc6107ac3660046123f2565b611649565b3480156107bd57600080fd5b506102cc6107cc3660046121ce565b611686565b60006001600160e01b031982166380ac58cd60e01b148061080257506001600160e01b03198216635b5e139f60e01b145b8061081d57506001600160e01b0319821663780e9d6360e01b145b8061083857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108715760405162461bcd60e51b8152600401610868906125d8565b60405180910390fd5b6012805460ff1916911515919091179055565b606060018054610893906126ee565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf906126ee565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b6000610923826000541190565b6109855760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610868565b506000908152600560205260409020546001600160a01b031690565b601180546109ae906126ee565b80601f01602080910402602001604051908101604052809291908181526020018280546109da906126ee565b8015610a275780601f106109fc57610100808354040283529160200191610a27565b820191906000526020600020905b815481529060010190602001808311610a0a57829003601f168201915b505050505081565b6000610a3a82610fa6565b9050806001600160a01b0316836001600160a01b03161415610aa95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610868565b336001600160a01b0382161480610ac55750610ac58133610743565b610b375760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610868565b610b4283838361171e565b505050565b610b4283838361177a565b6000610b5d83610fb8565b8210610bb65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610868565b600080549080805b83811015610c4f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c1157805192505b876001600160a01b0316836001600160a01b03161415610c465786841415610c3f5750935061083892505050565b6001909301925b50600101610bbe565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610868565b6000805b601054811015610d1057826001600160a01b031660108281548110610cda57610cda612784565b6000918252602090912001546001600160a01b03161415610cfe5750600192915050565b80610d0881612729565b915050610cb3565b50600092915050565b60125460ff1615610d655760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610868565b600054600b54610d758383612660565b1115610dbc5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610868565b610dc533610caf565b610e115760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610868565b610e1b3383611a5f565b5050565b6007546001600160a01b03163314610e495760405162461bcd60e51b8152600401610868906125d8565b6000610e5d6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ea7576040519150601f19603f3d011682016040523d82523d6000602084013e610eac565b606091505b5050905080610eba57600080fd5b50565b610b428383836040518060200160405280600081525061134c565b6007546001600160a01b03163314610f025760405162461bcd60e51b8152600401610868906125d8565b600a55565b600080548210610f655760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610868565b5090565b6007546001600160a01b03163314610f935760405162461bcd60e51b8152600401610868906125d8565b8051610e1b906008906020840190612026565b6000610fb182611a79565b5192915050565b60006001600160a01b0382166110245760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610868565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146110735760405162461bcd60e51b8152600401610868906125d8565b61107d6000611b50565b565b6007546001600160a01b031633146110a95760405162461bcd60e51b8152600401610868906125d8565b600c55565b606060028054610893906126ee565b60125460ff16156111095760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610868565b600054600b546111198383612660565b11156111605760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610868565b6007546001600160a01b03163314610e115761117c8282612660565b600f541061121057600d548211156111a65760405162461bcd60e51b815260040161086890612594565b600e54826111b3336115fc565b6111bd9190612660565b111561120b5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610868565b610e11565b600c548211156112325760405162461bcd60e51b815260040161086890612594565b600a5461123f908361268c565b341015610e115760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610868565b6001600160a01b0382163314156112e05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610868565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61135784848461177a565b61136384848484611ba2565b61137f5760405162461bcd60e51b81526004016108689061260d565b50505050565b6010818154811061139557600080fd5b6000918252602090912001546001600160a01b0316905081565b600980546109ae906126ee565b60606113c9826000541190565b61142d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610868565b601254610100900460ff166114ce5760118054611449906126ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611475906126ee565b80156114c25780601f10611497576101008083540402835291602001916114c2565b820191906000526020600020905b8154815290600101906020018083116114a557829003601f168201915b50505050509050919050565b60006114d8611cb0565b905060008151116114f85760405180602001604052806000815250611526565b8061150284611cbf565b600960405160200161151693929190612480565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146115575760405162461bcd60e51b8152600401610868906125d8565b600e55565b6007546001600160a01b031633146115865760405162461bcd60e51b8152600401610868906125d8565b600f55565b6007546001600160a01b031633146115b55760405162461bcd60e51b8152600401610868906125d8565b600d819055600e55565b6007546001600160a01b031633146115e95760405162461bcd60e51b8152600401610868906125d8565b8051610e1b906009906020840190612026565b600061083882611dbd565b6007546001600160a01b031633146116315760405162461bcd60e51b8152600401610868906125d8565b61163d601060006120a6565b610b42601083836120c4565b6007546001600160a01b031633146116735760405162461bcd60e51b8152600401610868906125d8565b8051610e1b906011906020840190612026565b6007546001600160a01b031633146116b05760405162461bcd60e51b8152600401610868906125d8565b6001600160a01b0381166117155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610868565b610eba81611b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061178582611a79565b80519091506000906001600160a01b0316336001600160a01b031614806117bc5750336117b184610916565b6001600160a01b0316145b806117ce575081516117ce9033610743565b9050806118385760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610868565b846001600160a01b031682600001516001600160a01b0316146118ac5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610868565b6001600160a01b0384166119105760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610868565b611920600084846000015161171e565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a15576119c8816000541190565b15611a15578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610e1b828260405180602001604052806000815250611e5b565b6040805180820190915260008082526020820152611a98826000541190565b611af75760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610868565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b46579392505050565b5060001901611af9565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611ca457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611be6903390899088908890600401612544565b602060405180830381600087803b158015611c0057600080fd5b505af1925050508015611c30575060408051601f3d908101601f19168201909252611c2d918101906123d5565b60015b611c8a573d808015611c5e576040519150601f19603f3d011682016040523d82523d6000602084013e611c63565b606091505b508051611c825760405162461bcd60e51b81526004016108689061260d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ca8565b5060015b949350505050565b606060088054610893906126ee565b606081611ce35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d0d5780611cf781612729565b9150611d069050600a83612678565b9150611ce7565b60008167ffffffffffffffff811115611d2857611d2861279a565b6040519080825280601f01601f191660200182016040528015611d52576020820181803683370190505b5090505b8415611ca857611d676001836126ab565b9150611d74600a86612744565b611d7f906030612660565b60f81b818381518110611d9457611d94612784565b60200101906001600160f81b031916908160001a905350611db6600a86612678565b9450611d56565b60006001600160a01b038216611e2f5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610868565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b610b4283838360016000546001600160a01b038516611ec65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610868565b83611f245760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610868565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b8581101561201d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561201157611ff56000888488611ba2565b6120115760405162461bcd60e51b81526004016108689061260d565b60019182019101611fa2565b50600055611a58565b828054612032906126ee565b90600052602060002090601f016020900481019282612054576000855561209a565b82601f1061206d57805160ff191683800117855561209a565b8280016001018555821561209a579182015b8281111561209a57825182559160200191906001019061207f565b50610f65929150612117565b5080546000825590600052602060002090810190610eba9190612117565b82805482825590600052602060002090810192821561209a579160200282015b8281111561209a5781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906120e4565b5b80821115610f655760008155600101612118565b600067ffffffffffffffff808411156121475761214761279a565b604051601f8501601f19908116603f0116810190828211818310171561216f5761216f61279a565b8160405280935085815286868601111561218857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146121b957600080fd5b919050565b803580151581146121b957600080fd5b6000602082840312156121e057600080fd5b611526826121a2565b600080604083850312156121fc57600080fd5b612205836121a2565b9150612213602084016121a2565b90509250929050565b60008060006060848603121561223157600080fd5b61223a846121a2565b9250612248602085016121a2565b9150604084013590509250925092565b6000806000806080858703121561226e57600080fd5b612277856121a2565b9350612285602086016121a2565b925060408501359150606085013567ffffffffffffffff8111156122a857600080fd5b8501601f810187136122b957600080fd5b6122c88782356020840161212c565b91505092959194509250565b600080604083850312156122e757600080fd5b6122f0836121a2565b9150612213602084016121be565b6000806040838503121561231157600080fd5b61231a836121a2565b946020939093013593505050565b6000806020838503121561233b57600080fd5b823567ffffffffffffffff8082111561235357600080fd5b818501915085601f83011261236757600080fd5b81358181111561237657600080fd5b8660208260051b850101111561238b57600080fd5b60209290920196919550909350505050565b6000602082840312156123af57600080fd5b611526826121be565b6000602082840312156123ca57600080fd5b8135611526816127b0565b6000602082840312156123e757600080fd5b8151611526816127b0565b60006020828403121561240457600080fd5b813567ffffffffffffffff81111561241b57600080fd5b8201601f8101841361242c57600080fd5b611ca88482356020840161212c565b60006020828403121561244d57600080fd5b5035919050565b6000815180845261246c8160208601602086016126c2565b601f01601f19169290920160200192915050565b6000845160206124938285838a016126c2565b8551918401916124a68184848a016126c2565b8554920191600090600181811c90808316806124c357607f831692505b8583108114156124e157634e487b7160e01b85526022600452602485fd5b8080156124f5576001811461250657612533565b60ff19851688528388019550612533565b60008b81526020902060005b8581101561252b5781548a820152908401908801612512565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061257790830184612454565b9695505050505050565b6020815260006115266020830184612454565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000821982111561267357612673612758565b500190565b6000826126875761268761276e565b500490565b60008160001904831182151516156126a6576126a6612758565b500290565b6000828210156126bd576126bd612758565b500390565b60005b838110156126dd5781810151838201526020016126c5565b8381111561137f5750506000910152565b600181811c9082168061270257607f821691505b6020821081141561272357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561273d5761273d612758565b5060010190565b6000826127535761275361276e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610eba57600080fdfea26469706673582212206cb4a6a01b1f59d08568e6e7b45c00f401c390a8b512fe237239dff55659f17a64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000c53756e4d6f6f6e62697264730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753554e4d4f4f4e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c806370a082311161014f578063c6682862116100c1578063da3ef23f1161007a578063da3ef23f146106e8578063dc33e68114610708578063e985e9c514610728578063edec5f2714610771578063f2c4ce1e14610791578063f2fde38b146107b157600080fd5b8063c66828621461063d578063c87b56dd14610652578063d0eb26b014610672578063d223a63114610692578063d4fcb2ae146106b2578063d5abeb01146106d257600080fd5b80638da5cb5b116101135780638da5cb5b1461059757806395d89b41146105b5578063a0712d68146105ca578063a22cb465146105dd578063b88d4fde146105fd578063ba4e5c491461061d57600080fd5b806370a0823114610516578063715018a6146105365780637c7c867f1461054b5780637f00c7a6146105615780638069876d1461058157600080fd5b80633af32abf116101e85780634f6ccce7116101ac5780634f6ccce714610467578063518302271461048757806355f804b3146104a6578063586963d9146104c65780635c975abb146104dc5780636352211e146104f657600080fd5b80633af32abf146103ec5780633c773c251461040c5780633ccfd60b1461041f57806342842e0e1461042757806344a0d68a1461044757600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd14610381578063239c70ae1461039657806323b872dd146103ac5780632f745c59146103cc57600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046123b8565b6107d1565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c736600461239d565b61083e565b005b3480156102da57600080fd5b506102e3610884565b6040516102a39190612581565b3480156102fc57600080fd5b5061031061030b36600461243b565b610916565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e36109a1565b34801561034957600080fd5b506102cc6103583660046122fe565b610a2f565b34801561036957600080fd5b50610373600a5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600054610373565b3480156103a257600080fd5b50610373600c5481565b3480156103b857600080fd5b506102cc6103c736600461221c565b610b47565b3480156103d857600080fd5b506103736103e73660046122fe565b610b52565b3480156103f857600080fd5b506102976104073660046121ce565b610caf565b6102cc61041a36600461243b565b610d19565b6102cc610e1f565b34801561043357600080fd5b506102cc61044236600461221c565b610ebd565b34801561045357600080fd5b506102cc61046236600461243b565b610ed8565b34801561047357600080fd5b5061037361048236600461243b565b610f07565b34801561049357600080fd5b5060125461029790610100900460ff1681565b3480156104b257600080fd5b506102cc6104c13660046123f2565b610f69565b3480156104d257600080fd5b50610373600e5481565b3480156104e857600080fd5b506012546102979060ff1681565b34801561050257600080fd5b5061031061051136600461243b565b610fa6565b34801561052257600080fd5b506103736105313660046121ce565b610fb8565b34801561054257600080fd5b506102cc611049565b34801561055757600080fd5b50610373600d5481565b34801561056d57600080fd5b506102cc61057c36600461243b565b61107f565b34801561058d57600080fd5b50610373600f5481565b3480156105a357600080fd5b506007546001600160a01b0316610310565b3480156105c157600080fd5b506102e36110ae565b6102cc6105d836600461243b565b6110bd565b3480156105e957600080fd5b506102cc6105f83660046122d4565b611287565b34801561060957600080fd5b506102cc610618366004612258565b61134c565b34801561062957600080fd5b5061031061063836600461243b565b611385565b34801561064957600080fd5b506102e36113af565b34801561065e57600080fd5b506102e361066d36600461243b565b6113bc565b34801561067e57600080fd5b506102cc61068d36600461243b565b61152d565b34801561069e57600080fd5b506102cc6106ad36600461243b565b61155c565b3480156106be57600080fd5b506102cc6106cd36600461243b565b61158b565b3480156106de57600080fd5b50610373600b5481565b3480156106f457600080fd5b506102cc6107033660046123f2565b6115bf565b34801561071457600080fd5b506103736107233660046121ce565b6115fc565b34801561073457600080fd5b506102976107433660046121e9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561077d57600080fd5b506102cc61078c366004612328565b611607565b34801561079d57600080fd5b506102cc6107ac3660046123f2565b611649565b3480156107bd57600080fd5b506102cc6107cc3660046121ce565b611686565b60006001600160e01b031982166380ac58cd60e01b148061080257506001600160e01b03198216635b5e139f60e01b145b8061081d57506001600160e01b0319821663780e9d6360e01b145b8061083857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108715760405162461bcd60e51b8152600401610868906125d8565b60405180910390fd5b6012805460ff1916911515919091179055565b606060018054610893906126ee565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf906126ee565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b6000610923826000541190565b6109855760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610868565b506000908152600560205260409020546001600160a01b031690565b601180546109ae906126ee565b80601f01602080910402602001604051908101604052809291908181526020018280546109da906126ee565b8015610a275780601f106109fc57610100808354040283529160200191610a27565b820191906000526020600020905b815481529060010190602001808311610a0a57829003601f168201915b505050505081565b6000610a3a82610fa6565b9050806001600160a01b0316836001600160a01b03161415610aa95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610868565b336001600160a01b0382161480610ac55750610ac58133610743565b610b375760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610868565b610b4283838361171e565b505050565b610b4283838361177a565b6000610b5d83610fb8565b8210610bb65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610868565b600080549080805b83811015610c4f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c1157805192505b876001600160a01b0316836001600160a01b03161415610c465786841415610c3f5750935061083892505050565b6001909301925b50600101610bbe565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610868565b6000805b601054811015610d1057826001600160a01b031660108281548110610cda57610cda612784565b6000918252602090912001546001600160a01b03161415610cfe5750600192915050565b80610d0881612729565b915050610cb3565b50600092915050565b60125460ff1615610d655760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610868565b600054600b54610d758383612660565b1115610dbc5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610868565b610dc533610caf565b610e115760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610868565b610e1b3383611a5f565b5050565b6007546001600160a01b03163314610e495760405162461bcd60e51b8152600401610868906125d8565b6000610e5d6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ea7576040519150601f19603f3d011682016040523d82523d6000602084013e610eac565b606091505b5050905080610eba57600080fd5b50565b610b428383836040518060200160405280600081525061134c565b6007546001600160a01b03163314610f025760405162461bcd60e51b8152600401610868906125d8565b600a55565b600080548210610f655760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610868565b5090565b6007546001600160a01b03163314610f935760405162461bcd60e51b8152600401610868906125d8565b8051610e1b906008906020840190612026565b6000610fb182611a79565b5192915050565b60006001600160a01b0382166110245760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610868565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146110735760405162461bcd60e51b8152600401610868906125d8565b61107d6000611b50565b565b6007546001600160a01b031633146110a95760405162461bcd60e51b8152600401610868906125d8565b600c55565b606060028054610893906126ee565b60125460ff16156111095760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610868565b600054600b546111198383612660565b11156111605760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610868565b6007546001600160a01b03163314610e115761117c8282612660565b600f541061121057600d548211156111a65760405162461bcd60e51b815260040161086890612594565b600e54826111b3336115fc565b6111bd9190612660565b111561120b5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610868565b610e11565b600c548211156112325760405162461bcd60e51b815260040161086890612594565b600a5461123f908361268c565b341015610e115760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610868565b6001600160a01b0382163314156112e05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610868565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61135784848461177a565b61136384848484611ba2565b61137f5760405162461bcd60e51b81526004016108689061260d565b50505050565b6010818154811061139557600080fd5b6000918252602090912001546001600160a01b0316905081565b600980546109ae906126ee565b60606113c9826000541190565b61142d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610868565b601254610100900460ff166114ce5760118054611449906126ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611475906126ee565b80156114c25780601f10611497576101008083540402835291602001916114c2565b820191906000526020600020905b8154815290600101906020018083116114a557829003601f168201915b50505050509050919050565b60006114d8611cb0565b905060008151116114f85760405180602001604052806000815250611526565b8061150284611cbf565b600960405160200161151693929190612480565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146115575760405162461bcd60e51b8152600401610868906125d8565b600e55565b6007546001600160a01b031633146115865760405162461bcd60e51b8152600401610868906125d8565b600f55565b6007546001600160a01b031633146115b55760405162461bcd60e51b8152600401610868906125d8565b600d819055600e55565b6007546001600160a01b031633146115e95760405162461bcd60e51b8152600401610868906125d8565b8051610e1b906009906020840190612026565b600061083882611dbd565b6007546001600160a01b031633146116315760405162461bcd60e51b8152600401610868906125d8565b61163d601060006120a6565b610b42601083836120c4565b6007546001600160a01b031633146116735760405162461bcd60e51b8152600401610868906125d8565b8051610e1b906011906020840190612026565b6007546001600160a01b031633146116b05760405162461bcd60e51b8152600401610868906125d8565b6001600160a01b0381166117155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610868565b610eba81611b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061178582611a79565b80519091506000906001600160a01b0316336001600160a01b031614806117bc5750336117b184610916565b6001600160a01b0316145b806117ce575081516117ce9033610743565b9050806118385760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610868565b846001600160a01b031682600001516001600160a01b0316146118ac5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610868565b6001600160a01b0384166119105760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610868565b611920600084846000015161171e565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a15576119c8816000541190565b15611a15578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610e1b828260405180602001604052806000815250611e5b565b6040805180820190915260008082526020820152611a98826000541190565b611af75760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610868565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b46579392505050565b5060001901611af9565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611ca457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611be6903390899088908890600401612544565b602060405180830381600087803b158015611c0057600080fd5b505af1925050508015611c30575060408051601f3d908101601f19168201909252611c2d918101906123d5565b60015b611c8a573d808015611c5e576040519150601f19603f3d011682016040523d82523d6000602084013e611c63565b606091505b508051611c825760405162461bcd60e51b81526004016108689061260d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ca8565b5060015b949350505050565b606060088054610893906126ee565b606081611ce35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d0d5780611cf781612729565b9150611d069050600a83612678565b9150611ce7565b60008167ffffffffffffffff811115611d2857611d2861279a565b6040519080825280601f01601f191660200182016040528015611d52576020820181803683370190505b5090505b8415611ca857611d676001836126ab565b9150611d74600a86612744565b611d7f906030612660565b60f81b818381518110611d9457611d94612784565b60200101906001600160f81b031916908160001a905350611db6600a86612678565b9450611d56565b60006001600160a01b038216611e2f5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610868565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b610b4283838360016000546001600160a01b038516611ec65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610868565b83611f245760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610868565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b8581101561201d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561201157611ff56000888488611ba2565b6120115760405162461bcd60e51b81526004016108689061260d565b60019182019101611fa2565b50600055611a58565b828054612032906126ee565b90600052602060002090601f016020900481019282612054576000855561209a565b82601f1061206d57805160ff191683800117855561209a565b8280016001018555821561209a579182015b8281111561209a57825182559160200191906001019061207f565b50610f65929150612117565b5080546000825590600052602060002090810190610eba9190612117565b82805482825590600052602060002090810192821561209a579160200282015b8281111561209a5781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906120e4565b5b80821115610f655760008155600101612118565b600067ffffffffffffffff808411156121475761214761279a565b604051601f8501601f19908116603f0116810190828211818310171561216f5761216f61279a565b8160405280935085815286868601111561218857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146121b957600080fd5b919050565b803580151581146121b957600080fd5b6000602082840312156121e057600080fd5b611526826121a2565b600080604083850312156121fc57600080fd5b612205836121a2565b9150612213602084016121a2565b90509250929050565b60008060006060848603121561223157600080fd5b61223a846121a2565b9250612248602085016121a2565b9150604084013590509250925092565b6000806000806080858703121561226e57600080fd5b612277856121a2565b9350612285602086016121a2565b925060408501359150606085013567ffffffffffffffff8111156122a857600080fd5b8501601f810187136122b957600080fd5b6122c88782356020840161212c565b91505092959194509250565b600080604083850312156122e757600080fd5b6122f0836121a2565b9150612213602084016121be565b6000806040838503121561231157600080fd5b61231a836121a2565b946020939093013593505050565b6000806020838503121561233b57600080fd5b823567ffffffffffffffff8082111561235357600080fd5b818501915085601f83011261236757600080fd5b81358181111561237657600080fd5b8660208260051b850101111561238b57600080fd5b60209290920196919550909350505050565b6000602082840312156123af57600080fd5b611526826121be565b6000602082840312156123ca57600080fd5b8135611526816127b0565b6000602082840312156123e757600080fd5b8151611526816127b0565b60006020828403121561240457600080fd5b813567ffffffffffffffff81111561241b57600080fd5b8201601f8101841361242c57600080fd5b611ca88482356020840161212c565b60006020828403121561244d57600080fd5b5035919050565b6000815180845261246c8160208601602086016126c2565b601f01601f19169290920160200192915050565b6000845160206124938285838a016126c2565b8551918401916124a68184848a016126c2565b8554920191600090600181811c90808316806124c357607f831692505b8583108114156124e157634e487b7160e01b85526022600452602485fd5b8080156124f5576001811461250657612533565b60ff19851688528388019550612533565b60008b81526020902060005b8581101561252b5781548a820152908401908801612512565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061257790830184612454565b9695505050505050565b6020815260006115266020830184612454565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000821982111561267357612673612758565b500190565b6000826126875761268761276e565b500490565b60008160001904831182151516156126a6576126a6612758565b500290565b6000828210156126bd576126bd612758565b500390565b60005b838110156126dd5781810151838201526020016126c5565b8381111561137f5750506000910152565b600181811c9082168061270257607f821691505b6020821081141561272357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561273d5761273d612758565b5060010190565b6000826127535761275361276e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610eba57600080fdfea26469706673582212206cb4a6a01b1f59d08568e6e7b45c00f401c390a8b512fe237239dff55659f17a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000c53756e4d6f6f6e62697264730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753554e4d4f4f4e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): SunMoonbirds
Arg [1] : _symbol (string): SUNMOON
Arg [2] : _initBaseURI (string):
Arg [3] : _initNotRevealedUri (string):

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 53756e4d6f6f6e62697264730000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 53554e4d4f4f4e00000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

39532:4298:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24018:372;;;;;;;;;;-1:-1:-1;24018:372:0;;;;;:::i;:::-;;:::i;:::-;;;7790:14:1;;7783:22;7765:41;;7753:2;7738:18;24018:372:0;;;;;;;;43602:73;;;;;;;;;;-1:-1:-1;43602:73:0;;;;;:::i;:::-;;:::i;:::-;;25904:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27466:214::-;;;;;;;;;;-1:-1:-1;27466:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7088:32:1;;;7070:51;;7058:2;7043:18;27466:214:0;6924:203:1;39953:28:0;;;;;;;;;;;;;:::i;26987:413::-;;;;;;;;;;-1:-1:-1;26987:413:0;;;;;:::i;:::-;;:::i;39670:33::-;;;;;;;;;;;;;;;;;;;18478:25:1;;;18466:2;18451:18;39670:33:0;18332:177:1;22275:100:0;;;;;;;;;;-1:-1:-1;22328:7:0;22355:12;22275:100;;39744:33;;;;;;;;;;;;;;;;28342:162;;;;;;;;;;-1:-1:-1;28342:162:0;;;;;:::i;:::-;;:::i;22939:1007::-;;;;;;;;;;-1:-1:-1;22939:1007:0;;;;;:::i;:::-;;:::i;41578:239::-;;;;;;;;;;-1:-1:-1;41578:239:0;;;;;:::i;:::-;;:::i;41238:334::-;;;;;;:::i;:::-;;:::i;43682:145::-;;;:::i;28575:177::-;;;;;;;;;;-1:-1:-1;28575:177:0;;;;;:::i;:::-;;:::i;42845:80::-;;;;;;;;;;-1:-1:-1;42845:80:0;;;;;:::i;:::-;;:::i;22452:187::-;;;;;;;;;;-1:-1:-1;22452:187:0;;;;;:::i;:::-;;:::i;40016:28::-;;;;;;;;;;-1:-1:-1;40016:28:0;;;;;;;;;;;43244:98;;;;;;;;;;-1:-1:-1;43244:98:0;;;;;:::i;:::-;;:::i;39823:41::-;;;;;;;;;;;;;;;;39986:25;;;;;;;;;;-1:-1:-1;39986:25:0;;;;;;;;25713:124;;;;;;;;;;-1:-1:-1;25713:124:0;;;;;:::i;:::-;;:::i;24454:221::-;;;;;;;;;;-1:-1:-1;24454:221:0;;;;;:::i;:::-;;:::i;38868:94::-;;;;;;;;;;;;;:::i;39782:36::-;;;;;;;;;;;;;;;;42931:116;;;;;;;;;;-1:-1:-1;42931:116:0;;;;;:::i;:::-;;:::i;39869:37::-;;;;;;;;;;;;;;;;38217:87;;;;;;;;;;-1:-1:-1;38290:6:0;;-1:-1:-1;;;;;38290:6:0;38217:87;;26073:104;;;;;;;;;;;;;:::i;40445:787::-;;;;;;:::i;:::-;;:::i;27752:288::-;;;;;;;;;;-1:-1:-1;27752:288:0;;;;;:::i;:::-;;:::i;28823:355::-;;;;;;;;;;-1:-1:-1;28823:355:0;;;;;:::i;:::-;;:::i;39911:37::-;;;;;;;;;;-1:-1:-1;39911:37:0;;;;;:::i;:::-;;:::i;39628:::-;;;;;;;;;;;;;:::i;41938:497::-;;;;;;;;;;-1:-1:-1;41938:497:0;;;;;:::i;:::-;;:::i;42611:108::-;;;;;;;;;;-1:-1:-1;42611:108:0;;;;;:::i;:::-;;:::i;42725:112::-;;;;;;;;;;-1:-1:-1;42725:112:0;;;;;:::i;:::-;;:::i;43053:185::-;;;;;;;;;;-1:-1:-1;43053:185:0;;;;;:::i;:::-;;:::i;39708:31::-;;;;;;;;;;;;;;;;43474:122;;;;;;;;;;-1:-1:-1;43474:122:0;;;;;:::i;:::-;;:::i;41825:107::-;;;;;;;;;;-1:-1:-1;41825:107:0;;;;;:::i;:::-;;:::i;28111:164::-;;;;;;;;;;-1:-1:-1;28111:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28232:25:0;;;28208:4;28232:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28111:164;42459:144;;;;;;;;;;-1:-1:-1;42459:144:0;;;;;:::i;:::-;;:::i;43348:120::-;;;;;;;;;;-1:-1:-1;43348:120:0;;;;;:::i;:::-;;:::i;39117:192::-;;;;;;;;;;-1:-1:-1;39117:192:0;;;;;:::i;:::-;;:::i;24018:372::-;24120:4;-1:-1:-1;;;;;;24157:40:0;;-1:-1:-1;;;24157:40:0;;:105;;-1:-1:-1;;;;;;;24214:48:0;;-1:-1:-1;;;24214:48:0;24157:105;:172;;;-1:-1:-1;;;;;;;24279:50:0;;-1:-1:-1;;;24279:50:0;24157:172;:225;;;-1:-1:-1;;;;;;;;;;7762:40:0;;;24346:36;24137:245;24018:372;-1:-1:-1;;24018:372:0:o;43602:73::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;;;;;;;;;43654:6:::1;:15:::0;;-1:-1:-1;;43654:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43602:73::o;25904:100::-;25958:13;25991:5;25984:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25904:100;:::o;27466:214::-;27534:7;27562:16;27570:7;29490:4;29524:12;-1:-1:-1;29514:22:0;29433:111;27562:16;27554:74;;;;-1:-1:-1;;;27554:74:0;;18120:2:1;27554:74:0;;;18102:21:1;18159:2;18139:18;;;18132:30;18198:34;18178:18;;;18171:62;-1:-1:-1;;;18249:18:1;;;18242:43;18302:19;;27554:74:0;17918:409:1;27554:74:0;-1:-1:-1;27648:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27648:24:0;;27466:214::o;39953:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26987:413::-;27060:13;27076:24;27092:7;27076:15;:24::i;:::-;27060:40;;27125:5;-1:-1:-1;;;;;27119:11:0;:2;-1:-1:-1;;;;;27119:11:0;;;27111:58;;;;-1:-1:-1;;;27111:58:0;;15303:2:1;27111:58:0;;;15285:21:1;15342:2;15322:18;;;15315:30;15381:34;15361:18;;;15354:62;-1:-1:-1;;;15432:18:1;;;15425:32;15474:19;;27111:58:0;15101:398:1;27111:58:0;20376:10;-1:-1:-1;;;;;27204:21:0;;;;:62;;-1:-1:-1;27229:37:0;27246:5;20376:10;28111:164;:::i;27229:37::-;27182:169;;;;-1:-1:-1;;;27182:169:0;;11049:2:1;27182:169:0;;;11031:21:1;11088:2;11068:18;;;11061:30;11127:34;11107:18;;;11100:62;11198:27;11178:18;;;11171:55;11243:19;;27182:169:0;10847:421:1;27182:169:0;27364:28;27373:2;27377:7;27386:5;27364:8;:28::i;:::-;27049:351;26987:413;;:::o;28342:162::-;28468:28;28478:4;28484:2;28488:7;28468:9;:28::i;22939:1007::-;23028:7;23064:16;23074:5;23064:9;:16::i;:::-;23056:5;:24;23048:71;;;;-1:-1:-1;;;23048:71:0;;8243:2:1;23048:71:0;;;8225:21:1;8282:2;8262:18;;;8255:30;8321:34;8301:18;;;8294:62;-1:-1:-1;;;8372:18:1;;;8365:32;8414:19;;23048:71:0;8041:398:1;23048:71:0;23130:22;22355:12;;;23130:22;;23393:466;23413:14;23409:1;:18;23393:466;;;23453:31;23487:14;;;:11;:14;;;;;;;;;23453:48;;;;;;;;;-1:-1:-1;;;;;23453:48:0;;;;;-1:-1:-1;;;23453:48:0;;;;;;;;;;;;23524:28;23520:111;;23597:14;;;-1:-1:-1;23520:111:0;23674:5;-1:-1:-1;;;;;23653:26:0;:17;-1:-1:-1;;;;;23653:26:0;;23649:195;;;23723:5;23708:11;:20;23704:85;;;-1:-1:-1;23764:1:0;-1:-1:-1;23757:8:0;;-1:-1:-1;;;23757:8:0;23704:85;23811:13;;;;;23649:195;-1:-1:-1;23429:3:0;;23393:466;;;-1:-1:-1;23882:56:0;;-1:-1:-1;;;23882:56:0;;16937:2:1;23882:56:0;;;16919:21:1;16976:2;16956:18;;;16949:30;17015:34;16995:18;;;16988:62;-1:-1:-1;;;17066:18:1;;;17059:44;17120:19;;23882:56:0;16735:410:1;41578:239:0;41637:4;;41650:143;41671:20;:27;41667:31;;41650:143;;;41745:5;-1:-1:-1;;;;;41718:32:0;:20;41739:1;41718:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;41718:23:0;:32;41714:72;;;-1:-1:-1;41772:4:0;;41578:239;-1:-1:-1;;41578:239:0:o;41714:72::-;41700:3;;;;:::i;:::-;;;;41650:143;;;-1:-1:-1;41806:5:0;;41578:239;-1:-1:-1;;41578:239:0:o;41238:334::-;41306:6;;;;41305:7;41297:42;;;;-1:-1:-1;;;41297:42:0;;13411:2:1;41297:42:0;;;13393:21:1;13450:2;13430:18;;;13423:30;-1:-1:-1;;;13469:18:1;;;13462:52;13531:18;;41297:42:0;13209:346:1;41297:42:0;41346:14;22355:12;41415:9;;41391:20;41400:11;22355:12;41391:20;:::i;:::-;:33;;41383:68;;;;-1:-1:-1;;;41383:68:0;;11475:2:1;41383:68:0;;;11457:21:1;11514:2;11494:18;;;11487:30;-1:-1:-1;;;11533:18:1;;;11526:52;11595:18;;41383:68:0;11273:346:1;41383:68:0;41466:25;41480:10;41466:13;:25::i;:::-;41458:61;;;;-1:-1:-1;;;41458:61:0;;17352:2:1;41458:61:0;;;17334:21:1;17391:2;17371:18;;;17364:30;17430:25;17410:18;;;17403:53;17473:18;;41458:61:0;17150:347:1;41458:61:0;41526:34;41536:10;41548:11;41526:9;:34::i;:::-;41290:282;41238:334;:::o;43682:145::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;43735:7:::1;43756;38290:6:::0;;-1:-1:-1;;;;;38290:6:0;;38217:87;43756:7:::1;-1:-1:-1::0;;;;;43748:21:0::1;43777;43748:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43734:69;;;43818:2;43810:11;;;::::0;::::1;;43727:100;43682:145::o:0;28575:177::-;28705:39;28722:4;28728:2;28732:7;28705:39;;;;;;;;;;;;:16;:39::i;42845:80::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;42904:4:::1;:15:::0;42845:80::o;22452:187::-;22519:7;22355:12;;22547:5;:21;22539:69;;;;-1:-1:-1;;;22539:69:0;;9821:2:1;22539:69:0;;;9803:21:1;9860:2;9840:18;;;9833:30;9899:34;9879:18;;;9872:62;-1:-1:-1;;;9950:18:1;;;9943:33;9993:19;;22539:69:0;9619:399:1;22539:69:0;-1:-1:-1;22626:5:0;22452:187::o;43244:98::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;43315:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;25713:124::-:0;25777:7;25804:20;25816:7;25804:11;:20::i;:::-;:25;;25713:124;-1:-1:-1;;25713:124:0:o;24454:221::-;24518:7;-1:-1:-1;;;;;24546:19:0;;24538:75;;;;-1:-1:-1;;;24538:75:0;;12231:2:1;24538:75:0;;;12213:21:1;12270:2;12250:18;;;12243:30;12309:34;12289:18;;;12282:62;-1:-1:-1;;;12360:18:1;;;12353:41;12411:19;;24538:75:0;12029:407:1;24538:75:0;-1:-1:-1;;;;;;24639:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24639:27:0;;24454:221::o;38868:94::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;38933:21:::1;38951:1;38933:9;:21::i;:::-;38868:94::o:0;42931:116::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;43008:13:::1;:33:::0;42931:116::o;26073:104::-;26129:13;26162:7;26155:14;;;;;:::i;40445:787::-;40511:6;;;;40510:7;40502:42;;;;-1:-1:-1;;;40502:42:0;;13411:2:1;40502:42:0;;;13393:21:1;13450:2;13430:18;;;13423:30;-1:-1:-1;;;13469:18:1;;;13462:52;13531:18;;40502:42:0;13209:346:1;40502:42:0;40551:14;22355:12;40620:9;;40596:20;40605:11;22355:12;40596:20;:::i;:::-;:33;;40588:68;;;;-1:-1:-1;;;40588:68:0;;11475:2:1;40588:68:0;;;11457:21:1;11514:2;11494:18;;;11487:30;-1:-1:-1;;;11533:18:1;;;11526:52;11595:18;;40588:68:0;11273:346:1;40588:68:0;38290:6;;-1:-1:-1;;;;;38290:6:0;40669:10;:21;40665:509;;40726:20;40735:11;40726:6;:20;:::i;:::-;40707:15;;:39;40703:464;;40786:17;;40771:11;:32;;40763:81;;;;-1:-1:-1;;;40763:81:0;;;;;;;:::i;:::-;40909:22;;40894:11;40867:24;40880:10;40867:12;:24::i;:::-;:38;;;;:::i;:::-;:64;;40859:105;;;;-1:-1:-1;;;40859:105:0;;9464:2:1;40859:105:0;;;9446:21:1;9503:2;9483:18;;;9476:30;9542;9522:18;;;9515:58;9590:18;;40859:105:0;9262:352:1;40859:105:0;40703:464;;;41020:13;;41005:11;:28;;40997:77;;;;-1:-1:-1;;;40997:77:0;;;;;;;:::i;:::-;41124:4;;41110:18;;:11;:18;:::i;:::-;41097:9;:31;;41089:66;;;;-1:-1:-1;;;41089:66:0;;14952:2:1;41089:66:0;;;14934:21:1;14991:2;14971:18;;;14964:30;-1:-1:-1;;;15010:18:1;;;15003:52;15072:18;;41089:66:0;14750:346:1;27752:288:0;-1:-1:-1;;;;;27847:24:0;;20376:10;27847:24;;27839:63;;;;-1:-1:-1;;;27839:63:0;;14178:2:1;27839:63:0;;;14160:21:1;14217:2;14197:18;;;14190:30;14256:28;14236:18;;;14229:56;14302:18;;27839:63:0;13976:350:1;27839:63:0;20376:10;27915:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27915:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27915:53:0;;;;;;;;;;27984:48;;7765:41:1;;;27915:42:0;;20376:10;27984:48;;7738:18:1;27984:48:0;;;;;;;27752:288;;:::o;28823:355::-;28982:28;28992:4;28998:2;29002:7;28982:9;:28::i;:::-;29043:48;29066:4;29072:2;29076:7;29085:5;29043:22;:48::i;:::-;29021:149;;;;-1:-1:-1;;;29021:149:0;;;;;;;:::i;:::-;28823:355;;;;:::o;39911:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39911:37:0;;-1:-1:-1;39911:37:0;:::o;39628:::-;;;;;;;:::i;41938:497::-;42036:13;42077:16;42085:7;29490:4;29524:12;-1:-1:-1;29514:22:0;29433:111;42077:16;42061:97;;;;-1:-1:-1;;;42061:97:0;;13762:2:1;42061:97:0;;;13744:21:1;13801:2;13781:18;;;13774:30;13840:34;13820:18;;;13813:62;-1:-1:-1;;;13891:18:1;;;13884:45;13946:19;;42061:97:0;13560:411:1;42061:97:0;42174:8;;;;;;;42171:62;;42211:14;42204:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41938:497;;;:::o;42171:62::-;42241:28;42272:10;:8;:10::i;:::-;42241:41;;42327:1;42302:14;42296:28;:32;:133;;;;;;;;;;;;;;;;;42364:14;42380:18;:7;:16;:18::i;:::-;42400:13;42347:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42296:133;42289:140;41938:497;-1:-1:-1;;;41938:497:0:o;42611:108::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;42682:22:::1;:31:::0;42611:108::o;42725:112::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;42799:15:::1;:32:::0;42725:112::o;43053:185::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;43138:17:::1;:41:::0;;;43186:22:::1;:46:::0;43053:185::o;43474:122::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;43557:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;41825:107::-:0;41883:7;41906:20;41920:5;41906:13;:20::i;42459:144::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;42534:27:::1;42541:20;;42534:27;:::i;:::-;42568:29;:20;42591:6:::0;;42568:29:::1;:::i;43348:120::-:0;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;43430:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;39117:192::-:0;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39206:22:0;::::1;39198:73;;;::::0;-1:-1:-1;;;39198:73:0;;8646:2:1;39198:73:0::1;::::0;::::1;8628:21:1::0;8685:2;8665:18;;;8658:30;8724:34;8704:18;;;8697:62;-1:-1:-1;;;8775:18:1;;;8768:36;8821:19;;39198:73:0::1;8444:402:1::0;39198:73:0::1;39282:19;39292:8;39282:9;:19::i;34353:196::-:0;34468:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34468:29:0;-1:-1:-1;;;;;34468:29:0;;;;;;;;;34513:28;;34468:24;;34513:28;;;;;;;34353:196;;;:::o;32233:2002::-;32348:35;32386:20;32398:7;32386:11;:20::i;:::-;32461:18;;32348:58;;-1:-1:-1;32419:22:0;;-1:-1:-1;;;;;32445:34:0;20376:10;-1:-1:-1;;;;;32445:34:0;;:87;;;-1:-1:-1;20376:10:0;32496:20;32508:7;32496:11;:20::i;:::-;-1:-1:-1;;;;;32496:36:0;;32445:87;:154;;;-1:-1:-1;32566:18:0;;32549:50;;20376:10;28111:164;:::i;32549:50::-;32419:181;;32621:17;32613:80;;;;-1:-1:-1;;;32613:80:0;;14533:2:1;32613:80:0;;;14515:21:1;14572:2;14552:18;;;14545:30;14611:34;14591:18;;;14584:62;-1:-1:-1;;;14662:18:1;;;14655:48;14720:19;;32613:80:0;14331:414:1;32613:80:0;32736:4;-1:-1:-1;;;;;32714:26:0;:13;:18;;;-1:-1:-1;;;;;32714:26:0;;32706:77;;;;-1:-1:-1;;;32706:77:0;;12643:2:1;32706:77:0;;;12625:21:1;12682:2;12662:18;;;12655:30;12721:34;12701:18;;;12694:62;-1:-1:-1;;;12772:18:1;;;12765:36;12818:19;;32706:77:0;12441:402:1;32706:77:0;-1:-1:-1;;;;;32802:16:0;;32794:66;;;;-1:-1:-1;;;32794:66:0;;10225:2:1;32794:66:0;;;10207:21:1;10264:2;10244:18;;;10237:30;10303:34;10283:18;;;10276:62;-1:-1:-1;;;10354:18:1;;;10347:35;10399:19;;32794:66:0;10023:401:1;32794:66:0;32981:49;32998:1;33002:7;33011:13;:18;;;32981:8;:49::i;:::-;-1:-1:-1;;;;;33326:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;33326:31:0;;;-1:-1:-1;;;;;33326:31:0;;;-1:-1:-1;;33326:31:0;;;;;;;33372:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;33372:29:0;;;;;;;;;;;;;33418:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;33463:61:0;;;;-1:-1:-1;;;33508:15:0;33463:61;;;;;;33798:11;;;33828:24;;;;;:29;33798:11;;33828:29;33824:295;;33896:20;33904:11;29490:4;29524:12;-1:-1:-1;29514:22:0;29433:111;33896:20;33892:212;;;33973:18;;;33941:24;;;:11;:24;;;;;;;;:50;;34056:28;;;;34014:70;;-1:-1:-1;;;34014:70:0;-1:-1:-1;;;;;;34014:70:0;;;-1:-1:-1;;;;;33941:50:0;;;34014:70;;;;;;;33892:212;33301:829;34166:7;34162:2;-1:-1:-1;;;;;34147:27:0;34156:4;-1:-1:-1;;;;;34147:27:0;;;;;;;;;;;34185:42;32337:1898;;32233:2002;;;:::o;29552:104::-;29621:27;29631:2;29635:8;29621:27;;;;;;;;;;;;:9;:27::i;25114:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;25217:16:0;25225:7;29490:4;29524:12;-1:-1:-1;29514:22:0;29433:111;25217:16;25209:71;;;;-1:-1:-1;;;25209:71:0;;9053:2:1;25209:71:0;;;9035:21:1;9092:2;9072:18;;;9065:30;9131:34;9111:18;;;9104:62;-1:-1:-1;;;9182:18:1;;;9175:40;9232:19;;25209:71:0;8851:406:1;25209:71:0;25338:7;25318:245;25385:31;25419:17;;;:11;:17;;;;;;;;;25385:51;;;;;;;;;-1:-1:-1;;;;;25385:51:0;;;;;-1:-1:-1;;;25385:51:0;;;;;;;;;;;;25459:28;25455:93;;25519:9;25114:537;-1:-1:-1;;;25114:537:0:o;25455:93::-;-1:-1:-1;;;25358:6:0;25318:245;;39317:173;39392:6;;;-1:-1:-1;;;;;39409:17:0;;;-1:-1:-1;;;;;;39409:17:0;;;;;;;39442:40;;39392:6;;;39409:17;39392:6;;39442:40;;39373:16;;39442:40;39362:128;39317:173;:::o;35114:804::-;35269:4;-1:-1:-1;;;;;35290:13:0;;10976:20;11024:8;35286:625;;35326:72;;-1:-1:-1;;;35326:72:0;;-1:-1:-1;;;;;35326:36:0;;;;;:72;;20376:10;;35377:4;;35383:7;;35392:5;;35326:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35326:72:0;;;;;;;;-1:-1:-1;;35326:72:0;;;;;;;;;;;;:::i;:::-;;;35322:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35572:13:0;;35568:273;;35615:61;;-1:-1:-1;;;35615:61:0;;;;;;;:::i;35568:273::-;35791:6;35785:13;35776:6;35772:2;35768:15;35761:38;35322:534;-1:-1:-1;;;;;;35449:55:0;-1:-1:-1;;;35449:55:0;;-1:-1:-1;35442:62:0;;35286:625;-1:-1:-1;35895:4:0;35286:625;35114:804;;;;;;:::o;40324:102::-;40384:13;40413:7;40406:14;;;;;:::i;8128:723::-;8184:13;8405:10;8401:53;;-1:-1:-1;;8432:10:0;;;;;;;;;;;;-1:-1:-1;;;8432:10:0;;;;;8128:723::o;8401:53::-;8479:5;8464:12;8520:78;8527:9;;8520:78;;8553:8;;;;:::i;:::-;;-1:-1:-1;8576:10:0;;-1:-1:-1;8584:2:0;8576:10;;:::i;:::-;;;8520:78;;;8608:19;8640:6;8630:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8630:17:0;;8608:39;;8658:154;8665:10;;8658:154;;8692:11;8702:1;8692:11;;:::i;:::-;;-1:-1:-1;8761:10:0;8769:2;8761:5;:10;:::i;:::-;8748:24;;:2;:24;:::i;:::-;8735:39;;8718:6;8725;8718:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8718:56:0;;;;;;;;-1:-1:-1;8789:11:0;8798:2;8789:11;;:::i;:::-;;;8658:154;;24683:229;24744:7;-1:-1:-1;;;;;24772:19:0;;24764:81;;;;-1:-1:-1;;;24764:81:0;;10631:2:1;24764:81:0;;;10613:21:1;10670:2;10650:18;;;10643:30;10709:34;10689:18;;;10682:62;-1:-1:-1;;;10760:18:1;;;10753:47;10817:19;;24764:81:0;10429:413:1;24764:81:0;-1:-1:-1;;;;;;24871:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;24871:32:0;;-1:-1:-1;;;;;24871:32:0;;24683:229::o;30019:163::-;30142:32;30148:2;30152:8;30162:5;30169:4;30580:20;30603:12;-1:-1:-1;;;;;30634:16:0;;30626:62;;;;-1:-1:-1;;;30626:62:0;;16126:2:1;30626:62:0;;;16108:21:1;16165:2;16145:18;;;16138:30;16204:34;16184:18;;;16177:62;-1:-1:-1;;;16255:18:1;;;16248:31;16296:19;;30626:62:0;15924:397:1;30626:62:0;30707:13;30699:66;;;;-1:-1:-1;;;30699:66:0;;16528:2:1;30699:66:0;;;16510:21:1;16567:2;16547:18;;;16540:30;16606:34;16586:18;;;16579:62;-1:-1:-1;;;16657:18:1;;;16650:38;16705:19;;30699:66:0;16326:404:1;30699:66:0;-1:-1:-1;;;;;31117:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;31117:45:0;;-1:-1:-1;;;;;31117:45:0;;;;;;;;;;31177:50;;;;;;;;;;;;;;31244:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;31294:66:0;;;;-1:-1:-1;;;31344:15:0;31294:66;;;;;;;31244:25;;31429:415;31449:8;31445:1;:12;31429:415;;;31488:38;;31513:12;;-1:-1:-1;;;;;31488:38:0;;;31505:1;;31488:38;;31505:1;;31488:38;31549:4;31545:249;;;31612:59;31643:1;31647:2;31651:12;31665:5;31612:22;:59::i;:::-;31578:196;;;;-1:-1:-1;;;31578:196:0;;;;;;;:::i;:::-;31814:14;;;;;31459:3;31429:415;;;-1:-1:-1;31860:12:0;:27;31911:60;28823:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:257::-;4961:3;4999:5;4993:12;5026:6;5021:3;5014:19;5042:63;5098:6;5091:4;5086:3;5082:14;5075:4;5068:5;5064:16;5042:63;:::i;:::-;5159:2;5138:15;-1:-1:-1;;5134:29:1;5125:39;;;;5166:4;5121:50;;4920:257;-1:-1:-1;;4920:257:1:o;5182:1527::-;5406:3;5444:6;5438:13;5470:4;5483:51;5527:6;5522:3;5517:2;5509:6;5505:15;5483:51;:::i;:::-;5597:13;;5556:16;;;;5619:55;5597:13;5556:16;5641:15;;;5619:55;:::i;:::-;5763:13;;5696:20;;;5736:1;;5823;5845:18;;;;5898;;;;5925:93;;6003:4;5993:8;5989:19;5977:31;;5925:93;6066:2;6056:8;6053:16;6033:18;6030:40;6027:167;;;-1:-1:-1;;;6093:33:1;;6149:4;6146:1;6139:15;6179:4;6100:3;6167:17;6027:167;6210:18;6237:110;;;;6361:1;6356:328;;;;6203:481;;6237:110;-1:-1:-1;;6272:24:1;;6258:39;;6317:20;;;;-1:-1:-1;6237:110:1;;6356:328;18587:1;18580:14;;;18624:4;18611:18;;6451:1;6465:169;6479:8;6476:1;6473:15;6465:169;;;6561:14;;6546:13;;;6539:37;6604:16;;;;6496:10;;6465:169;;;6469:3;;6665:8;6658:5;6654:20;6647:27;;6203:481;-1:-1:-1;6700:3:1;;5182:1527;-1:-1:-1;;;;;;;;;;;5182:1527:1:o;7132:488::-;-1:-1:-1;;;;;7401:15:1;;;7383:34;;7453:15;;7448:2;7433:18;;7426:43;7500:2;7485:18;;7478:34;;;7548:3;7543:2;7528:18;;7521:31;;;7326:4;;7569:45;;7594:19;;7586:6;7569:45;:::i;:::-;7561:53;7132:488;-1:-1:-1;;;;;;7132:488:1:o;7817:219::-;7966:2;7955:9;7948:21;7929:4;7986:44;8026:2;8015:9;8011:18;8003:6;7986:44;:::i;11624:400::-;11826:2;11808:21;;;11865:2;11845:18;;;11838:30;11904:34;11899:2;11884:18;;11877:62;-1:-1:-1;;;11970:2:1;11955:18;;11948:34;12014:3;11999:19;;11624:400::o;12848:356::-;13050:2;13032:21;;;13069:18;;;13062:30;13128:34;13123:2;13108:18;;13101:62;13195:2;13180:18;;12848:356::o;15504:415::-;15706:2;15688:21;;;15745:2;15725:18;;;15718:30;15784:34;15779:2;15764:18;;15757:62;-1:-1:-1;;;15850:2:1;15835:18;;15828:49;15909:3;15894:19;;15504:415::o;18640:128::-;18680:3;18711:1;18707:6;18704:1;18701:13;18698:39;;;18717:18;;:::i;:::-;-1:-1:-1;18753:9:1;;18640:128::o;18773:120::-;18813:1;18839;18829:35;;18844:18;;:::i;:::-;-1:-1:-1;18878:9:1;;18773:120::o;18898:168::-;18938:7;19004:1;19000;18996:6;18992:14;18989:1;18986:21;18981:1;18974:9;18967:17;18963:45;18960:71;;;19011:18;;:::i;:::-;-1:-1:-1;19051:9:1;;18898:168::o;19071:125::-;19111:4;19139:1;19136;19133:8;19130:34;;;19144:18;;:::i;:::-;-1:-1:-1;19181:9:1;;19071:125::o;19201:258::-;19273:1;19283:113;19297:6;19294:1;19291:13;19283:113;;;19373:11;;;19367:18;19354:11;;;19347:39;19319:2;19312:10;19283:113;;;19414:6;19411:1;19408:13;19405:48;;;-1:-1:-1;;19449:1:1;19431:16;;19424:27;19201:258::o;19464:380::-;19543:1;19539:12;;;;19586;;;19607:61;;19661:4;19653:6;19649:17;19639:27;;19607:61;19714:2;19706:6;19703:14;19683:18;19680:38;19677:161;;;19760:10;19755:3;19751:20;19748:1;19741:31;19795:4;19792:1;19785:15;19823:4;19820:1;19813:15;19677:161;;19464:380;;;:::o;19849:135::-;19888:3;-1:-1:-1;;19909:17:1;;19906:43;;;19929:18;;:::i;:::-;-1:-1:-1;19976:1:1;19965:13;;19849:135::o;19989:112::-;20021:1;20047;20037:35;;20052:18;;:::i;:::-;-1:-1:-1;20086:9:1;;19989:112::o;20106:127::-;20167:10;20162:3;20158:20;20155:1;20148:31;20198:4;20195:1;20188:15;20222:4;20219:1;20212:15;20238:127;20299:10;20294:3;20290:20;20287:1;20280:31;20330:4;20327:1;20320:15;20354:4;20351:1;20344:15;20370:127;20431:10;20426:3;20422:20;20419:1;20412:31;20462:4;20459:1;20452:15;20486:4;20483:1;20476:15;20502:127;20563:10;20558:3;20554:20;20551:1;20544:31;20594:4;20591:1;20584:15;20618:4;20615:1;20608:15;20634:131;-1:-1:-1;;;;;;20708:32:1;;20698:43;;20688:71;;20755:1;20752;20745:12

Swarm Source

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