ETH Price: $2,989.15 (-2.28%)
Gas: 2 Gwei

Bad Girlfriend Project Towers (BGFTOWERS)
 

Overview

TokenID

190

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
BGFTOWERS

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-23
*/

// SPDX-License-Identifier: MIT LICENSE

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/BGFVault.sol

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

pragma solidity ^0.8.0;

/**

 * @dev Interface of the ERC165 standard, as defined in the

 * https://eips.ethereum.org/EIPS/eip-165[EIP].

 *

 * Implementers can declare support of contract interfaces, which can then be

 * queried by others ({ERC165Checker}).

 *

 * For an implementation, see {ERC165}.

 */

interface IERC165 {
    /**

     * @dev Returns true if this contract implements the interface defined by

     * `interfaceId`. See the corresponding

     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]

     * to learn more about how these ids are created.

     *

     * This function call must use less than 30 000 gas.

     */

    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

pragma solidity ^0.8.0;

/**

 * @dev Required interface of an ERC721 compliant contract.

 */

interface IERC721 is IERC165 {
    /**

     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.

     */

    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

    /**

     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.

     */

    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );

    /**

     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.

     */

    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    /**

     * @dev Returns the number of tokens in ``owner``'s account.

     */

    function balanceOf(address owner) external view returns (uint256 balance);

    /**

     * @dev Returns the owner of the `tokenId` token.

     *

     * Requirements:

     *

     * - `tokenId` must exist.

     */

    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**

     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients

     * are aware of the ERC721 protocol to prevent tokens from being forever locked.

     *

     * Requirements:

     *

     * - `from` cannot be the zero address.

     * - `to` cannot be the zero address.

     * - `tokenId` token must exist and be owned by `from`.

     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.

     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.

     *

     * Emits a {Transfer} event.

     */

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**

     * @dev Transfers `tokenId` token from `from` to `to`.

     *

     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.

     *

     * Requirements:

     *

     * - `from` cannot be the zero address.

     * - `to` cannot be the zero address.

     * - `tokenId` token must be owned by `from`.

     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.

     *

     * Emits a {Transfer} event.

     */

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**

     * @dev Gives permission to `to` to transfer `tokenId` token to another account.

     * The approval is cleared when the token is transferred.

     *

     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.

     *

     * Requirements:

     *

     * - The caller must own the token or be an approved operator.

     * - `tokenId` must exist.

     *

     * Emits an {Approval} event.

     */

    function approve(address to, uint256 tokenId) external;

    /**

     * @dev Returns the account approved for `tokenId` token.

     *

     * Requirements:

     *

     * - `tokenId` must exist.

     */

    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

    /**

     * @dev Approve or remove `operator` as an operator for the caller.

     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.

     *

     * Requirements:

     *

     * - The `operator` cannot be the caller.

     *

     * Emits an {ApprovalForAll} event.

     */

    function setApprovalForAll(address operator, bool _approved) external;

    /**

     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.

     *

     * See {setApprovalForAll}

     */

    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);

    /**

     * @dev Safely transfers `tokenId` token from `from` to `to`.

     *

     * Requirements:

     *

     * - `from` cannot be the zero address.

     * - `to` cannot be the zero address.

     * - `tokenId` token must exist and be owned by `from`.

     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.

     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.

     *

     * Emits a {Transfer} event.

     */

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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

pragma solidity ^0.8.0;

/**

 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension

 * @dev See https://eips.ethereum.org/EIPS/eip-721

 */

interface IERC721Enumerable is IERC721 {
    /**

     * @dev Returns the total amount of tokens stored by the contract.

     */

    function totalSupply() external view returns (uint256);

    /**

     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.

     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.

     */

    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**

     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.

     * Use along with {totalSupply} to enumerate all tokens.

     */

    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

pragma solidity ^0.8.0;

/**

 * @dev Implementation of the {IERC165} interface.

 *

 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check

 * for the additional interface id that will be supported. For example:

 *

 * ```solidity

 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {

 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);

 * }

 * ```

 *

 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.

 */

abstract contract ERC165 is IERC165 {
    /**

     * @dev See {IERC165-supportsInterface}.

     */

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

pragma solidity ^0.8.0;

/**

 * @dev String operations.

 */

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

    /**

     * @dev Converts a `uint256` to its ASCII `string` decimal representation.

     */

    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence

        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }

        uint256 temp = value;

        uint256 digits;

        while (temp != 0) {
            digits++;

            temp /= 10;
        }

        bytes memory buffer = new bytes(digits);

        while (value != 0) {
            digits -= 1;

            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));

            value /= 10;
        }

        return string(buffer);
    }

    /**

     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.

     */

    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }

        uint256 temp = value;

        uint256 length = 0;

        while (temp != 0) {
            length++;

            temp >>= 8;
        }

        return toHexString(value, length);
    }

    /**

     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.

     */

    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);

        buffer[0] = "0";

        buffer[1] = "x";

        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];

            value >>= 4;
        }

        require(value == 0, "Strings: hex length insufficient");

        return string(buffer);
    }
}

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

pragma solidity ^0.8.0;

/**

 * @dev Collection of functions related to the address type

 */

library Address {
    /**

     * @dev Returns true if `account` is a contract.

     *

     * [IMPORTANT]

     * ====

     * It is unsafe to assume that an address for which this function returns

     * false is an externally-owned account (EOA) and not a contract.

     *

     * Among others, `isContract` will return false for the following

     * types of addresses:

     *

     *  - an externally-owned account

     *  - a contract in construction

     *  - an address where a contract will be created

     *  - an address where a contract lived, but was destroyed

     * ====

     */

    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in

        // construction, since the code is only stored at the end of the

        // constructor execution.

        uint256 size;

        assembly {
            size := extcodesize(account)
        }

        return size > 0;
    }

    /**

     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to

     * `recipient`, forwarding all available gas and reverting on errors.

     *

     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost

     * of certain opcodes, possibly making contracts go over the 2300 gas limit

     * imposed by `transfer`, making them unable to receive funds via

     * `transfer`. {sendValue} removes this limitation.

     *

     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].

     *

     * IMPORTANT: because control is transferred to `recipient`, care must be

     * taken to not create reentrancy vulnerabilities. Consider using

     * {ReentrancyGuard} or the

     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].

     */

    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");

        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**

     * @dev Performs a Solidity function call using a low level `call`. A

     * plain `call` is an unsafe replacement for a function call: use this

     * function instead.

     *

     * If `target` reverts with a revert reason, it is bubbled up by this

     * function (like regular Solidity function calls).

     *

     * Returns the raw returned data. To convert to the expected return value,

     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].

     *

     * Requirements:

     *

     * - `target` must be a contract.

     * - calling `target` with `data` must not revert.

     *

     * _Available since v3.1._

     */

    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**

     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with

     * `errorMessage` as a fallback revert reason when `target` reverts.

     *

     * _Available since v3.1._

     */

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**

     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],

     * but also transferring `value` wei to `target`.

     *

     * Requirements:

     *

     * - the calling contract must have an ETH balance of at least `value`.

     * - the called Solidity function must be `payable`.

     *

     * _Available since v3.1._

     */

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**

     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but

     * with `errorMessage` as a fallback revert reason when `target` reverts.

     *

     * _Available since v3.1._

     */

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );

        require(isContract(target), "Address: call to non-contract");

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

        return verifyCallResult(success, returndata, errorMessage);
    }

    /**

     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],

     * but performing a static call.

     *

     * _Available since v3.3._

     */

    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**

     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],

     * but performing a static call.

     *

     * _Available since v3.3._

     */

    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);

        return verifyCallResult(success, returndata, errorMessage);
    }

    /**

     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],

     * but performing a delegate call.

     *

     * _Available since v3.4._

     */

    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**

     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],

     * but performing a delegate call.

     *

     * _Available since v3.4._

     */

    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);

        return verifyCallResult(success, returndata, errorMessage);
    }

    /**

     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the

     * revert reason using the provided one.

     *

     * _Available since v4.3._

     */

    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present

            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)

                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

/**

 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension

 * @dev See https://eips.ethereum.org/EIPS/eip-721

 */

interface IERC721Metadata is IERC721 {
    /**

     * @dev Returns the token collection name.

     */

    function name() external view returns (string memory);

    /**

     * @dev Returns the token collection symbol.

     */

    function symbol() external view returns (string memory);

    /**

     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.

     */

    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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

pragma solidity ^0.8.0;

/**

 * @title ERC721 token receiver interface

 * @dev Interface for any contract that wants to support safeTransfers

 * from ERC721 asset contracts.

 */

interface IERC721Receiver {
    /**

     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}

     * by `operator` from `from`, this function is called.

     *

     * It must return its Solidity selector to confirm the token transfer.

     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.

     *

     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.

     */

    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

pragma solidity ^0.8.0;

/**

 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including

 * the Metadata extension, but not including the Enumerable extension, which is available separately as

 * {ERC721Enumerable}.

 */

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;

    using Strings for uint256;

    // Token name

    string private _name;

    // Token symbol

    string private _symbol;

    // Mapping from token ID to owner address

    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count

    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address

    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals

    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**

     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.

     */

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

        _symbol = symbol_;
    }

