ETH Price: $3,440.72 (+1.45%)
Gas: 5 Gwei

Token

Pacific North West (PNW)
 

Overview

Max Total Supply

1,508 PNW

Holders

1,072

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PNW
0xd9f0e1500805a3c6cdbb72b0bc968bae8995de46
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:
CharitySalmon

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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: node_modules\openzeppelin-solidity\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: node_modules\openzeppelin-solidity\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: node_modules\openzeppelin-solidity\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: node_modules\openzeppelin-solidity\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;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

// File: node_modules\openzeppelin-solidity\contracts\utils\Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

// File: node_modules\openzeppelin-solidity\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: node_modules\openzeppelin-solidity\contracts\token\ERC721\ERC721.sol

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: node_modules\openzeppelin-solidity\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-solidity\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;
    address private _creator;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        _creator = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

// File: openzeppelin-solidity\contracts\token\ERC721\extensions\ERC721Enumerable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts\lib\Counters.sol

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        {
            counter._value = value - 1;
        }
    }
}

pragma solidity ^0.8.0;

contract CharitySalmon is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    address payable private _PaymentAddress = payable(0x1C8FB6C9EEa46Dc78f3CbeA0a3d7013525C9F9D9);

    uint256 private PNW_SPECIAL = 15;
    uint256 private PNW_PUBLIC = 3318;
    uint256 public PNW_MAX = PNW_SPECIAL + PNW_PUBLIC;
    uint256 private PRESALE_PRICE = 0.07 ether;
    uint256 private PUBLIC_PRICE = 0.07 ether;
    uint256 private REVEAL_DELAY = 0 hours;
    uint256 private PRESALE_HOURS = 0 hours;
    uint256 private PURCHASE_LIMIT = 5;
    uint256 private PRESALE_MINT_LIMIT = 5;
    uint256 private PUBLIC_MINT_LIMIT = 5;
    
    mapping(address => bool) private _mappingWhiteList;

    bool private _enableOnChainWhiteList = true;
    mapping(address => uint256) private _mappingPresaleMintCount;
    mapping(address => uint256) private _mappingPublicMintCount;

    uint256 private _activeDateTime = 1643572800; // (GMT): Sunday, January 30, 2022 8:00:00 PM
    
    string private _tokenBaseURI = "";
    string private _revealURI = "";
    
    Counters.Counter private _publicPNW;

    constructor() ERC721("Pacific North West ", "PNW") {}

    function setPaymentAddress(address paymentAddress) external onlyOwner {
        _PaymentAddress = payable(paymentAddress);
    }

    function setActiveDateTime(uint256 activeDateTime, uint256 presaleHours, uint256 revealDelay) external onlyOwner {
        _activeDateTime = activeDateTime;
        REVEAL_DELAY = revealDelay;
        PRESALE_HOURS = presaleHours;
    }

    function setWhiteList(address[] memory whiteListAddress, bool bEnable) external onlyOwner {
        for (uint256 i = 0; i < whiteListAddress.length; i++) {
            _mappingWhiteList[whiteListAddress[i]] = bEnable;
        }
    }

    function isWhiteListed(address addr) public view returns (bool) {
        return _mappingWhiteList[addr];
    }

    function setMintPrice(uint256 presaleMintPrice, uint256 publicMintPrice) external onlyOwner {
        PRESALE_PRICE = presaleMintPrice;
        PUBLIC_PRICE = publicMintPrice;
    }

    function setMaxLimit(uint256 specialLimit, uint256 publicLimit) external onlyOwner {
        PNW_SPECIAL = specialLimit;
        PNW_PUBLIC = publicLimit;
        PNW_MAX = PNW_SPECIAL + PNW_PUBLIC;
    }

    function setPurchaseLimit(uint256 purchaseLimit, uint256 presaleMintLimit, uint256 publicMintLimit) external onlyOwner {
        PURCHASE_LIMIT = purchaseLimit;
        PRESALE_MINT_LIMIT = presaleMintLimit;
        PUBLIC_MINT_LIMIT = publicMintLimit;
    }

    function PRICE() public view returns (uint256) {
        if (block.timestamp < _activeDateTime) {
            return PRESALE_PRICE;
        } else {
            return PUBLIC_PRICE;
        }
    }

    function setRevealURI(string memory revealURI) external onlyOwner {
        _revealURI = revealURI;
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        _tokenBaseURI = baseURI;
    }

    function airdropPublic(address[] memory airdropAddress, uint256 numberOfTokens) external onlyOwner {
        for (uint256 k = 0; k < airdropAddress.length; k++) {
            for (uint256 i = 0; i < numberOfTokens; i++) {
                uint256 tokenId = PNW_SPECIAL + _publicPNW.current();

                if (_publicPNW.current() < PNW_PUBLIC) {
                    _publicPNW.increment();
                    if (!_exists(tokenId)) _safeMint(airdropAddress[k], tokenId);
                }
            }
        }
    }

    function airdropSpecial(address to, uint256 tokenId) external onlyOwner {
        require(!_exists(tokenId), "Token already exist");
        if (!_exists(tokenId)) _safeMint(to, tokenId);
    }

    function mintSpecial(address to) external onlyOwner {
        for (uint256 i = 0; i < PNW_SPECIAL; i++) {
            if (!_exists(i)) _safeMint(to, i);
        }
    }

    function purchase(uint256 numberOfTokens) external payable {
        require(_publicPNW.current() < PNW_PUBLIC,"Purchase would exceed PNW_PUBLIC");

        if (msg.sender != owner()) {
            require(numberOfTokens <= PURCHASE_LIMIT,"Can only mint up to purchase limit");
            require(PRICE() * numberOfTokens <= msg.value,"ETH amount is not sufficient");

            if (block.timestamp < _activeDateTime) {
                if (_enableOnChainWhiteList == true) {
                    require(_mappingWhiteList[msg.sender] == true, "Not registered to WhiteList");   
                }
                _mappingPresaleMintCount[msg.sender] = _mappingPresaleMintCount[msg.sender] + numberOfTokens;
                require(block.timestamp > _activeDateTime - PRESALE_HOURS , "Mint is not activated for presale");
                require(_mappingPresaleMintCount[msg.sender] <= PRESALE_MINT_LIMIT,"Overflow for PRESALE_MINT_LIMIT");
            } else {
                _mappingPublicMintCount[msg.sender] = _mappingPublicMintCount[msg.sender] + numberOfTokens;
                require(_mappingPublicMintCount[msg.sender] <= PUBLIC_MINT_LIMIT,"Overflow for PUBLIC_MINT_LIMIT");
            }

            _PaymentAddress.transfer(msg.value);
        }

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = PNW_SPECIAL + _publicPNW.current();

            if (_publicPNW.current() < PNW_PUBLIC) {
                _publicPNW.increment();
                if (!_exists(tokenId)) _safeMint(msg.sender, tokenId);
            }
        }
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist");

        if (_activeDateTime + REVEAL_DELAY < block.timestamp) {
            return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
        }

        return _revealURI;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"PNW_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"airdropAddress","type":"address[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"airdropPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"airdropSpecial","outputs":[],"stateMutability":"nonpayable","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":[{"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":"addr","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintSpecial","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"activeDateTime","type":"uint256"},{"internalType":"uint256","name":"presaleHours","type":"uint256"},{"internalType":"uint256","name":"revealDelay","type":"uint256"}],"name":"setActiveDateTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"specialLimit","type":"uint256"},{"internalType":"uint256","name":"publicLimit","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presaleMintPrice","type":"uint256"},{"internalType":"uint256","name":"publicMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"purchaseLimit","type":"uint256"},{"internalType":"uint256","name":"presaleMintLimit","type":"uint256"},{"internalType":"uint256","name":"publicMintLimit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealURI","type":"string"}],"name":"setRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whiteListAddress","type":"address[]"},{"internalType":"bool","name":"bEnable","type":"bool"}],"name":"setWhiteList","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600c80546001600160a01b031916731c8fb6c9eea46dc78f3cbea0a3d7013525c9f9d9179055600f600d819055610cf6600e81905562000044916200026a565b600f5566f8b0a10e47000060108190556011556000601281905560138190556005601481905560158190556016556018805460ff191660011790556361f6ee40601b55604080516020810191829052829052620000a591601c9190620001c4565b50604080516020810191829052600090819052620000c691601d91620001c4565b50348015620000d457600080fd5b50604080518082018252601381527f50616369666963204e6f72746820576573742000000000000000000000000000602080830191825283518085019094526003845262504e5760e81b9084015281519192916200013591600091620001c4565b5080516200014b906001906020840190620001c4565b505050600062000160620001c060201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620002ce565b3390565b828054620001d29062000291565b90600052602060002090601f016020900481019282620001f6576000855562000241565b82601f106200021157805160ff191683800117855562000241565b8280016001018555821562000241579182015b828111156200024157825182559160200191906001019062000224565b506200024f92915062000253565b5090565b5b808211156200024f576000815560010162000254565b600082198211156200028c57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002a657607f821691505b60208210811415620002c857634e487b7160e01b600052602260045260246000fd5b50919050565b612a7680620002de6000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a811a37b116100a0578063e43f696e1161006f578063e43f696e146105da578063e985e9c5146105fa578063efef39a114610643578063f2fde38b14610656578063f56beff61461067657600080fd5b8063a811a37b1461055a578063b88d4fde1461057a578063bc7e24241461059a578063c87b56dd146105ba57600080fd5b80638d859f3e116100e75780638d859f3e146104d25780638da5cb5b146104e757806395d89b41146105055780639791e3891461051a578063a22cb4651461053a57600080fd5b8063715018a614610467578063731edc441461047c578063855531951461049c578063856de970146104b257600080fd5b80633ccfd60b1161019b5780635e1e10041161016a5780635e1e1004146103ae5780636352211e146103ce57806363fe5cca146103ee5780636f9170f61461040e57806370a082311461044757600080fd5b80633ccfd60b1461033957806342842e0e1461034e5780634f6ccce71461036e57806355f804b31461038e57600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806318160ddd146102da57806323b872dd146102f95780632f745c591461031957600080fd5b806301ffc9a7146102095780630442bfa81461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b5061022961022436600461258f565b610696565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e61025936600461262b565b6106c1565b005b34801561026c57600080fd5b50610275610714565b60405161023591906127a5565b34801561028e57600080fd5b506102a261029d366004612612565b6107a6565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d53660046124db565b61082e565b3480156102e657600080fd5b506008545b604051908152602001610235565b34801561030557600080fd5b5061025e6103143660046123f9565b610944565b34801561032557600080fd5b506102eb6103343660046124db565b610975565b34801561034557600080fd5b5061025e610a0b565b34801561035a57600080fd5b5061025e6103693660046123f9565b610a7d565b34801561037a57600080fd5b506102eb610389366004612612565b610a98565b34801561039a57600080fd5b5061025e6103a93660046125c9565b610b2b565b3480156103ba57600080fd5b5061025e6103c93660046123a4565b610b7d565b3480156103da57600080fd5b506102a26103e9366004612612565b610bde565b3480156103fa57600080fd5b5061025e6104093660046123a4565b610c55565b34801561041a57600080fd5b506102296104293660046123a4565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561045357600080fd5b506102eb6104623660046123a4565b610cca565b34801561047357600080fd5b5061025e610d51565b34801561048857600080fd5b5061025e61049736600461254a565b610dda565b3480156104a857600080fd5b506102eb600f5481565b3480156104be57600080fd5b5061025e6104cd3660046124db565b610ebc565b3480156104de57600080fd5b506102eb610f5e565b3480156104f357600080fd5b50600a546001600160a01b03166102a2565b34801561051157600080fd5b50610275610f78565b34801561052657600080fd5b5061025e61053536600461264d565b610f87565b34801561054657600080fd5b5061025e6105553660046124b1565b610fd7565b34801561056657600080fd5b5061025e6105753660046125c9565b61109c565b34801561058657600080fd5b5061025e610595366004612435565b6110ee565b3480156105a657600080fd5b5061025e6105b536600461264d565b611126565b3480156105c657600080fd5b506102756105d5366004612612565b611173565b3480156105e657600080fd5b5061025e6105f5366004612505565b61129c565b34801561060657600080fd5b506102296106153660046123c6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61025e610651366004612612565b611342565b34801561066257600080fd5b5061025e6106713660046123a4565b611701565b34801561068257600080fd5b5061025e61069136600461262b565b611801565b60006001600160e01b0319821663780e9d6360e01b14806106bb57506106bb8261185b565b92915050565b600a546001600160a01b03163314806106e45750600b546001600160a01b031633145b6107095760405162461bcd60e51b81526004016107009061280a565b60405180910390fd5b601091909155601155565b6060600080546107239061294f565b80601f016020809104026020016040519081016040528092919081815260200182805461074f9061294f565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b60006107b1826118ab565b6108125760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610700565b506000908152600460205260409020546001600160a01b031690565b600061083982610bde565b9050806001600160a01b0316836001600160a01b031614156108a75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610700565b336001600160a01b03821614806108c357506108c38133610615565b6109355760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610700565b61093f83836118c8565b505050565b61094e3382611936565b61096a5760405162461bcd60e51b81526004016107009061283f565b61093f838383611a20565b600061098083610cca565b82106109e25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610700565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610a2e5750600b546001600160a01b031633145b610a4a5760405162461bcd60e51b81526004016107009061280a565b6040514790339082156108fc029083906000818181858888f19350505050158015610a79573d6000803e3d6000fd5b5050565b61093f838383604051806020016040528060008152506110ee565b6000610aa360085490565b8210610b065760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610700565b60088281548110610b1957610b196129fb565b90600052602060002001549050919050565b600a546001600160a01b0316331480610b4e5750600b546001600160a01b031633145b610b6a5760405162461bcd60e51b81526004016107009061280a565b8051610a7990601c9060208401906121fa565b600a546001600160a01b0316331480610ba05750600b546001600160a01b031633145b610bbc5760405162461bcd60e51b81526004016107009061280a565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806106bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610700565b600a546001600160a01b0316331480610c785750600b546001600160a01b031633145b610c945760405162461bcd60e51b81526004016107009061280a565b60005b600d54811015610a7957610caa816118ab565b610cb857610cb88282611bcb565b80610cc28161298a565b915050610c97565b60006001600160a01b038216610d355760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610700565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610d745750600b546001600160a01b031633145b610d905760405162461bcd60e51b81526004016107009061280a565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610dfd5750600b546001600160a01b031633145b610e195760405162461bcd60e51b81526004016107009061280a565b60005b825181101561093f5760005b82811015610ea9576000610e3b601e5490565b600d54610e4891906128c1565b9050600e54610e56601e5490565b1015610e9657610e66601e611be5565b610e6f816118ab565b610e9657610e96858481518110610e8857610e886129fb565b602002602001015182611bcb565b5080610ea18161298a565b915050610e28565b5080610eb48161298a565b915050610e1c565b600a546001600160a01b0316331480610edf5750600b546001600160a01b031633145b610efb5760405162461bcd60e51b81526004016107009061280a565b610f04816118ab565b15610f475760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88185b1c9958591e48195e1a5cdd606a1b6044820152606401610700565b610f50816118ab565b610a7957610a798282611bcb565b6000601b54421015610f71575060105490565b5060115490565b6060600180546107239061294f565b600a546001600160a01b0316331480610faa5750600b546001600160a01b031633145b610fc65760405162461bcd60e51b81526004016107009061280a565b601b92909255601291909155601355565b6001600160a01b0382163314156110305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610700565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806110bf5750600b546001600160a01b031633145b6110db5760405162461bcd60e51b81526004016107009061280a565b8051610a7990601d9060208401906121fa565b6110f83383611936565b6111145760405162461bcd60e51b81526004016107009061283f565b61112084848484611c02565b50505050565b600a546001600160a01b03163314806111495750600b546001600160a01b031633145b6111655760405162461bcd60e51b81526004016107009061280a565b601492909255601555601655565b606061117e826118ab565b6111c15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610700565b42601254601b546111d291906128c1565b101561120a57601c6111e383611c35565b6040516020016111f49291906126c1565b6040516020818303038152906040529050919050565b601d80546112179061294f565b80601f01602080910402602001604051908101604052809291908181526020018280546112439061294f565b80156112905780601f1061126557610100808354040283529160200191611290565b820191906000526020600020905b81548152906001019060200180831161127357829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806112bf5750600b546001600160a01b031633145b6112db5760405162461bcd60e51b81526004016107009061280a565b60005b825181101561093f5781601760008584815181106112fe576112fe6129fb565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061133a8161298a565b9150506112de565b600e54601e54106113955760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c642065786365656420504e575f5055424c49436044820152606401610700565b600a546001600160a01b03163314611696576014548111156114045760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b6064820152608401610700565b348161140e610f5e565b61141891906128ed565b11156114665760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610700565b601b544210156115dd5760185460ff161515600114156114e4573360009081526017602052604090205460ff1615156001146114e45760405162461bcd60e51b815260206004820152601b60248201527f4e6f74207265676973746572656420746f2057686974654c69737400000000006044820152606401610700565b336000908152601960205260409020546114ff9082906128c1565b33600090815260196020526040902055601354601b5461151f919061290c565b42116115775760405162461bcd60e51b815260206004820152602160248201527f4d696e74206973206e6f742061637469766174656420666f722070726573616c6044820152606560f81b6064820152608401610700565b6015543360009081526019602052604090205411156115d85760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f722050524553414c455f4d494e545f4c494d4954006044820152606401610700565b61165b565b336000908152601a60205260409020546115f89082906128c1565b336000908152601a60205260409020819055601654101561165b5760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d495400006044820152606401610700565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611694573d6000803e3d6000fd5b505b60005b81811015610a795760006116ac601e5490565b600d546116b991906128c1565b9050600e546116c7601e5490565b10156116ee576116d7601e611be5565b6116e0816118ab565b6116ee576116ee3382611bcb565b50806116f98161298a565b915050611699565b600a546001600160a01b03163314806117245750600b546001600160a01b031633145b6117405760405162461bcd60e51b81526004016107009061280a565b6001600160a01b0381166117a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610700565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314806118245750600b546001600160a01b031633145b6118405760405162461bcd60e51b81526004016107009061280a565b600d829055600e81905561185481836128c1565b600f555050565b60006001600160e01b031982166380ac58cd60e01b148061188c57506001600160e01b03198216635b5e139f60e01b145b806106bb57506301ffc9a760e01b6001600160e01b03198316146106bb565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118fd82610bde565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611941826118ab565b6119a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610700565b60006119ad83610bde565b9050806001600160a01b0316846001600160a01b031614806119e85750836001600160a01b03166119dd846107a6565b6001600160a01b0316145b80611a1857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a3382610bde565b6001600160a01b031614611a9b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610700565b6001600160a01b038216611afd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610700565b611b08838383611d33565b611b136000826118c8565b6001600160a01b0383166000908152600360205260408120805460019290611b3c90849061290c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b6a9084906128c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a79828260405180602001604052806000815250611deb565b6001816000016000828254611bfa91906128c1565b909155505050565b611c0d848484611a20565b611c1984848484611e1e565b6111205760405162461bcd60e51b8152600401610700906127b8565b606081611c595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c835780611c6d8161298a565b9150611c7c9050600a836128d9565b9150611c5d565b60008167ffffffffffffffff811115611c9e57611c9e612a11565b6040519080825280601f01601f191660200182016040528015611cc8576020820181803683370190505b5090505b8415611a1857611cdd60018361290c565b9150611cea600a866129a5565b611cf59060306128c1565b60f81b818381518110611d0a57611d0a6129fb565b60200101906001600160f81b031916908160001a905350611d2c600a866128d9565b9450611ccc565b6001600160a01b038316611d8e57611d8981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611db1565b816001600160a01b0316836001600160a01b031614611db157611db18382611f2b565b6001600160a01b038216611dc85761093f81611fc8565b826001600160a01b0316826001600160a01b03161461093f5761093f8282612077565b611df583836120bb565b611e026000848484611e1e565b61093f5760405162461bcd60e51b8152600401610700906127b8565b60006001600160a01b0384163b15611f2057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e62903390899088908890600401612768565b602060405180830381600087803b158015611e7c57600080fd5b505af1925050508015611eac575060408051601f3d908101601f19168201909252611ea9918101906125ac565b60015b611f06573d808015611eda576040519150601f19603f3d011682016040523d82523d6000602084013e611edf565b606091505b508051611efe5760405162461bcd60e51b8152600401610700906127b8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a18565b506001949350505050565b60006001611f3884610cca565b611f42919061290c565b600083815260076020526040902054909150808214611f95576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fda9060019061290c565b60008381526009602052604081205460088054939450909284908110612002576120026129fb565b906000526020600020015490508060088381548110612023576120236129fb565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061205b5761205b6129e5565b6001900381819060005260206000200160009055905550505050565b600061208283610cca565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121115760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610700565b61211a816118ab565b156121675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610700565b61217360008383611d33565b6001600160a01b038216600090815260036020526040812080546001929061219c9084906128c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122069061294f565b90600052602060002090601f016020900481019282612228576000855561226e565b82601f1061224157805160ff191683800117855561226e565b8280016001018555821561226e579182015b8281111561226e578251825591602001919060010190612253565b5061227a92915061227e565b5090565b5b8082111561227a576000815560010161227f565b600067ffffffffffffffff8311156122ad576122ad612a11565b6122c0601f8401601f1916602001612890565b90508281528383830111156122d457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461230257600080fd5b919050565b600082601f83011261231857600080fd5b8135602067ffffffffffffffff82111561233457612334612a11565b8160051b612343828201612890565b83815282810190868401838801850189101561235e57600080fd5b600093505b8584101561238857612374816122eb565b835260019390930192918401918401612363565b50979650505050505050565b8035801515811461230257600080fd5b6000602082840312156123b657600080fd5b6123bf826122eb565b9392505050565b600080604083850312156123d957600080fd5b6123e2836122eb565b91506123f0602084016122eb565b90509250929050565b60008060006060848603121561240e57600080fd5b612417846122eb565b9250612425602085016122eb565b9150604084013590509250925092565b6000806000806080858703121561244b57600080fd5b612454856122eb565b9350612462602086016122eb565b925060408501359150606085013567ffffffffffffffff81111561248557600080fd5b8501601f8101871361249657600080fd5b6124a587823560208401612293565b91505092959194509250565b600080604083850312156124c457600080fd5b6124cd836122eb565b91506123f060208401612394565b600080604083850312156124ee57600080fd5b6124f7836122eb565b946020939093013593505050565b6000806040838503121561251857600080fd5b823567ffffffffffffffff81111561252f57600080fd5b61253b85828601612307565b9250506123f060208401612394565b6000806040838503121561255d57600080fd5b823567ffffffffffffffff81111561257457600080fd5b61258085828601612307565b95602094909401359450505050565b6000602082840312156125a157600080fd5b81356123bf81612a27565b6000602082840312156125be57600080fd5b81516123bf81612a27565b6000602082840312156125db57600080fd5b813567ffffffffffffffff8111156125f257600080fd5b8201601f8101841361260357600080fd5b611a1884823560208401612293565b60006020828403121561262457600080fd5b5035919050565b6000806040838503121561263e57600080fd5b50508035926020909101359150565b60008060006060848603121561266257600080fd5b505081359360208301359350604090920135919050565b60008151808452612691816020860160208601612923565b601f01601f19169290920160200192915050565b600081516126b7818560208601612923565b9290920192915050565b600080845481600182811c9150808316806126dd57607f831692505b60208084108214156126fd57634e487b7160e01b86526022600452602486fd5b81801561271157600181146127225761274f565b60ff1986168952848901965061274f565b60008b81526020902060005b868110156127475781548b82015290850190830161272e565b505084890196505b50505050505061275f81856126a5565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061279b90830184612679565b9695505050505050565b6020815260006123bf6020830184612679565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128b9576128b9612a11565b604052919050565b600082198211156128d4576128d46129b9565b500190565b6000826128e8576128e86129cf565b500490565b6000816000190483118215151615612907576129076129b9565b500290565b60008282101561291e5761291e6129b9565b500390565b60005b8381101561293e578181015183820152602001612926565b838111156111205750506000910152565b600181811c9082168061296357607f821691505b6020821081141561298457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561299e5761299e6129b9565b5060010190565b6000826129b4576129b46129cf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612a3d57600080fd5b5056fea2646970667358221220d2d80a3c7c1047fdd918f963603843c209b2d6e500596ae4e6bf42c8cf47b87864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a811a37b116100a0578063e43f696e1161006f578063e43f696e146105da578063e985e9c5146105fa578063efef39a114610643578063f2fde38b14610656578063f56beff61461067657600080fd5b8063a811a37b1461055a578063b88d4fde1461057a578063bc7e24241461059a578063c87b56dd146105ba57600080fd5b80638d859f3e116100e75780638d859f3e146104d25780638da5cb5b146104e757806395d89b41146105055780639791e3891461051a578063a22cb4651461053a57600080fd5b8063715018a614610467578063731edc441461047c578063855531951461049c578063856de970146104b257600080fd5b80633ccfd60b1161019b5780635e1e10041161016a5780635e1e1004146103ae5780636352211e146103ce57806363fe5cca146103ee5780636f9170f61461040e57806370a082311461044757600080fd5b80633ccfd60b1461033957806342842e0e1461034e5780634f6ccce71461036e57806355f804b31461038e57600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806318160ddd146102da57806323b872dd146102f95780632f745c591461031957600080fd5b806301ffc9a7146102095780630442bfa81461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b5061022961022436600461258f565b610696565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e61025936600461262b565b6106c1565b005b34801561026c57600080fd5b50610275610714565b60405161023591906127a5565b34801561028e57600080fd5b506102a261029d366004612612565b6107a6565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d53660046124db565b61082e565b3480156102e657600080fd5b506008545b604051908152602001610235565b34801561030557600080fd5b5061025e6103143660046123f9565b610944565b34801561032557600080fd5b506102eb6103343660046124db565b610975565b34801561034557600080fd5b5061025e610a0b565b34801561035a57600080fd5b5061025e6103693660046123f9565b610a7d565b34801561037a57600080fd5b506102eb610389366004612612565b610a98565b34801561039a57600080fd5b5061025e6103a93660046125c9565b610b2b565b3480156103ba57600080fd5b5061025e6103c93660046123a4565b610b7d565b3480156103da57600080fd5b506102a26103e9366004612612565b610bde565b3480156103fa57600080fd5b5061025e6104093660046123a4565b610c55565b34801561041a57600080fd5b506102296104293660046123a4565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561045357600080fd5b506102eb6104623660046123a4565b610cca565b34801561047357600080fd5b5061025e610d51565b34801561048857600080fd5b5061025e61049736600461254a565b610dda565b3480156104a857600080fd5b506102eb600f5481565b3480156104be57600080fd5b5061025e6104cd3660046124db565b610ebc565b3480156104de57600080fd5b506102eb610f5e565b3480156104f357600080fd5b50600a546001600160a01b03166102a2565b34801561051157600080fd5b50610275610f78565b34801561052657600080fd5b5061025e61053536600461264d565b610f87565b34801561054657600080fd5b5061025e6105553660046124b1565b610fd7565b34801561056657600080fd5b5061025e6105753660046125c9565b61109c565b34801561058657600080fd5b5061025e610595366004612435565b6110ee565b3480156105a657600080fd5b5061025e6105b536600461264d565b611126565b3480156105c657600080fd5b506102756105d5366004612612565b611173565b3480156105e657600080fd5b5061025e6105f5366004612505565b61129c565b34801561060657600080fd5b506102296106153660046123c6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61025e610651366004612612565b611342565b34801561066257600080fd5b5061025e6106713660046123a4565b611701565b34801561068257600080fd5b5061025e61069136600461262b565b611801565b60006001600160e01b0319821663780e9d6360e01b14806106bb57506106bb8261185b565b92915050565b600a546001600160a01b03163314806106e45750600b546001600160a01b031633145b6107095760405162461bcd60e51b81526004016107009061280a565b60405180910390fd5b601091909155601155565b6060600080546107239061294f565b80601f016020809104026020016040519081016040528092919081815260200182805461074f9061294f565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b60006107b1826118ab565b6108125760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610700565b506000908152600460205260409020546001600160a01b031690565b600061083982610bde565b9050806001600160a01b0316836001600160a01b031614156108a75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610700565b336001600160a01b03821614806108c357506108c38133610615565b6109355760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610700565b61093f83836118c8565b505050565b61094e3382611936565b61096a5760405162461bcd60e51b81526004016107009061283f565b61093f838383611a20565b600061098083610cca565b82106109e25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610700565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610a2e5750600b546001600160a01b031633145b610a4a5760405162461bcd60e51b81526004016107009061280a565b6040514790339082156108fc029083906000818181858888f19350505050158015610a79573d6000803e3d6000fd5b5050565b61093f838383604051806020016040528060008152506110ee565b6000610aa360085490565b8210610b065760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610700565b60088281548110610b1957610b196129fb565b90600052602060002001549050919050565b600a546001600160a01b0316331480610b4e5750600b546001600160a01b031633145b610b6a5760405162461bcd60e51b81526004016107009061280a565b8051610a7990601c9060208401906121fa565b600a546001600160a01b0316331480610ba05750600b546001600160a01b031633145b610bbc5760405162461bcd60e51b81526004016107009061280a565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806106bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610700565b600a546001600160a01b0316331480610c785750600b546001600160a01b031633145b610c945760405162461bcd60e51b81526004016107009061280a565b60005b600d54811015610a7957610caa816118ab565b610cb857610cb88282611bcb565b80610cc28161298a565b915050610c97565b60006001600160a01b038216610d355760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610700565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610d745750600b546001600160a01b031633145b610d905760405162461bcd60e51b81526004016107009061280a565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610dfd5750600b546001600160a01b031633145b610e195760405162461bcd60e51b81526004016107009061280a565b60005b825181101561093f5760005b82811015610ea9576000610e3b601e5490565b600d54610e4891906128c1565b9050600e54610e56601e5490565b1015610e9657610e66601e611be5565b610e6f816118ab565b610e9657610e96858481518110610e8857610e886129fb565b602002602001015182611bcb565b5080610ea18161298a565b915050610e28565b5080610eb48161298a565b915050610e1c565b600a546001600160a01b0316331480610edf5750600b546001600160a01b031633145b610efb5760405162461bcd60e51b81526004016107009061280a565b610f04816118ab565b15610f475760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88185b1c9958591e48195e1a5cdd606a1b6044820152606401610700565b610f50816118ab565b610a7957610a798282611bcb565b6000601b54421015610f71575060105490565b5060115490565b6060600180546107239061294f565b600a546001600160a01b0316331480610faa5750600b546001600160a01b031633145b610fc65760405162461bcd60e51b81526004016107009061280a565b601b92909255601291909155601355565b6001600160a01b0382163314156110305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610700565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806110bf5750600b546001600160a01b031633145b6110db5760405162461bcd60e51b81526004016107009061280a565b8051610a7990601d9060208401906121fa565b6110f83383611936565b6111145760405162461bcd60e51b81526004016107009061283f565b61112084848484611c02565b50505050565b600a546001600160a01b03163314806111495750600b546001600160a01b031633145b6111655760405162461bcd60e51b81526004016107009061280a565b601492909255601555601655565b606061117e826118ab565b6111c15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610700565b42601254601b546111d291906128c1565b101561120a57601c6111e383611c35565b6040516020016111f49291906126c1565b6040516020818303038152906040529050919050565b601d80546112179061294f565b80601f01602080910402602001604051908101604052809291908181526020018280546112439061294f565b80156112905780601f1061126557610100808354040283529160200191611290565b820191906000526020600020905b81548152906001019060200180831161127357829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806112bf5750600b546001600160a01b031633145b6112db5760405162461bcd60e51b81526004016107009061280a565b60005b825181101561093f5781601760008584815181106112fe576112fe6129fb565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061133a8161298a565b9150506112de565b600e54601e54106113955760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c642065786365656420504e575f5055424c49436044820152606401610700565b600a546001600160a01b03163314611696576014548111156114045760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b6064820152608401610700565b348161140e610f5e565b61141891906128ed565b11156114665760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610700565b601b544210156115dd5760185460ff161515600114156114e4573360009081526017602052604090205460ff1615156001146114e45760405162461bcd60e51b815260206004820152601b60248201527f4e6f74207265676973746572656420746f2057686974654c69737400000000006044820152606401610700565b336000908152601960205260409020546114ff9082906128c1565b33600090815260196020526040902055601354601b5461151f919061290c565b42116115775760405162461bcd60e51b815260206004820152602160248201527f4d696e74206973206e6f742061637469766174656420666f722070726573616c6044820152606560f81b6064820152608401610700565b6015543360009081526019602052604090205411156115d85760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f722050524553414c455f4d494e545f4c494d4954006044820152606401610700565b61165b565b336000908152601a60205260409020546115f89082906128c1565b336000908152601a60205260409020819055601654101561165b5760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d495400006044820152606401610700565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611694573d6000803e3d6000fd5b505b60005b81811015610a795760006116ac601e5490565b600d546116b991906128c1565b9050600e546116c7601e5490565b10156116ee576116d7601e611be5565b6116e0816118ab565b6116ee576116ee3382611bcb565b50806116f98161298a565b915050611699565b600a546001600160a01b03163314806117245750600b546001600160a01b031633145b6117405760405162461bcd60e51b81526004016107009061280a565b6001600160a01b0381166117a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610700565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314806118245750600b546001600160a01b031633145b6118405760405162461bcd60e51b81526004016107009061280a565b600d829055600e81905561185481836128c1565b600f555050565b60006001600160e01b031982166380ac58cd60e01b148061188c57506001600160e01b03198216635b5e139f60e01b145b806106bb57506301ffc9a760e01b6001600160e01b03198316146106bb565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118fd82610bde565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611941826118ab565b6119a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610700565b60006119ad83610bde565b9050806001600160a01b0316846001600160a01b031614806119e85750836001600160a01b03166119dd846107a6565b6001600160a01b0316145b80611a1857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a3382610bde565b6001600160a01b031614611a9b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610700565b6001600160a01b038216611afd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610700565b611b08838383611d33565b611b136000826118c8565b6001600160a01b0383166000908152600360205260408120805460019290611b3c90849061290c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b6a9084906128c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a79828260405180602001604052806000815250611deb565b6001816000016000828254611bfa91906128c1565b909155505050565b611c0d848484611a20565b611c1984848484611e1e565b6111205760405162461bcd60e51b8152600401610700906127b8565b606081611c595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c835780611c6d8161298a565b9150611c7c9050600a836128d9565b9150611c5d565b60008167ffffffffffffffff811115611c9e57611c9e612a11565b6040519080825280601f01601f191660200182016040528015611cc8576020820181803683370190505b5090505b8415611a1857611cdd60018361290c565b9150611cea600a866129a5565b611cf59060306128c1565b60f81b818381518110611d0a57611d0a6129fb565b60200101906001600160f81b031916908160001a905350611d2c600a866128d9565b9450611ccc565b6001600160a01b038316611d8e57611d8981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611db1565b816001600160a01b0316836001600160a01b031614611db157611db18382611f2b565b6001600160a01b038216611dc85761093f81611fc8565b826001600160a01b0316826001600160a01b03161461093f5761093f8282612077565b611df583836120bb565b611e026000848484611e1e565b61093f5760405162461bcd60e51b8152600401610700906127b8565b60006001600160a01b0384163b15611f2057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e62903390899088908890600401612768565b602060405180830381600087803b158015611e7c57600080fd5b505af1925050508015611eac575060408051601f3d908101601f19168201909252611ea9918101906125ac565b60015b611f06573d808015611eda576040519150601f19603f3d011682016040523d82523d6000602084013e611edf565b606091505b508051611efe5760405162461bcd60e51b8152600401610700906127b8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a18565b506001949350505050565b60006001611f3884610cca565b611f42919061290c565b600083815260076020526040902054909150808214611f95576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fda9060019061290c565b60008381526009602052604081205460088054939450909284908110612002576120026129fb565b906000526020600020015490508060088381548110612023576120236129fb565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061205b5761205b6129e5565b6001900381819060005260206000200160009055905550505050565b600061208283610cca565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121115760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610700565b61211a816118ab565b156121675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610700565b61217360008383611d33565b6001600160a01b038216600090815260036020526040812080546001929061219c9084906128c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122069061294f565b90600052602060002090601f016020900481019282612228576000855561226e565b82601f1061224157805160ff191683800117855561226e565b8280016001018555821561226e579182015b8281111561226e578251825591602001919060010190612253565b5061227a92915061227e565b5090565b5b8082111561227a576000815560010161227f565b600067ffffffffffffffff8311156122ad576122ad612a11565b6122c0601f8401601f1916602001612890565b90508281528383830111156122d457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461230257600080fd5b919050565b600082601f83011261231857600080fd5b8135602067ffffffffffffffff82111561233457612334612a11565b8160051b612343828201612890565b83815282810190868401838801850189101561235e57600080fd5b600093505b8584101561238857612374816122eb565b835260019390930192918401918401612363565b50979650505050505050565b8035801515811461230257600080fd5b6000602082840312156123b657600080fd5b6123bf826122eb565b9392505050565b600080604083850312156123d957600080fd5b6123e2836122eb565b91506123f0602084016122eb565b90509250929050565b60008060006060848603121561240e57600080fd5b612417846122eb565b9250612425602085016122eb565b9150604084013590509250925092565b6000806000806080858703121561244b57600080fd5b612454856122eb565b9350612462602086016122eb565b925060408501359150606085013567ffffffffffffffff81111561248557600080fd5b8501601f8101871361249657600080fd5b6124a587823560208401612293565b91505092959194509250565b600080604083850312156124c457600080fd5b6124cd836122eb565b91506123f060208401612394565b600080604083850312156124ee57600080fd5b6124f7836122eb565b946020939093013593505050565b6000806040838503121561251857600080fd5b823567ffffffffffffffff81111561252f57600080fd5b61253b85828601612307565b9250506123f060208401612394565b6000806040838503121561255d57600080fd5b823567ffffffffffffffff81111561257457600080fd5b61258085828601612307565b95602094909401359450505050565b6000602082840312156125a157600080fd5b81356123bf81612a27565b6000602082840312156125be57600080fd5b81516123bf81612a27565b6000602082840312156125db57600080fd5b813567ffffffffffffffff8111156125f257600080fd5b8201601f8101841361260357600080fd5b611a1884823560208401612293565b60006020828403121561262457600080fd5b5035919050565b6000806040838503121561263e57600080fd5b50508035926020909101359150565b60008060006060848603121561266257600080fd5b505081359360208301359350604090920135919050565b60008151808452612691816020860160208601612923565b601f01601f19169290920160200192915050565b600081516126b7818560208601612923565b9290920192915050565b600080845481600182811c9150808316806126dd57607f831692505b60208084108214156126fd57634e487b7160e01b86526022600452602486fd5b81801561271157600181146127225761274f565b60ff1986168952848901965061274f565b60008b81526020902060005b868110156127475781548b82015290850190830161272e565b505084890196505b50505050505061275f81856126a5565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061279b90830184612679565b9695505050505050565b6020815260006123bf6020830184612679565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128b9576128b9612a11565b604052919050565b600082198211156128d4576128d46129b9565b500190565b6000826128e8576128e86129cf565b500490565b6000816000190483118215151615612907576129076129b9565b500290565b60008282101561291e5761291e6129b9565b500390565b60005b8381101561293e578181015183820152602001612926565b838111156111205750506000910152565b600181811c9082168061296357607f821691505b6020821081141561298457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561299e5761299e6129b9565b5060010190565b6000826129b4576129b46129cf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612a3d57600080fd5b5056fea2646970667358221220d2d80a3c7c1047fdd918f963603843c209b2d6e500596ae4e6bf42c8cf47b87864736f6c63430008070033

