ETH Price: $3,441.56 (-1.04%)
Gas: 5 Gwei

Token

Warrior Mfers (WM)
 

Overview

Max Total Supply

3,949 WM

Holders

277

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
1nine.eth
Balance
7 WM
0x938497fc61d9b9a6bfbf26961cea801d196ee03c
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:
WarriorMfers

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.11;

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from, 
        address indexed to, 
        uint256 indexed tokenId
    );

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

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

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

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

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

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

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

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

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

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

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

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

interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    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` and `to` are never both zero.
     *
     * 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 {}
}


library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) 
        internal 
        pure 
        returns (bool, uint256) 
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}



contract WarriorMfers is ERC721, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;
    using SafeMath for uint256;
    using SafeMath for uint8;

    uint256 public constant MAX_SUPPLY = 6500;
    uint256 public constant MAX_MINT_PER_TX = 20;
    uint256 public constant MAX_MINT_PER_PRESALE = 1;
    uint256 public MINT_PRICE_PUBLIC = 0.015 ether;
    uint256 public PRE_MINT_PRICE = 0.0 ether;

    uint256 public totalSupply = 0;

    bool public saleStarted = false;
    bool public preSaleStarted = false;
    bool public revealed = false;

    string public baseExtension = ".json";
    string public baseURI;
    string public notRevealedURI;

    // Merkle Tree Root
    bytes32 private _merkleRoot;

    mapping(address => uint256) balanceOfAddress;

    constructor(
        string memory _initBaseURI,
        string memory _initNotRevealedURI
    ) ERC721("Warrior Mfers", "WM") {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedURI);
    }

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

    function airdrop(uint256 _count, address _account) external onlyOwner {
        require(totalSupply + _count <= MAX_SUPPLY, "max airdrop limit exceeded");
        for (uint256 i = 1; i <= _count; i++) {
            _safeMint(_account, totalSupply + i);
        }
        totalSupply += _count;
    }

    
    function _leaf(address account) private pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    
    function verifyWhitelist(bytes32 leaf, bytes32[] memory proof)
        private
        view
        returns (bool)
    {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash < proofElement) {
                computedHash = keccak256(
                    abi.encodePacked(computedHash, proofElement)
                );
            } else {
                computedHash = keccak256(
                    abi.encodePacked(proofElement, computedHash)
                );
            }
        }

        return computedHash == _merkleRoot;
    }

   
    function whitelistMint(uint256 _count, bytes32[] memory _proof)
        external
        payable
    {
        require(preSaleStarted, "premint not started yet");
        require(!paused(), "contract paused");
        require(
            verifyWhitelist(_leaf(msg.sender), _proof) == true,
            "invalid address"
        );

        require(
            _count > 0 && balanceOfAddress[msg.sender] + _count <= MAX_MINT_PER_PRESALE,
            "max mint per trx exceeded"
        );
        require(totalSupply + _count <= MAX_SUPPLY, "max supply reached");

        if (msg.sender != owner()) {
            require(msg.value >= PRE_MINT_PRICE * _count);
        }

        for (uint256 i = 1; i <= _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
        totalSupply += _count;
        balanceOfAddress[msg.sender] += _count;
    }

    
    function mint(uint256 _count) public payable {
        require(saleStarted, "public mint not started yet");
        require(!paused(), "contract paused");
        require(
            _count > 0 && _count <= MAX_MINT_PER_TX,
            "max mint per trx exceeded"
        );
        require(totalSupply + _count <= MAX_SUPPLY, "max supply reached");

        if (msg.sender != owner()) {
            require(msg.value >= MINT_PRICE_PUBLIC * _count);
        }

        for (uint256 i = 1; i <= _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
        totalSupply += _count;
    }

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

        string memory currentBaseURI = _baseURI();
        if (revealed == false) {

            return notRevealedURI;
        }
        else {
            currentBaseURI = _baseURI();

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

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

    function setSaleStarted(bool _hasStarted) external onlyOwner {
        require(saleStarted != _hasStarted, "main sale start already");
        saleStarted = _hasStarted;
    }


    function setPreSaleStarted(bool _hasStarted) external onlyOwner {
        require(preSaleStarted != _hasStarted, "presale started already");
        preSaleStarted = _hasStarted;
    }

    function setMintPrice(uint256 newMintPrice) public onlyOwner {
        MINT_PRICE_PUBLIC = newMintPrice;
    }
    function setPreMintPrice(uint256 newMintPrice) public onlyOwner {
        PRE_MINT_PRICE = newMintPrice;
    }

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

    function reveal() public onlyOwner {
        revealed = true;
    }

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

    function setMerkleRoot(bytes32 _merkleRootValue)
        external
        onlyOwner
        returns (bytes32)
    {
        _merkleRoot = _merkleRootValue;
        return _merkleRoot;
    }

    function pause() external onlyOwner {
        require(!paused(), "contract already paused");
        _pause();
    }

    function unpause() external onlyOwner {
        require(paused(), "contract already unpaused");
        _unpause();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRE_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_account","type":"address"}],"name":"airdrop","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootValue","type":"bytes32"}],"name":"setMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setPreMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasStarted","type":"bool"}],"name":"setPreSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasStarted","type":"bool"}],"name":"setSaleStarted","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":"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266354a6ba7a1800060085560006009556000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000b792919062000446565b50348015620000c557600080fd5b5060405162005745380380620057458339818101604052810190620000eb919062000693565b6040518060400160405280600d81526020017f57617272696f72204d66657273000000000000000000000000000000000000008152506040518060400160405280600281526020017f574d00000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016f92919062000446565b5080600190805190602001906200018892919062000446565b505050620001ab6200019f620001f860201b60201c565b6200020060201b60201c565b6000600660146101000a81548160ff0219169083151502179055506001600781905550620001df82620002c660201b60201c565b620001f0816200037160201b60201c565b505062000800565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002d6620001f860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002fc6200041c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000355576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034c9062000779565b60405180910390fd5b80600d90805190602001906200036d92919062000446565b5050565b62000381620001f860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003a76200041c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000400576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f79062000779565b60405180910390fd5b80600e90805190602001906200041892919062000446565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200045490620007ca565b90600052602060002090601f016020900481019282620004785760008555620004c4565b82601f106200049357805160ff1916838001178555620004c4565b82800160010185558215620004c4579182015b82811115620004c3578251825591602001919060010190620004a6565b5b509050620004d39190620004d7565b5090565b5b80821115620004f2576000816000905550600101620004d8565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200055f8262000514565b810181811067ffffffffffffffff8211171562000581576200058062000525565b5b80604052505050565b600062000596620004f6565b9050620005a4828262000554565b919050565b600067ffffffffffffffff821115620005c757620005c662000525565b5b620005d28262000514565b9050602081019050919050565b60005b83811015620005ff578082015181840152602081019050620005e2565b838111156200060f576000848401525b50505050565b60006200062c6200062684620005a9565b6200058a565b9050828152602081018484840111156200064b576200064a6200050f565b5b62000658848285620005df565b509392505050565b600082601f8301126200067857620006776200050a565b5b81516200068a84826020860162000615565b91505092915050565b60008060408385031215620006ad57620006ac62000500565b5b600083015167ffffffffffffffff811115620006ce57620006cd62000505565b5b620006dc8582860162000660565b925050602083015167ffffffffffffffff8111156200070057620006ff62000505565b5b6200070e8582860162000660565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200076160208362000718565b91506200076e8262000729565b602082019050919050565b60006020820190508181036000830152620007948162000752565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007e357607f821691505b60208210811415620007fa57620007f96200079b565b5b50919050565b614f3580620008106000396000f3fe60806040526004361061025c5760003560e01c80637cb6475911610144578063c3151fed116100b6578063e59ee0141161007a578063e59ee01414610870578063e985e9c514610899578063f2587a55146108d6578063f2c4ce1e14610901578063f2fde38b1461092a578063f4a0a528146109535761025c565b8063c3151fed14610798578063c6682862146107c3578063c87b56dd146107ee578063d2cab0561461082b578063da6405e1146108475761025c565b8063a0712d6811610108578063a0712d68146106c1578063a22cb465146106dd578063a475b5dd14610706578063a854ffba1461071d578063b88d4fde14610746578063bc63f02e1461076f5761025c565b80637cb64759146105ec5780638456cb59146106295780638da5cb5b146106405780638ecad7211461066b57806395d89b41146106965761025c565b806342842e0e116101dd5780636352211e116101a15780636352211e146104da578063690cf0d1146105175780636c0360eb1461054257806370a082311461056d578063715018a6146105aa57806372250380146105c15761025c565b806342842e0e14610407578063518302271461043057806355f804b31461045b5780635c474f9e146104845780635c975abb146104af5761025c565b806318160ddd1161022457806318160ddd1461035a57806323b872dd1461038557806332cb6b0c146103ae5780633ccfd60b146103d95780633f4ba83a146103f05761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806314ecba581461032f575b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061336b565b61097c565b60405161029591906133b3565b60405180910390f35b3480156102aa57600080fd5b506102b3610a5e565b6040516102c09190613467565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906134bf565b610af0565b6040516102fd919061352d565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613574565b610b75565b005b34801561033b57600080fd5b50610344610c8d565b60405161035191906135c3565b60405180910390f35b34801561036657600080fd5b5061036f610c93565b60405161037c91906135c3565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a791906135de565b610c99565b005b3480156103ba57600080fd5b506103c3610cf9565b6040516103d091906135c3565b60405180910390f35b3480156103e557600080fd5b506103ee610cff565b005b3480156103fc57600080fd5b50610405610dfb565b005b34801561041357600080fd5b5061042e600480360381019061042991906135de565b610ec8565b005b34801561043c57600080fd5b50610445610ee8565b60405161045291906133b3565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190613766565b610efb565b005b34801561049057600080fd5b50610499610f91565b6040516104a691906133b3565b60405180910390f35b3480156104bb57600080fd5b506104c4610fa4565b6040516104d191906133b3565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906134bf565b610fbb565b60405161050e919061352d565b60405180910390f35b34801561052357600080fd5b5061052c61106d565b60405161053991906133b3565b60405180910390f35b34801561054e57600080fd5b50610557611080565b6040516105649190613467565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f91906137af565b61110e565b6040516105a191906135c3565b60405180910390f35b3480156105b657600080fd5b506105bf6111c6565b005b3480156105cd57600080fd5b506105d661124e565b6040516105e39190613467565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190613812565b6112dc565b604051610620919061384e565b60405180910390f35b34801561063557600080fd5b5061063e61136b565b005b34801561064c57600080fd5b50610655611439565b604051610662919061352d565b60405180910390f35b34801561067757600080fd5b50610680611463565b60405161068d91906135c3565b60405180910390f35b3480156106a257600080fd5b506106ab611468565b6040516106b89190613467565b60405180910390f35b6106db60048036038101906106d691906134bf565b6114fa565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190613895565b6116dd565b005b34801561071257600080fd5b5061071b61185e565b005b34801561072957600080fd5b50610744600480360381019061073f91906138d5565b6118f7565b005b34801561075257600080fd5b5061076d600480360381019061076891906139a3565b6119e6565b005b34801561077b57600080fd5b5061079660048036038101906107919190613a26565b611a48565b005b3480156107a457600080fd5b506107ad611b6c565b6040516107ba91906135c3565b60405180910390f35b3480156107cf57600080fd5b506107d8611b72565b6040516107e59190613467565b60405180910390f35b3480156107fa57600080fd5b50610815600480360381019061081091906134bf565b611c00565b6040516108229190613467565b60405180910390f35b61084560048036038101906108409190613b2e565b611d64565b005b34801561085357600080fd5b5061086e600480360381019061086991906134bf565b612040565b005b34801561087c57600080fd5b50610897600480360381019061089291906138d5565b6120c6565b005b3480156108a557600080fd5b506108c060048036038101906108bb9190613b8a565b6121b5565b6040516108cd91906133b3565b60405180910390f35b3480156108e257600080fd5b506108eb612249565b6040516108f891906135c3565b60405180910390f35b34801561090d57600080fd5b5061092860048036038101906109239190613766565b61224e565b005b34801561093657600080fd5b50610951600480360381019061094c91906137af565b6122e4565b005b34801561095f57600080fd5b5061097a600480360381019061097591906134bf565b6123dc565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a575750610a5682612462565b5b9050919050565b606060008054610a6d90613bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9990613bf9565b8015610ae65780601f10610abb57610100808354040283529160200191610ae6565b820191906000526020600020905b815481529060010190602001808311610ac957829003601f168201915b5050505050905090565b6000610afb826124cc565b610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3190613c9d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8082610fbb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890613d2f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c10612538565b73ffffffffffffffffffffffffffffffffffffffff161480610c3f5750610c3e81610c39612538565b6121b5565b5b610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613dc1565b60405180910390fd5b610c888383612540565b505050565b60095481565b600a5481565b610caa610ca4612538565b826125f9565b610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090613e53565b60405180910390fd5b610cf48383836126d7565b505050565b61196481565b610d07612538565b73ffffffffffffffffffffffffffffffffffffffff16610d25611439565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290613ebf565b60405180910390fd5b6000610d85611439565b73ffffffffffffffffffffffffffffffffffffffff1647604051610da890613f10565b60006040518083038185875af1925050503d8060008114610de5576040519150601f19603f3d011682016040523d82523d6000602084013e610dea565b606091505b5050905080610df857600080fd5b50565b610e03612538565b73ffffffffffffffffffffffffffffffffffffffff16610e21611439565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90613ebf565b60405180910390fd5b610e7f610fa4565b610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590613f71565b60405180910390fd5b610ec6612933565b565b610ee3838383604051806020016040528060008152506119e6565b505050565b600b60029054906101000a900460ff1681565b610f03612538565b73ffffffffffffffffffffffffffffffffffffffff16610f21611439565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90613ebf565b60405180910390fd5b80600d9080519060200190610f8d92919061325c565b5050565b600b60009054906101000a900460ff1681565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b90614003565b60405180910390fd5b80915050919050565b600b60019054906101000a900460ff1681565b600d805461108d90613bf9565b80601f01602080910402602001604051908101604052809291908181526020018280546110b990613bf9565b80156111065780601f106110db57610100808354040283529160200191611106565b820191906000526020600020905b8154815290600101906020018083116110e957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690614095565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111ce612538565b73ffffffffffffffffffffffffffffffffffffffff166111ec611439565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990613ebf565b60405180910390fd5b61124c60006129d5565b565b600e805461125b90613bf9565b80601f016020809104026020016040519081016040528092919081815260200182805461128790613bf9565b80156112d45780601f106112a9576101008083540402835291602001916112d4565b820191906000526020600020905b8154815290600101906020018083116112b757829003601f168201915b505050505081565b60006112e6612538565b73ffffffffffffffffffffffffffffffffffffffff16611304611439565b73ffffffffffffffffffffffffffffffffffffffff161461135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613ebf565b60405180910390fd5b81600f81905550600f549050919050565b611373612538565b73ffffffffffffffffffffffffffffffffffffffff16611391611439565b73ffffffffffffffffffffffffffffffffffffffff16146113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90613ebf565b60405180910390fd5b6113ef610fa4565b1561142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690614101565b60405180910390fd5b611437612a9b565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601481565b60606001805461147790613bf9565b80601f01602080910402602001604051908101604052809291908181526020018280546114a390613bf9565b80156114f05780601f106114c5576101008083540402835291602001916114f0565b820191906000526020600020905b8154815290600101906020018083116114d357829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16611549576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115409061416d565b60405180910390fd5b611551610fa4565b15611591576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611588906141d9565b60405180910390fd5b6000811180156115a2575060148111155b6115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890614245565b60405180910390fd5b61196481600a546115f29190614294565b1115611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90614336565b60405180910390fd5b61163b611439565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611688578060085461167b9190614356565b34101561168757600080fd5b5b6000600190505b8181116116c0576116ad3382600a546116a89190614294565b612b3e565b80806116b8906143b0565b91505061168f565b5080600a60008282546116d39190614294565b9250508190555050565b6116e5612538565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614445565b60405180910390fd5b8060056000611760612538565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180d612538565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185291906133b3565b60405180910390a35050565b611866612538565b73ffffffffffffffffffffffffffffffffffffffff16611884611439565b73ffffffffffffffffffffffffffffffffffffffff16146118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190613ebf565b60405180910390fd5b6001600b60026101000a81548160ff021916908315150217905550565b6118ff612538565b73ffffffffffffffffffffffffffffffffffffffff1661191d611439565b73ffffffffffffffffffffffffffffffffffffffff1614611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a90613ebf565b60405180910390fd5b801515600b60009054906101000a900460ff16151514156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c0906144b1565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6119f76119f1612538565b836125f9565b611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90613e53565b60405180910390fd5b611a4284848484612b5c565b50505050565b611a50612538565b73ffffffffffffffffffffffffffffffffffffffff16611a6e611439565b73ffffffffffffffffffffffffffffffffffffffff1614611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb90613ebf565b60405180910390fd5b61196482600a54611ad59190614294565b1115611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d9061451d565b60405180910390fd5b6000600190505b828111611b4e57611b3b8282600a54611b369190614294565b612b3e565b8080611b46906143b0565b915050611b1d565b5081600a6000828254611b619190614294565b925050819055505050565b60085481565b600c8054611b7f90613bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054611bab90613bf9565b8015611bf85780601f10611bcd57610100808354040283529160200191611bf8565b820191906000526020600020905b815481529060010190602001808311611bdb57829003601f168201915b505050505081565b6060611c0b826124cc565b611c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4190614589565b60405180910390fd5b6000611c54612bb8565b905060001515600b60029054906101000a900460ff1615151415611d0557600e8054611c7f90613bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054611cab90613bf9565b8015611cf85780601f10611ccd57610100808354040283529160200191611cf8565b820191906000526020600020905b815481529060010190602001808311611cdb57829003601f168201915b5050505050915050611d5f565b611d0d612bb8565b90506000815111611d2d5760405180602001604052806000815250611d5b565b80611d3784612c4a565b600c604051602001611d4b93929190614679565b6040516020818303038152906040525b9150505b919050565b600b60019054906101000a900460ff16611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa906146f6565b60405180910390fd5b611dbb610fa4565b15611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df2906141d9565b60405180910390fd5b60011515611e11611e0b33612dab565b83612ddb565b151514611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90614762565b60405180910390fd5b600082118015611eae5750600182601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eab9190614294565b11155b611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee490614245565b60405180910390fd5b61196482600a54611efe9190614294565b1115611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3690614336565b60405180910390fd5b611f47611439565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f945781600954611f879190614356565b341015611f9357600080fd5b5b6000600190505b828111611fcc57611fb93382600a54611fb49190614294565b612b3e565b8080611fc4906143b0565b915050611f9b565b5081600a6000828254611fdf9190614294565b9250508190555081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120359190614294565b925050819055505050565b612048612538565b73ffffffffffffffffffffffffffffffffffffffff16612066611439565b73ffffffffffffffffffffffffffffffffffffffff16146120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b390613ebf565b60405180910390fd5b8060098190555050565b6120ce612538565b73ffffffffffffffffffffffffffffffffffffffff166120ec611439565b73ffffffffffffffffffffffffffffffffffffffff1614612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990613ebf565b60405180910390fd5b801515600b60019054906101000a900460ff1615151415612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f906147ce565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b612256612538565b73ffffffffffffffffffffffffffffffffffffffff16612274611439565b73ffffffffffffffffffffffffffffffffffffffff16146122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c190613ebf565b60405180910390fd5b80600e90805190602001906122e092919061325c565b5050565b6122ec612538565b73ffffffffffffffffffffffffffffffffffffffff1661230a611439565b73ffffffffffffffffffffffffffffffffffffffff1614612360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235790613ebf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790614860565b60405180910390fd5b6123d9816129d5565b50565b6123e4612538565b73ffffffffffffffffffffffffffffffffffffffff16612402611439565b73ffffffffffffffffffffffffffffffffffffffff1614612458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244f90613ebf565b60405180910390fd5b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125b383610fbb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612604826124cc565b612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a906148f2565b60405180910390fd5b600061264e83610fbb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126bd57508373ffffffffffffffffffffffffffffffffffffffff166126a584610af0565b73ffffffffffffffffffffffffffffffffffffffff16145b806126ce57506126cd81856121b5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126f782610fbb565b73ffffffffffffffffffffffffffffffffffffffff161461274d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274490614984565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b490614a16565b60405180910390fd5b6127c8838383612e93565b6127d3600082612540565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128239190614a36565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461287a9190614294565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61293b610fa4565b61297a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297190614ab6565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6129be612538565b6040516129cb919061352d565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612aa3610fa4565b15612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada90614b22565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612b27612538565b604051612b34919061352d565b60405180910390a1565b612b58828260405180602001604052806000815250612e98565b5050565b612b678484846126d7565b612b7384848484612ef3565b612bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba990614bb4565b60405180910390fd5b50505050565b6060600d8054612bc790613bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054612bf390613bf9565b8015612c405780601f10612c1557610100808354040283529160200191612c40565b820191906000526020600020905b815481529060010190602001808311612c2357829003601f168201915b5050505050905090565b60606000821415612c92576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612da6565b600082905060005b60008214612cc4578080612cad906143b0565b915050600a82612cbd9190614c03565b9150612c9a565b60008167ffffffffffffffff811115612ce057612cdf61363b565b5b6040519080825280601f01601f191660200182016040528015612d125781602001600182028036833780820191505090505b5090505b60008514612d9f57600182612d2b9190614a36565b9150600a85612d3a9190614c34565b6030612d469190614294565b60f81b818381518110612d5c57612d5b614c65565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d989190614c03565b9450612d16565b8093505050505b919050565b600081604051602001612dbe9190614cdc565b604051602081830303815290604052805190602001209050919050565b60008083905060005b8351811015612e84576000848281518110612e0257612e01614c65565b5b6020026020010151905080831015612e44578281604051602001612e27929190614d18565b604051602081830303815290604052805190602001209250612e70565b8083604051602001612e57929190614d18565b6040516020818303038152906040528051906020012092505b508080612e7c906143b0565b915050612de4565b50600f54811491505092915050565b505050565b612ea2838361307b565b612eaf6000848484612ef3565b612eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee590614bb4565b60405180910390fd5b505050565b6000612f148473ffffffffffffffffffffffffffffffffffffffff16613249565b1561306e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f3d612538565b8786866040518563ffffffff1660e01b8152600401612f5f9493929190614d99565b6020604051808303816000875af1925050508015612f9b57506040513d601f19601f82011682018060405250810190612f989190614dfa565b60015b61301e573d8060008114612fcb576040519150601f19603f3d011682016040523d82523d6000602084013e612fd0565b606091505b50600081511415613016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300d90614bb4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613073565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e290614e73565b60405180910390fd5b6130f4816124cc565b15613134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312b90614edf565b60405180910390fd5b61314060008383612e93565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131909190614294565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461326890613bf9565b90600052602060002090601f01602090048101928261328a57600085556132d1565b82601f106132a357805160ff19168380011785556132d1565b828001600101855582156132d1579182015b828111156132d05782518255916020019190600101906132b5565b5b5090506132de91906132e2565b5090565b5b808211156132fb5760008160009055506001016132e3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61334881613313565b811461335357600080fd5b50565b6000813590506133658161333f565b92915050565b60006020828403121561338157613380613309565b5b600061338f84828501613356565b91505092915050565b60008115159050919050565b6133ad81613398565b82525050565b60006020820190506133c860008301846133a4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134085780820151818401526020810190506133ed565b83811115613417576000848401525b50505050565b6000601f19601f8301169050919050565b6000613439826133ce565b61344381856133d9565b93506134538185602086016133ea565b61345c8161341d565b840191505092915050565b60006020820190508181036000830152613481818461342e565b905092915050565b6000819050919050565b61349c81613489565b81146134a757600080fd5b50565b6000813590506134b981613493565b92915050565b6000602082840312156134d5576134d4613309565b5b60006134e3848285016134aa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613517826134ec565b9050919050565b6135278161350c565b82525050565b6000602082019050613542600083018461351e565b92915050565b6135518161350c565b811461355c57600080fd5b50565b60008135905061356e81613548565b92915050565b6000806040838503121561358b5761358a613309565b5b60006135998582860161355f565b92505060206135aa858286016134aa565b9150509250929050565b6135bd81613489565b82525050565b60006020820190506135d860008301846135b4565b92915050565b6000806000606084860312156135f7576135f6613309565b5b60006136058682870161355f565b93505060206136168682870161355f565b9250506040613627868287016134aa565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136738261341d565b810181811067ffffffffffffffff821117156136925761369161363b565b5b80604052505050565b60006136a56132ff565b90506136b1828261366a565b919050565b600067ffffffffffffffff8211156136d1576136d061363b565b5b6136da8261341d565b9050602081019050919050565b82818337600083830152505050565b6000613709613704846136b6565b61369b565b90508281526020810184848401111561372557613724613636565b5b6137308482856136e7565b509392505050565b600082601f83011261374d5761374c613631565b5b813561375d8482602086016136f6565b91505092915050565b60006020828403121561377c5761377b613309565b5b600082013567ffffffffffffffff81111561379a5761379961330e565b5b6137a684828501613738565b91505092915050565b6000602082840312156137c5576137c4613309565b5b60006137d38482850161355f565b91505092915050565b6000819050919050565b6137ef816137dc565b81146137fa57600080fd5b50565b60008135905061380c816137e6565b92915050565b60006020828403121561382857613827613309565b5b6000613836848285016137fd565b91505092915050565b613848816137dc565b82525050565b6000602082019050613863600083018461383f565b92915050565b61387281613398565b811461387d57600080fd5b50565b60008135905061388f81613869565b92915050565b600080604083850312156138ac576138ab613309565b5b60006138ba8582860161355f565b92505060206138cb85828601613880565b9150509250929050565b6000602082840312156138eb576138ea613309565b5b60006138f984828501613880565b91505092915050565b600067ffffffffffffffff82111561391d5761391c61363b565b5b6139268261341d565b9050602081019050919050565b600061394661394184613902565b61369b565b90508281526020810184848401111561396257613961613636565b5b61396d8482856136e7565b509392505050565b600082601f83011261398a57613989613631565b5b813561399a848260208601613933565b91505092915050565b600080600080608085870312156139bd576139bc613309565b5b60006139cb8782880161355f565b94505060206139dc8782880161355f565b93505060406139ed878288016134aa565b925050606085013567ffffffffffffffff811115613a0e57613a0d61330e565b5b613a1a87828801613975565b91505092959194509250565b60008060408385031215613a3d57613a3c613309565b5b6000613a4b858286016134aa565b9250506020613a5c8582860161355f565b9150509250929050565b600067ffffffffffffffff821115613a8157613a8061363b565b5b602082029050602081019050919050565b600080fd5b6000613aaa613aa584613a66565b61369b565b90508083825260208201905060208402830185811115613acd57613acc613a92565b5b835b81811015613af65780613ae288826137fd565b845260208401935050602081019050613acf565b5050509392505050565b600082601f830112613b1557613b14613631565b5b8135613b25848260208601613a97565b91505092915050565b60008060408385031215613b4557613b44613309565b5b6000613b53858286016134aa565b925050602083013567ffffffffffffffff811115613b7457613b7361330e565b5b613b8085828601613b00565b9150509250929050565b60008060408385031215613ba157613ba0613309565b5b6000613baf8582860161355f565b9250506020613bc08582860161355f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c1157607f821691505b60208210811415613c2557613c24613bca565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613c87602c836133d9565b9150613c9282613c2b565b604082019050919050565b60006020820190508181036000830152613cb681613c7a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d196021836133d9565b9150613d2482613cbd565b604082019050919050565b60006020820190508181036000830152613d4881613d0c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613dab6038836133d9565b9150613db682613d4f565b604082019050919050565b60006020820190508181036000830152613dda81613d9e565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e3d6031836133d9565b9150613e4882613de1565b604082019050919050565b60006020820190508181036000830152613e6c81613e30565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ea96020836133d9565b9150613eb482613e73565b602082019050919050565b60006020820190508181036000830152613ed881613e9c565b9050919050565b600081905092915050565b50565b6000613efa600083613edf565b9150613f0582613eea565b600082019050919050565b6000613f1b82613eed565b9150819050919050565b7f636f6e747261637420616c726561647920756e70617573656400000000000000600082015250565b6000613f5b6019836133d9565b9150613f6682613f25565b602082019050919050565b60006020820190508181036000830152613f8a81613f4e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613fed6029836133d9565b9150613ff882613f91565b604082019050919050565b6000602082019050818103600083015261401c81613fe0565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061407f602a836133d9565b915061408a82614023565b604082019050919050565b600060208201905081810360008301526140ae81614072565b9050919050565b7f636f6e747261637420616c726561647920706175736564000000000000000000600082015250565b60006140eb6017836133d9565b91506140f6826140b5565b602082019050919050565b6000602082019050818103600083015261411a816140de565b9050919050565b7f7075626c6963206d696e74206e6f742073746172746564207965740000000000600082015250565b6000614157601b836133d9565b915061416282614121565b602082019050919050565b600060208201905081810360008301526141868161414a565b9050919050565b7f636f6e7472616374207061757365640000000000000000000000000000000000600082015250565b60006141c3600f836133d9565b91506141ce8261418d565b602082019050919050565b600060208201905081810360008301526141f2816141b6565b9050919050565b7f6d6178206d696e74207065722074727820657863656564656400000000000000600082015250565b600061422f6019836133d9565b915061423a826141f9565b602082019050919050565b6000602082019050818103600083015261425e81614222565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061429f82613489565b91506142aa83613489565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142df576142de614265565b5b828201905092915050565b7f6d617820737570706c7920726561636865640000000000000000000000000000600082015250565b60006143206012836133d9565b915061432b826142ea565b602082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b600061436182613489565b915061436c83613489565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a5576143a4614265565b5b828202905092915050565b60006143bb82613489565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143ee576143ed614265565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061442f6019836133d9565b915061443a826143f9565b602082019050919050565b6000602082019050818103600083015261445e81614422565b9050919050565b7f6d61696e2073616c6520737461727420616c7265616479000000000000000000600082015250565b600061449b6017836133d9565b91506144a682614465565b602082019050919050565b600060208201905081810360008301526144ca8161448e565b9050919050565b7f6d61782061697264726f70206c696d6974206578636565646564000000000000600082015250565b6000614507601a836133d9565b9150614512826144d1565b602082019050919050565b60006020820190508181036000830152614536816144fa565b9050919050565b7f746f6b656e206e6f742065786973740000000000000000000000000000000000600082015250565b6000614573600f836133d9565b915061457e8261453d565b602082019050919050565b600060208201905081810360008301526145a281614566565b9050919050565b600081905092915050565b60006145bf826133ce565b6145c981856145a9565b93506145d98185602086016133ea565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461460781613bf9565b61461181866145a9565b9450600182166000811461462c576001811461463d57614670565b60ff19831686528186019350614670565b614646856145e5565b60005b8381101561466857815481890152600182019150602081019050614649565b838801955050505b50505092915050565b600061468582866145b4565b915061469182856145b4565b915061469d82846145fa565b9150819050949350505050565b7f7072656d696e74206e6f74207374617274656420796574000000000000000000600082015250565b60006146e06017836133d9565b91506146eb826146aa565b602082019050919050565b6000602082019050818103600083015261470f816146d3565b9050919050565b7f696e76616c696420616464726573730000000000000000000000000000000000600082015250565b600061474c600f836133d9565b915061475782614716565b602082019050919050565b6000602082019050818103600083015261477b8161473f565b9050919050565b7f70726573616c65207374617274656420616c7265616479000000000000000000600082015250565b60006147b86017836133d9565b91506147c382614782565b602082019050919050565b600060208201905081810360008301526147e7816147ab565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061484a6026836133d9565b9150614855826147ee565b604082019050919050565b600060208201905081810360008301526148798161483d565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006148dc602c836133d9565b91506148e782614880565b604082019050919050565b6000602082019050818103600083015261490b816148cf565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061496e6029836133d9565b915061497982614912565b604082019050919050565b6000602082019050818103600083015261499d81614961565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a006024836133d9565b9150614a0b826149a4565b604082019050919050565b60006020820190508181036000830152614a2f816149f3565b9050919050565b6000614a4182613489565b9150614a4c83613489565b925082821015614a5f57614a5e614265565b5b828203905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614aa06014836133d9565b9150614aab82614a6a565b602082019050919050565b60006020820190508181036000830152614acf81614a93565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614b0c6010836133d9565b9150614b1782614ad6565b602082019050919050565b60006020820190508181036000830152614b3b81614aff565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614b9e6032836133d9565b9150614ba982614b42565b604082019050919050565b60006020820190508181036000830152614bcd81614b91565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c0e82613489565b9150614c1983613489565b925082614c2957614c28614bd4565b5b828204905092915050565b6000614c3f82613489565b9150614c4a83613489565b925082614c5a57614c59614bd4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b6000614cac82614c94565b9050919050565b6000614cbe82614ca1565b9050919050565b614cd6614cd18261350c565b614cb3565b82525050565b6000614ce88284614cc5565b60148201915081905092915050565b6000819050919050565b614d12614d0d826137dc565b614cf7565b82525050565b6000614d248285614d01565b602082019150614d348284614d01565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000614d6b82614d44565b614d758185614d4f565b9350614d858185602086016133ea565b614d8e8161341d565b840191505092915050565b6000608082019050614dae600083018761351e565b614dbb602083018661351e565b614dc860408301856135b4565b8181036060830152614dda8184614d60565b905095945050505050565b600081519050614df48161333f565b92915050565b600060208284031215614e1057614e0f613309565b5b6000614e1e84828501614de5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e5d6020836133d9565b9150614e6882614e27565b602082019050919050565b60006020820190508181036000830152614e8c81614e50565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614ec9601c836133d9565b9150614ed482614e93565b602082019050919050565b60006020820190508181036000830152614ef881614ebc565b905091905056fea26469706673582212202cf8a37986d1192bb40cbf9fd2d869b2cef8854e7085b125025e37a9cb844f4964736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80637cb6475911610144578063c3151fed116100b6578063e59ee0141161007a578063e59ee01414610870578063e985e9c514610899578063f2587a55146108d6578063f2c4ce1e14610901578063f2fde38b1461092a578063f4a0a528146109535761025c565b8063c3151fed14610798578063c6682862146107c3578063c87b56dd146107ee578063d2cab0561461082b578063da6405e1146108475761025c565b8063a0712d6811610108578063a0712d68146106c1578063a22cb465146106dd578063a475b5dd14610706578063a854ffba1461071d578063b88d4fde14610746578063bc63f02e1461076f5761025c565b80637cb64759146105ec5780638456cb59146106295780638da5cb5b146106405780638ecad7211461066b57806395d89b41146106965761025c565b806342842e0e116101dd5780636352211e116101a15780636352211e146104da578063690cf0d1146105175780636c0360eb1461054257806370a082311461056d578063715018a6146105aa57806372250380146105c15761025c565b806342842e0e14610407578063518302271461043057806355f804b31461045b5780635c474f9e146104845780635c975abb146104af5761025c565b806318160ddd1161022457806318160ddd1461035a57806323b872dd1461038557806332cb6b0c146103ae5780633ccfd60b146103d95780633f4ba83a146103f05761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806314ecba581461032f575b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061336b565b61097c565b60405161029591906133b3565b60405180910390f35b3480156102aa57600080fd5b506102b3610a5e565b6040516102c09190613467565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906134bf565b610af0565b6040516102fd919061352d565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613574565b610b75565b005b34801561033b57600080fd5b50610344610c8d565b60405161035191906135c3565b60405180910390f35b34801561036657600080fd5b5061036f610c93565b60405161037c91906135c3565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a791906135de565b610c99565b005b3480156103ba57600080fd5b506103c3610cf9565b6040516103d091906135c3565b60405180910390f35b3480156103e557600080fd5b506103ee610cff565b005b3480156103fc57600080fd5b50610405610dfb565b005b34801561041357600080fd5b5061042e600480360381019061042991906135de565b610ec8565b005b34801561043c57600080fd5b50610445610ee8565b60405161045291906133b3565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190613766565b610efb565b005b34801561049057600080fd5b50610499610f91565b6040516104a691906133b3565b60405180910390f35b3480156104bb57600080fd5b506104c4610fa4565b6040516104d191906133b3565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906134bf565b610fbb565b60405161050e919061352d565b60405180910390f35b34801561052357600080fd5b5061052c61106d565b60405161053991906133b3565b60405180910390f35b34801561054e57600080fd5b50610557611080565b6040516105649190613467565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f91906137af565b61110e565b6040516105a191906135c3565b60405180910390f35b3480156105b657600080fd5b506105bf6111c6565b005b3480156105cd57600080fd5b506105d661124e565b6040516105e39190613467565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190613812565b6112dc565b604051610620919061384e565b60405180910390f35b34801561063557600080fd5b5061063e61136b565b005b34801561064c57600080fd5b50610655611439565b604051610662919061352d565b60405180910390f35b34801561067757600080fd5b50610680611463565b60405161068d91906135c3565b60405180910390f35b3480156106a257600080fd5b506106ab611468565b6040516106b89190613467565b60405180910390f35b6106db60048036038101906106d691906134bf565b6114fa565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190613895565b6116dd565b005b34801561071257600080fd5b5061071b61185e565b005b34801561072957600080fd5b50610744600480360381019061073f91906138d5565b6118f7565b005b34801561075257600080fd5b5061076d600480360381019061076891906139a3565b6119e6565b005b34801561077b57600080fd5b5061079660048036038101906107919190613a26565b611a48565b005b3480156107a457600080fd5b506107ad611b6c565b6040516107ba91906135c3565b60405180910390f35b3480156107cf57600080fd5b506107d8611b72565b6040516107e59190613467565b60405180910390f35b3480156107fa57600080fd5b50610815600480360381019061081091906134bf565b611c00565b6040516108229190613467565b60405180910390f35b61084560048036038101906108409190613b2e565b611d64565b005b34801561085357600080fd5b5061086e600480360381019061086991906134bf565b612040565b005b34801561087c57600080fd5b50610897600480360381019061089291906138d5565b6120c6565b005b3480156108a557600080fd5b506108c060048036038101906108bb9190613b8a565b6121b5565b6040516108cd91906133b3565b60405180910390f35b3480156108e257600080fd5b506108eb612249565b6040516108f891906135c3565b60405180910390f35b34801561090d57600080fd5b5061092860048036038101906109239190613766565b61224e565b005b34801561093657600080fd5b50610951600480360381019061094c91906137af565b6122e4565b005b34801561095f57600080fd5b5061097a600480360381019061097591906134bf565b6123dc565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a575750610a5682612462565b5b9050919050565b606060008054610a6d90613bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9990613bf9565b8015610ae65780601f10610abb57610100808354040283529160200191610ae6565b820191906000526020600020905b815481529060010190602001808311610ac957829003601f168201915b5050505050905090565b6000610afb826124cc565b610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3190613c9d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8082610fbb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890613d2f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c10612538565b73ffffffffffffffffffffffffffffffffffffffff161480610c3f5750610c3e81610c39612538565b6121b5565b5b610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613dc1565b60405180910390fd5b610c888383612540565b505050565b60095481565b600a5481565b610caa610ca4612538565b826125f9565b610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090613e53565b60405180910390fd5b610cf48383836126d7565b505050565b61196481565b610d07612538565b73ffffffffffffffffffffffffffffffffffffffff16610d25611439565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290613ebf565b60405180910390fd5b6000610d85611439565b73ffffffffffffffffffffffffffffffffffffffff1647604051610da890613f10565b60006040518083038185875af1925050503d8060008114610de5576040519150601f19603f3d011682016040523d82523d6000602084013e610dea565b606091505b5050905080610df857600080fd5b50565b610e03612538565b73ffffffffffffffffffffffffffffffffffffffff16610e21611439565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90613ebf565b60405180910390fd5b610e7f610fa4565b610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590613f71565b60405180910390fd5b610ec6612933565b565b610ee3838383604051806020016040528060008152506119e6565b505050565b600b60029054906101000a900460ff1681565b610f03612538565b73ffffffffffffffffffffffffffffffffffffffff16610f21611439565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90613ebf565b60405180910390fd5b80600d9080519060200190610f8d92919061325c565b5050565b600b60009054906101000a900460ff1681565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b90614003565b60405180910390fd5b80915050919050565b600b60019054906101000a900460ff1681565b600d805461108d90613bf9565b80601f01602080910402602001604051908101604052809291908181526020018280546110b990613bf9565b80156111065780601f106110db57610100808354040283529160200191611106565b820191906000526020600020905b8154815290600101906020018083116110e957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690614095565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111ce612538565b73ffffffffffffffffffffffffffffffffffffffff166111ec611439565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990613ebf565b60405180910390fd5b61124c60006129d5565b565b600e805461125b90613bf9565b80601f016020809104026020016040519081016040528092919081815260200182805461128790613bf9565b80156112d45780601f106112a9576101008083540402835291602001916112d4565b820191906000526020600020905b8154815290600101906020018083116112b757829003601f168201915b505050505081565b60006112e6612538565b73ffffffffffffffffffffffffffffffffffffffff16611304611439565b73ffffffffffffffffffffffffffffffffffffffff161461135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613ebf565b60405180910390fd5b81600f81905550600f549050919050565b611373612538565b73ffffffffffffffffffffffffffffffffffffffff16611391611439565b73ffffffffffffffffffffffffffffffffffffffff16146113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90613ebf565b60405180910390fd5b6113ef610fa4565b1561142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690614101565b60405180910390fd5b611437612a9b565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601481565b60606001805461147790613bf9565b80601f01602080910402602001604051908101604052809291908181526020018280546114a390613bf9565b80156114f05780601f106114c5576101008083540402835291602001916114f0565b820191906000526020600020905b8154815290600101906020018083116114d357829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16611549576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115409061416d565b60405180910390fd5b611551610fa4565b15611591576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611588906141d9565b60405180910390fd5b6000811180156115a2575060148111155b6115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890614245565b60405180910390fd5b61196481600a546115f29190614294565b1115611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90614336565b60405180910390fd5b61163b611439565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611688578060085461167b9190614356565b34101561168757600080fd5b5b6000600190505b8181116116c0576116ad3382600a546116a89190614294565b612b3e565b80806116b8906143b0565b91505061168f565b5080600a60008282546116d39190614294565b9250508190555050565b6116e5612538565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614445565b60405180910390fd5b8060056000611760612538565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180d612538565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185291906133b3565b60405180910390a35050565b611866612538565b73ffffffffffffffffffffffffffffffffffffffff16611884611439565b73ffffffffffffffffffffffffffffffffffffffff16146118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190613ebf565b60405180910390fd5b6001600b60026101000a81548160ff021916908315150217905550565b6118ff612538565b73ffffffffffffffffffffffffffffffffffffffff1661191d611439565b73ffffffffffffffffffffffffffffffffffffffff1614611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a90613ebf565b60405180910390fd5b801515600b60009054906101000a900460ff16151514156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c0906144b1565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6119f76119f1612538565b836125f9565b611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90613e53565b60405180910390fd5b611a4284848484612b5c565b50505050565b611a50612538565b73ffffffffffffffffffffffffffffffffffffffff16611a6e611439565b73ffffffffffffffffffffffffffffffffffffffff1614611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb90613ebf565b60405180910390fd5b61196482600a54611ad59190614294565b1115611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d9061451d565b60405180910390fd5b6000600190505b828111611b4e57611b3b8282600a54611b369190614294565b612b3e565b8080611b46906143b0565b915050611b1d565b5081600a6000828254611b619190614294565b925050819055505050565b60085481565b600c8054611b7f90613bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054611bab90613bf9565b8015611bf85780601f10611bcd57610100808354040283529160200191611bf8565b820191906000526020600020905b815481529060010190602001808311611bdb57829003601f168201915b505050505081565b6060611c0b826124cc565b611c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4190614589565b60405180910390fd5b6000611c54612bb8565b905060001515600b60029054906101000a900460ff1615151415611d0557600e8054611c7f90613bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054611cab90613bf9565b8015611cf85780601f10611ccd57610100808354040283529160200191611cf8565b820191906000526020600020905b815481529060010190602001808311611cdb57829003601f168201915b5050505050915050611d5f565b611d0d612bb8565b90506000815111611d2d5760405180602001604052806000815250611d5b565b80611d3784612c4a565b600c604051602001611d4b93929190614679565b6040516020818303038152906040525b9150505b919050565b600b60019054906101000a900460ff16611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa906146f6565b60405180910390fd5b611dbb610fa4565b15611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df2906141d9565b60405180910390fd5b60011515611e11611e0b33612dab565b83612ddb565b151514611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90614762565b60405180910390fd5b600082118015611eae5750600182601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eab9190614294565b11155b611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee490614245565b60405180910390fd5b61196482600a54611efe9190614294565b1115611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3690614336565b60405180910390fd5b611f47611439565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f945781600954611f879190614356565b341015611f9357600080fd5b5b6000600190505b828111611fcc57611fb93382600a54611fb49190614294565b612b3e565b8080611fc4906143b0565b915050611f9b565b5081600a6000828254611fdf9190614294565b9250508190555081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120359190614294565b925050819055505050565b612048612538565b73ffffffffffffffffffffffffffffffffffffffff16612066611439565b73ffffffffffffffffffffffffffffffffffffffff16146120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b390613ebf565b60405180910390fd5b8060098190555050565b6120ce612538565b73ffffffffffffffffffffffffffffffffffffffff166120ec611439565b73ffffffffffffffffffffffffffffffffffffffff1614612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990613ebf565b60405180910390fd5b801515600b60019054906101000a900460ff1615151415612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f906147ce565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b612256612538565b73ffffffffffffffffffffffffffffffffffffffff16612274611439565b73ffffffffffffffffffffffffffffffffffffffff16146122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c190613ebf565b60405180910390fd5b80600e90805190602001906122e092919061325c565b5050565b6122ec612538565b73ffffffffffffffffffffffffffffffffffffffff1661230a611439565b73ffffffffffffffffffffffffffffffffffffffff1614612360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235790613ebf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790614860565b60405180910390fd5b6123d9816129d5565b50565b6123e4612538565b73ffffffffffffffffffffffffffffffffffffffff16612402611439565b73ffffffffffffffffffffffffffffffffffffffff1614612458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244f90613ebf565b60405180910390fd5b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125b383610fbb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612604826124cc565b612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a906148f2565b60405180910390fd5b600061264e83610fbb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126bd57508373ffffffffffffffffffffffffffffffffffffffff166126a584610af0565b73ffffffffffffffffffffffffffffffffffffffff16145b806126ce57506126cd81856121b5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126f782610fbb565b73ffffffffffffffffffffffffffffffffffffffff161461274d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274490614984565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b490614a16565b60405180910390fd5b6127c8838383612e93565b6127d3600082612540565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128239190614a36565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461287a9190614294565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61293b610fa4565b61297a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297190614ab6565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6129be612538565b6040516129cb919061352d565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612aa3610fa4565b15612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada90614b22565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612b27612538565b604051612b34919061352d565b60405180910390a1565b612b58828260405180602001604052806000815250612e98565b5050565b612b678484846126d7565b612b7384848484612ef3565b612bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba990614bb4565b60405180910390fd5b50505050565b6060600d8054612bc790613bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054612bf390613bf9565b8015612c405780601f10612c1557610100808354040283529160200191612c40565b820191906000526020600020905b815481529060010190602001808311612c2357829003601f168201915b5050505050905090565b60606000821415612c92576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612da6565b600082905060005b60008214612cc4578080612cad906143b0565b915050600a82612cbd9190614c03565b9150612c9a565b60008167ffffffffffffffff811115612ce057612cdf61363b565b5b6040519080825280601f01601f191660200182016040528015612d125781602001600182028036833780820191505090505b5090505b60008514612d9f57600182612d2b9190614a36565b9150600a85612d3a9190614c34565b6030612d469190614294565b60f81b818381518110612d5c57612d5b614c65565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d989190614c03565b9450612d16565b8093505050505b919050565b600081604051602001612dbe9190614cdc565b604051602081830303815290604052805190602001209050919050565b60008083905060005b8351811015612e84576000848281518110612e0257612e01614c65565b5b6020026020010151905080831015612e44578281604051602001612e27929190614d18565b604051602081830303815290604052805190602001209250612e70565b8083604051602001612e57929190614d18565b6040516020818303038152906040528051906020012092505b508080612e7c906143b0565b915050612de4565b50600f54811491505092915050565b505050565b612ea2838361307b565b612eaf6000848484612ef3565b612eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee590614bb4565b60405180910390fd5b505050565b6000612f148473ffffffffffffffffffffffffffffffffffffffff16613249565b1561306e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f3d612538565b8786866040518563ffffffff1660e01b8152600401612f5f9493929190614d99565b6020604051808303816000875af1925050508015612f9b57506040513d601f19601f82011682018060405250810190612f989190614dfa565b60015b61301e573d8060008114612fcb576040519150601f19603f3d011682016040523d82523d6000602084013e612fd0565b606091505b50600081511415613016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300d90614bb4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613073565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e290614e73565b60405180910390fd5b6130f4816124cc565b15613134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312b90614edf565b60405180910390fd5b61314060008383612e93565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131909190614294565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461326890613bf9565b90600052602060002090601f01602090048101928261328a57600085556132d1565b82601f106132a357805160ff19168380011785556132d1565b828001600101855582156132d1579182015b828111156132d05782518255916020019190600101906132b5565b5b5090506132de91906132e2565b5090565b5b808211156132fb5760008160009055506001016132e3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61334881613313565b811461335357600080fd5b50565b6000813590506133658161333f565b92915050565b60006020828403121561338157613380613309565b5b600061338f84828501613356565b91505092915050565b60008115159050919050565b6133ad81613398565b82525050565b60006020820190506133c860008301846133a4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134085780820151818401526020810190506133ed565b83811115613417576000848401525b50505050565b6000601f19601f8301169050919050565b6000613439826133ce565b61344381856133d9565b93506134538185602086016133ea565b61345c8161341d565b840191505092915050565b60006020820190508181036000830152613481818461342e565b905092915050565b6000819050919050565b61349c81613489565b81146134a757600080fd5b50565b6000813590506134b981613493565b92915050565b6000602082840312156134d5576134d4613309565b5b60006134e3848285016134aa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613517826134ec565b9050919050565b6135278161350c565b82525050565b6000602082019050613542600083018461351e565b92915050565b6135518161350c565b811461355c57600080fd5b50565b60008135905061356e81613548565b92915050565b6000806040838503121561358b5761358a613309565b5b60006135998582860161355f565b92505060206135aa858286016134aa565b9150509250929050565b6135bd81613489565b82525050565b60006020820190506135d860008301846135b4565b92915050565b6000806000606084860312156135f7576135f6613309565b5b60006136058682870161355f565b93505060206136168682870161355f565b9250506040613627868287016134aa565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136738261341d565b810181811067ffffffffffffffff821117156136925761369161363b565b5b80604052505050565b60006136a56132ff565b90506136b1828261366a565b919050565b600067ffffffffffffffff8211156136d1576136d061363b565b5b6136da8261341d565b9050602081019050919050565b82818337600083830152505050565b6000613709613704846136b6565b61369b565b90508281526020810184848401111561372557613724613636565b5b6137308482856136e7565b509392505050565b600082601f83011261374d5761374c613631565b5b813561375d8482602086016136f6565b91505092915050565b60006020828403121561377c5761377b613309565b5b600082013567ffffffffffffffff81111561379a5761379961330e565b5b6137a684828501613738565b91505092915050565b6000602082840312156137c5576137c4613309565b5b60006137d38482850161355f565b91505092915050565b6000819050919050565b6137ef816137dc565b81146137fa57600080fd5b50565b60008135905061380c816137e6565b92915050565b60006020828403121561382857613827613309565b5b6000613836848285016137fd565b91505092915050565b613848816137dc565b82525050565b6000602082019050613863600083018461383f565b92915050565b61387281613398565b811461387d57600080fd5b50565b60008135905061388f81613869565b92915050565b600080604083850312156138ac576138ab613309565b5b60006138ba8582860161355f565b92505060206138cb85828601613880565b9150509250929050565b6000602082840312156138eb576138ea613309565b5b60006138f984828501613880565b91505092915050565b600067ffffffffffffffff82111561391d5761391c61363b565b5b6139268261341d565b9050602081019050919050565b600061394661394184613902565b61369b565b90508281526020810184848401111561396257613961613636565b5b61396d8482856136e7565b509392505050565b600082601f83011261398a57613989613631565b5b813561399a848260208601613933565b91505092915050565b600080600080608085870312156139bd576139bc613309565b5b60006139cb8782880161355f565b94505060206139dc8782880161355f565b93505060406139ed878288016134aa565b925050606085013567ffffffffffffffff811115613a0e57613a0d61330e565b5b613a1a87828801613975565b91505092959194509250565b60008060408385031215613a3d57613a3c613309565b5b6000613a4b858286016134aa565b9250506020613a5c8582860161355f565b9150509250929050565b600067ffffffffffffffff821115613a8157613a8061363b565b5b602082029050602081019050919050565b600080fd5b6000613aaa613aa584613a66565b61369b565b90508083825260208201905060208402830185811115613acd57613acc613a92565b5b835b81811015613af65780613ae288826137fd565b845260208401935050602081019050613acf565b5050509392505050565b600082601f830112613b1557613b14613631565b5b8135613b25848260208601613a97565b91505092915050565b60008060408385031215613b4557613b44613309565b5b6000613b53858286016134aa565b925050602083013567ffffffffffffffff811115613b7457613b7361330e565b5b613b8085828601613b00565b9150509250929050565b60008060408385031215613ba157613ba0613309565b5b6000613baf8582860161355f565b9250506020613bc08582860161355f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c1157607f821691505b60208210811415613c2557613c24613bca565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613c87602c836133d9565b9150613c9282613c2b565b604082019050919050565b60006020820190508181036000830152613cb681613c7a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d196021836133d9565b9150613d2482613cbd565b604082019050919050565b60006020820190508181036000830152613d4881613d0c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613dab6038836133d9565b9150613db682613d4f565b604082019050919050565b60006020820190508181036000830152613dda81613d9e565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e3d6031836133d9565b9150613e4882613de1565b604082019050919050565b60006020820190508181036000830152613e6c81613e30565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ea96020836133d9565b9150613eb482613e73565b602082019050919050565b60006020820190508181036000830152613ed881613e9c565b9050919050565b600081905092915050565b50565b6000613efa600083613edf565b9150613f0582613eea565b600082019050919050565b6000613f1b82613eed565b9150819050919050565b7f636f6e747261637420616c726561647920756e70617573656400000000000000600082015250565b6000613f5b6019836133d9565b9150613f6682613f25565b602082019050919050565b60006020820190508181036000830152613f8a81613f4e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613fed6029836133d9565b9150613ff882613f91565b604082019050919050565b6000602082019050818103600083015261401c81613fe0565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061407f602a836133d9565b915061408a82614023565b604082019050919050565b600060208201905081810360008301526140ae81614072565b9050919050565b7f636f6e747261637420616c726561647920706175736564000000000000000000600082015250565b60006140eb6017836133d9565b91506140f6826140b5565b602082019050919050565b6000602082019050818103600083015261411a816140de565b9050919050565b7f7075626c6963206d696e74206e6f742073746172746564207965740000000000600082015250565b6000614157601b836133d9565b915061416282614121565b602082019050919050565b600060208201905081810360008301526141868161414a565b9050919050565b7f636f6e7472616374207061757365640000000000000000000000000000000000600082015250565b60006141c3600f836133d9565b91506141ce8261418d565b602082019050919050565b600060208201905081810360008301526141f2816141b6565b9050919050565b7f6d6178206d696e74207065722074727820657863656564656400000000000000600082015250565b600061422f6019836133d9565b915061423a826141f9565b602082019050919050565b6000602082019050818103600083015261425e81614222565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061429f82613489565b91506142aa83613489565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142df576142de614265565b5b828201905092915050565b7f6d617820737570706c7920726561636865640000000000000000000000000000600082015250565b60006143206012836133d9565b915061432b826142ea565b602082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b600061436182613489565b915061436c83613489565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a5576143a4614265565b5b828202905092915050565b60006143bb82613489565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143ee576143ed614265565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061442f6019836133d9565b915061443a826143f9565b602082019050919050565b6000602082019050818103600083015261445e81614422565b9050919050565b7f6d61696e2073616c6520737461727420616c7265616479000000000000000000600082015250565b600061449b6017836133d9565b91506144a682614465565b602082019050919050565b600060208201905081810360008301526144ca8161448e565b9050919050565b7f6d61782061697264726f70206c696d6974206578636565646564000000000000600082015250565b6000614507601a836133d9565b9150614512826144d1565b602082019050919050565b60006020820190508181036000830152614536816144fa565b9050919050565b7f746f6b656e206e6f742065786973740000000000000000000000000000000000600082015250565b6000614573600f836133d9565b915061457e8261453d565b602082019050919050565b600060208201905081810360008301526145a281614566565b9050919050565b600081905092915050565b60006145bf826133ce565b6145c981856145a9565b93506145d98185602086016133ea565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461460781613bf9565b61461181866145a9565b9450600182166000811461462c576001811461463d57614670565b60ff19831686528186019350614670565b614646856145e5565b60005b8381101561466857815481890152600182019150602081019050614649565b838801955050505b50505092915050565b600061468582866145b4565b915061469182856145b4565b915061469d82846145fa565b9150819050949350505050565b7f7072656d696e74206e6f74207374617274656420796574000000000000000000600082015250565b60006146e06017836133d9565b91506146eb826146aa565b602082019050919050565b6000602082019050818103600083015261470f816146d3565b9050919050565b7f696e76616c696420616464726573730000000000000000000000000000000000600082015250565b600061474c600f836133d9565b915061475782614716565b602082019050919050565b6000602082019050818103600083015261477b8161473f565b9050919050565b7f70726573616c65207374617274656420616c7265616479000000000000000000600082015250565b60006147b86017836133d9565b91506147c382614782565b602082019050919050565b600060208201905081810360008301526147e7816147ab565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061484a6026836133d9565b9150614855826147ee565b604082019050919050565b600060208201905081810360008301526148798161483d565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006148dc602c836133d9565b91506148e782614880565b604082019050919050565b6000602082019050818103600083015261490b816148cf565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061496e6029836133d9565b915061497982614912565b604082019050919050565b6000602082019050818103600083015261499d81614961565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a006024836133d9565b9150614a0b826149a4565b604082019050919050565b60006020820190508181036000830152614a2f816149f3565b9050919050565b6000614a4182613489565b9150614a4c83613489565b925082821015614a5f57614a5e614265565b5b828203905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614aa06014836133d9565b9150614aab82614a6a565b602082019050919050565b60006020820190508181036000830152614acf81614a93565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614b0c6010836133d9565b9150614b1782614ad6565b602082019050919050565b60006020820190508181036000830152614b3b81614aff565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614b9e6032836133d9565b9150614ba982614b42565b604082019050919050565b60006020820190508181036000830152614bcd81614b91565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c0e82613489565b9150614c1983613489565b925082614c2957614c28614bd4565b5b828204905092915050565b6000614c3f82613489565b9150614c4a83613489565b925082614c5a57614c59614bd4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b6000614cac82614c94565b9050919050565b6000614cbe82614ca1565b9050919050565b614cd6614cd18261350c565b614cb3565b82525050565b6000614ce88284614cc5565b60148201915081905092915050565b6000819050919050565b614d12614d0d826137dc565b614cf7565b82525050565b6000614d248285614d01565b602082019150614d348284614d01565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000614d6b82614d44565b614d758185614d4f565b9350614d858185602086016133ea565b614d8e8161341d565b840191505092915050565b6000608082019050614dae600083018761351e565b614dbb602083018661351e565b614dc860408301856135b4565b8181036060830152614dda8184614d60565b905095945050505050565b600081519050614df48161333f565b92915050565b600060208284031215614e1057614e0f613309565b5b6000614e1e84828501614de5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e5d6020836133d9565b9150614e6882614e27565b602082019050919050565b60006020820190508181036000830152614e8c81614e50565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614ec9601c836133d9565b9150614ed482614e93565b602082019050919050565b60006020820190508181036000830152614ef881614ebc565b905091905056fea26469706673582212202cf8a37986d1192bb40cbf9fd2d869b2cef8854e7085b125025e37a9cb844f4964736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string):
Arg [1] : _initNotRevealedURI (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43624:6151:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20199:361;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21388:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23091:315;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22614:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44004:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44054:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24167:377;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43797:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48216:149;;;;;;;;;;;;;:::i;:::-;;49648:124;;;;;;;;;;;;;:::i;:::-;;24615:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44172:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48994:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44093:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2829:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20988:333;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44131:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44253:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20624:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41124:94;;;;;;;;;;;;;:::i;:::-;;44281:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49317:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49521:119;;;;;;;;;;;;;:::i;:::-;;40473:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43845:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21557:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46830:625;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23478:331;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49106:69;;;;;;;;;;;;;:::i;:::-;;48373:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24871:366;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44778:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43951:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44209:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47469:739;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45923:893;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48874:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48561:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23880:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43896:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49183:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41373:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48756:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20199:361;20351:4;20409:25;20394:40;;;:11;:40;;;;:105;;;;20466:33;20451:48;;;:11;:48;;;;20394:105;:158;;;;20516:36;20540:11;20516:23;:36::i;:::-;20394:158;20374:178;;20199:361;;;:::o;21388:100::-;21442:13;21475:5;21468:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21388:100;:::o;23091:315::-;23217:7;23265:16;23273:7;23265;:16::i;:::-;23243:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;23374:15;:24;23390:7;23374:24;;;;;;;;;;;;;;;;;;;;;23367:31;;23091:315;;;:::o;22614:411::-;22695:13;22711:23;22726:7;22711:14;:23::i;:::-;22695:39;;22759:5;22753:11;;:2;:11;;;;22745:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22853:5;22837:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22862:37;22879:5;22886:12;:10;:12::i;:::-;22862:16;:37::i;:::-;22837:62;22815:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22996:21;23005:2;23009:7;22996:8;:21::i;:::-;22684:341;22614:411;;:::o;44004:41::-;;;;:::o;44054:30::-;;;;:::o;24167:377::-;24376:41;24395:12;:10;:12::i;:::-;24409:7;24376:18;:41::i;:::-;24354:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;24508:28;24518:4;24524:2;24528:7;24508:9;:28::i;:::-;24167:377;;;:::o;43797:41::-;43834:4;43797:41;:::o;48216:149::-;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48267:7:::1;48288;:5;:7::i;:::-;48280:21;;48309;48280:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48266:69;;;48354:2;48346:11;;;::::0;::::1;;48255:110;48216:149::o:0;49648:124::-;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49705:8:::1;:6;:8::i;:::-;49697:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;49754:10;:8;:10::i;:::-;49648:124::o:0;24615:185::-;24753:39;24770:4;24776:2;24780:7;24753:39;;;;;;;;;;;;:16;:39::i;:::-;24615:185;;;:::o;44172:28::-;;;;;;;;;;;;;:::o;48994:104::-;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49079:11:::1;49069:7;:21;;;;;;;;;;;;:::i;:::-;;48994:104:::0;:::o;44093:31::-;;;;;;;;;;;;;:::o;2829:86::-;2876:4;2900:7;;;;;;;;;;;2893:14;;2829:86;:::o;20988:333::-;21110:7;21136:13;21152:7;:16;21160:7;21152:16;;;;;;;;;;;;;;;;;;;;;21136:32;;21218:1;21201:19;;:5;:19;;;;21179:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;21308:5;21301:12;;;20988:333;;;:::o;44131:34::-;;;;;;;;;;;;;:::o;44253:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20624:302::-;20746:7;20811:1;20794:19;;:5;:19;;;;20772:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;20902:9;:16;20912:5;20902:16;;;;;;;;;;;;;;;;20895:23;;20624:302;;;:::o;41124:94::-;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41189:21:::1;41207:1;41189:9;:21::i;:::-;41124:94::o:0;44281:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49317:196::-;49421:7;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49460:16:::1;49446:11;:30;;;;49494:11;;49487:18;;49317:196:::0;;;:::o;49521:119::-;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49577:8:::1;:6;:8::i;:::-;49576:9;49568:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49624:8;:6;:8::i;:::-;49521:119::o:0;40473:87::-;40519:7;40546:6;;;;;;;;;;;40539:13;;40473:87;:::o;43845:44::-;43887:2;43845:44;:::o;21557:104::-;21613:13;21646:7;21639:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21557:104;:::o;46830:625::-;46894:11;;;;;;;;;;;46886:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;46957:8;:6;:8::i;:::-;46956:9;46948:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;47027:1;47018:6;:10;:39;;;;;43887:2;47032:6;:25;;47018:39;46996:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;43834:4;47143:6;47129:11;;:20;;;;:::i;:::-;:34;;47121:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47217:7;:5;:7::i;:::-;47203:21;;:10;:21;;;47199:102;;47282:6;47262:17;;:26;;;;:::i;:::-;47249:9;:39;;47241:48;;;;;;47199:102;47318:9;47330:1;47318:13;;47313:103;47338:6;47333:1;:11;47313:103;;47366:38;47376:10;47402:1;47388:11;;:15;;;;:::i;:::-;47366:9;:38::i;:::-;47346:3;;;;;:::i;:::-;;;;47313:103;;;;47441:6;47426:11;;:21;;;;;;;:::i;:::-;;;;;;;;46830:625;:::o;23478:331::-;23629:12;:10;:12::i;:::-;23617:24;;:8;:24;;;;23609:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23729:8;23684:18;:32;23703:12;:10;:12::i;:::-;23684:32;;;;;;;;;;;;;;;:42;23717:8;23684:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23782:8;23753:48;;23768:12;:10;:12::i;:::-;23753:48;;;23792:8;23753:48;;;;;;:::i;:::-;;;;;;;;23478:331;;:::o;49106:69::-;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49163:4:::1;49152:8;;:15;;;;;;;;;;;;;;;;;;49106:69::o:0;48373:178::-;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48468:11:::1;48453:26;;:11;;;;;;;;;;;:26;;;;48445:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48532:11;48518;;:25;;;;;;;;;;;;;;;;;;48373:178:::0;:::o;24871:366::-;25060:41;25079:12;:10;:12::i;:::-;25093:7;25060:18;:41::i;:::-;25038:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;25190:39;25204:4;25210:2;25214:7;25223:5;25190:13;:39::i;:::-;24871:366;;;;:::o;44778:305::-;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43834:4:::1;44881:6;44867:11;;:20;;;;:::i;:::-;:34;;44859:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44948:9;44960:1;44948:13;;44943:101;44968:6;44963:1;:11;44943:101;;44996:36;45006:8;45030:1;45016:11;;:15;;;;:::i;:::-;44996:9;:36::i;:::-;44976:3;;;;;:::i;:::-;;;;44943:101;;;;45069:6;45054:11;;:21;;;;;;;:::i;:::-;;;;;;;;44778:305:::0;;:::o;43951:46::-;;;;:::o;44209:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47469:739::-;47587:13;47626:16;47634:7;47626;:16::i;:::-;47618:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;47675:28;47706:10;:8;:10::i;:::-;47675:41;;47743:5;47731:17;;:8;;;;;;;;;;;:17;;;47727:466;;;47774:14;47767:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47727:466;47847:10;:8;:10::i;:::-;47830:27;;47925:1;47900:14;47894:28;:32;:287;;;;;;;;;;;;;;;;;48018:14;48059:18;:7;:16;:18::i;:::-;48104:13;47975:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47894:287;47874:307;;;47469:739;;;;:::o;45923:893::-;46046:14;;;;;;;;;;;46038:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;46108:8;:6;:8::i;:::-;46107:9;46099:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;46215:4;46169:50;;:42;46185:17;46191:10;46185:5;:17::i;:::-;46204:6;46169:15;:42::i;:::-;:50;;;46147:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;46306:1;46297:6;:10;:75;;;;;43943:1;46342:6;46311:16;:28;46328:10;46311:28;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:61;;46297:75;46275:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;43834:4;46458:6;46444:11;;:20;;;;:::i;:::-;:34;;46436:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46532:7;:5;:7::i;:::-;46518:21;;:10;:21;;;46514:99;;46594:6;46577:14;;:23;;;;:::i;:::-;46564:9;:36;;46556:45;;;;;;46514:99;46630:9;46642:1;46630:13;;46625:103;46650:6;46645:1;:11;46625:103;;46678:38;46688:10;46714:1;46700:11;;:15;;;;:::i;:::-;46678:9;:38::i;:::-;46658:3;;;;;:::i;:::-;;;;46625:103;;;;46753:6;46738:11;;:21;;;;;;;:::i;:::-;;;;;;;;46802:6;46770:16;:28;46787:10;46770:28;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;45923:893;;:::o;48874:112::-;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48966:12:::1;48949:14;:29;;;;48874:112:::0;:::o;48561:187::-;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48662:11:::1;48644:29;;:14;;;;;;;;;;;:29;;;;48636:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48729:11;48712:14;;:28;;;;;;;;;;;;;;;;;;48561:187:::0;:::o;23880:220::-;24027:4;24057:18;:25;24076:5;24057:25;;;;;;;;;;;;;;;:35;24083:8;24057:35;;;;;;;;;;;;;;;;;;;;;;;;;24050:42;;23880:220;;;;:::o;43896:48::-;43943:1;43896:48;:::o;49183:126::-;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49286:15:::1;49269:14;:32;;;;;;;;;;;;:::i;:::-;;49183:126:::0;:::o;41373:230::-;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41496:1:::1;41476:22;;:8;:22;;;;41454:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;41576:19;41586:8;41576:9;:19::i;:::-;41373:230:::0;:::o;48756:112::-;40704:12;:10;:12::i;:::-;40693:23;;:7;:5;:7::i;:::-;:23;;;40685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48848:12:::1;48828:17;:32;;;;48756:112:::0;:::o;19004:213::-;19139:4;19184:25;19169:40;;;:11;:40;;;;19162:47;;19004:213;;;:::o;26785:127::-;26850:4;26902:1;26874:30;;:7;:16;26882:7;26874:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26867:37;;26785:127;;;:::o;2081:98::-;2134:7;2161:10;2154:17;;2081:98;:::o;30917:174::-;31019:2;30992:15;:24;31008:7;30992:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31075:7;31071:2;31037:46;;31046:23;31061:7;31046:14;:23::i;:::-;31037:46;;;;;;;;;;;;30917:174;;:::o;27079:460::-;27212:4;27257:16;27265:7;27257;:16::i;:::-;27235:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27357:13;27373:23;27388:7;27373:14;:23::i;:::-;27357:39;;27426:5;27415:16;;:7;:16;;;:65;;;;27473:7;27449:31;;:20;27461:7;27449:11;:20::i;:::-;:31;;;27415:65;:115;;;;27498:32;27515:5;27522:7;27498:16;:32::i;:::-;27415:115;27407:124;;;27079:460;;;;:::o;30183:616::-;30356:4;30329:31;;:23;30344:7;30329:14;:23::i;:::-;:31;;;30307:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;30463:1;30449:16;;:2;:16;;;;30441:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30519:39;30540:4;30546:2;30550:7;30519:20;:39::i;:::-;30623:29;30640:1;30644:7;30623:8;:29::i;:::-;30684:1;30665:9;:15;30675:4;30665:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30713:1;30696:9;:13;30706:2;30696:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30744:2;30725:7;:16;30733:7;30725:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30783:7;30779:2;30764:27;;30773:4;30764:27;;;;;;;;;;;;30183:616;;;:::o;3888:120::-;3432:8;:6;:8::i;:::-;3424:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;3957:5:::1;3947:7;;:15;;;;;;;;;;;;;;;;;;3978:22;3987:12;:10;:12::i;:::-;3978:22;;;;;;:::i;:::-;;;;;;;;3888:120::o:0;41611:173::-;41667:16;41686:6;;;;;;;;;;;41667:25;;41712:8;41703:6;;:17;;;;;;;;;;;;;;;;;;41767:8;41736:40;;41757:8;41736:40;;;;;;;;;;;;41656:128;41611:173;:::o;3629:118::-;3155:8;:6;:8::i;:::-;3154:9;3146:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;3699:4:::1;3689:7;;:14;;;;;;;;;;;;;;;;;;3719:20;3726:12;:10;:12::i;:::-;3719:20;;;;;;:::i;:::-;;;;;;;;3629:118::o:0;27881:110::-;27957:26;27967:2;27971:7;27957:26;;;;;;;;;;;;:9;:26::i;:::-;27881:110;;:::o;26119:353::-;26276:28;26286:4;26292:2;26296:7;26276:9;:28::i;:::-;26337:48;26360:4;26366:2;26370:7;26379:5;26337:22;:48::i;:::-;26315:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;26119:353;;;;:::o;44662:108::-;44722:13;44755:7;44748:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44662:108;:::o;253:723::-;309:13;539:1;530:5;:10;526:53;;;557:10;;;;;;;;;;;;;;;;;;;;;526:53;589:12;604:5;589:20;;620:14;645:78;660:1;652:4;:9;645:78;;678:8;;;;;:::i;:::-;;;;709:2;701:10;;;;;:::i;:::-;;;645:78;;;733:19;765:6;755:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;733:39;;783:154;799:1;790:5;:10;783:154;;827:1;817:11;;;;;:::i;:::-;;;894:2;886:5;:10;;;;:::i;:::-;873:2;:24;;;;:::i;:::-;860:39;;843:6;850;843:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;923:2;914:11;;;;;:::i;:::-;;;783:154;;;961:6;947:21;;;;;253:723;;;;:::o;45097:125::-;45151:7;45205;45188:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;45178:36;;;;;;45171:43;;45097:125;;;:::o;45236:674::-;45348:4;45370:20;45393:4;45370:27;;45415:9;45410:446;45434:5;:12;45430:1;:16;45410:446;;;45468:20;45491:5;45497:1;45491:8;;;;;;;;:::i;:::-;;;;;;;;45468:31;;45535:12;45520;:27;45516:329;;;45632:12;45646;45615:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45583:95;;;;;;45568:110;;45516:329;;;45783:12;45797;45766:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45734:95;;;;;;45719:110;;45516:329;45453:403;45448:3;;;;;:::i;:::-;;;;45410:446;;;;45891:11;;45875:12;:27;45868:34;;;45236:674;;;;:::o;33213:126::-;;;;:::o;28218:321::-;28348:18;28354:2;28358:7;28348:5;:18::i;:::-;28399:54;28430:1;28434:2;28438:7;28447:5;28399:22;:54::i;:::-;28377:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28218:321;;;:::o;31656:985::-;31811:4;31832:15;:2;:13;;;:15::i;:::-;31828:806;;;31902:2;31886:36;;;31945:12;:10;:12::i;:::-;31981:4;32009:7;32040:5;31886:178;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31864:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32265:1;32248:6;:13;:18;32244:320;;;32291:108;;;;;;;;;;:::i;:::-;;;;;;;;32244:320;32514:6;32508:13;32499:6;32495:2;32491:15;32484:38;31864:715;32139:41;;;32129:51;;;:6;:51;;;;32122:58;;;;;31828:806;32618:4;32611:11;;31656:985;;;;;;;:::o;28875:382::-;28969:1;28955:16;;:2;:16;;;;28947:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29028:16;29036:7;29028;:16::i;:::-;29027:17;29019:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29090:45;29119:1;29123:2;29127:7;29090:20;:45::i;:::-;29165:1;29148:9;:13;29158:2;29148:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29196:2;29177:7;:16;29185:7;29177:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29241:7;29237:2;29216:33;;29233:1;29216:33;;;;;;;;;;;;28875:382;;:::o;11076:387::-;11136:4;11344:12;11411:7;11399:20;11391:28;;11454:1;11447:4;:8;11440:15;;;11076:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:77::-;8908:7;8937:5;8926:16;;8871:77;;;:::o;8954:122::-;9027:24;9045:5;9027:24;:::i;:::-;9020:5;9017:35;9007:63;;9066:1;9063;9056:12;9007:63;8954:122;:::o;9082:139::-;9128:5;9166:6;9153:20;9144:29;;9182:33;9209:5;9182:33;:::i;:::-;9082:139;;;;:::o;9227:329::-;9286:6;9335:2;9323:9;9314:7;9310:23;9306:32;9303:119;;;9341:79;;:::i;:::-;9303:119;9461:1;9486:53;9531:7;9522:6;9511:9;9507:22;9486:53;:::i;:::-;9476:63;;9432:117;9227:329;;;;:::o;9562:118::-;9649:24;9667:5;9649:24;:::i;:::-;9644:3;9637:37;9562:118;;:::o;9686:222::-;9779:4;9817:2;9806:9;9802:18;9794:26;;9830:71;9898:1;9887:9;9883:17;9874:6;9830:71;:::i;:::-;9686:222;;;;:::o;9914:116::-;9984:21;9999:5;9984:21;:::i;:::-;9977:5;9974:32;9964:60;;10020:1;10017;10010:12;9964:60;9914:116;:::o;10036:133::-;10079:5;10117:6;10104:20;10095:29;;10133:30;10157:5;10133:30;:::i;:::-;10036:133;;;;:::o;10175:468::-;10240:6;10248;10297:2;10285:9;10276:7;10272:23;10268:32;10265:119;;;10303:79;;:::i;:::-;10265:119;10423:1;10448:53;10493:7;10484:6;10473:9;10469:22;10448:53;:::i;:::-;10438:63;;10394:117;10550:2;10576:50;10618:7;10609:6;10598:9;10594:22;10576:50;:::i;:::-;10566:60;;10521:115;10175:468;;;;;:::o;10649:323::-;10705:6;10754:2;10742:9;10733:7;10729:23;10725:32;10722:119;;;10760:79;;:::i;:::-;10722:119;10880:1;10905:50;10947:7;10938:6;10927:9;10923:22;10905:50;:::i;:::-;10895:60;;10851:114;10649:323;;;;:::o;10978:307::-;11039:4;11129:18;11121:6;11118:30;11115:56;;;11151:18;;:::i;:::-;11115:56;11189:29;11211:6;11189:29;:::i;:::-;11181:37;;11273:4;11267;11263:15;11255:23;;10978:307;;;:::o;11291:410::-;11368:5;11393:65;11409:48;11450:6;11409:48;:::i;:::-;11393:65;:::i;:::-;11384:74;;11481:6;11474:5;11467:21;11519:4;11512:5;11508:16;11557:3;11548:6;11543:3;11539:16;11536:25;11533:112;;;11564:79;;:::i;:::-;11533:112;11654:41;11688:6;11683:3;11678;11654:41;:::i;:::-;11374:327;11291:410;;;;;:::o;11720:338::-;11775:5;11824:3;11817:4;11809:6;11805:17;11801:27;11791:122;;11832:79;;:::i;:::-;11791:122;11949:6;11936:20;11974:78;12048:3;12040:6;12033:4;12025:6;12021:17;11974:78;:::i;:::-;11965:87;;11781:277;11720:338;;;;:::o;12064:943::-;12159:6;12167;12175;12183;12232:3;12220:9;12211:7;12207:23;12203:33;12200:120;;;12239:79;;:::i;:::-;12200:120;12359:1;12384:53;12429:7;12420:6;12409:9;12405:22;12384:53;:::i;:::-;12374:63;;12330:117;12486:2;12512:53;12557:7;12548:6;12537:9;12533:22;12512:53;:::i;:::-;12502:63;;12457:118;12614:2;12640:53;12685:7;12676:6;12665:9;12661:22;12640:53;:::i;:::-;12630:63;;12585:118;12770:2;12759:9;12755:18;12742:32;12801:18;12793:6;12790:30;12787:117;;;12823:79;;:::i;:::-;12787:117;12928:62;12982:7;12973:6;12962:9;12958:22;12928:62;:::i;:::-;12918:72;;12713:287;12064:943;;;;;;;:::o;13013:474::-;13081:6;13089;13138:2;13126:9;13117:7;13113:23;13109:32;13106:119;;;13144:79;;:::i;:::-;13106:119;13264:1;13289:53;13334:7;13325:6;13314:9;13310:22;13289:53;:::i;:::-;13279:63;;13235:117;13391:2;13417:53;13462:7;13453:6;13442:9;13438:22;13417:53;:::i;:::-;13407:63;;13362:118;13013:474;;;;;:::o;13493:311::-;13570:4;13660:18;13652:6;13649:30;13646:56;;;13682:18;;:::i;:::-;13646:56;13732:4;13724:6;13720:17;13712:25;;13792:4;13786;13782:15;13774:23;;13493:311;;;:::o;13810:117::-;13919:1;13916;13909:12;13950:710;14046:5;14071:81;14087:64;14144:6;14087:64;:::i;:::-;14071:81;:::i;:::-;14062:90;;14172:5;14201:6;14194:5;14187:21;14235:4;14228:5;14224:16;14217:23;;14288:4;14280:6;14276:17;14268:6;14264:30;14317:3;14309:6;14306:15;14303:122;;;14336:79;;:::i;:::-;14303:122;14451:6;14434:220;14468:6;14463:3;14460:15;14434:220;;;14543:3;14572:37;14605:3;14593:10;14572:37;:::i;:::-;14567:3;14560:50;14639:4;14634:3;14630:14;14623:21;;14510:144;14494:4;14489:3;14485:14;14478:21;;14434:220;;;14438:21;14052:608;;13950:710;;;;;:::o;14683:370::-;14754:5;14803:3;14796:4;14788:6;14784:17;14780:27;14770:122;;14811:79;;:::i;:::-;14770:122;14928:6;14915:20;14953:94;15043:3;15035:6;15028:4;15020:6;15016:17;14953:94;:::i;:::-;14944:103;;14760:293;14683:370;;;;:::o;15059:684::-;15152:6;15160;15209:2;15197:9;15188:7;15184:23;15180:32;15177:119;;;15215:79;;:::i;:::-;15177:119;15335:1;15360:53;15405:7;15396:6;15385:9;15381:22;15360:53;:::i;:::-;15350:63;;15306:117;15490:2;15479:9;15475:18;15462:32;15521:18;15513:6;15510:30;15507:117;;;15543:79;;:::i;:::-;15507:117;15648:78;15718:7;15709:6;15698:9;15694:22;15648:78;:::i;:::-;15638:88;;15433:303;15059:684;;;;;:::o;15749:474::-;15817:6;15825;15874:2;15862:9;15853:7;15849:23;15845:32;15842:119;;;15880:79;;:::i;:::-;15842:119;16000:1;16025:53;16070:7;16061:6;16050:9;16046:22;16025:53;:::i;:::-;16015:63;;15971:117;16127:2;16153:53;16198:7;16189:6;16178:9;16174:22;16153:53;:::i;:::-;16143:63;;16098:118;15749:474;;;;;:::o;16229:180::-;16277:77;16274:1;16267:88;16374:4;16371:1;16364:15;16398:4;16395:1;16388:15;16415:320;16459:6;16496:1;16490:4;16486:12;16476:22;;16543:1;16537:4;16533:12;16564:18;16554:81;;16620:4;16612:6;16608:17;16598:27;;16554:81;16682:2;16674:6;16671:14;16651:18;16648:38;16645:84;;;16701:18;;:::i;:::-;16645:84;16466:269;16415:320;;;:::o;16741:231::-;16881:34;16877:1;16869:6;16865:14;16858:58;16950:14;16945:2;16937:6;16933:15;16926:39;16741:231;:::o;16978:366::-;17120:3;17141:67;17205:2;17200:3;17141:67;:::i;:::-;17134:74;;17217:93;17306:3;17217:93;:::i;:::-;17335:2;17330:3;17326:12;17319:19;;16978:366;;;:::o;17350:419::-;17516:4;17554:2;17543:9;17539:18;17531:26;;17603:9;17597:4;17593:20;17589:1;17578:9;17574:17;17567:47;17631:131;17757:4;17631:131;:::i;:::-;17623:139;;17350:419;;;:::o;17775:220::-;17915:34;17911:1;17903:6;17899:14;17892:58;17984:3;17979:2;17971:6;17967:15;17960:28;17775:220;:::o;18001:366::-;18143:3;18164:67;18228:2;18223:3;18164:67;:::i;:::-;18157:74;;18240:93;18329:3;18240:93;:::i;:::-;18358:2;18353:3;18349:12;18342:19;;18001:366;;;:::o;18373:419::-;18539:4;18577:2;18566:9;18562:18;18554:26;;18626:9;18620:4;18616:20;18612:1;18601:9;18597:17;18590:47;18654:131;18780:4;18654:131;:::i;:::-;18646:139;;18373:419;;;:::o;18798:243::-;18938:34;18934:1;18926:6;18922:14;18915:58;19007:26;19002:2;18994:6;18990:15;18983:51;18798:243;:::o;19047:366::-;19189:3;19210:67;19274:2;19269:3;19210:67;:::i;:::-;19203:74;;19286:93;19375:3;19286:93;:::i;:::-;19404:2;19399:3;19395:12;19388:19;;19047:366;;;:::o;19419:419::-;19585:4;19623:2;19612:9;19608:18;19600:26;;19672:9;19666:4;19662:20;19658:1;19647:9;19643:17;19636:47;19700:131;19826:4;19700:131;:::i;:::-;19692:139;;19419:419;;;:::o;19844:236::-;19984:34;19980:1;19972:6;19968:14;19961:58;20053:19;20048:2;20040:6;20036:15;20029:44;19844:236;:::o;20086:366::-;20228:3;20249:67;20313:2;20308:3;20249:67;:::i;:::-;20242:74;;20325:93;20414:3;20325:93;:::i;:::-;20443:2;20438:3;20434:12;20427:19;;20086:366;;;:::o;20458:419::-;20624:4;20662:2;20651:9;20647:18;20639:26;;20711:9;20705:4;20701:20;20697:1;20686:9;20682:17;20675:47;20739:131;20865:4;20739:131;:::i;:::-;20731:139;;20458:419;;;:::o;20883:182::-;21023:34;21019:1;21011:6;21007:14;21000:58;20883:182;:::o;21071:366::-;21213:3;21234:67;21298:2;21293:3;21234:67;:::i;:::-;21227:74;;21310:93;21399:3;21310:93;:::i;:::-;21428:2;21423:3;21419:12;21412:19;;21071:366;;;:::o;21443:419::-;21609:4;21647:2;21636:9;21632:18;21624:26;;21696:9;21690:4;21686:20;21682:1;21671:9;21667:17;21660:47;21724:131;21850:4;21724:131;:::i;:::-;21716:139;;21443:419;;;:::o;21868:147::-;21969:11;22006:3;21991:18;;21868:147;;;;:::o;22021:114::-;;:::o;22141:398::-;22300:3;22321:83;22402:1;22397:3;22321:83;:::i;:::-;22314:90;;22413:93;22502:3;22413:93;:::i;:::-;22531:1;22526:3;22522:11;22515:18;;22141:398;;;:::o;22545:379::-;22729:3;22751:147;22894:3;22751:147;:::i;:::-;22744:154;;22915:3;22908:10;;22545:379;;;:::o;22930:175::-;23070:27;23066:1;23058:6;23054:14;23047:51;22930:175;:::o;23111:366::-;23253:3;23274:67;23338:2;23333:3;23274:67;:::i;:::-;23267:74;;23350:93;23439:3;23350:93;:::i;:::-;23468:2;23463:3;23459:12;23452:19;;23111:366;;;:::o;23483:419::-;23649:4;23687:2;23676:9;23672:18;23664:26;;23736:9;23730:4;23726:20;23722:1;23711:9;23707:17;23700:47;23764:131;23890:4;23764:131;:::i;:::-;23756:139;;23483:419;;;:::o;23908:228::-;24048:34;24044:1;24036:6;24032:14;24025:58;24117:11;24112:2;24104:6;24100:15;24093:36;23908:228;:::o;24142:366::-;24284:3;24305:67;24369:2;24364:3;24305:67;:::i;:::-;24298:74;;24381:93;24470:3;24381:93;:::i;:::-;24499:2;24494:3;24490:12;24483:19;;24142:366;;;:::o;24514:419::-;24680:4;24718:2;24707:9;24703:18;24695:26;;24767:9;24761:4;24757:20;24753:1;24742:9;24738:17;24731:47;24795:131;24921:4;24795:131;:::i;:::-;24787:139;;24514:419;;;:::o;24939:229::-;25079:34;25075:1;25067:6;25063:14;25056:58;25148:12;25143:2;25135:6;25131:15;25124:37;24939:229;:::o;25174:366::-;25316:3;25337:67;25401:2;25396:3;25337:67;:::i;:::-;25330:74;;25413:93;25502:3;25413:93;:::i;:::-;25531:2;25526:3;25522:12;25515:19;;25174:366;;;:::o;25546:419::-;25712:4;25750:2;25739:9;25735:18;25727:26;;25799:9;25793:4;25789:20;25785:1;25774:9;25770:17;25763:47;25827:131;25953:4;25827:131;:::i;:::-;25819:139;;25546:419;;;:::o;25971:173::-;26111:25;26107:1;26099:6;26095:14;26088:49;25971:173;:::o;26150:366::-;26292:3;26313:67;26377:2;26372:3;26313:67;:::i;:::-;26306:74;;26389:93;26478:3;26389:93;:::i;:::-;26507:2;26502:3;26498:12;26491:19;;26150:366;;;:::o;26522:419::-;26688:4;26726:2;26715:9;26711:18;26703:26;;26775:9;26769:4;26765:20;26761:1;26750:9;26746:17;26739:47;26803:131;26929:4;26803:131;:::i;:::-;26795:139;;26522:419;;;:::o;26947:177::-;27087:29;27083:1;27075:6;27071:14;27064:53;26947:177;:::o;27130:366::-;27272:3;27293:67;27357:2;27352:3;27293:67;:::i;:::-;27286:74;;27369:93;27458:3;27369:93;:::i;:::-;27487:2;27482:3;27478:12;27471:19;;27130:366;;;:::o;27502:419::-;27668:4;27706:2;27695:9;27691:18;27683:26;;27755:9;27749:4;27745:20;27741:1;27730:9;27726:17;27719:47;27783:131;27909:4;27783:131;:::i;:::-;27775:139;;27502:419;;;:::o;27927:165::-;28067:17;28063:1;28055:6;28051:14;28044:41;27927:165;:::o;28098:366::-;28240:3;28261:67;28325:2;28320:3;28261:67;:::i;:::-;28254:74;;28337:93;28426:3;28337:93;:::i;:::-;28455:2;28450:3;28446:12;28439:19;;28098:366;;;:::o;28470:419::-;28636:4;28674:2;28663:9;28659:18;28651:26;;28723:9;28717:4;28713:20;28709:1;28698:9;28694:17;28687:47;28751:131;28877:4;28751:131;:::i;:::-;28743:139;;28470:419;;;:::o;28895:175::-;29035:27;29031:1;29023:6;29019:14;29012:51;28895:175;:::o;29076:366::-;29218:3;29239:67;29303:2;29298:3;29239:67;:::i;:::-;29232:74;;29315:93;29404:3;29315:93;:::i;:::-;29433:2;29428:3;29424:12;29417:19;;29076:366;;;:::o;29448:419::-;29614:4;29652:2;29641:9;29637:18;29629:26;;29701:9;29695:4;29691:20;29687:1;29676:9;29672:17;29665:47;29729:131;29855:4;29729:131;:::i;:::-;29721:139;;29448:419;;;:::o;29873:180::-;29921:77;29918:1;29911:88;30018:4;30015:1;30008:15;30042:4;30039:1;30032:15;30059:305;30099:3;30118:20;30136:1;30118:20;:::i;:::-;30113:25;;30152:20;30170:1;30152:20;:::i;:::-;30147:25;;30306:1;30238:66;30234:74;30231:1;30228:81;30225:107;;;30312:18;;:::i;:::-;30225:107;30356:1;30353;30349:9;30342:16;;30059:305;;;;:::o;30370:168::-;30510:20;30506:1;30498:6;30494:14;30487:44;30370:168;:::o;30544:366::-;30686:3;30707:67;30771:2;30766:3;30707:67;:::i;:::-;30700:74;;30783:93;30872:3;30783:93;:::i;:::-;30901:2;30896:3;30892:12;30885:19;;30544:366;;;:::o;30916:419::-;31082:4;31120:2;31109:9;31105:18;31097:26;;31169:9;31163:4;31159:20;31155:1;31144:9;31140:17;31133:47;31197:131;31323:4;31197:131;:::i;:::-;31189:139;;30916:419;;;:::o;31341:348::-;31381:7;31404:20;31422:1;31404:20;:::i;:::-;31399:25;;31438:20;31456:1;31438:20;:::i;:::-;31433:25;;31626:1;31558:66;31554:74;31551:1;31548:81;31543:1;31536:9;31529:17;31525:105;31522:131;;;31633:18;;:::i;:::-;31522:131;31681:1;31678;31674:9;31663:20;;31341:348;;;;:::o;31695:233::-;31734:3;31757:24;31775:5;31757:24;:::i;:::-;31748:33;;31803:66;31796:5;31793:77;31790:103;;;31873:18;;:::i;:::-;31790:103;31920:1;31913:5;31909:13;31902:20;;31695:233;;;:::o;31934:175::-;32074:27;32070:1;32062:6;32058:14;32051:51;31934:175;:::o;32115:366::-;32257:3;32278:67;32342:2;32337:3;32278:67;:::i;:::-;32271:74;;32354:93;32443:3;32354:93;:::i;:::-;32472:2;32467:3;32463:12;32456:19;;32115:366;;;:::o;32487:419::-;32653:4;32691:2;32680:9;32676:18;32668:26;;32740:9;32734:4;32730:20;32726:1;32715:9;32711:17;32704:47;32768:131;32894:4;32768:131;:::i;:::-;32760:139;;32487:419;;;:::o;32912:173::-;33052:25;33048:1;33040:6;33036:14;33029:49;32912:173;:::o;33091:366::-;33233:3;33254:67;33318:2;33313:3;33254:67;:::i;:::-;33247:74;;33330:93;33419:3;33330:93;:::i;:::-;33448:2;33443:3;33439:12;33432:19;;33091:366;;;:::o;33463:419::-;33629:4;33667:2;33656:9;33652:18;33644:26;;33716:9;33710:4;33706:20;33702:1;33691:9;33687:17;33680:47;33744:131;33870:4;33744:131;:::i;:::-;33736:139;;33463:419;;;:::o;33888:176::-;34028:28;34024:1;34016:6;34012:14;34005:52;33888:176;:::o;34070:366::-;34212:3;34233:67;34297:2;34292:3;34233:67;:::i;:::-;34226:74;;34309:93;34398:3;34309:93;:::i;:::-;34427:2;34422:3;34418:12;34411:19;;34070:366;;;:::o;34442:419::-;34608:4;34646:2;34635:9;34631:18;34623:26;;34695:9;34689:4;34685:20;34681:1;34670:9;34666:17;34659:47;34723:131;34849:4;34723:131;:::i;:::-;34715:139;;34442:419;;;:::o;34867:165::-;35007:17;35003:1;34995:6;34991:14;34984:41;34867:165;:::o;35038:366::-;35180:3;35201:67;35265:2;35260:3;35201:67;:::i;:::-;35194:74;;35277:93;35366:3;35277:93;:::i;:::-;35395:2;35390:3;35386:12;35379:19;;35038:366;;;:::o;35410:419::-;35576:4;35614:2;35603:9;35599:18;35591:26;;35663:9;35657:4;35653:20;35649:1;35638:9;35634:17;35627:47;35691:131;35817:4;35691:131;:::i;:::-;35683:139;;35410:419;;;:::o;35835:148::-;35937:11;35974:3;35959:18;;35835:148;;;;:::o;35989:377::-;36095:3;36123:39;36156:5;36123:39;:::i;:::-;36178:89;36260:6;36255:3;36178:89;:::i;:::-;36171:96;;36276:52;36321:6;36316:3;36309:4;36302:5;36298:16;36276:52;:::i;:::-;36353:6;36348:3;36344:16;36337:23;;36099:267;35989:377;;;;:::o;36372:141::-;36421:4;36444:3;36436:11;;36467:3;36464:1;36457:14;36501:4;36498:1;36488:18;36480:26;;36372:141;;;:::o;36543:845::-;36646:3;36683:5;36677:12;36712:36;36738:9;36712:36;:::i;:::-;36764:89;36846:6;36841:3;36764:89;:::i;:::-;36757:96;;36884:1;36873:9;36869:17;36900:1;36895:137;;;;37046:1;37041:341;;;;36862:520;;36895:137;36979:4;36975:9;36964;36960:25;36955:3;36948:38;37015:6;37010:3;37006:16;36999:23;;36895:137;;37041:341;37108:38;37140:5;37108:38;:::i;:::-;37168:1;37182:154;37196:6;37193:1;37190:13;37182:154;;;37270:7;37264:14;37260:1;37255:3;37251:11;37244:35;37320:1;37311:7;37307:15;37296:26;;37218:4;37215:1;37211:12;37206:17;;37182:154;;;37365:6;37360:3;37356:16;37349:23;;37048:334;;36862:520;;36650:738;;36543:845;;;;:::o;37394:589::-;37619:3;37641:95;37732:3;37723:6;37641:95;:::i;:::-;37634:102;;37753:95;37844:3;37835:6;37753:95;:::i;:::-;37746:102;;37865:92;37953:3;37944:6;37865:92;:::i;:::-;37858:99;;37974:3;37967:10;;37394:589;;;;;;:::o;37989:173::-;38129:25;38125:1;38117:6;38113:14;38106:49;37989:173;:::o;38168:366::-;38310:3;38331:67;38395:2;38390:3;38331:67;:::i;:::-;38324:74;;38407:93;38496:3;38407:93;:::i;:::-;38525:2;38520:3;38516:12;38509:19;;38168:366;;;:::o;38540:419::-;38706:4;38744:2;38733:9;38729:18;38721:26;;38793:9;38787:4;38783:20;38779:1;38768:9;38764:17;38757:47;38821:131;38947:4;38821:131;:::i;:::-;38813:139;;38540:419;;;:::o;38965:165::-;39105:17;39101:1;39093:6;39089:14;39082:41;38965:165;:::o;39136:366::-;39278:3;39299:67;39363:2;39358:3;39299:67;:::i;:::-;39292:74;;39375:93;39464:3;39375:93;:::i;:::-;39493:2;39488:3;39484:12;39477:19;;39136:366;;;:::o;39508:419::-;39674:4;39712:2;39701:9;39697:18;39689:26;;39761:9;39755:4;39751:20;39747:1;39736:9;39732:17;39725:47;39789:131;39915:4;39789:131;:::i;:::-;39781:139;;39508:419;;;:::o;39933:173::-;40073:25;40069:1;40061:6;40057:14;40050:49;39933:173;:::o;40112:366::-;40254:3;40275:67;40339:2;40334:3;40275:67;:::i;:::-;40268:74;;40351:93;40440:3;40351:93;:::i;:::-;40469:2;40464:3;40460:12;40453:19;;40112:366;;;:::o;40484:419::-;40650:4;40688:2;40677:9;40673:18;40665:26;;40737:9;40731:4;40727:20;40723:1;40712:9;40708:17;40701:47;40765:131;40891:4;40765:131;:::i;:::-;40757:139;;40484:419;;;:::o;40909:225::-;41049:34;41045:1;41037:6;41033:14;41026:58;41118:8;41113:2;41105:6;41101:15;41094:33;40909:225;:::o;41140:366::-;41282:3;41303:67;41367:2;41362:3;41303:67;:::i;:::-;41296:74;;41379:93;41468:3;41379:93;:::i;:::-;41497:2;41492:3;41488:12;41481:19;;41140:366;;;:::o;41512:419::-;41678:4;41716:2;41705:9;41701:18;41693:26;;41765:9;41759:4;41755:20;41751:1;41740:9;41736:17;41729:47;41793:131;41919:4;41793:131;:::i;:::-;41785:139;;41512:419;;;:::o;41937:231::-;42077:34;42073:1;42065:6;42061:14;42054:58;42146:14;42141:2;42133:6;42129:15;42122:39;41937:231;:::o;42174:366::-;42316:3;42337:67;42401:2;42396:3;42337:67;:::i;:::-;42330:74;;42413:93;42502:3;42413:93;:::i;:::-;42531:2;42526:3;42522:12;42515:19;;42174:366;;;:::o;42546:419::-;42712:4;42750:2;42739:9;42735:18;42727:26;;42799:9;42793:4;42789:20;42785:1;42774:9;42770:17;42763:47;42827:131;42953:4;42827:131;:::i;:::-;42819:139;;42546:419;;;:::o;42971:228::-;43111:34;43107:1;43099:6;43095:14;43088:58;43180:11;43175:2;43167:6;43163:15;43156:36;42971:228;:::o;43205:366::-;43347:3;43368:67;43432:2;43427:3;43368:67;:::i;:::-;43361:74;;43444:93;43533:3;43444:93;:::i;:::-;43562:2;43557:3;43553:12;43546:19;;43205:366;;;:::o;43577:419::-;43743:4;43781:2;43770:9;43766:18;43758:26;;43830:9;43824:4;43820:20;43816:1;43805:9;43801:17;43794:47;43858:131;43984:4;43858:131;:::i;:::-;43850:139;;43577:419;;;:::o;44002:223::-;44142:34;44138:1;44130:6;44126:14;44119:58;44211:6;44206:2;44198:6;44194:15;44187:31;44002:223;:::o;44231:366::-;44373:3;44394:67;44458:2;44453:3;44394:67;:::i;:::-;44387:74;;44470:93;44559:3;44470:93;:::i;:::-;44588:2;44583:3;44579:12;44572:19;;44231:366;;;:::o;44603:419::-;44769:4;44807:2;44796:9;44792:18;44784:26;;44856:9;44850:4;44846:20;44842:1;44831:9;44827:17;44820:47;44884:131;45010:4;44884:131;:::i;:::-;44876:139;;44603:419;;;:::o;45028:191::-;45068:4;45088:20;45106:1;45088:20;:::i;:::-;45083:25;;45122:20;45140:1;45122:20;:::i;:::-;45117:25;;45161:1;45158;45155:8;45152:34;;;45166:18;;:::i;:::-;45152:34;45211:1;45208;45204:9;45196:17;;45028:191;;;;:::o;45225:170::-;45365:22;45361:1;45353:6;45349:14;45342:46;45225:170;:::o;45401:366::-;45543:3;45564:67;45628:2;45623:3;45564:67;:::i;:::-;45557:74;;45640:93;45729:3;45640:93;:::i;:::-;45758:2;45753:3;45749:12;45742:19;;45401:366;;;:::o;45773:419::-;45939:4;45977:2;45966:9;45962:18;45954:26;;46026:9;46020:4;46016:20;46012:1;46001:9;45997:17;45990:47;46054:131;46180:4;46054:131;:::i;:::-;46046:139;;45773:419;;;:::o;46198:166::-;46338:18;46334:1;46326:6;46322:14;46315:42;46198:166;:::o;46370:366::-;46512:3;46533:67;46597:2;46592:3;46533:67;:::i;:::-;46526:74;;46609:93;46698:3;46609:93;:::i;:::-;46727:2;46722:3;46718:12;46711:19;;46370:366;;;:::o;46742:419::-;46908:4;46946:2;46935:9;46931:18;46923:26;;46995:9;46989:4;46985:20;46981:1;46970:9;46966:17;46959:47;47023:131;47149:4;47023:131;:::i;:::-;47015:139;;46742:419;;;:::o;47167:237::-;47307:34;47303:1;47295:6;47291:14;47284:58;47376:20;47371:2;47363:6;47359:15;47352:45;47167:237;:::o;47410:366::-;47552:3;47573:67;47637:2;47632:3;47573:67;:::i;:::-;47566:74;;47649:93;47738:3;47649:93;:::i;:::-;47767:2;47762:3;47758:12;47751:19;;47410:366;;;:::o;47782:419::-;47948:4;47986:2;47975:9;47971:18;47963:26;;48035:9;48029:4;48025:20;48021:1;48010:9;48006:17;47999:47;48063:131;48189:4;48063:131;:::i;:::-;48055:139;;47782:419;;;:::o;48207:180::-;48255:77;48252:1;48245:88;48352:4;48349:1;48342:15;48376:4;48373:1;48366:15;48393:185;48433:1;48450:20;48468:1;48450:20;:::i;:::-;48445:25;;48484:20;48502:1;48484:20;:::i;:::-;48479:25;;48523:1;48513:35;;48528:18;;:::i;:::-;48513:35;48570:1;48567;48563:9;48558:14;;48393:185;;;;:::o;48584:176::-;48616:1;48633:20;48651:1;48633:20;:::i;:::-;48628:25;;48667:20;48685:1;48667:20;:::i;:::-;48662:25;;48706:1;48696:35;;48711:18;;:::i;:::-;48696:35;48752:1;48749;48745:9;48740:14;;48584:176;;;;:::o;48766:180::-;48814:77;48811:1;48804:88;48911:4;48908:1;48901:15;48935:4;48932:1;48925:15;48952:94;48985:8;49033:5;49029:2;49025:14;49004:35;;48952:94;;;:::o;49052:::-;49091:7;49120:20;49134:5;49120:20;:::i;:::-;49109:31;;49052:94;;;:::o;49152:100::-;49191:7;49220:26;49240:5;49220:26;:::i;:::-;49209:37;;49152:100;;;:::o;49258:157::-;49363:45;49383:24;49401:5;49383:24;:::i;:::-;49363:45;:::i;:::-;49358:3;49351:58;49258:157;;:::o;49421:256::-;49533:3;49548:75;49619:3;49610:6;49548:75;:::i;:::-;49648:2;49643:3;49639:12;49632:19;;49668:3;49661:10;;49421:256;;;;:::o;49683:79::-;49722:7;49751:5;49740:16;;49683:79;;;:::o;49768:157::-;49873:45;49893:24;49911:5;49893:24;:::i;:::-;49873:45;:::i;:::-;49868:3;49861:58;49768:157;;:::o;49931:397::-;50071:3;50086:75;50157:3;50148:6;50086:75;:::i;:::-;50186:2;50181:3;50177:12;50170:19;;50199:75;50270:3;50261:6;50199:75;:::i;:::-;50299:2;50294:3;50290:12;50283:19;;50319:3;50312:10;;49931:397;;;;;:::o;50334:98::-;50385:6;50419:5;50413:12;50403:22;;50334:98;;;:::o;50438:168::-;50521:11;50555:6;50550:3;50543:19;50595:4;50590:3;50586:14;50571:29;;50438:168;;;;:::o;50612:360::-;50698:3;50726:38;50758:5;50726:38;:::i;:::-;50780:70;50843:6;50838:3;50780:70;:::i;:::-;50773:77;;50859:52;50904:6;50899:3;50892:4;50885:5;50881:16;50859:52;:::i;:::-;50936:29;50958:6;50936:29;:::i;:::-;50931:3;50927:39;50920:46;;50702:270;50612:360;;;;:::o;50978:640::-;51173:4;51211:3;51200:9;51196:19;51188:27;;51225:71;51293:1;51282:9;51278:17;51269:6;51225:71;:::i;:::-;51306:72;51374:2;51363:9;51359:18;51350:6;51306:72;:::i;:::-;51388;51456:2;51445:9;51441:18;51432:6;51388:72;:::i;:::-;51507:9;51501:4;51497:20;51492:2;51481:9;51477:18;51470:48;51535:76;51606:4;51597:6;51535:76;:::i;:::-;51527:84;;50978:640;;;;;;;:::o;51624:141::-;51680:5;51711:6;51705:13;51696:22;;51727:32;51753:5;51727:32;:::i;:::-;51624:141;;;;:::o;51771:349::-;51840:6;51889:2;51877:9;51868:7;51864:23;51860:32;51857:119;;;51895:79;;:::i;:::-;51857:119;52015:1;52040:63;52095:7;52086:6;52075:9;52071:22;52040:63;:::i;:::-;52030:73;;51986:127;51771:349;;;;:::o;52126:182::-;52266:34;52262:1;52254:6;52250:14;52243:58;52126:182;:::o;52314:366::-;52456:3;52477:67;52541:2;52536:3;52477:67;:::i;:::-;52470:74;;52553:93;52642:3;52553:93;:::i;:::-;52671:2;52666:3;52662:12;52655:19;;52314:366;;;:::o;52686:419::-;52852:4;52890:2;52879:9;52875:18;52867:26;;52939:9;52933:4;52929:20;52925:1;52914:9;52910:17;52903:47;52967:131;53093:4;52967:131;:::i;:::-;52959:139;;52686:419;;;:::o;53111:178::-;53251:30;53247:1;53239:6;53235:14;53228:54;53111:178;:::o;53295:366::-;53437:3;53458:67;53522:2;53517:3;53458:67;:::i;:::-;53451:74;;53534:93;53623:3;53534:93;:::i;:::-;53652:2;53647:3;53643:12;53636:19;;53295:366;;;:::o;53667:419::-;53833:4;53871:2;53860:9;53856:18;53848:26;;53920:9;53914:4;53910:20;53906:1;53895:9;53891:17;53884:47;53948:131;54074:4;53948:131;:::i;:::-;53940:139;;53667:419;;;:::o

Swarm Source

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