    /**

     * @dev See {IERC165-supportsInterface}.

     */

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

    /**

     * @dev See {IERC721-balanceOf}.

     */

    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );

        return _balances[owner];
    }

    /**

     * @dev See {IERC721-ownerOf}.

     */

    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];

        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );

        return owner;
    }

    /**

     * @dev See {IERC721Metadata-name}.

     */

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**

     * @dev See {IERC721Metadata-symbol}.

     */

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**

     * @dev See {IERC721Metadata-tokenURI}.

     */

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();

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

    /**

     * @dev Base URI for computing {tokenURI}. 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 {}
}

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

pragma solidity ^0.8.0;

/**

 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds

 * enumerability of all the token ids in the contract as well as all token ids owned by each

 * account.

 */

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs

    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list

    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration

    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array

    mapping(uint256 => uint256) private _allTokensIndex;

    /**

     * @dev See {IERC165-supportsInterface}.

     */

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

    /**

     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.

     */

    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );

        return _ownedTokens[owner][index];
    }

    /**

     * @dev See {IERC721Enumerable-totalSupply}.

     */

    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**

     * @dev See {IERC721Enumerable-tokenByIndex}.

     */

    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );

        return _allTokens[index];
    }

    /**

     * @dev Hook that is called before any token transfer. This includes minting

     * and burning.

     *

     * Calling conditions:

     *

     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be

     * transferred to `to`.

     * - When `from` is zero, `tokenId` will be minted for `to`.

     * - When `to` is zero, ``from``'s `tokenId` will be burned.

     * - `from` cannot be the zero address.

     * - `to` cannot be the zero address.

     *

     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].

     */

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

    /**

     * @dev Private function to add a token to this extension's ownership-tracking data structures.

     * @param to address representing the new owner of the given token ID

     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address

     */

    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);

        _ownedTokens[to][length] = tokenId;

        _ownedTokensIndex[tokenId] = length;
    }

    /**

     * @dev Private function to add a token to this extension's token tracking data structures.

     * @param tokenId uint256 ID of the token to be added to the tokens list

     */

    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;

        _allTokens.push(tokenId);
    }

    /**

     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that

     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for

     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).

     * This has O(1) time complexity, but alters the order of the _ownedTokens array.

     * @param from address representing the previous owner of the given token ID

     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address

     */

    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and

        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;

        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary

        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token

            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array

        delete _ownedTokensIndex[tokenId];

        delete _ownedTokens[from][lastTokenIndex];
    }

    /**

     * @dev Private function to remove a token from this extension's token tracking data structures.

     * This has O(1) time complexity, but alters the order of the _allTokens array.

     * @param tokenId uint256 ID of the token to be removed from the tokens list

     */

    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and

        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;

        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so

        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding

        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)

        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        // This also deletes the contents at the last position of the array

        delete _allTokensIndex[tokenId];

        _allTokens.pop();
    }
}

pragma solidity ^0.8.0;

interface HELLISHVAULT {
    function getBankBalance(address _address) external returns (uint256);
    function spendBalanceTowers(address _address, uint256 _amount) external;
}