Deployed Bytecode Sourcemap

46971:6147:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39256:300;;;;;;;;;;-1:-1:-1;39256:300:0;;;;;:::i;:::-;;:::i;:::-;;;8537:14:1;;8530:22;8512:41;;8500:2;8485:18;39256:300:0;;;;;;;;48954:184;;;;;;;;;;-1:-1:-1;48954:184:0;;;;;:::i;:::-;;:::i;:::-;;22885:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24467:308::-;;;;;;;;;;-1:-1:-1;24467:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7835:32:1;;;7817:51;;7805:2;7790:18;24467:308:0;7671:203:1;23990:411:0;;;;;;;;;;-1:-1:-1;23990:411:0;;;;;:::i;:::-;;:::i;40059:113::-;;;;;;;;;;-1:-1:-1;40147:10:0;:17;40059:113;;;19020:25:1;;;19008:2;18993:18;40059:113:0;18874:177:1;25526:376:0;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;39640:343::-;;;;;;;;;;-1:-1:-1;39640:343:0;;;;;:::i;:::-;;:::i;52968:147::-;;;;;;;;;;;;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;40249:320::-;;;;;;;;;;-1:-1:-1;40249:320:0;;;;;:::i;:::-;;:::i;49958:104::-;;;;;;;;;;-1:-1:-1;49958:104:0;;;;;:::i;:::-;;:::i;48202:130::-;;;;;;;;;;-1:-1:-1;48202:130:0;;;;;:::i;:::-;;:::i;22492:326::-;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;50816:172::-;;;;;;;;;;-1:-1:-1;50816:172:0;;;;;:::i;:::-;;:::i;48833:113::-;;;;;;;;;;-1:-1:-1;48833:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;48915:23:0;48891:4;48915:23;;;:17;:23;;;;;;;;;48833:113;22135:295;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;37735:148::-;;;;;;;;;;;;;:::i;50070:534::-;;;;;;;;;;-1:-1:-1;50070:534:0;;;;;:::i;:::-;;:::i;47287:49::-;;;;;;;;;;;;;;;;50612:196;;;;;;;;;;-1:-1:-1;50612:196:0;;;;;:::i;:::-;;:::i;49632:203::-;;;;;;;;;;;;;:::i;37019:87::-;;;;;;;;;;-1:-1:-1;37092:6:0;;-1:-1:-1;;;;;37092:6:0;37019:87;;23054:104;;;;;;;;;;;;;:::i;48340:240::-;;;;;;;;;;-1:-1:-1;48340:240:0;;;;;:::i;:::-;;:::i;24847:327::-;;;;;;;;;;-1:-1:-1;24847:327:0;;;;;:::i;:::-;;:::i;49843:107::-;;;;;;;;;;-1:-1:-1;49843:107:0;;;;;:::i;:::-;;:::i;26229:365::-;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;49362:262::-;;;;;;;;;;-1:-1:-1;49362:262:0;;;;;:::i;:::-;;:::i;52610:350::-;;;;;;;;;;-1:-1:-1;52610:350:0;;;;;:::i;:::-;;:::i;48588:237::-;;;;;;;;;;-1:-1:-1;48588:237:0;;;;;:::i;:::-;;:::i;25245:214::-;;;;;;;;;;-1:-1:-1;25245:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25245:214;50996:1606;;;;;;:::i;:::-;;:::i;38038:281::-;;;;;;;;;;-1:-1:-1;38038:281:0;;;;;:::i;:::-;;:::i;49146:208::-;;;;;;;;;;-1:-1:-1;49146:208:0;;;;;:::i;:::-;;:::i;39256:300::-;39403:4;-1:-1:-1;;;;;;39445:50:0;;-1:-1:-1;;;39445:50:0;;:103;;;39512:36;39536:11;39512:23;:36::i;:::-;39425:123;39256:300;-1:-1:-1;;39256:300:0:o;48954:184::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;;;;;;;;;49057:13:::1;:32:::0;;;;49100:12:::1;:30:::0;48954:184::o;22885:100::-;22939:13;22972:5;22965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22885:100;:::o;24467:308::-;24588:7;24635:16;24643:7;24635;:16::i;:::-;24613:110;;;;-1:-1:-1;;;24613:110:0;;15900:2:1;24613:110:0;;;15882:21:1;15939:2;15919:18;;;15912:30;15978:34;15958:18;;;15951:62;-1:-1:-1;;;16029:18:1;;;16022:42;16081:19;;24613:110:0;15698:408:1;24613:110:0;-1:-1:-1;24743:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24743:24:0;;24467:308::o;23990:411::-;24071:13;24087:23;24102:7;24087:14;:23::i;:::-;24071:39;;24135:5;-1:-1:-1;;;;;24129:11:0;:2;-1:-1:-1;;;;;24129:11:0;;;24121:57;;;;-1:-1:-1;;;24121:57:0;;17843:2:1;24121:57:0;;;17825:21:1;17882:2;17862:18;;;17855:30;17921:34;17901:18;;;17894:62;-1:-1:-1;;;17972:18:1;;;17965:31;18013:19;;24121:57:0;17641:397:1;24121:57:0;16975:10;-1:-1:-1;;;;;24213:21:0;;;;:62;;-1:-1:-1;24238:37:0;24255:5;16975:10;25245:214;:::i;24238:37::-;24191:168;;;;-1:-1:-1;;;24191:168:0;;13934:2:1;24191:168:0;;;13916:21:1;13973:2;13953:18;;;13946:30;14012:34;13992:18;;;13985:62;14083:26;14063:18;;;14056:54;14127:19;;24191:168:0;13732:420:1;24191:168:0;24372:21;24381:2;24385:7;24372:8;:21::i;:::-;24060:341;23990:411;;:::o;25526:376::-;25735:41;16975:10;25768:7;25735:18;:41::i;:::-;25713:140;;;;-1:-1:-1;;;25713:140:0;;;;;;;:::i;:::-;25866:28;25876:4;25882:2;25886:7;25866:9;:28::i;39640:343::-;39782:7;39837:23;39854:5;39837:16;:23::i;:::-;39829:5;:31;39807:124;;;;-1:-1:-1;;;39807:124:0;;9711:2:1;39807:124:0;;;9693:21:1;9750:2;9730:18;;;9723:30;9789:34;9769:18;;;9762:62;-1:-1:-1;;;9840:18:1;;;9833:41;9891:19;;39807:124:0;9509:407:1;39807:124:0;-1:-1:-1;;;;;;39949:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39640:343::o;52968:147::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;53070:37:::1;::::0;53036:21:::1;::::0;53078:10:::1;::::0;53070:37;::::1;;;::::0;53036:21;;53018:15:::1;53070:37:::0;53018:15;53070:37;53036:21;53078:10;53070:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53007:108;52968:147::o:0;25973:185::-;26111:39;26128:4;26134:2;26138:7;26111:39;;;;;;;;;;;;:16;:39::i;40249:320::-;40369:7;40424:30;40147:10;:17;;40059:113;40424:30;40416:5;:38;40394:132;;;;-1:-1:-1;;;40394:132:0;;18663:2:1;40394:132:0;;;18645:21:1;18702:2;18682:18;;;18675:30;18741:34;18721:18;;;18714:62;-1:-1:-1;;;18792:18:1;;;18785:42;18844:19;;40394:132:0;18461:408:1;40394:132:0;40544:10;40555:5;40544:17;;;;;;;;:::i;:::-;;;;;;;;;40537:24;;40249:320;;;:::o;49958:104::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;50031:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;48202:130::-:0;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48283:15:::1;:41:::0;;-1:-1:-1;;;;;;48283:41:0::1;-1:-1:-1::0;;;;;48283:41:0;;;::::1;::::0;;;::::1;::::0;;48202:130::o;22492:326::-;22609:7;22650:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22650:16:0;22699:19;22677:110;;;;-1:-1:-1;;;22677:110:0;;14770:2:1;22677:110:0;;;14752:21:1;14809:2;14789:18;;;14782:30;14848:34;14828:18;;;14821:62;-1:-1:-1;;;14899:18:1;;;14892:39;14948:19;;22677:110:0;14568:405:1;50816:172:0;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;50884:9:::1;50879:102;50903:11;;50899:1;:15;50879:102;;;50941:10;50949:1;50941:7;:10::i;:::-;50936:33;;50953:16;50963:2;50967:1;50953:9;:16::i;:::-;50916:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50879:102;;22135:295:::0;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;14359:2:1;22277:111:0;;;14341:21:1;14398:2;14378:18;;;14371:30;14437:34;14417:18;;;14410:62;-1:-1:-1;;;14488:18:1;;;14481:40;14538:19;;22277:111:0;14157:406:1;22277:111:0;-1:-1:-1;;;;;;22406:16:0;;;;;:9;:16;;;;;;;22135:295::o;37735:148::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;37826:6:::1;::::0;37805:40:::1;::::0;37842:1:::1;::::0;-1:-1:-1;;;;;37826:6:0::1;::::0;37805:40:::1;::::0;37842:1;;37805:40:::1;37856:6;:19:::0;;-1:-1:-1;;;;;;37856:19:0::1;::::0;;37735:148::o;50070:534::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;50185:9:::1;50180:417;50204:14;:21;50200:1;:25;50180:417;;;50252:9;50247:339;50271:14;50267:1;:18;50247:339;;;50311:15;50343:20;:10;46557:14:::0;;46465:114;50343:20:::1;50329:11;;:34;;;;:::i;:::-;50311:52;;50411:10;;50388:20;:10;46557:14:::0;;46465:114;50388:20:::1;:33;50384:187;;;50446:22;:10;:20;:22::i;:::-;50496:16;50504:7;50496;:16::i;:::-;50491:60;;50514:37;50524:14;50539:1;50524:17;;;;;;;;:::i;:::-;;;;;;;50543:7;50514:9;:37::i;:::-;-1:-1:-1::0;50287:3:0;::::1;::::0;::::1;:::i;:::-;;;;50247:339;;;-1:-1:-1::0;50227:3:0;::::1;::::0;::::1;:::i;:::-;;;;50180:417;;50612:196:::0;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;50704:16:::1;50712:7;50704;:16::i;:::-;50703:17;50695:49;;;::::0;-1:-1:-1;;;50695:49:0;;11306:2:1;50695:49:0::1;::::0;::::1;11288:21:1::0;11345:2;11325:18;;;11318:30;-1:-1:-1;;;11364:18:1;;;11357:49;11423:18;;50695:49:0::1;11104:343:1::0;50695:49:0::1;50760:16;50768:7;50760;:16::i;:::-;50755:45;;50778:22;50788:2;50792:7;50778:9;:22::i;49632:203::-:0;49670:7;49712:15;;49694;:33;49690:138;;;-1:-1:-1;49751:13:0;;;49632:203::o;49690:138::-;-1:-1:-1;49804:12:0;;;49632:203::o;23054:104::-;23110:13;23143:7;23136:14;;;;;:::i;48340:240::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48464:15:::1;:32:::0;;;;48507:12:::1;:26:::0;;;;48544:13:::1;:28:::0;48340:240::o;24847:327::-;-1:-1:-1;;;;;24982:24:0;;16975:10;24982:24;;24974:62;;;;-1:-1:-1;;;24974:62:0;;12059:2:1;24974:62:0;;;12041:21:1;12098:2;12078:18;;;12071:30;12137:27;12117:18;;;12110:55;12182:18;;24974:62:0;11857:349:1;24974:62:0;16975:10;25049:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25049:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25049:53:0;;;;;;;;;;25118:48;;8512:41:1;;;25049:42:0;;16975:10;25118:48;;8485:18:1;25118:48:0;;;;;;;24847:327;;:::o;49843:107::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49920:22;;::::1;::::0;:10:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26229:365::-:0;26418:41;16975:10;26451:7;26418:18;:41::i;:::-;26396:140;;;;-1:-1:-1;;;26396:140:0;;;;;;;:::i;:::-;26547:39;26561:4;26567:2;26571:7;26580:5;26547:13;:39::i;:::-;26229:365;;;;:::o;49362:262::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49492:14:::1;:30:::0;;;;49533:18:::1;:37:::0;49581:17:::1;:35:::0;49362:262::o;52610:350::-;52683:13;52722:16;52730:7;52722;:16::i;:::-;52714:49;;;;-1:-1:-1;;;52714:49:0;;12413:2:1;52714:49:0;;;12395:21:1;12452:2;12432:18;;;12425:30;-1:-1:-1;;;12471:18:1;;;12464:50;12531:18;;52714:49:0;12211:344:1;52714:49:0;52813:15;52798:12;;52780:15;;:30;;;;:::i;:::-;:48;52776:147;;;52876:13;52891:18;:7;:16;:18::i;:::-;52859:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52845:66;;52610:350;;;:::o;52776:147::-;52942:10;52935:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52610:350;;;:::o;48588:237::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48694:9:::1;48689:129;48713:16;:23;48709:1;:27;48689:129;;;48799:7;48758:17;:38;48776:16;48793:1;48776:19;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;48758:38:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;48758:38:0;:48;;-1:-1:-1;;48758:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48738:3;::::1;::::0;::::1;:::i;:::-;;;;48689:129;;50996:1606:::0;51097:10;;51074;46557:14;51074:33;51066:77;;;;-1:-1:-1;;;51066:77:0;;9350:2:1;51066:77:0;;;9332:21:1;;;9369:18;;;9362:30;9428:34;9408:18;;;9401:62;9480:18;;51066:77:0;9148:356:1;51066:77:0;37092:6;;-1:-1:-1;;;;;37092:6:0;51160:10;:21;51156:1119;;51224:14;;51206;:32;;51198:78;;;;-1:-1:-1;;;51198:78:0;;17084:2:1;51198:78:0;;;17066:21:1;17123:2;17103:18;;;17096:30;17162:34;17142:18;;;17135:62;-1:-1:-1;;;17213:18:1;;;17206:32;17255:19;;51198:78:0;16882:398:1;51198:78:0;51327:9;51309:14;51299:7;:5;:7::i;:::-;:24;;;;:::i;:::-;:37;;51291:77;;;;-1:-1:-1;;;51291:77:0;;12762:2:1;51291:77:0;;;12744:21:1;12801:2;12781:18;;;12774:30;12840;12820:18;;;12813:58;12888:18;;51291:77:0;12560:352:1;51291:77:0;51407:15;;51389;:33;51385:827;;;51447:23;;;;:31;;:23;:31;51443:160;;;51529:10;51511:29;;;;:17;:29;;;;;;;;:37;;:29;:37;51503:77;;;;-1:-1:-1;;;51503:77:0;;17487:2:1;51503:77:0;;;17469:21:1;17526:2;17506:18;;;17499:30;17565:29;17545:18;;;17538:57;17612:18;;51503:77:0;17285:351:1;51503:77:0;51685:10;51660:36;;;;:24;:36;;;;;;:53;;51699:14;;51660:53;:::i;:::-;51646:10;51621:36;;;;:24;:36;;;;;:92;51776:13;;51758:15;;:31;;51776:13;51758:31;:::i;:::-;51740:15;:49;51732:96;;;;-1:-1:-1;;;51732:96:0;;13532:2:1;51732:96:0;;;13514:21:1;13571:2;13551:18;;;13544:30;13610:34;13590:18;;;13583:62;-1:-1:-1;;;13661:18:1;;;13654:31;13702:19;;51732:96:0;13330:397:1;51732:96:0;51895:18;;51880:10;51855:36;;;;:24;:36;;;;;;:58;;51847:101;;;;-1:-1:-1;;;51847:101:0;;8990:2:1;51847:101:0;;;8972:21:1;9029:2;9009:18;;;9002:30;9068:33;9048:18;;;9041:61;9119:18;;51847:101:0;8788:355:1;51847:101:0;51385:827;;;52051:10;52027:35;;;;:23;:35;;;;;;:52;;52065:14;;52027:52;:::i;:::-;52013:10;51989:35;;;;:23;:35;;;;;:90;;;52145:17;;-1:-1:-1;52106:56:0;52098:98;;;;-1:-1:-1;;;52098:98:0;;15180:2:1;52098:98:0;;;15162:21:1;15219:2;15199:18;;;15192:30;15258:32;15238:18;;;15231:60;15308:18;;52098:98:0;14978:354:1;52098:98:0;52228:15;;:35;;-1:-1:-1;;;;;52228:15:0;;;;52253:9;52228:35;;;;;:15;:35;:15;:35;52253:9;52228:15;:35;;;;;;;;;;;;;;;;;;;;;51156:1119;52292:9;52287:308;52311:14;52307:1;:18;52287:308;;;52347:15;52379:20;:10;46557:14;;46465:114;52379:20;52365:11;;:34;;;;:::i;:::-;52347:52;;52443:10;;52420:20;:10;46557:14;;46465:114;52420:20;:33;52416:168;;;52474:22;:10;:20;:22::i;:::-;52520:16;52528:7;52520;:16::i;:::-;52515:53;;52538:30;52548:10;52560:7;52538:9;:30::i;:::-;-1:-1:-1;52327:3:0;;;;:::i;:::-;;;;52287:308;;38038:281;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38141:22:0;::::1;38119:110;;;::::0;-1:-1:-1;;;38119:110:0;;10542:2:1;38119:110:0::1;::::0;::::1;10524:21:1::0;10581:2;10561:18;;;10554:30;10620:34;10600:18;;;10593:62;-1:-1:-1;;;10671:18:1;;;10664:36;10717:19;;38119:110:0::1;10340:402:1::0;38119:110:0::1;38266:6;::::0;38245:38:::1;::::0;-1:-1:-1;;;;;38245:38:0;;::::1;::::0;38266:6:::1;::::0;38245:38:::1;::::0;38266:6:::1;::::0;38245:38:::1;38294:6;:17:::0;;-1:-1:-1;;;;;;38294:17:0::1;-1:-1:-1::0;;;;;38294:17:0;;;::::1;::::0;;;::::1;::::0;;38038:281::o;49146:208::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49240:11:::1;:26:::0;;;49277:10:::1;:24:::0;;;49322::::1;49290:11:::0;49254:12;49322:24:::1;:::i;:::-;49312:7;:34:::0;-1:-1:-1;;49146:208:0:o;21716:355::-;21863:4;-1:-1:-1;;;;;;21905:40:0;;-1:-1:-1;;;21905:40:0;;:105;;-1:-1:-1;;;;;;;21962:48:0;;-1:-1:-1;;;21962:48:0;21905:105;:158;;;-1:-1:-1;;;;;;;;;;20326:40:0;;;22027:36;20167:207;28141:127;28206:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;:30;;;28141:127::o;32264:174::-;32339:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32339:29:0;-1:-1:-1;;;;;32339:29:0;;;;;;;;:24;;32393:23;32339:24;32393:14;:23::i;:::-;-1:-1:-1;;;;;32384:46:0;;;;;;;;;;;32264:174;;:::o;28435:452::-;28564:4;28608:16;28616:7;28608;:16::i;:::-;28586:110;;;;-1:-1:-1;;;28586:110:0;;13119:2:1;28586:110:0;;;13101:21:1;13158:2;13138:18;;;13131:30;13197:34;13177:18;;;13170:62;-1:-1:-1;;;13248:18:1;;;13241:42;13300:19;;28586:110:0;12917:408:1;28586:110:0;28707:13;28723:23;28738:7;28723:14;:23::i;:::-;28707:39;;28776:5;-1:-1:-1;;;;;28765:16:0;:7;-1:-1:-1;;;;;28765:16:0;;:64;;;;28822:7;-1:-1:-1;;;;;28798:31:0;:20;28810:7;28798:11;:20::i;:::-;-1:-1:-1;;;;;28798:31:0;;28765:64;:113;;;-1:-1:-1;;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28846:32;28757:122;28435:452;-1:-1:-1;;;;28435:452:0:o;31531:615::-;31704:4;-1:-1:-1;;;;;31677:31:0;:23;31692:7;31677:14;:23::i;:::-;-1:-1:-1;;;;;31677:31:0;;31655:122;;;;-1:-1:-1;;;31655:122:0;;16674:2:1;31655:122:0;;;16656:21:1;16713:2;16693:18;;;16686:30;16752:34;16732:18;;;16725:62;-1:-1:-1;;;16803:18:1;;;16796:39;16852:19;;31655:122:0;16472:405:1;31655:122:0;-1:-1:-1;;;;;31796:16:0;;31788:65;;;;-1:-1:-1;;;31788:65:0;;11654:2:1;31788:65:0;;;11636:21:1;11693:2;11673:18;;;11666:30;11732:34;11712:18;;;11705:62;-1:-1:-1;;;11783:18:1;;;11776:34;11827:19;;31788:65:0;11452:400:1;31788:65:0;31866:39;31887:4;31893:2;31897:7;31866:20;:39::i;:::-;31970:29;31987:1;31991:7;31970:8;:29::i;:::-;-1:-1:-1;;;;;32012:15:0;;;;;;:9;:15;;;;;:20;;32031:1;;32012:15;:20;;32031:1;;32012:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32043:13:0;;;;;;:9;:13;;;;;:18;;32060:1;;32043:13;:18;;32060:1;;32043:18;:::i;:::-;;;;-1:-1:-1;;32072:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32072:21:0;-1:-1:-1;;;;;32072:21:0;;;;;;;;;32111:27;;32072:16;;32111:27;;;;;;;31531:615;;;:::o;29229:110::-;29305:26;29315:2;29319:7;29305:26;;;;;;;;;;;;:9;:26::i;46587:117::-;46684:1;46666:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;46587:117:0:o;27476:352::-;27633:28;27643:4;27649:2;27653:7;27633:9;:28::i;:::-;27694:48;27717:4;27723:2;27727:7;27736:5;27694:22;:48::i;:::-;27672:148;;;;-1:-1:-1;;;27672:148:0;;;;;;;:::i;17567:723::-;17623:13;17844:10;17840:53;;-1:-1:-1;;17871:10:0;;;;;;;;;;;;-1:-1:-1;;;17871:10:0;;;;;17567:723::o;17840:53::-;17918:5;17903:12;17959:78;17966:9;;17959:78;;17992:8;;;;:::i;:::-;;-1:-1:-1;18015:10:0;;-1:-1:-1;18023:2:0;18015:10;;:::i;:::-;;;17959:78;;;18047:19;18079:6;18069:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18069:17:0;;18047:39;;18097:154;18104:10;;18097:154;;18131:11;18141:1;18131:11;;:::i;:::-;;-1:-1:-1;18200:10:0;18208:2;18200:5;:10;:::i;:::-;18187:24;;:2;:24;:::i;:::-;18174:39;;18157:6;18164;18157:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18157:56:0;;;;;;;;-1:-1:-1;18228:11:0;18237:2;18228:11;;:::i;:::-;;;18097:154;;41182:589;-1:-1:-1;;;;;41388:18:0;;41384:187;;41423:40;41455:7;42598:10;:17;;42571:24;;;;:15;:24;;;;;:44;;;42626:24;;;;;;;;;;;;42494:164;41423:40;41384:187;;;41493:2;-1:-1:-1;;;;;41485:10:0;:4;-1:-1:-1;;;;;41485:10:0;;41481:90;;41512:47;41545:4;41551:7;41512:32;:47::i;:::-;-1:-1:-1;;;;;41585:16:0;;41581:183;;41618:45;41655:7;41618:36;:45::i;41581:183::-;41691:4;-1:-1:-1;;;;;41685:10:0;:2;-1:-1:-1;;;;;41685:10:0;;41681:83;;41712:40;41740:2;41744:7;41712:27;:40::i;29566:321::-;29696:18;29702:2;29706:7;29696:5;:18::i;:::-;29747:54;29778:1;29782:2;29786:7;29795:5;29747:22;:54::i;:::-;29725:154;;;;-1:-1:-1;;;29725:154:0;;;;;;;:::i;33003:1053::-;33158:4;-1:-1:-1;;;;;33179:13:0;;8674:20;8722:8;33175:874;;33232:175;;-1:-1:-1;;;33232:175:0;;-1:-1:-1;;;;;33232:36:0;;;;;:175;;16975:10;;33326:4;;33353:7;;33383:5;;33232:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33232:175:0;;;;;;;;-1:-1:-1;;33232:175:0;;;;;;;;;;;;:::i;:::-;;;33211:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33594:13:0;;33590:389;;33637:108;;-1:-1:-1;;;33637:108:0;;;;;;;:::i;33590:389::-;33929:6;33923:13;33914:6;33910:2;33906:15;33899:38;33211:783;-1:-1:-1;;;;;;33471:55:0;-1:-1:-1;;;33471:55:0;;-1:-1:-1;33464:62:0;;33175:874;-1:-1:-1;34033:4:0;33003:1053;;;;;;:::o;43285:1002::-;43565:22;43615:1;43590:22;43607:4;43590:16;:22::i;:::-;:26;;;;:::i;:::-;43627:18;43648:26;;;:17;:26;;;;;;43565:51;;-1:-1:-1;43781:28:0;;;43777:328;;-1:-1:-1;;;;;43848:18:0;;43826:19;43848:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43899:30;;;;;;:44;;;44016:30;;:17;:30;;;;;:43;;;43777:328;-1:-1:-1;44201:26:0;;;;:17;:26;;;;;;;;44194:33;;;-1:-1:-1;;;;;44245:18:0;;;;;:12;:18;;;;;:34;;;;;;;44238:41;43285:1002::o;44582:1079::-;44860:10;:17;44835:22;;44860:21;;44880:1;;44860:21;:::i;:::-;44892:18;44913:24;;;:15;:24;;;;;;45286:10;:26;;44835:46;;-1:-1:-1;44913:24:0;;44835:46;;45286:26;;;;;;:::i;:::-;;;;;;;;;45264:48;;45350:11;45325:10;45336;45325:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45430:28;;;:15;:28;;;;;;;:41;;;45602:24;;;;;45595:31;45637:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44653:1008;;;44582:1079;:::o;42072:221::-;42157:14;42174:20;42191:2;42174:16;:20::i;:::-;-1:-1:-1;;;;;42205:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42250:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42072:221:0:o;30223:382::-;-1:-1:-1;;;;;30303:16:0;;30295:61;;;;-1:-1:-1;;;30295:61:0;;15539:2:1;30295:61:0;;;15521:21:1;;;15558:18;;;15551:30;15617:34;15597:18;;;15590:62;15669:18;;30295:61:0;15337:356:1;30295:61:0;30376:16;30384:7;30376;:16::i;:::-;30375:17;30367:58;;;;-1:-1:-1;;;30367:58:0;;10949:2:1;30367:58:0;;;10931:21:1;10988:2;10968:18;;;10961:30;11027;11007:18;;;11000:58;11075:18;;30367:58:0;10747:352:1;30367:58:0;30438:45;30467:1;30471:2;30475:7;30438:20;:45::i;:::-;-1:-1:-1;;;;;30496:13:0;;;;;;:9;:13;;;;;:18;;30513:1;;30496:13;:18;;30513:1;;30496:18;:::i;:::-;;;;-1:-1:-1;;30525:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30525:21:0;-1:-1:-1;;;;;30525:21:0;;;;;;;;30564:33;;30525:16;;;30564:33;;30525:16;;30564:33;30223:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:729::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;813:18;809:2;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:169;1148:2;1145:1;1142:9;1134:169;;;1205:23;1224:3;1205:23;:::i;:::-;1193:36;;1166:1;1159:9;;;;;1249:12;;;;1281;;1134:169;;;-1:-1:-1;1321:5:1;603:729;-1:-1:-1;;;;;;;603:729:1:o;1337:160::-;1402:20;;1458:13;;1451:21;1441:32;;1431:60;;1487:1;1484;1477:12;1502:186;1561:6;1614:2;1602:9;1593:7;1589:23;1585:32;1582:52;;;1630:1;1627;1620:12;1582:52;1653:29;1672:9;1653:29;:::i;:::-;1643:39;1502:186;-1:-1:-1;;;1502:186:1:o;1693:260::-;1761:6;1769;1822:2;1810:9;1801:7;1797:23;1793:32;1790:52;;;1838:1;1835;1828:12;1790:52;1861:29;1880:9;1861:29;:::i;:::-;1851:39;;1909:38;1943:2;1932:9;1928:18;1909:38;:::i;:::-;1899:48;;1693:260;;;;;:::o;1958:328::-;2035:6;2043;2051;2104:2;2092:9;2083:7;2079:23;2075:32;2072:52;;;2120:1;2117;2110:12;2072:52;2143:29;2162:9;2143:29;:::i;:::-;2133:39;;2191:38;2225:2;2214:9;2210:18;2191:38;:::i;:::-;2181:48;;2276:2;2265:9;2261:18;2248:32;2238:42;;1958:328;;;;;:::o;2291:666::-;2386:6;2394;2402;2410;2463:3;2451:9;2442:7;2438:23;2434:33;2431:53;;;2480:1;2477;2470:12;2431:53;2503:29;2522:9;2503:29;:::i;:::-;2493:39;;2551:38;2585:2;2574:9;2570:18;2551:38;:::i;:::-;2541:48;;2636:2;2625:9;2621:18;2608:32;2598:42;;2691:2;2680:9;2676:18;2663:32;2718:18;2710:6;2707:30;2704:50;;;2750:1;2747;2740:12;2704:50;2773:22;;2826:4;2818:13;;2814:27;-1:-1:-1;2804:55:1;;2855:1;2852;2845:12;2804:55;2878:73;2943:7;2938:2;2925:16;2920:2;2916;2912:11;2878:73;:::i;:::-;2868:83;;;2291:666;;;;;;;:::o;2962:254::-;3027:6;3035;3088:2;3076:9;3067:7;3063:23;3059:32;3056:52;;;3104:1;3101;3094:12;3056:52;3127:29;3146:9;3127:29;:::i;:::-;3117:39;;3175:35;3206:2;3195:9;3191:18;3175:35;:::i;3221:254::-;3289:6;3297;3350:2;3338:9;3329:7;3325:23;3321:32;3318:52;;;3366:1;3363;3356:12;3318:52;3389:29;3408:9;3389:29;:::i;:::-;3379:39;3465:2;3450:18;;;;3437:32;;-1:-1:-1;;;3221:254:1:o;3480:416::-;3570:6;3578;3631:2;3619:9;3610:7;3606:23;3602:32;3599:52;;;3647:1;3644;3637:12;3599:52;3687:9;3674:23;3720:18;3712:6;3709:30;3706:50;;;3752:1;3749;3742:12;3706:50;3775:61;3828:7;3819:6;3808:9;3804:22;3775:61;:::i;:::-;3765:71;;;3855:35;3886:2;3875:9;3871:18;3855:35;:::i;3901:416::-;3994:6;4002;4055:2;4043:9;4034:7;4030:23;4026:32;4023:52;;;4071:1;4068;4061:12;4023:52;4111:9;4098:23;4144:18;4136:6;4133:30;4130:50;;;4176:1;4173;4166:12;4130:50;4199:61;4252:7;4243:6;4232:9;4228:22;4199:61;:::i;:::-;4189:71;4307:2;4292:18;;;;4279:32;;-1:-1:-1;;;;3901:416:1:o;4322:245::-;4380:6;4433:2;4421:9;4412:7;4408:23;4404:32;4401:52;;;4449:1;4446;4439:12;4401:52;4488:9;4475:23;4507:30;4531:5;4507:30;:::i;4572:249::-;4641:6;4694:2;4682:9;4673:7;4669:23;4665:32;4662:52;;;4710:1;4707;4700:12;4662:52;4742:9;4736:16;4761:30;4785:5;4761:30;:::i;4826:450::-;4895:6;4948:2;4936:9;4927:7;4923:23;4919:32;4916:52;;;4964:1;4961;4954:12;4916:52;5004:9;4991:23;5037:18;5029:6;5026:30;5023:50;;;5069:1;5066;5059:12;5023:50;5092:22;;5145:4;5137:13;;5133:27;-1:-1:-1;5123:55:1;;5174:1;5171;5164:12;5123:55;5197:73;5262:7;5257:2;5244:16;5239:2;5235;5231:11;5197:73;:::i;5281:180::-;5340:6;5393:2;5381:9;5372:7;5368:23;5364:32;5361:52;;;5409:1;5406;5399:12;5361:52;-1:-1:-1;5432:23:1;;5281:180;-1:-1:-1;5281:180:1:o;5466:248::-;5534:6;5542;5595:2;5583:9;5574:7;5570:23;5566:32;5563:52;;;5611:1;5608;5601:12;5563:52;-1:-1:-1;;5634:23:1;;;5704:2;5689:18;;;5676:32;;-1:-1:-1;5466:248:1:o;5719:316::-;5796:6;5804;5812;5865:2;5853:9;5844:7;5840:23;5836:32;5833:52;;;5881:1;5878;5871:12;5833:52;-1:-1:-1;;5904:23:1;;;5974:2;5959:18;;5946:32;;-1:-1:-1;6025:2:1;6010:18;;;5997:32;;5719:316;-1:-1:-1;5719:316:1:o;6040:257::-;6081:3;6119:5;6113:12;6146:6;6141:3;6134:19;6162:63;6218:6;6211:4;6206:3;6202:14;6195:4;6188:5;6184:16;6162:63;:::i;:::-;6279:2;6258:15;-1:-1:-1;;6254:29:1;6245:39;;;;6286:4;6241:50;;6040:257;-1:-1:-1;;6040:257:1:o;6302:185::-;6344:3;6382:5;6376:12;6397:52;6442:6;6437:3;6430:4;6423:5;6419:16;6397:52;:::i;:::-;6465:16;;;;;6302:185;-1:-1:-1;;6302:185:1:o;6492:1174::-;6668:3;6697:1;6730:6;6724:13;6760:3;6782:1;6810:9;6806:2;6802:18;6792:28;;6870:2;6859:9;6855:18;6892;6882:61;;6936:4;6928:6;6924:17;6914:27;;6882:61;6962:2;7010;7002:6;6999:14;6979:18;6976:38;6973:165;;;-1:-1:-1;;;7037:33:1;;7093:4;7090:1;7083:15;7123:4;7044:3;7111:17;6973:165;7154:18;7181:104;;;;7299:1;7294:320;;;;7147:467;;7181:104;-1:-1:-1;;7214:24:1;;7202:37;;7259:16;;;;-1:-1:-1;7181:104:1;;7294:320;19409:1;19402:14;;;19446:4;19433:18;;7389:1;7403:165;7417:6;7414:1;7411:13;7403:165;;;7495:14;;7482:11;;;7475:35;7538:16;;;;7432:10;;7403:165;;;7407:3;;7597:6;7592:3;7588:16;7581:23;;7147:467;;;;;;;7630:30;7656:3;7648:6;7630:30;:::i;:::-;7623:37;6492:1174;-1:-1:-1;;;;;6492:1174:1:o;7879:488::-;-1:-1:-1;;;;;8148:15:1;;;8130:34;;8200:15;;8195:2;8180:18;;8173:43;8247:2;8232:18;;8225:34;;;8295:3;8290:2;8275:18;;8268:31;;;8073:4;;8316:45;;8341:19;;8333:6;8316:45;:::i;:::-;8308:53;7879:488;-1:-1:-1;;;;;;7879:488:1:o;8564:219::-;8713:2;8702:9;8695:21;8676:4;8733:44;8773:2;8762:9;8758:18;8750:6;8733:44;:::i;9921:414::-;10123:2;10105:21;;;10162:2;10142:18;;;10135:30;10201:34;10196:2;10181:18;;10174:62;-1:-1:-1;;;10267:2:1;10252:18;;10245:48;10325:3;10310:19;;9921:414::o;16111:356::-;16313:2;16295:21;;;16332:18;;;16325:30;16391:34;16386:2;16371:18;;16364:62;16458:2;16443:18;;16111:356::o;18043:413::-;18245:2;18227:21;;;18284:2;18264:18;;;18257:30;18323:34;18318:2;18303:18;;18296:62;-1:-1:-1;;;18389:2:1;18374:18;;18367:47;18446:3;18431:19;;18043:413::o;19056:275::-;19127:2;19121:9;19192:2;19173:13;;-1:-1:-1;;19169:27:1;19157:40;;19227:18;19212:34;;19248:22;;;19209:62;19206:88;;;19274:18;;:::i;:::-;19310:2;19303:22;19056:275;;-1:-1:-1;19056:275:1:o;19462:128::-;19502:3;19533:1;19529:6;19526:1;19523:13;19520:39;;;19539:18;;:::i;:::-;-1:-1:-1;19575:9:1;;19462:128::o;19595:120::-;19635:1;19661;19651:35;;19666:18;;:::i;:::-;-1:-1:-1;19700:9:1;;19595:120::o;19720:168::-;19760:7;19826:1;19822;19818:6;19814:14;19811:1;19808:21;19803:1;19796:9;19789:17;19785:45;19782:71;;;19833:18;;:::i;:::-;-1:-1:-1;19873:9:1;;19720:168::o;19893:125::-;19933:4;19961:1;19958;19955:8;19952:34;;;19966:18;;:::i;:::-;-1:-1:-1;20003:9:1;;19893:125::o;20023:258::-;20095:1;20105:113;20119:6;20116:1;20113:13;20105:113;;;20195:11;;;20189:18;20176:11;;;20169:39;20141:2;20134:10;20105:113;;;20236:6;20233:1;20230:13;20227:48;;;-1:-1:-1;;20271:1:1;20253:16;;20246:27;20023:258::o;20286:380::-;20365:1;20361:12;;;;20408;;;20429:61;;20483:4;20475:6;20471:17;20461:27;;20429:61;20536:2;20528:6;20525:14;20505:18;20502:38;20499:161;;;20582:10;20577:3;20573:20;20570:1;20563:31;20617:4;20614:1;20607:15;20645:4;20642:1;20635:15;20499:161;;20286:380;;;:::o;20671:135::-;20710:3;-1:-1:-1;;20731:17:1;;20728:43;;;20751:18;;:::i;:::-;-1:-1:-1;20798:1:1;20787:13;;20671:135::o;20811:112::-;20843:1;20869;20859:35;;20874:18;;:::i;:::-;-1:-1:-1;20908:9:1;;20811:112::o;20928:127::-;20989:10;20984:3;20980:20;20977:1;20970:31;21020:4;21017:1;21010:15;21044:4;21041:1;21034:15;21060:127;21121:10;21116:3;21112:20;21109:1;21102:31;21152:4;21149:1;21142:15;21176:4;21173:1;21166:15;21192:127;21253:10;21248:3;21244:20;21241:1;21234:31;21284:4;21281:1;21274:15;21308:4;21305:1;21298:15;21324:127;21385:10;21380:3;21376:20;21373:1;21366:31;21416:4;21413:1;21406:15;21440:4;21437:1;21430:15;21456:127;21517:10;21512:3;21508:20;21505:1;21498:31;21548:4;21545:1;21538:15;21572:4;21569:1;21562:15;21588:131;-1:-1:-1;;;;;;21662:32:1;;21652:43;;21642:71;;21709:1;21706;21699:12;21642:71;21588:131;:::o

Swarm Source

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