contract BGFTOWERS is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = "";
    uint256 public maxSupply = 600;
    uint256 public price = 800;
    bool public paused = true;
    address public bgfVault;

    HELLISHVAULT vaultContract;

    constructor() ERC721("Bad Girlfriend Project Towers", "BGFTOWERS") {}

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

    function setVaultAddress(address _address) public onlyOwner {
        bgfVault = _address;
        vaultContract = HELLISHVAULT(_address);
    }

    function mint() public {
        require(!paused, "Not allowed yet.");
        uint256 balance = vaultContract.getBankBalance(msg.sender);
        require(balance >= price, "Insufficient Balance.");
        uint256 supply = totalSupply();
        require(supply + 1 <= maxSupply, "Total supply would be reached.");
        vaultContract.spendBalanceTowers(msg.sender, price);
        _safeMint(msg.sender, supply + 1);
        if (supply + 1 == 100) {
            paused = true;
        }
        if (supply + 1 == 200) {
            paused = true;
        }
        if (supply + 1 == 300) {
            paused = true;
        }
        if (supply + 1 == 400) {
            paused = true;
        }
        if (supply + 1 == 500) {
            paused = true;
        }
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);

        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Token doesn't exist.");

        string memory currentBaseURI = _baseURI();

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

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

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

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"bgfVault","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setVaultAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040819052600060808190526200001b91600c9162000138565b50610258600d55610320600e55600f805460ff191660011790553480156200004257600080fd5b50604080518082018252601d81527f426164204769726c667269656e642050726f6a65637420546f77657273000000602080830191825283518085019094526009845268424746544f5745525360b81b908401528151919291620000a99160009162000138565b508051620000bf90600190602084019062000138565b505050620000dc620000d6620000e260201b60201c565b620000e6565b6200021b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014690620001de565b90600052602060002090601f0160209004810192826200016a5760008555620001b5565b82601f106200018557805160ff1916838001178555620001b5565b82800160010185558215620001b5579182015b82811115620001b557825182559160200191906001019062000198565b50620001c3929150620001c7565b5090565b5b80821115620001c35760008155600101620001c8565b600181811c90821680620001f357607f821691505b602082108114156200021557634e487b7160e01b600052602260045260246000fd5b50919050565b612471806200022b6000396000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461054f578063da3ef23f14610565578063e985e9c514610585578063ec84b933146105ce578063f2fde38b146105f357600080fd5b8063a22cb465146104da578063b88d4fde146104fa578063c66828621461051a578063c87b56dd1461052f57600080fd5b80638da5cb5b116100dc5780638da5cb5b1461047157806391b7f5ed1461048f57806395d89b41146104af578063a035b1fe146104c457600080fd5b80636c0360eb1461040757806370a082311461041c578063715018a61461043c57806385535cc51461045157600080fd5b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461038d57806355f804b3146103ad5780635c975abb146103cd5780636352211e146103e757600080fd5b80632f745c59146103185780633ccfd60b1461033857806342842e0e14610340578063438b63001461036057600080fd5b8063095ea7b3116101c1578063095ea7b3146102a45780631249c58b146102c457806318160ddd146102d957806323b872dd146102f857600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612002565b610613565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611fe8565b61063e565b005b34801561025657600080fd5b5061025f610684565b60405161021f919061221f565b34801561027857600080fd5b5061028c610287366004612080565b610716565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611fbf565b6107ab565b3480156102d057600080fd5b506102486108c1565b3480156102e557600080fd5b506008545b60405190815260200161021f565b34801561030457600080fd5b50610248610313366004611ee2565b610b65565b34801561032457600080fd5b506102ea610333366004611fbf565b610b96565b610248610c2c565b34801561034c57600080fd5b5061024861035b366004611ee2565b610c7c565b34801561036c57600080fd5b5061038061037b366004611e96565b610c97565b60405161021f91906121db565b34801561039957600080fd5b506102ea6103a8366004612080565b610d55565b3480156103b957600080fd5b506102486103c836600461203a565b610df6565b3480156103d957600080fd5b50600f546102139060ff1681565b3480156103f357600080fd5b5061028c610402366004612080565b610e33565b34801561041357600080fd5b5061025f610eaa565b34801561042857600080fd5b506102ea610437366004611e96565b610f38565b34801561044857600080fd5b50610248610fbf565b34801561045d57600080fd5b5061024861046c366004611e96565b610ff3565b34801561047d57600080fd5b50600a546001600160a01b031661028c565b34801561049b57600080fd5b506102486104aa366004612080565b611056565b3480156104bb57600080fd5b5061025f611085565b3480156104d057600080fd5b506102ea600e5481565b3480156104e657600080fd5b506102486104f5366004611f96565b611094565b34801561050657600080fd5b50610248610515366004611f1d565b611159565b34801561052657600080fd5b5061025f611191565b34801561053b57600080fd5b5061025f61054a366004612080565b61119e565b34801561055b57600080fd5b506102ea600d5481565b34801561057157600080fd5b5061024861058036600461203a565b61125b565b34801561059157600080fd5b506102136105a0366004611eb0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105da57600080fd5b50600f5461028c9061010090046001600160a01b031681565b3480156105ff57600080fd5b5061024861060e366004611e96565b611298565b60006001600160e01b0319821663780e9d6360e01b1480610638575061063882611333565b92915050565b600a546001600160a01b031633146106715760405162461bcd60e51b815260040161066890612284565b60405180910390fd5b600f805460ff1916911515919091179055565b60606000805461069390612379565b80601f01602080910402602001604051908101604052809291908181526020018280546106bf90612379565b801561070c5780601f106106e15761010080835404028352916020019161070c565b820191906000526020600020905b8154815290600101906020018083116106ef57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661078f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610668565b506000908152600460205260409020546001600160a01b031690565b60006107b682610e33565b9050806001600160a01b0316836001600160a01b031614156108245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610668565b336001600160a01b0382161480610840575061084081336105a0565b6108b25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610668565b6108bc8383611383565b505050565b600f5460ff16156109075760405162461bcd60e51b815260206004820152601060248201526f2737ba1030b63637bbb2b2103cb2ba1760811b6044820152606401610668565b6010546040516304cdb17160e01b81523360048201526000916001600160a01b0316906304cdb17190602401602060405180830381600087803b15801561094d57600080fd5b505af1158015610961573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109859190612098565b9050600e548110156109d15760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a102130b630b731b29760591b6044820152606401610668565b60006109dc60085490565b600d549091506109ed82600161230a565b1115610a3b5760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c7920776f756c6420626520726561636865642e00006044820152606401610668565b601054600e5460405163330ec5a160e21b815233600482015260248101919091526001600160a01b039091169063cc3b168490604401600060405180830381600087803b158015610a8b57600080fd5b505af1158015610a9f573d6000803e3d6000fd5b50505050610ab933826001610ab4919061230a565b6113f1565b610ac481600161230a565b60641415610ada57600f805460ff191660011790555b610ae581600161230a565b60c81415610afb57600f805460ff191660011790555b610b0681600161230a565b61012c1415610b1d57600f805460ff191660011790555b610b2881600161230a565b6101901415610b3f57600f805460ff191660011790555b610b4a81600161230a565b6101f41415610b6157600f805460ff191660011790555b5050565b610b6f338261140b565b610b8b5760405162461bcd60e51b8152600401610668906122b9565b6108bc838383611502565b6000610ba183610f38565b8210610c035760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610668565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c565760405162461bcd60e51b815260040161066890612284565b60405133904780156108fc02916000818181858888f19350505050610c7a57600080fd5b565b6108bc83838360405180602001604052806000815250611159565b60606000610ca483610f38565b905060008167ffffffffffffffff811115610ccf57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cf8578160200160208202803683370190505b50905060005b82811015610d4d57610d108582610b96565b828281518110610d3057634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d45816123b4565b915050610cfe565b509392505050565b6000610d6060085490565b8210610dc35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610668565b60088281548110610de457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610e205760405162461bcd60e51b815260040161066890612284565b8051610b6190600b906020840190611d5b565b6000818152600260205260408120546001600160a01b0316806106385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610668565b600b8054610eb790612379565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee390612379565b8015610f305780601f10610f0557610100808354040283529160200191610f30565b820191906000526020600020905b815481529060010190602001808311610f1357829003601f168201915b505050505081565b60006001600160a01b038216610fa35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610668565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fe95760405162461bcd60e51b815260040161066890612284565b610c7a60006116ad565b600a546001600160a01b0316331461101d5760405162461bcd60e51b815260040161066890612284565b600f8054610100600160a81b0319166101006001600160a01b0393909316928302179055601080546001600160a01b0319169091179055565b600a546001600160a01b031633146110805760405162461bcd60e51b815260040161066890612284565b600e55565b60606001805461069390612379565b6001600160a01b0382163314156110ed5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610668565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611163338361140b565b61117f5760405162461bcd60e51b8152600401610668906122b9565b61118b848484846116ff565b50505050565b600c8054610eb790612379565b6000818152600260205260409020546060906001600160a01b03166111fc5760405162461bcd60e51b81526020600482015260146024820152732a37b5b2b7103237b2b9b713ba1032bc34b9ba1760611b6044820152606401610668565b6000611206611732565b905060008151116112265760405180602001604052806000815250611254565b8061123084611741565b600c604051602001611244939291906120dc565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146112855760405162461bcd60e51b815260040161066890612284565b8051610b6190600c906020840190611d5b565b600a546001600160a01b031633146112c25760405162461bcd60e51b815260040161066890612284565b6001600160a01b0381166113275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610668565b611330816116ad565b50565b60006001600160e01b031982166380ac58cd60e01b148061136457506001600160e01b03198216635b5e139f60e01b145b8061063857506301ffc9a760e01b6001600160e01b0319831614610638565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113b882610e33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610b6182826040518060200160405280600081525061185b565b6000818152600260205260408120546001600160a01b03166114845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610668565b600061148f83610e33565b9050806001600160a01b0316846001600160a01b031614806114ca5750836001600160a01b03166114bf84610716565b6001600160a01b0316145b806114fa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661151582610e33565b6001600160a01b03161461157d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610668565b6001600160a01b0382166115df5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610668565b6115ea83838361188e565b6115f5600082611383565b6001600160a01b038316600090815260036020526040812080546001929061161e908490612336565b90915550506001600160a01b038216600090815260036020526040812080546001929061164c90849061230a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61170a848484611502565b61171684848484611946565b61118b5760405162461bcd60e51b815260040161066890612232565b6060600b805461069390612379565b6060816117655750506040805180820190915260018152600360fc1b602082015290565b8160005b811561178f5780611779816123b4565b91506117889050600a83612322565b9150611769565b60008167ffffffffffffffff8111156117b857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156117e2576020820181803683370190505b5090505b84156114fa576117f7600183612336565b9150611804600a866123cf565b61180f90603061230a565b60f81b81838151811061183257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611854600a86612322565b94506117e6565b6118658383611a53565b6118726000848484611946565b6108bc5760405162461bcd60e51b815260040161066890612232565b6001600160a01b0383166118e9576118e481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61190c565b816001600160a01b0316836001600160a01b03161461190c5761190c8382611ba1565b6001600160a01b038216611923576108bc81611c3e565b826001600160a01b0316826001600160a01b0316146108bc576108bc8282611d17565b60006001600160a01b0384163b15611a4857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061198a90339089908890889060040161219e565b602060405180830381600087803b1580156119a457600080fd5b505af19250505080156119d4575060408051601f3d908101601f191682019092526119d19181019061201e565b60015b611a2e573d808015611a02576040519150601f19603f3d011682016040523d82523d6000602084013e611a07565b606091505b508051611a265760405162461bcd60e51b815260040161066890612232565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114fa565b506001949350505050565b6001600160a01b038216611aa95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610668565b6000818152600260205260409020546001600160a01b031615611b0e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610668565b611b1a6000838361188e565b6001600160a01b0382166000908152600360205260408120805460019290611b4390849061230a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611bae84610f38565b611bb89190612336565b600083815260076020526040902054909150808214611c0b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c5090600190612336565b60008381526009602052604081205460088054939450909284908110611c8657634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611cb557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cfb57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611d2283610f38565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611d6790612379565b90600052602060002090601f016020900481019282611d895760008555611dcf565b82601f10611da257805160ff1916838001178555611dcf565b82800160010185558215611dcf579182015b82811115611dcf578251825591602001919060010190611db4565b50611ddb929150611ddf565b5090565b5b80821115611ddb5760008155600101611de0565b600067ffffffffffffffff80841115611e0f57611e0f61240f565b604051601f8501601f19908116603f01168101908282118183101715611e3757611e3761240f565b81604052809350858152868686011115611e5057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e8157600080fd5b919050565b80358015158114611e8157600080fd5b600060208284031215611ea7578081fd5b61125482611e6a565b60008060408385031215611ec2578081fd5b611ecb83611e6a565b9150611ed960208401611e6a565b90509250929050565b600080600060608486031215611ef6578081fd5b611eff84611e6a565b9250611f0d60208501611e6a565b9150604084013590509250925092565b60008060008060808587031215611f32578081fd5b611f3b85611e6a565b9350611f4960208601611e6a565b925060408501359150606085013567ffffffffffffffff811115611f6b578182fd5b8501601f81018713611f7b578182fd5b611f8a87823560208401611df4565b91505092959194509250565b60008060408385031215611fa8578182fd5b611fb183611e6a565b9150611ed960208401611e86565b60008060408385031215611fd1578182fd5b611fda83611e6a565b946020939093013593505050565b600060208284031215611ff9578081fd5b61125482611e86565b600060208284031215612013578081fd5b813561125481612425565b60006020828403121561202f578081fd5b815161125481612425565b60006020828403121561204b578081fd5b813567ffffffffffffffff811115612061578182fd5b8201601f81018413612071578182fd5b6114fa84823560208401611df4565b600060208284031215612091578081fd5b5035919050565b6000602082840312156120a9578081fd5b5051919050565b600081518084526120c881602086016020860161234d565b601f01601f19169290920160200192915050565b6000845160206120ef8285838a0161234d565b8551918401916121028184848a0161234d565b85549201918390600181811c908083168061211e57607f831692505b85831081141561213c57634e487b7160e01b88526022600452602488fd5b80801561215057600181146121615761218d565b60ff1985168852838801955061218d565b60008b815260209020895b858110156121855781548a82015290840190880161216c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121d1908301846120b0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612213578351835292840192918401916001016121f7565b50909695505050505050565b60208152600061125460208301846120b0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561231d5761231d6123e3565b500190565b600082612331576123316123f9565b500490565b600082821015612348576123486123e3565b500390565b60005b83811015612368578181015183820152602001612350565b8381111561118b5750506000910152565b600181811c9082168061238d57607f821691505b602082108114156123ae57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123c8576123c86123e3565b5060010190565b6000826123de576123de6123f9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133057600080fdfea2646970667358221220d242bc1fff0ac75e5502e5c3bd563c0043de8432e64f6b6286191c3e39137a4464736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461054f578063da3ef23f14610565578063e985e9c514610585578063ec84b933146105ce578063f2fde38b146105f357600080fd5b8063a22cb465146104da578063b88d4fde146104fa578063c66828621461051a578063c87b56dd1461052f57600080fd5b80638da5cb5b116100dc5780638da5cb5b1461047157806391b7f5ed1461048f57806395d89b41146104af578063a035b1fe146104c457600080fd5b80636c0360eb1461040757806370a082311461041c578063715018a61461043c57806385535cc51461045157600080fd5b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461038d57806355f804b3146103ad5780635c975abb146103cd5780636352211e146103e757600080fd5b80632f745c59146103185780633ccfd60b1461033857806342842e0e14610340578063438b63001461036057600080fd5b8063095ea7b3116101c1578063095ea7b3146102a45780631249c58b146102c457806318160ddd146102d957806323b872dd146102f857600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612002565b610613565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611fe8565b61063e565b005b34801561025657600080fd5b5061025f610684565b60405161021f919061221f565b34801561027857600080fd5b5061028c610287366004612080565b610716565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611fbf565b6107ab565b3480156102d057600080fd5b506102486108c1565b3480156102e557600080fd5b506008545b60405190815260200161021f565b34801561030457600080fd5b50610248610313366004611ee2565b610b65565b34801561032457600080fd5b506102ea610333366004611fbf565b610b96565b610248610c2c565b34801561034c57600080fd5b5061024861035b366004611ee2565b610c7c565b34801561036c57600080fd5b5061038061037b366004611e96565b610c97565b60405161021f91906121db565b34801561039957600080fd5b506102ea6103a8366004612080565b610d55565b3480156103b957600080fd5b506102486103c836600461203a565b610df6565b3480156103d957600080fd5b50600f546102139060ff1681565b3480156103f357600080fd5b5061028c610402366004612080565b610e33565b34801561041357600080fd5b5061025f610eaa565b34801561042857600080fd5b506102ea610437366004611e96565b610f38565b34801561044857600080fd5b50610248610fbf565b34801561045d57600080fd5b5061024861046c366004611e96565b610ff3565b34801561047d57600080fd5b50600a546001600160a01b031661028c565b34801561049b57600080fd5b506102486104aa366004612080565b611056565b3480156104bb57600080fd5b5061025f611085565b3480156104d057600080fd5b506102ea600e5481565b3480156104e657600080fd5b506102486104f5366004611f96565b611094565b34801561050657600080fd5b50610248610515366004611f1d565b611159565b34801561052657600080fd5b5061025f611191565b34801561053b57600080fd5b5061025f61054a366004612080565b61119e565b34801561055b57600080fd5b506102ea600d5481565b34801561057157600080fd5b5061024861058036600461203a565b61125b565b34801561059157600080fd5b506102136105a0366004611eb0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105da57600080fd5b50600f5461028c9061010090046001600160a01b031681565b3480156105ff57600080fd5b5061024861060e366004611e96565b611298565b60006001600160e01b0319821663780e9d6360e01b1480610638575061063882611333565b92915050565b600a546001600160a01b031633146106715760405162461bcd60e51b815260040161066890612284565b60405180910390fd5b600f805460ff1916911515919091179055565b60606000805461069390612379565b80601f01602080910402602001604051908101604052809291908181526020018280546106bf90612379565b801561070c5780601f106106e15761010080835404028352916020019161070c565b820191906000526020600020905b8154815290600101906020018083116106ef57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661078f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610668565b506000908152600460205260409020546001600160a01b031690565b60006107b682610e33565b9050806001600160a01b0316836001600160a01b031614156108245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610668565b336001600160a01b0382161480610840575061084081336105a0565b6108b25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610668565b6108bc8383611383565b505050565b600f5460ff16156109075760405162461bcd60e51b815260206004820152601060248201526f2737ba1030b63637bbb2b2103cb2ba1760811b6044820152606401610668565b6010546040516304cdb17160e01b81523360048201526000916001600160a01b0316906304cdb17190602401602060405180830381600087803b15801561094d57600080fd5b505af1158015610961573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109859190612098565b9050600e548110156109d15760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a102130b630b731b29760591b6044820152606401610668565b60006109dc60085490565b600d549091506109ed82600161230a565b1115610a3b5760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c7920776f756c6420626520726561636865642e00006044820152606401610668565b601054600e5460405163330ec5a160e21b815233600482015260248101919091526001600160a01b039091169063cc3b168490604401600060405180830381600087803b158015610a8b57600080fd5b505af1158015610a9f573d6000803e3d6000fd5b50505050610ab933826001610ab4919061230a565b6113f1565b610ac481600161230a565b60641415610ada57600f805460ff191660011790555b610ae581600161230a565b60c81415610afb57600f805460ff191660011790555b610b0681600161230a565b61012c1415610b1d57600f805460ff191660011790555b610b2881600161230a565b6101901415610b3f57600f805460ff191660011790555b610b4a81600161230a565b6101f41415610b6157600f805460ff191660011790555b5050565b610b6f338261140b565b610b8b5760405162461bcd60e51b8152600401610668906122b9565b6108bc838383611502565b6000610ba183610f38565b8210610c035760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610668565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c565760405162461bcd60e51b815260040161066890612284565b60405133904780156108fc02916000818181858888f19350505050610c7a57600080fd5b565b6108bc83838360405180602001604052806000815250611159565b60606000610ca483610f38565b905060008167ffffffffffffffff811115610ccf57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cf8578160200160208202803683370190505b50905060005b82811015610d4d57610d108582610b96565b828281518110610d3057634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d45816123b4565b915050610cfe565b509392505050565b6000610d6060085490565b8210610dc35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610668565b60088281548110610de457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610e205760405162461bcd60e51b815260040161066890612284565b8051610b6190600b906020840190611d5b565b6000818152600260205260408120546001600160a01b0316806106385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610668565b600b8054610eb790612379565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee390612379565b8015610f305780601f10610f0557610100808354040283529160200191610f30565b820191906000526020600020905b815481529060010190602001808311610f1357829003601f168201915b505050505081565b60006001600160a01b038216610fa35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610668565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fe95760405162461bcd60e51b815260040161066890612284565b610c7a60006116ad565b600a546001600160a01b0316331461101d5760405162461bcd60e51b815260040161066890612284565b600f8054610100600160a81b0319166101006001600160a01b0393909316928302179055601080546001600160a01b0319169091179055565b600a546001600160a01b031633146110805760405162461bcd60e51b815260040161066890612284565b600e55565b60606001805461069390612379565b6001600160a01b0382163314156110ed5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610668565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611163338361140b565b61117f5760405162461bcd60e51b8152600401610668906122b9565b61118b848484846116ff565b50505050565b600c8054610eb790612379565b6000818152600260205260409020546060906001600160a01b03166111fc5760405162461bcd60e51b81526020600482015260146024820152732a37b5b2b7103237b2b9b713ba1032bc34b9ba1760611b6044820152606401610668565b6000611206611732565b905060008151116112265760405180602001604052806000815250611254565b8061123084611741565b600c604051602001611244939291906120dc565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146112855760405162461bcd60e51b815260040161066890612284565b8051610b6190600c906020840190611d5b565b600a546001600160a01b031633146112c25760405162461bcd60e51b815260040161066890612284565b6001600160a01b0381166113275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610668565b611330816116ad565b50565b60006001600160e01b031982166380ac58cd60e01b148061136457506001600160e01b03198216635b5e139f60e01b145b8061063857506301ffc9a760e01b6001600160e01b0319831614610638565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113b882610e33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610b6182826040518060200160405280600081525061185b565b6000818152600260205260408120546001600160a01b03166114845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610668565b600061148f83610e33565b9050806001600160a01b0316846001600160a01b031614806114ca5750836001600160a01b03166114bf84610716565b6001600160a01b0316145b806114fa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661151582610e33565b6001600160a01b03161461157d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610668565b6001600160a01b0382166115df5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610668565b6115ea83838361188e565b6115f5600082611383565b6001600160a01b038316600090815260036020526040812080546001929061161e908490612336565b90915550506001600160a01b038216600090815260036020526040812080546001929061164c90849061230a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61170a848484611502565b61171684848484611946565b61118b5760405162461bcd60e51b815260040161066890612232565b6060600b805461069390612379565b6060816117655750506040805180820190915260018152600360fc1b602082015290565b8160005b811561178f5780611779816123b4565b91506117889050600a83612322565b9150611769565b60008167ffffffffffffffff8111156117b857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156117e2576020820181803683370190505b5090505b84156114fa576117f7600183612336565b9150611804600a866123cf565b61180f90603061230a565b60f81b81838151811061183257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611854600a86612322565b94506117e6565b6118658383611a53565b6118726000848484611946565b6108bc5760405162461bcd60e51b815260040161066890612232565b6001600160a01b0383166118e9576118e481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61190c565b816001600160a01b0316836001600160a01b03161461190c5761190c8382611ba1565b6001600160a01b038216611923576108bc81611c3e565b826001600160a01b0316826001600160a01b0316146108bc576108bc8282611d17565b60006001600160a01b0384163b15611a4857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061198a90339089908890889060040161219e565b602060405180830381600087803b1580156119a457600080fd5b505af19250505080156119d4575060408051601f3d908101601f191682019092526119d19181019061201e565b60015b611a2e573d808015611a02576040519150601f19603f3d011682016040523d82523d6000602084013e611a07565b606091505b508051611a265760405162461bcd60e51b815260040161066890612232565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114fa565b506001949350505050565b6001600160a01b038216611aa95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610668565b6000818152600260205260409020546001600160a01b031615611b0e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610668565b611b1a6000838361188e565b6001600160a01b0382166000908152600360205260408120805460019290611b4390849061230a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611bae84610f38565b611bb89190612336565b600083815260076020526040902054909150808214611c0b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c5090600190612336565b60008381526009602052604081205460088054939450909284908110611c8657634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611cb557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cfb57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611d2283610f38565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611d6790612379565b90600052602060002090601f016020900481019282611d895760008555611dcf565b82601f10611da257805160ff1916838001178555611dcf565b82800160010185558215611dcf579182015b82811115611dcf578251825591602001919060010190611db4565b50611ddb929150611ddf565b5090565b5b80821115611ddb5760008155600101611de0565b600067ffffffffffffffff80841115611e0f57611e0f61240f565b604051601f8501601f19908116603f01168101908282118183101715611e3757611e3761240f565b81604052809350858152868686011115611e5057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e8157600080fd5b919050565b80358015158114611e8157600080fd5b600060208284031215611ea7578081fd5b61125482611e6a565b60008060408385031215611ec2578081fd5b611ecb83611e6a565b9150611ed960208401611e6a565b90509250929050565b600080600060608486031215611ef6578081fd5b611eff84611e6a565b9250611f0d60208501611e6a565b9150604084013590509250925092565b60008060008060808587031215611f32578081fd5b611f3b85611e6a565b9350611f4960208601611e6a565b925060408501359150606085013567ffffffffffffffff811115611f6b578182fd5b8501601f81018713611f7b578182fd5b611f8a87823560208401611df4565b91505092959194509250565b60008060408385031215611fa8578182fd5b611fb183611e6a565b9150611ed960208401611e86565b60008060408385031215611fd1578182fd5b611fda83611e6a565b946020939093013593505050565b600060208284031215611ff9578081fd5b61125482611e86565b600060208284031215612013578081fd5b813561125481612425565b60006020828403121561202f578081fd5b815161125481612425565b60006020828403121561204b578081fd5b813567ffffffffffffffff811115612061578182fd5b8201601f81018413612071578182fd5b6114fa84823560208401611df4565b600060208284031215612091578081fd5b5035919050565b6000602082840312156120a9578081fd5b5051919050565b600081518084526120c881602086016020860161234d565b601f01601f19169290920160200192915050565b6000845160206120ef8285838a0161234d565b8551918401916121028184848a0161234d565b85549201918390600181811c908083168061211e57607f831692505b85831081141561213c57634e487b7160e01b88526022600452602488fd5b80801561215057600181146121615761218d565b60ff1985168852838801955061218d565b60008b815260209020895b858110156121855781548a82015290840190880161216c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121d1908301846120b0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612213578351835292840192918401916001016121f7565b50909695505050505050565b60208152600061125460208301846120b0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561231d5761231d6123e3565b500190565b600082612331576123316123f9565b500490565b600082821015612348576123486123e3565b500390565b60005b83811015612368578181015183820152602001612350565b8381111561118b5750506000910152565b600181811c9082168061238d57607f821691505b602082108114156123ae57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123c8576123c86123e3565b5060010190565b6000826123de576123de6123f9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133057600080fdfea2646970667358221220d242bc1fff0ac75e5502e5c3bd563c0043de8432e64f6b6286191c3e39137a4464736f6c63430008040033

Deployed Bytecode Sourcemap

46784:3079:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40033:300;;;;;;;;;;-1:-1:-1;40033:300:0;;;;;:::i;:::-;;:::i;:::-;;;8232:14:1;;8225:22;8207:41;;8195:2;8180:18;40033:300:0;;;;;;;;49561:79;;;;;;;;;;-1:-1:-1;49561:79:0;;;;;:::i;:::-;;:::i;:::-;;26855:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28586:308::-;;;;;;;;;;-1:-1:-1;28586:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6611:32:1;;;6593:51;;6581:2;6566:18;28586:308:0;6548:102:1;28101:413:0;;;;;;;;;;-1:-1:-1;28101:413:0;;;;;:::i;:::-;;:::i;47476:797::-;;;;;;;;;;;;;:::i;40850:113::-;;;;;;;;;;-1:-1:-1;40938:10:0;:17;40850:113;;;16823:25:1;;;16811:2;16796:18;40850:113:0;16778:76:1;29665:378:0;;;;;;;;;;-1:-1:-1;29665:378:0;;;;;:::i;:::-;;:::i;40423:345::-;;;;;;;;;;-1:-1:-1;40423:345:0;;;;;:::i;:::-;;:::i;49740:120::-;;;:::i;30120:185::-;;;;;;;;;;-1:-1:-1;30120:185:0;;;;;:::i;:::-;;:::i;48281:394::-;;;;;;;;;;-1:-1:-1;48281:394:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41046:322::-;;;;;;;;;;-1:-1:-1;41046:322:0;;;;;:::i;:::-;;:::i;49290:104::-;;;;;;;;;;-1:-1:-1;49290:104:0;;;;;:::i;:::-;;:::i;47010:25::-;;;;;;;;;;-1:-1:-1;47010:25:0;;;;;;;;26452:330;;;;;;;;;;-1:-1:-1;26452:330:0;;;;;:::i;:::-;;:::i;46873:21::-;;;;;;;;;;;;;:::i;26087:297::-;;;;;;;;;;-1:-1:-1;26087:297:0;;;;;:::i;:::-;;:::i;2614:103::-;;;;;;;;;;;;;:::i;47321:147::-;;;;;;;;;;-1:-1:-1;47321:147:0;;;;;:::i;:::-;;:::i;1963:87::-;;;;;;;;;;-1:-1:-1;2036:6:0;;-1:-1:-1;;;;;2036:6:0;1963:87;;49648:84;;;;;;;;;;-1:-1:-1;49648:84:0;;;;;:::i;:::-;;:::i;27030:104::-;;;;;;;;;;;;;:::i;46977:26::-;;;;;;;;;;;;;;;;28972:329;;;;;;;;;;-1:-1:-1;28972:329:0;;;;;:::i;:::-;;:::i;30382:367::-;;;;;;;;;;-1:-1:-1;30382:367:0;;;;;:::i;:::-;;:::i;46901:32::-;;;;;;;;;;;;;:::i;48683:580::-;;;;;;;;;;-1:-1:-1;48683:580:0;;;;;:::i;:::-;;:::i;46940:30::-;;;;;;;;;;;;;;;;49402:151;;;;;;;;;;-1:-1:-1;49402:151:0;;;;;:::i;:::-;;:::i;29378:214::-;;;;;;;;;;-1:-1:-1;29378:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;29549:25:0;;;29520:4;29549:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29378:214;47042:23;;;;;;;;;;-1:-1:-1;47042:23:0;;;;;;;-1:-1:-1;;;;;47042:23:0;;;2872:238;;;;;;;;;;-1:-1:-1;2872:238:0;;;;;:::i;:::-;;:::i;40033:300::-;40180:4;-1:-1:-1;;;;;;40222:50:0;;-1:-1:-1;;;40222:50:0;;:103;;;40289:36;40313:11;40289:23;:36::i;:::-;40202:123;40033:300;-1:-1:-1;;40033:300:0:o;49561:79::-;2036:6;;-1:-1:-1;;;;;2036:6:0;746:10;2183:23;2175:68;;;;-1:-1:-1;;;2175:68:0;;;;;;;:::i;:::-;;;;;;;;;49617:6:::1;:15:::0;;-1:-1:-1;;49617:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49561:79::o;26855:100::-;26909:13;26942:5;26935:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26855:100;:::o;28586:308::-;28707:7;32439:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32439:16:0;28732:110;;;;-1:-1:-1;;;28732:110:0;;13409:2:1;28732:110:0;;;13391:21:1;13448:2;13428:18;;;13421:30;13487:34;13467:18;;;13460:62;-1:-1:-1;;;13538:18:1;;;13531:42;13590:19;;28732:110:0;13381:234:1;28732:110:0;-1:-1:-1;28862:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28862:24:0;;28586:308::o;28101:413::-;28182:13;28198:23;28213:7;28198:14;:23::i;:::-;28182:39;;28248:5;-1:-1:-1;;;;;28242:11:0;:2;-1:-1:-1;;;;;28242:11:0;;;28234:57;;;;-1:-1:-1;;;28234:57:0;;14952:2:1;28234:57:0;;;14934:21:1;14991:2;14971:18;;;14964:30;15030:34;15010:18;;;15003:62;-1:-1:-1;;;15081:18:1;;;15074:31;15122:19;;28234:57:0;14924:223:1;28234:57:0;746:10;-1:-1:-1;;;;;28326:21:0;;;;:62;;-1:-1:-1;28351:37:0;28368:5;746:10;29378:214;:::i;28351:37::-;28304:168;;;;-1:-1:-1;;;28304:168:0;;11452:2:1;28304:168:0;;;11434:21:1;11491:2;11471:18;;;11464:30;11530:34;11510:18;;;11503:62;11601:26;11581:18;;;11574:54;11645:19;;28304:168:0;11424:246:1;28304:168:0;28485:21;28494:2;28498:7;28485:8;:21::i;:::-;28101:413;;;:::o;47476:797::-;47519:6;;;;47518:7;47510:36;;;;-1:-1:-1;;;47510:36:0;;15703:2:1;47510:36:0;;;15685:21:1;15742:2;15722:18;;;15715:30;-1:-1:-1;;;15761:18:1;;;15754:46;15817:18;;47510:36:0;15675:166:1;47510:36:0;47575:13;;:40;;-1:-1:-1;;;47575:40:0;;47604:10;47575:40;;;6593:51:1;47557:15:0;;-1:-1:-1;;;;;47575:13:0;;:28;;6566:18:1;;47575:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47557:58;;47645:5;;47634:7;:16;;47626:50;;;;-1:-1:-1;;;47626:50:0;;12698:2:1;47626:50:0;;;12680:21:1;12737:2;12717:18;;;12710:30;-1:-1:-1;;;12756:18:1;;;12749:51;12817:18;;47626:50:0;12670:171:1;47626:50:0;47687:14;47704:13;40938:10;:17;;40850:113;47704:13;47750:9;;47687:30;;-1:-1:-1;47736:10:0;47687:30;47745:1;47736:10;:::i;:::-;:23;;47728:66;;;;-1:-1:-1;;;47728:66:0;;14593:2:1;47728:66:0;;;14575:21:1;14632:2;14612:18;;;14605:30;14671:32;14651:18;;;14644:60;14721:18;;47728:66:0;14565:180:1;47728:66:0;47805:13;;47850:5;;47805:51;;-1:-1:-1;;;47805:51:0;;47838:10;47805:51;;;7322::1;7389:18;;;7382:34;;;;-1:-1:-1;;;;;47805:13:0;;;;:32;;7295:18:1;;47805:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47867:33;47877:10;47889:6;47898:1;47889:10;;;;:::i;:::-;47867:9;:33::i;:::-;47915:10;:6;47924:1;47915:10;:::i;:::-;47929:3;47915:17;47911:63;;;47949:6;:13;;-1:-1:-1;;47949:13:0;47958:4;47949:13;;;47911:63;47988:10;:6;47997:1;47988:10;:::i;:::-;48002:3;47988:17;47984:63;;;48022:6;:13;;-1:-1:-1;;48022:13:0;48031:4;48022:13;;;47984:63;48061:10;:6;48070:1;48061:10;:::i;:::-;48075:3;48061:17;48057:63;;;48095:6;:13;;-1:-1:-1;;48095:13:0;48104:4;48095:13;;;48057:63;48134:10;:6;48143:1;48134:10;:::i;:::-;48148:3;48134:17;48130:63;;;48168:6;:13;;-1:-1:-1;;48168:13:0;48177:4;48168:13;;;48130:63;48207:10;:6;48216:1;48207:10;:::i;:::-;48221:3;48207:17;48203:63;;;48241:6;:13;;-1:-1:-1;;48241:13:0;48250:4;48241:13;;;48203:63;47476:797;;:::o;29665:378::-;29876:41;746:10;29909:7;29876:18;:41::i;:::-;29854:140;;;;-1:-1:-1;;;29854:140:0;;;;;;;:::i;:::-;30007:28;30017:4;30023:2;30027:7;30007:9;:28::i;40423:345::-;40565:7;40620:23;40637:5;40620:16;:23::i;:::-;40612:5;:31;40590:124;;;;-1:-1:-1;;;40590:124:0;;8685:2:1;40590:124:0;;;8667:21:1;8724:2;8704:18;;;8697:30;8763:34;8743:18;;;8736:62;-1:-1:-1;;;8814:18:1;;;8807:41;8865:19;;40590:124:0;8657:233:1;40590:124:0;-1:-1:-1;;;;;;40734:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40423:345::o;49740:120::-;2036:6;;-1:-1:-1;;;;;2036:6:0;746:10;2183:23;2175:68;;;;-1:-1:-1;;;2175:68:0;;;;;;;:::i;:::-;49804:47:::1;::::0;49812:10:::1;::::0;49829:21:::1;49804:47:::0;::::1;;;::::0;::::1;::::0;;;49829:21;49812:10;49804:47;::::1;;;;;;49796:56;;;::::0;::::1;;49740:120::o:0;30120:185::-;30258:39;30275:4;30281:2;30285:7;30258:39;;;;;;;;;;;;:16;:39::i;48281:394::-;48368:16;48402:23;48428:17;48438:6;48428:9;:17::i;:::-;48402:43;;48456:25;48498:15;48484:30;;;;;;-1:-1:-1;;;48484:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48484:30:0;;48456:58;;48532:9;48527:113;48547:15;48543:1;:19;48527:113;;;48598:30;48618:6;48626:1;48598:19;:30::i;:::-;48584:8;48593:1;48584:11;;;;;;-1:-1:-1;;;48584:11:0;;;;;;;;;;;;;;;;;;:44;48564:3;;;;:::i;:::-;;;;48527:113;;;-1:-1:-1;48659:8:0;48281:394;-1:-1:-1;;;48281:394:0:o;41046:322::-;41166:7;41221:30;40938:10;:17;;40850:113;41221:30;41213:5;:38;41191:132;;;;-1:-1:-1;;;41191:132:0;;16466:2:1;41191:132:0;;;16448:21:1;16505:2;16485:18;;;16478:30;16544:34;16524:18;;;16517:62;-1:-1:-1;;;16595:18:1;;;16588:42;16647:19;;41191:132:0;16438:234:1;41191:132:0;41343:10;41354:5;41343:17;;;;;;-1:-1:-1;;;41343:17:0;;;;;;;;;;;;;;;;;41336:24;;41046:322;;;:::o;49290:104::-;2036:6;;-1:-1:-1;;;;;2036:6:0;746:10;2183:23;2175:68;;;;-1:-1:-1;;;2175:68:0;;;;;;;:::i;:::-;49365:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;26452:330::-:0;26569:7;26610:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26610:16:0;26661:19;26639:110;;;;-1:-1:-1;;;26639:110:0;;12288:2:1;26639:110:0;;;12270:21:1;12327:2;12307:18;;;12300:30;12366:34;12346:18;;;12339:62;-1:-1:-1;;;12417:18:1;;;12410:39;12466:19;;26639:110:0;12260:231:1;46873:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26087:297::-;26204:7;-1:-1:-1;;;;;26251:19:0;;26229:111;;;;-1:-1:-1;;;26229:111:0;;11877:2:1;26229:111:0;;;11859:21:1;11916:2;11896:18;;;11889:30;11955:34;11935:18;;;11928:62;-1:-1:-1;;;12006:18:1;;;11999:40;12056:19;;26229:111:0;11849:232:1;26229:111:0;-1:-1:-1;;;;;;26360:16:0;;;;;:9;:16;;;;;;;26087:297::o;2614:103::-;2036:6;;-1:-1:-1;;;;;2036:6:0;746:10;2183:23;2175:68;;;;-1:-1:-1;;;2175:68:0;;;;;;;:::i;:::-;2679:30:::1;2706:1;2679:18;:30::i;47321:147::-:0;2036:6;;-1:-1:-1;;;;;2036:6:0;746:10;2183:23;2175:68;;;;-1:-1:-1;;;2175:68:0;;;;;;;:::i;:::-;47392:8:::1;:19:::0;;-1:-1:-1;;;;;;47392:19:0::1;;-1:-1:-1::0;;;;;47392:19:0;;;::::1;::::0;;::::1;;::::0;;47422:13:::1;:38:::0;;-1:-1:-1;;;;;;47422:38:0::1;::::0;;::::1;::::0;;47321:147::o;49648:84::-;2036:6;;-1:-1:-1;;;;;2036:6:0;746:10;2183:23;2175:68;;;;-1:-1:-1;;;2175:68:0;;;;;;;:::i;:::-;49710:5:::1;:14:::0;49648:84::o;27030:104::-;27086:13;27119:7;27112:14;;;;;:::i;28972:329::-;-1:-1:-1;;;;;29107:24:0;;746:10;29107:24;;29099:62;;;;-1:-1:-1;;;29099:62:0;;10685:2:1;29099:62:0;;;10667:21:1;10724:2;10704:18;;;10697:30;10763:27;10743:18;;;10736:55;10808:18;;29099:62:0;10657:175:1;29099:62:0;746:10;29174:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29174:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29174:53:0;;;;;;;;;;29245:48;;8207:41:1;;;29174:42:0;;746:10;29245:48;;8180:18:1;29245:48:0;;;;;;;28972:329;;:::o;30382:367::-;30571:41;746:10;30604:7;30571:18;:41::i;:::-;30549:140;;;;-1:-1:-1;;;30549:140:0;;;;;;;:::i;:::-;30702:39;30716:4;30722:2;30726:7;30735:5;30702:13;:39::i;:::-;30382:367;;;;:::o;46901:32::-;;;;;;;:::i;48683:580::-;32415:4;32439:16;;;:7;:16;;;;;;48801:13;;-1:-1:-1;;;;;32439:16:0;48832:49;;;;-1:-1:-1;;;48832:49:0;;15354:2:1;48832:49:0;;;15336:21:1;15393:2;15373:18;;;15366:30;-1:-1:-1;;;15412:18:1;;;15405:50;15472:18;;48832:49:0;15326:170:1;48832:49:0;48894:28;48925:10;:8;:10::i;:::-;48894:41;;48999:1;48974:14;48968:28;:32;:287;;;;;;;;;;;;;;;;;49092:14;49133:18;:7;:16;:18::i;:::-;49178:13;49049:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48968:287;48948:307;48683:580;-1:-1:-1;;;48683:580:0:o;49402:151::-;2036:6;;-1:-1:-1;;;;;2036:6:0;746:10;2183:23;2175:68;;;;-1:-1:-1;;;2175:68:0;;;;;;;:::i;:::-;49512:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;2872:238::-:0;2036:6;;-1:-1:-1;;;;;2036:6:0;746:10;2183:23;2175:68;;;;-1:-1:-1;;;2175:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2975:22:0;::::1;2953:110;;;::::0;-1:-1:-1;;;2953:110:0;;9516:2:1;2953:110:0::1;::::0;::::1;9498:21:1::0;9555:2;9535:18;;;9528:30;9594:34;9574:18;;;9567:62;-1:-1:-1;;;9645:18:1;;;9638:36;9691:19;;2953:110:0::1;9488:228:1::0;2953:110:0::1;3074:28;3093:8;3074:18;:28::i;:::-;2872:238:::0;:::o;25662:355::-;25809:4;-1:-1:-1;;;;;;25851:40:0;;-1:-1:-1;;;25851:40:0;;:105;;-1:-1:-1;;;;;;;25908:48:0;;-1:-1:-1;;;25908:48:0;25851:105;:158;;;-1:-1:-1;;;;;;;;;;11556:40:0;;;25973:36;11397:207;36613:176;36688:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36688:29:0;-1:-1:-1;;;;;36688:29:0;;;;;;;;:24;;36744:23;36688:24;36744:14;:23::i;:::-;-1:-1:-1;;;;;36735:46:0;;;;;;;;;;;36613:176;;:::o;33476:110::-;33552:26;33562:2;33566:7;33552:26;;;;;;;;;;;;:9;:26::i;32658:456::-;32787:4;32439:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32439:16:0;32809:110;;;;-1:-1:-1;;;32809:110:0;;11039:2:1;32809:110:0;;;11021:21:1;11078:2;11058:18;;;11051:30;11117:34;11097:18;;;11090:62;-1:-1:-1;;;11168:18:1;;;11161:42;11220:19;;32809:110:0;11011:234:1;32809:110:0;32932:13;32948:23;32963:7;32948:14;:23::i;:::-;32932:39;;33003:5;-1:-1:-1;;;;;32992:16:0;:7;-1:-1:-1;;;;;32992:16:0;;:64;;;;33049:7;-1:-1:-1;;;;;33025:31:0;:20;33037:7;33025:11;:20::i;:::-;-1:-1:-1;;;;;33025:31:0;;32992:64;:113;;;-1:-1:-1;;;;;;29549:25:0;;;29520:4;29549:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33073:32;32984:122;32658:456;-1:-1:-1;;;;32658:456:0:o;35862:623::-;36035:4;-1:-1:-1;;;;;36008:31:0;:23;36023:7;36008:14;:23::i;:::-;-1:-1:-1;;;;;36008:31:0;;35986:122;;;;-1:-1:-1;;;35986:122:0;;14183:2:1;35986:122:0;;;14165:21:1;14222:2;14202:18;;;14195:30;14261:34;14241:18;;;14234:62;-1:-1:-1;;;14312:18:1;;;14305:39;14361:19;;35986:122:0;14155:231:1;35986:122:0;-1:-1:-1;;;;;36129:16:0;;36121:65;;;;-1:-1:-1;;;36121:65:0;;10280:2:1;36121:65:0;;;10262:21:1;10319:2;10299:18;;;10292:30;10358:34;10338:18;;;10331:62;-1:-1:-1;;;10409:18:1;;;10402:34;10453:19;;36121:65:0;10252:226:1;36121:65:0;36199:39;36220:4;36226:2;36230:7;36199:20;:39::i;:::-;36305:29;36322:1;36326:7;36305:8;:29::i;:::-;-1:-1:-1;;;;;36347:15:0;;;;;;:9;:15;;;;;:20;;36366:1;;36347:15;:20;;36366:1;;36347:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36380:13:0;;;;;;:9;:13;;;;;:18;;36397:1;;36380:13;:18;;36397:1;;36380:18;:::i;:::-;;;;-1:-1:-1;;36411:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36411:21:0;-1:-1:-1;;;;;36411:21:0;;;;;;;;;36450:27;;36411:16;;36450:27;;;;;;;35862:623;;;:::o;3270:191::-;3363:6;;;-1:-1:-1;;;;;3380:17:0;;;-1:-1:-1;;;;;;3380:17:0;;;;;;;3413:40;;3363:6;;;3380:17;3363:6;;3413:40;;3344:16;;3413:40;3270:191;;:::o;31667:354::-;31824:28;31834:4;31840:2;31844:7;31824:9;:28::i;:::-;31887:48;31910:4;31916:2;31920:7;31929:5;31887:22;:48::i;:::-;31865:148;;;;-1:-1:-1;;;31865:148:0;;;;;;;:::i;47205:108::-;47265:13;47298:7;47291:14;;;;;:::i;11930:743::-;11986:13;12209:10;12205:53;;-1:-1:-1;;12236:10:0;;;;;;;;;;;;-1:-1:-1;;;12236:10:0;;;;;11930:743::o;12205:53::-;12285:5;12270:12;12330:80;12337:9;;12330:80;;12363:8;;;;:::i;:::-;;-1:-1:-1;12388:10:0;;-1:-1:-1;12396:2:0;12388:10;;:::i;:::-;;;12330:80;;;12422:19;12454:6;12444:17;;;;;;-1:-1:-1;;;12444:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12444:17:0;;12422:39;;12474:158;12481:10;;12474:158;;12508:11;12518:1;12508:11;;:::i;:::-;;-1:-1:-1;12579:10:0;12587:2;12579:5;:10;:::i;:::-;12566:24;;:2;:24;:::i;:::-;12553:39;;12536:6;12543;12536:14;;;;;;-1:-1:-1;;;12536:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;12536:56:0;;;;;;;;-1:-1:-1;12609:11:0;12618:2;12609:11;;:::i;:::-;;;12474:158;;33821:323;33951:18;33957:2;33961:7;33951:5;:18::i;:::-;34004:54;34035:1;34039:2;34043:7;34052:5;34004:22;:54::i;:::-;33982:154;;;;-1:-1:-1;;;33982:154:0;;;;;;;:::i;42011:591::-;-1:-1:-1;;;;;42217:18:0;;42213:187;;42252:40;42284:7;43451:10;:17;;43424:24;;;;:15;:24;;;;;:44;;;43481:24;;;;;;;;;;;;43347:166;42252:40;42213:187;;;42322:2;-1:-1:-1;;;;;42314:10:0;:4;-1:-1:-1;;;;;42314:10:0;;42310:90;;42341:47;42374:4;42380:7;42341:32;:47::i;:::-;-1:-1:-1;;;;;42416:16:0;;42412:183;;42449:45;42486:7;42449:36;:45::i;42412:183::-;42522:4;-1:-1:-1;;;;;42516:10:0;:2;-1:-1:-1;;;;;42516:10:0;;42512:83;;42543:40;42571:2;42575:7;42543:27;:40::i;37374:980::-;37529:4;-1:-1:-1;;;;;37550:13:0;;14906:20;14956:8;37546:801;;37603:175;;-1:-1:-1;;;37603:175:0;;-1:-1:-1;;;;;37603:36:0;;;;;:175;;746:10;;37697:4;;37724:7;;37754:5;;37603:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37603:175:0;;;;;;;;-1:-1:-1;;37603:175:0;;;;;;;;;;;;:::i;:::-;;;37582:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37961:13:0;;37957:320;;38004:108;;-1:-1:-1;;;38004:108:0;;;;;;;:::i;37957:320::-;38227:6;38221:13;38212:6;38208:2;38204:15;38197:38;37582:710;-1:-1:-1;;;;;;37842:51:0;-1:-1:-1;;;37842:51:0;;-1:-1:-1;37835:58:0;;37546:801;-1:-1:-1;38331:4:0;37374:980;;;;;;:::o;34504:386::-;-1:-1:-1;;;;;34584:16:0;;34576:61;;;;-1:-1:-1;;;34576:61:0;;13048:2:1;34576:61:0;;;13030:21:1;;;13067:18;;;13060:30;13126:34;13106:18;;;13099:62;13178:18;;34576:61:0;13020:182:1;34576:61:0;32415:4;32439:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32439:16:0;:30;34650:58;;;;-1:-1:-1;;;34650:58:0;;9923:2:1;34650:58:0;;;9905:21:1;9962:2;9942:18;;;9935:30;10001;9981:18;;;9974:58;10049:18;;34650:58:0;9895:178:1;34650:58:0;34721:45;34750:1;34754:2;34758:7;34721:20;:45::i;:::-;-1:-1:-1;;;;;34779:13:0;;;;;;:9;:13;;;;;:18;;34796:1;;34779:13;:18;;34796:1;;34779:18;:::i;:::-;;;;-1:-1:-1;;34810:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34810:21:0;-1:-1:-1;;;;;34810:21:0;;;;;;;;34849:33;;34810:16;;;34849:33;;34810:16;;34849:33;34504:386;;:::o;44156:1014::-;44438:22;44488:1;44463:22;44480:4;44463:16;:22::i;:::-;:26;;;;:::i;:::-;44502:18;44523:26;;;:17;:26;;;;;;44438:51;;-1:-1:-1;44658:28:0;;;44654:330;;-1:-1:-1;;;;;44725:18:0;;44703:19;44725:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44776:30;;;;;;:44;;;44895:30;;:17;:30;;;;;:43;;;44654:330;-1:-1:-1;45082:26:0;;;;:17;:26;;;;;;;;45075:33;;;-1:-1:-1;;;;;45128:18:0;;;;;:12;:18;;;;;:34;;;;;;;45121:41;44156:1014::o;45475:1091::-;45755:10;:17;45730:22;;45755:21;;45775:1;;45755:21;:::i;:::-;45789:18;45810:24;;;:15;:24;;;;;;46189:10;:26;;45730:46;;-1:-1:-1;45810:24:0;;45730:46;;46189:26;;;;-1:-1:-1;;;46189:26:0;;;;;;;;;;;;;;;;;46167:48;;46253:11;46228:10;46239;46228:22;;;;;;-1:-1:-1;;;46228:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46333:28;;;:15;:28;;;;;;;:41;;;46505:24;;;;;46498:31;46542:10;:16;;;;;-1:-1:-1;;;46542:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45475:1091;;;;:::o;42913:225::-;42998:14;43015:20;43032:2;43015:16;:20::i;:::-;-1:-1:-1;;;;;43048:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43095:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42913:225:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:190::-;3107:6;3160:2;3148:9;3139:7;3135:23;3131:32;3128:2;;;3181:6;3173;3166:22;3128:2;3209:26;3225:9;3209:26;:::i;3246:255::-;3304:6;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3422:9;3409:23;3441:30;3465:5;3441:30;:::i;3506:259::-;3575:6;3628:2;3616:9;3607:7;3603:23;3599:32;3596:2;;;3649:6;3641;3634:22;3596:2;3686:9;3680:16;3705:30;3729:5;3705:30;:::i;3770:480::-;3839:6;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;3913:6;3905;3898:22;3860:2;3958:9;3945:23;3991:18;3983:6;3980:30;3977:2;;;4028:6;4020;4013:22;3977:2;4056:22;;4109:4;4101:13;;4097:27;-1:-1:-1;4087:2:1;;4143:6;4135;4128:22;4087:2;4171:73;4236:7;4231:2;4218:16;4213:2;4209;4205:11;4171:73;:::i;4255:190::-;4314:6;4367:2;4355:9;4346:7;4342:23;4338:32;4335:2;;;4388:6;4380;4373:22;4335:2;-1:-1:-1;4416:23:1;;4325:120;-1:-1:-1;4325:120:1:o;4450:194::-;4520:6;4573:2;4561:9;4552:7;4548:23;4544:32;4541:2;;;4594:6;4586;4579:22;4541:2;-1:-1:-1;4622:16:1;;4531:113;-1:-1:-1;4531:113:1:o;4649:257::-;4690:3;4728:5;4722:12;4755:6;4750:3;4743:19;4771:63;4827:6;4820:4;4815:3;4811:14;4804:4;4797:5;4793:16;4771:63;:::i;:::-;4888:2;4867:15;-1:-1:-1;;4863:29:1;4854:39;;;;4895:4;4850:50;;4698:208;-1:-1:-1;;4698:208:1:o;4911:1531::-;5135:3;5173:6;5167:13;5199:4;5212:51;5256:6;5251:3;5246:2;5238:6;5234:15;5212:51;:::i;:::-;5326:13;;5285:16;;;;5348:55;5326:13;5285:16;5370:15;;;5348:55;:::i;:::-;5494:13;;5425:20;;;5465:3;;5554:1;5576:18;;;;5629;;;;5656:2;;5734:4;5724:8;5720:19;5708:31;;5656:2;5797;5787:8;5784:16;5764:18;5761:40;5758:2;;;-1:-1:-1;;;5824:33:1;;5880:4;5877:1;5870:15;5910:4;5831:3;5898:17;5758:2;5941:18;5968:110;;;;6092:1;6087:330;;;;5934:483;;5968:110;-1:-1:-1;;6003:24:1;;5989:39;;6048:20;;;;-1:-1:-1;5968:110:1;;6087:330;16906:4;16925:17;;;16975:4;16959:21;;6182:3;6198:169;6212:8;6209:1;6206:15;6198:169;;;6294:14;;6279:13;;;6272:37;6337:16;;;;6229:10;;6198:169;;;6202:3;;6398:8;6391:5;6387:20;6380:27;;5934:483;-1:-1:-1;6433:3:1;;5143:1299;-1:-1:-1;;;;;;;;;;;5143:1299:1:o;6655:488::-;-1:-1:-1;;;;;6924:15:1;;;6906:34;;6976:15;;6971:2;6956:18;;6949:43;7023:2;7008:18;;7001:34;;;7071:3;7066:2;7051:18;;7044:31;;;6849:4;;7092:45;;7117:19;;7109:6;7092:45;:::i;:::-;7084:53;6858:285;-1:-1:-1;;;;;;6858:285:1:o;7427:635::-;7598:2;7650:21;;;7720:13;;7623:18;;;7742:22;;;7569:4;;7598:2;7821:15;;;;7795:2;7780:18;;;7569:4;7867:169;7881:6;7878:1;7875:13;7867:169;;;7942:13;;7930:26;;8011:15;;;;7976:12;;;;7903:1;7896:9;7867:169;;;-1:-1:-1;8053:3:1;;7578:484;-1:-1:-1;;;;;;7578:484:1:o;8259:219::-;8408:2;8397:9;8390:21;8371:4;8428:44;8468:2;8457:9;8453:18;8445:6;8428:44;:::i;8895:414::-;9097:2;9079:21;;;9136:2;9116:18;;;9109:30;9175:34;9170:2;9155:18;;9148:62;-1:-1:-1;;;9241:2:1;9226:18;;9219:48;9299:3;9284:19;;9069:240::o;13620:356::-;13822:2;13804:21;;;13841:18;;;13834:30;13900:34;13895:2;13880:18;;13873:62;13967:2;13952:18;;13794:182::o;15846:413::-;16048:2;16030:21;;;16087:2;16067:18;;;16060:30;16126:34;16121:2;16106:18;;16099:62;-1:-1:-1;;;16192:2:1;16177:18;;16170:47;16249:3;16234:19;;16020:239::o;16991:128::-;17031:3;17062:1;17058:6;17055:1;17052:13;17049:2;;;17068:18;;:::i;:::-;-1:-1:-1;17104:9:1;;17039:80::o;17124:120::-;17164:1;17190;17180:2;;17195:18;;:::i;:::-;-1:-1:-1;17229:9:1;;17170:74::o;17249:125::-;17289:4;17317:1;17314;17311:8;17308:2;;;17322:18;;:::i;:::-;-1:-1:-1;17359:9:1;;17298:76::o;17379:258::-;17451:1;17461:113;17475:6;17472:1;17469:13;17461:113;;;17551:11;;;17545:18;17532:11;;;17525:39;17497:2;17490:10;17461:113;;;17592:6;17589:1;17586:13;17583:2;;;-1:-1:-1;;17627:1:1;17609:16;;17602:27;17432:205::o;17642:380::-;17721:1;17717:12;;;;17764;;;17785:2;;17839:4;17831:6;17827:17;17817:27;;17785:2;17892;17884:6;17881:14;17861:18;17858:38;17855:2;;;17938:10;17933:3;17929:20;17926:1;17919:31;17973:4;17970:1;17963:15;18001:4;17998:1;17991:15;17855:2;;17697:325;;;:::o;18027:135::-;18066:3;-1:-1:-1;;18087:17:1;;18084:2;;;18107:18;;:::i;:::-;-1:-1:-1;18154:1:1;18143:13;;18074:88::o;18167:112::-;18199:1;18225;18215:2;;18230:18;;:::i;:::-;-1:-1:-1;18264:9:1;;18205:74::o;18284:127::-;18345:10;18340:3;18336:20;18333:1;18326:31;18376:4;18373:1;18366:15;18400:4;18397:1;18390:15;18416:127;18477:10;18472:3;18468:20;18465:1;18458:31;18508:4;18505:1;18498:15;18532:4;18529:1;18522:15;18548:127;18609:10;18604:3;18600:20;18597:1;18590:31;18640:4;18637:1;18630:15;18664:4;18661:1;18654:15;18680:131;-1:-1:-1;;;;;;18754:32:1;;18744:43;;18734:2;;18801:1;18798;18791:12

Swarm Source

ipfs://d242bc1fff0ac75e5502e5c3bd563c0043de8432e64f6b6286191c3e39137a44
Loading...
Loading
Loading...
Loading
[ 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.