ETH Price: $3,384.72 (-1.54%)
Gas: 2 Gwei

Token

Larva Doods (Doods)
 

Overview

Max Total Supply

8,888 Doods

Holders

4,194

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 Doods
0xb4673d330e879cfafbe812d3cb330d9301a97a08
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Larva Doods are a collection of 8,888 Doods. Inspired by the smash hit collection Larva Lads and the loveable style of Doodles – these Doods are here and ready to boogy!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LarvaDoods

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//	 __     __   ___  _  _  __     ___    __    __  ___   ___ 
//	(  )   (  ) (  ,)( )( )(  )   (   \  /  \  /  \(   \ / __)
//	 )(__  /__\  )  \ \\// /__\    ) ) )( () )( () )) ) )\__ \
//	(____)(_)(_)(_)\_)(__)(_)(_)  (___/  \__/  \__/(___/ (___/
//	
//	
//	
//	
//	https://discord.com/invite/QvSwrBD229
//	https://larvadoods.com/


// IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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


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

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



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


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

// ERC721S.sol

pragma solidity ^0.8.10;


abstract contract ERC721S is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;     
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }     
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] ){
            ++count;
          }
        }
        delete length;
        return count;
    }
    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;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721S.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);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    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);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    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);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    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);
    }     
    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");
    }
	function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
	function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721S.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
	function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
	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"
        );
    }
	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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
	function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721S.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
	function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721S.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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
	function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721S.ownerOf(tokenId), to, tokenId);
    }
	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;
        }
    }
	function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// SafeMath.sol


pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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



// ERC721Enum.sol

pragma solidity ^0.8.10;

abstract contract ERC721Enum is ERC721S, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721S) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721S.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721S.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

// ReentrancyGuard.sol


pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// PaymentSplitter.sol


pragma solidity ^0.8.0;


/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

//  Pausable.sol


pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

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

    bool private _paused;

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

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

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

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

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

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

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

// Ownable.sol


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// Doods.sol

pragma solidity ^0.8.10;


contract LarvaDoods is ERC721Enum, Ownable, Pausable,  ReentrancyGuard {

	using Strings for uint256;
	string public baseURI;
	uint256 public cost = 0.008 ether;
	uint256 public maxSupply = 8888;
    uint256 public maxFree = 1000;  
    uint256 public nftPerAddressLimit = 9;
	bool public status = false;
    mapping(address => uint256) public addressMintedBalance;

		
	constructor() ERC721S("Larva Doods", "Doods"){
	    setBaseURI("");
	}

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

	function mint(uint256 _mintAmount) public payable nonReentrant{
		uint256 s = totalSupply();
		require(_mintAmount > 0, "Cant mint 0" );
		require(_mintAmount <= 20, "Cant mint more then maxmint" );
		require(s + _mintAmount <= maxSupply, "Cant go over supply" );
		require(msg.value >= cost * _mintAmount);
		for (uint256 i = 0; i < _mintAmount; ++i) {
			_safeMint(msg.sender, s + i, "");
		}
		delete s;
	}

    	function mintfree(uint256 _mintAmount) public payable nonReentrant{
		uint256 s = totalSupply();
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
		require(_mintAmount > 0, "Cant mint 0" );
		require(_mintAmount <= 3, "Cant mint more then maxmint" );
		require(s + _mintAmount <= maxFree, "Cant go over supply" );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressMintedBalance[msg.sender]++;
			_safeMint(msg.sender, s + i, "");
		}
		delete s;
	}

	function gift(uint[] calldata quantity, address[] calldata recipient) external onlyOwner{
		require(quantity.length == recipient.length, "Provide quantities and recipients" );
		uint totalQuantity = 0;
		uint256 s = totalSupply();
		for(uint i = 0; i < quantity.length; ++i){
			totalQuantity += quantity[i];
		}
		require( s + totalQuantity <= maxSupply, "Too many" );
		delete totalQuantity;
		for(uint i = 0; i < recipient.length; ++i){
			for(uint j = 0; j < quantity[i]; ++j){
			_safeMint( recipient[i], s++, "" );
			}
		}
		delete s;	
	}
	
	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
	    require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
	    string memory currentBaseURI = _baseURI();
	    return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}


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

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

	function setmaxFree(uint256 _newMaxFree) public onlyOwner {
	    maxFree = _newMaxFree;
	}
    	function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
	    maxSupply = _newMaxSupply;
	}
	function setBaseURI(string memory _newBaseURI) public onlyOwner {
	    baseURI = _newBaseURI;
	}
	function setSaleStatus(bool _status) public onlyOwner {
	    status = _status;
	}
	function withdraw() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
	require(success);
	}
    
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintfree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFree","type":"uint256"}],"name":"setmaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"tokenId","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052661c6bf5263400006008556122b860099081556103e8600a55600b55600c805460ff191690553480156200003757600080fd5b50604080518082018252600b81526a4c6172766120446f6f647360a81b602080830191825283518085019094526005845264446f6f647360d81b9084015281519192916200008891600091620001bb565b5080516200009e906001906020840190620001bb565b505050620000bb620000b5620000ed60201b60201c565b620000f1565b6005805460ff60a01b191690556001600655604080516020810190915260008152620000e79062000143565b6200029e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b7906007906020840190620001bb565b5050565b828054620001c99062000261565b90600052602060002090601f016020900481019282620001ed576000855562000238565b82601f106200020857805160ff191683800117855562000238565b8280016001018555821562000238579182015b82811115620002385782518255916020019190600101906200021b565b50620002469291506200024a565b5090565b5b808211156200024657600081556001016200024b565b600181811c908216806200027657607f821691505b602082108114156200029857634e487b7160e01b600052602260045260246000fd5b50919050565b6125cd80620002ae6000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a22cb465116100ab578063d5034b741161006f578063d5034b741461061e578063d5abeb011461063e578063d897833e14610654578063e985e9c514610674578063f2fde38b146106bd57600080fd5b8063a22cb46514610588578063b88d4fde146105a8578063ba7d2c76146105c8578063c87b56dd146105de578063d0eb26b0146105fe57600080fd5b80638462151c116100f25780638462151c146104f55780638da5cb5b1461052257806395d89b411461054057806396ea3a4714610555578063a0712d681461057557600080fd5b80636352211e1461048b5780636c0360eb146104ab57806370a08231146104c0578063715018a6146104e057600080fd5b8063228025e8116101b157806344a0d68a1161017557806344a0d68a146103f6578063485a68a3146104165780634f6ccce71461042c57806355f804b31461044c5780635c975abb1461046c57600080fd5b8063228025e81461036e57806323b872dd1461038e5780632f745c59146103ae5780633ccfd60b146103ce57806342842e0e146103d657600080fd5b8063095ea7b3116101f8578063095ea7b3146102ce57806313faede6146102ee57806318160ddd1461031257806318cae26914610327578063200d2ed21461035457600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063084dcc69146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611ee5565b6106dd565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610708565b6040516102569190611f5a565b34801561028d57600080fd5b506102a161029c366004611f6d565b61079a565b6040516001600160a01b039091168152602001610256565b6102cc6102c7366004611f6d565b610827565b005b3480156102da57600080fd5b506102cc6102e9366004611fa2565b610a43565b3480156102fa57600080fd5b5061030460085481565b604051908152602001610256565b34801561031e57600080fd5b50600254610304565b34801561033357600080fd5b50610304610342366004611fcc565b600d6020526000908152604090205481565b34801561036057600080fd5b50600c5461024a9060ff1681565b34801561037a57600080fd5b506102cc610389366004611f6d565b610b59565b34801561039a57600080fd5b506102cc6103a9366004611fe7565b610b88565b3480156103ba57600080fd5b506103046103c9366004611fa2565b610bb9565b6102cc610c68565b3480156103e257600080fd5b506102cc6103f1366004611fe7565b610cea565b34801561040257600080fd5b506102cc610411366004611f6d565b610d05565b34801561042257600080fd5b50610304600a5481565b34801561043857600080fd5b50610304610447366004611f6d565b610d34565b34801561045857600080fd5b506102cc6104673660046120af565b610d91565b34801561047857600080fd5b50600554600160a01b900460ff1661024a565b34801561049757600080fd5b506102a16104a6366004611f6d565b610dd2565b3480156104b757600080fd5b50610274610e5e565b3480156104cc57600080fd5b506103046104db366004611fcc565b610eec565b3480156104ec57600080fd5b506102cc610fbe565b34801561050157600080fd5b50610515610510366004611fcc565b610ff4565b60405161025691906120f8565b34801561052e57600080fd5b506005546001600160a01b03166102a1565b34801561054c57600080fd5b506102746110be565b34801561056157600080fd5b506102cc610570366004612188565b6110cd565b6102cc610583366004611f6d565b61128d565b34801561059457600080fd5b506102cc6105a3366004612204565b61141f565b3480156105b457600080fd5b506102cc6105c3366004612237565b6114e4565b3480156105d457600080fd5b50610304600b5481565b3480156105ea57600080fd5b506102746105f9366004611f6d565b61151c565b34801561060a57600080fd5b506102cc610619366004611f6d565b6115d9565b34801561062a57600080fd5b506102cc610639366004611f6d565b611608565b34801561064a57600080fd5b5061030460095481565b34801561066057600080fd5b506102cc61066f3660046122b3565b611637565b34801561068057600080fd5b5061024a61068f3660046122ce565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156106c957600080fd5b506102cc6106d8366004611fcc565b611674565b60006001600160e01b0319821663780e9d6360e01b148061070257506107028261170c565b92915050565b606060008054610717906122f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610743906122f8565b80156107905780601f1061076557610100808354040283529160200191610790565b820191906000526020600020905b81548152906001019060200180831161077357829003601f168201915b5050505050905090565b60006107a58261175c565b61080b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6002600654141561087a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610802565b6002600655600061088a60025490565b336000908152600d6020526040902054600b54919250906108ab8483612349565b11156108f95760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610802565b600083116109375760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610802565b60038311156109885760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e7400000000006044820152606401610802565b600a546109958484612349565b11156109d95760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610802565b60005b83811015610a3857336000908152600d602052604081208054916109ff83612361565b90915550610a28905033610a138386612349565b604051806020016040528060008152506117a6565b610a3181612361565b90506109dc565b505060016006555050565b6000610a4e82610dd2565b9050806001600160a01b0316836001600160a01b03161415610abc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610802565b336001600160a01b0382161480610ad85750610ad8813361068f565b610b4a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610802565b610b5483836117d9565b505050565b6005546001600160a01b03163314610b835760405162461bcd60e51b81526004016108029061237c565b600955565b610b923382611847565b610bae5760405162461bcd60e51b8152600401610802906123b1565b610b54838383611931565b6000610bc483610eec565b8210610be25760405162461bcd60e51b815260040161080290612402565b6000805b600254811015610c4f5760028181548110610c0357610c03612432565b6000918252602090912001546001600160a01b0386811691161415610c3f5783821415610c335791506107029050565b610c3c82612361565b91505b610c4881612361565b9050610be6565b5060405162461bcd60e51b815260040161080290612402565b6005546001600160a01b03163314610c925760405162461bcd60e51b81526004016108029061237c565b604051600090339047908381818185875af1925050503d8060008114610cd4576040519150601f19603f3d011682016040523d82523d6000602084013e610cd9565b606091505b5050905080610ce757600080fd5b50565b610b54838383604051806020016040528060008152506114e4565b6005546001600160a01b03163314610d2f5760405162461bcd60e51b81526004016108029061237c565b600855565b6000610d3f60025490565b8210610d8d5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610802565b5090565b6005546001600160a01b03163314610dbb5760405162461bcd60e51b81526004016108029061237c565b8051610dce906007906020840190611e3f565b5050565b60008060028381548110610de857610de8612432565b6000918252602090912001546001600160a01b03169050806107025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610802565b60078054610e6b906122f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e97906122f8565b8015610ee45780601f10610eb957610100808354040283529160200191610ee4565b820191906000526020600020905b815481529060010190602001808311610ec757829003601f168201915b505050505081565b60006001600160a01b038216610f575760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610802565b600254600090815b81811015610fb55760028181548110610f7a57610f7a612432565b6000918252602090912001546001600160a01b0386811691161415610fa557610fa283612361565b92505b610fae81612361565b9050610f5f565b50909392505050565b6005546001600160a01b03163314610fe85760405162461bcd60e51b81526004016108029061237c565b610ff26000611a87565b565b6060610fff82610eec565b60001061101e5760405162461bcd60e51b815260040161080290612402565b600061102983610eec565b905060008167ffffffffffffffff81111561104657611046612023565b60405190808252806020026020018201604052801561106f578160200160208202803683370190505b50905060005b828110156110b6576110878582610bb9565b82828151811061109957611099612432565b6020908102919091010152806110ae81612361565b915050611075565b509392505050565b606060018054610717906122f8565b6005546001600160a01b031633146110f75760405162461bcd60e51b81526004016108029061237c565b8281146111505760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610802565b60008061115c60025490565b905060005b8581101561119f5786868281811061117b5761117b612432565b905060200201358361118d9190612349565b925061119881612361565b9050611161565b506009546111ad8383612349565b11156111e65760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b6044820152606401610802565b6000915060005b838110156112845760005b87878381811061120a5761120a612432565b905060200201358110156112735761126386868481811061122d5761122d612432565b90506020020160208101906112429190611fcc565b8461124c81612361565b9550604051806020016040528060008152506117a6565b61126c81612361565b90506111f8565b5061127d81612361565b90506111ed565b50505050505050565b600260065414156112e05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610802565b600260065560006112f060025490565b9050600082116113305760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610802565b60148211156113815760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e7400000000006044820152606401610802565b60095461138e8383612349565b11156113d25760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610802565b816008546113e09190612448565b3410156113ec57600080fd5b60005b828110156114155761140533610a138385612349565b61140e81612361565b90506113ef565b5050600160065550565b6001600160a01b0382163314156114785760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610802565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114ee3383611847565b61150a5760405162461bcd60e51b8152600401610802906123b1565b61151684848484611ad9565b50505050565b60606115278261175c565b61157d5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610802565b6000611587611b0c565b905060008151116115a757604051806020016040528060008152506115d2565b806115b184611b1b565b6040516020016115c2929190612467565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146116035760405162461bcd60e51b81526004016108029061237c565b600b55565b6005546001600160a01b031633146116325760405162461bcd60e51b81526004016108029061237c565b600a55565b6005546001600160a01b031633146116615760405162461bcd60e51b81526004016108029061237c565b600c805460ff1916911515919091179055565b6005546001600160a01b0316331461169e5760405162461bcd60e51b81526004016108029061237c565b6001600160a01b0381166117035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610802565b610ce781611a87565b60006001600160e01b031982166380ac58cd60e01b148061173d57506001600160e01b03198216635b5e139f60e01b145b8061070257506301ffc9a760e01b6001600160e01b0319831614610702565b60025460009082108015610702575060006001600160a01b03166002838154811061178957611789612432565b6000918252602090912001546001600160a01b0316141592915050565b6117b08383611c19565b6117bd6000848484611d41565b610b545760405162461bcd60e51b815260040161080290612496565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180e82610dd2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118528261175c565b6118b35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610802565b60006118be83610dd2565b9050806001600160a01b0316846001600160a01b031614806118f95750836001600160a01b03166118ee8461079a565b6001600160a01b0316145b8061192957506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661194482610dd2565b6001600160a01b0316146119ac5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610802565b6001600160a01b038216611a0e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610802565b611a196000826117d9565b8160028281548110611a2d57611a2d612432565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ae4848484611931565b611af084848484611d41565b6115165760405162461bcd60e51b815260040161080290612496565b606060078054610717906122f8565b606081611b3f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b695780611b5381612361565b9150611b629050600a836124fe565b9150611b43565b60008167ffffffffffffffff811115611b8457611b84612023565b6040519080825280601f01601f191660200182016040528015611bae576020820181803683370190505b5090505b841561192957611bc3600183612512565b9150611bd0600a86612529565b611bdb906030612349565b60f81b818381518110611bf057611bf0612432565b60200101906001600160f81b031916908160001a905350611c12600a866124fe565b9450611bb2565b6001600160a01b038216611c6f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610802565b611c788161175c565b15611cc55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610802565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611e3457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8590339089908890889060040161253d565b6020604051808303816000875af1925050508015611dc0575060408051601f3d908101601f19168201909252611dbd9181019061257a565b60015b611e1a573d808015611dee576040519150601f19603f3d011682016040523d82523d6000602084013e611df3565b606091505b508051611e125760405162461bcd60e51b815260040161080290612496565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611929565b506001949350505050565b828054611e4b906122f8565b90600052602060002090601f016020900481019282611e6d5760008555611eb3565b82601f10611e8657805160ff1916838001178555611eb3565b82800160010185558215611eb3579182015b82811115611eb3578251825591602001919060010190611e98565b50610d8d9291505b80821115610d8d5760008155600101611ebb565b6001600160e01b031981168114610ce757600080fd5b600060208284031215611ef757600080fd5b81356115d281611ecf565b60005b83811015611f1d578181015183820152602001611f05565b838111156115165750506000910152565b60008151808452611f46816020860160208601611f02565b601f01601f19169290920160200192915050565b6020815260006115d26020830184611f2e565b600060208284031215611f7f57600080fd5b5035919050565b80356001600160a01b0381168114611f9d57600080fd5b919050565b60008060408385031215611fb557600080fd5b611fbe83611f86565b946020939093013593505050565b600060208284031215611fde57600080fd5b6115d282611f86565b600080600060608486031215611ffc57600080fd5b61200584611f86565b925061201360208501611f86565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561205457612054612023565b604051601f8501601f19908116603f0116810190828211818310171561207c5761207c612023565b8160405280935085815286868601111561209557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120c157600080fd5b813567ffffffffffffffff8111156120d857600080fd5b8201601f810184136120e957600080fd5b61192984823560208401612039565b6020808252825182820181905260009190848201906040850190845b8181101561213057835183529284019291840191600101612114565b50909695505050505050565b60008083601f84011261214e57600080fd5b50813567ffffffffffffffff81111561216657600080fd5b6020830191508360208260051b850101111561218157600080fd5b9250929050565b6000806000806040858703121561219e57600080fd5b843567ffffffffffffffff808211156121b657600080fd5b6121c28883890161213c565b909650945060208701359150808211156121db57600080fd5b506121e88782880161213c565b95989497509550505050565b80358015158114611f9d57600080fd5b6000806040838503121561221757600080fd5b61222083611f86565b915061222e602084016121f4565b90509250929050565b6000806000806080858703121561224d57600080fd5b61225685611f86565b935061226460208601611f86565b925060408501359150606085013567ffffffffffffffff81111561228757600080fd5b8501601f8101871361229857600080fd5b6122a787823560208401612039565b91505092959194509250565b6000602082840312156122c557600080fd5b6115d2826121f4565b600080604083850312156122e157600080fd5b6122ea83611f86565b915061222e60208401611f86565b600181811c9082168061230c57607f821691505b6020821081141561232d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561235c5761235c612333565b500190565b600060001982141561237557612375612333565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561246257612462612333565b500290565b60008351612479818460208801611f02565b83519083019061248d818360208801611f02565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261250d5761250d6124e8565b500490565b60008282101561252457612524612333565b500390565b600082612538576125386124e8565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061257090830184611f2e565b9695505050505050565b60006020828403121561258c57600080fd5b81516115d281611ecf56fea26469706673582212208e8027ab3edbc7fe8fc32445516c5be44da6c0e1e182b607dc6428637e27514964736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636352211e11610123578063a22cb465116100ab578063d5034b741161006f578063d5034b741461061e578063d5abeb011461063e578063d897833e14610654578063e985e9c514610674578063f2fde38b146106bd57600080fd5b8063a22cb46514610588578063b88d4fde146105a8578063ba7d2c76146105c8578063c87b56dd146105de578063d0eb26b0146105fe57600080fd5b80638462151c116100f25780638462151c146104f55780638da5cb5b1461052257806395d89b411461054057806396ea3a4714610555578063a0712d681461057557600080fd5b80636352211e1461048b5780636c0360eb146104ab57806370a08231146104c0578063715018a6146104e057600080fd5b8063228025e8116101b157806344a0d68a1161017557806344a0d68a146103f6578063485a68a3146104165780634f6ccce71461042c57806355f804b31461044c5780635c975abb1461046c57600080fd5b8063228025e81461036e57806323b872dd1461038e5780632f745c59146103ae5780633ccfd60b146103ce57806342842e0e146103d657600080fd5b8063095ea7b3116101f8578063095ea7b3146102ce57806313faede6146102ee57806318160ddd1461031257806318cae26914610327578063200d2ed21461035457600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063084dcc69146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611ee5565b6106dd565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610708565b6040516102569190611f5a565b34801561028d57600080fd5b506102a161029c366004611f6d565b61079a565b6040516001600160a01b039091168152602001610256565b6102cc6102c7366004611f6d565b610827565b005b3480156102da57600080fd5b506102cc6102e9366004611fa2565b610a43565b3480156102fa57600080fd5b5061030460085481565b604051908152602001610256565b34801561031e57600080fd5b50600254610304565b34801561033357600080fd5b50610304610342366004611fcc565b600d6020526000908152604090205481565b34801561036057600080fd5b50600c5461024a9060ff1681565b34801561037a57600080fd5b506102cc610389366004611f6d565b610b59565b34801561039a57600080fd5b506102cc6103a9366004611fe7565b610b88565b3480156103ba57600080fd5b506103046103c9366004611fa2565b610bb9565b6102cc610c68565b3480156103e257600080fd5b506102cc6103f1366004611fe7565b610cea565b34801561040257600080fd5b506102cc610411366004611f6d565b610d05565b34801561042257600080fd5b50610304600a5481565b34801561043857600080fd5b50610304610447366004611f6d565b610d34565b34801561045857600080fd5b506102cc6104673660046120af565b610d91565b34801561047857600080fd5b50600554600160a01b900460ff1661024a565b34801561049757600080fd5b506102a16104a6366004611f6d565b610dd2565b3480156104b757600080fd5b50610274610e5e565b3480156104cc57600080fd5b506103046104db366004611fcc565b610eec565b3480156104ec57600080fd5b506102cc610fbe565b34801561050157600080fd5b50610515610510366004611fcc565b610ff4565b60405161025691906120f8565b34801561052e57600080fd5b506005546001600160a01b03166102a1565b34801561054c57600080fd5b506102746110be565b34801561056157600080fd5b506102cc610570366004612188565b6110cd565b6102cc610583366004611f6d565b61128d565b34801561059457600080fd5b506102cc6105a3366004612204565b61141f565b3480156105b457600080fd5b506102cc6105c3366004612237565b6114e4565b3480156105d457600080fd5b50610304600b5481565b3480156105ea57600080fd5b506102746105f9366004611f6d565b61151c565b34801561060a57600080fd5b506102cc610619366004611f6d565b6115d9565b34801561062a57600080fd5b506102cc610639366004611f6d565b611608565b34801561064a57600080fd5b5061030460095481565b34801561066057600080fd5b506102cc61066f3660046122b3565b611637565b34801561068057600080fd5b5061024a61068f3660046122ce565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156106c957600080fd5b506102cc6106d8366004611fcc565b611674565b60006001600160e01b0319821663780e9d6360e01b148061070257506107028261170c565b92915050565b606060008054610717906122f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610743906122f8565b80156107905780601f1061076557610100808354040283529160200191610790565b820191906000526020600020905b81548152906001019060200180831161077357829003601f168201915b5050505050905090565b60006107a58261175c565b61080b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6002600654141561087a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610802565b6002600655600061088a60025490565b336000908152600d6020526040902054600b54919250906108ab8483612349565b11156108f95760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610802565b600083116109375760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610802565b60038311156109885760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e7400000000006044820152606401610802565b600a546109958484612349565b11156109d95760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610802565b60005b83811015610a3857336000908152600d602052604081208054916109ff83612361565b90915550610a28905033610a138386612349565b604051806020016040528060008152506117a6565b610a3181612361565b90506109dc565b505060016006555050565b6000610a4e82610dd2565b9050806001600160a01b0316836001600160a01b03161415610abc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610802565b336001600160a01b0382161480610ad85750610ad8813361068f565b610b4a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610802565b610b5483836117d9565b505050565b6005546001600160a01b03163314610b835760405162461bcd60e51b81526004016108029061237c565b600955565b610b923382611847565b610bae5760405162461bcd60e51b8152600401610802906123b1565b610b54838383611931565b6000610bc483610eec565b8210610be25760405162461bcd60e51b815260040161080290612402565b6000805b600254811015610c4f5760028181548110610c0357610c03612432565b6000918252602090912001546001600160a01b0386811691161415610c3f5783821415610c335791506107029050565b610c3c82612361565b91505b610c4881612361565b9050610be6565b5060405162461bcd60e51b815260040161080290612402565b6005546001600160a01b03163314610c925760405162461bcd60e51b81526004016108029061237c565b604051600090339047908381818185875af1925050503d8060008114610cd4576040519150601f19603f3d011682016040523d82523d6000602084013e610cd9565b606091505b5050905080610ce757600080fd5b50565b610b54838383604051806020016040528060008152506114e4565b6005546001600160a01b03163314610d2f5760405162461bcd60e51b81526004016108029061237c565b600855565b6000610d3f60025490565b8210610d8d5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610802565b5090565b6005546001600160a01b03163314610dbb5760405162461bcd60e51b81526004016108029061237c565b8051610dce906007906020840190611e3f565b5050565b60008060028381548110610de857610de8612432565b6000918252602090912001546001600160a01b03169050806107025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610802565b60078054610e6b906122f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e97906122f8565b8015610ee45780601f10610eb957610100808354040283529160200191610ee4565b820191906000526020600020905b815481529060010190602001808311610ec757829003601f168201915b505050505081565b60006001600160a01b038216610f575760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610802565b600254600090815b81811015610fb55760028181548110610f7a57610f7a612432565b6000918252602090912001546001600160a01b0386811691161415610fa557610fa283612361565b92505b610fae81612361565b9050610f5f565b50909392505050565b6005546001600160a01b03163314610fe85760405162461bcd60e51b81526004016108029061237c565b610ff26000611a87565b565b6060610fff82610eec565b60001061101e5760405162461bcd60e51b815260040161080290612402565b600061102983610eec565b905060008167ffffffffffffffff81111561104657611046612023565b60405190808252806020026020018201604052801561106f578160200160208202803683370190505b50905060005b828110156110b6576110878582610bb9565b82828151811061109957611099612432565b6020908102919091010152806110ae81612361565b915050611075565b509392505050565b606060018054610717906122f8565b6005546001600160a01b031633146110f75760405162461bcd60e51b81526004016108029061237c565b8281146111505760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610802565b60008061115c60025490565b905060005b8581101561119f5786868281811061117b5761117b612432565b905060200201358361118d9190612349565b925061119881612361565b9050611161565b506009546111ad8383612349565b11156111e65760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b6044820152606401610802565b6000915060005b838110156112845760005b87878381811061120a5761120a612432565b905060200201358110156112735761126386868481811061122d5761122d612432565b90506020020160208101906112429190611fcc565b8461124c81612361565b9550604051806020016040528060008152506117a6565b61126c81612361565b90506111f8565b5061127d81612361565b90506111ed565b50505050505050565b600260065414156112e05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610802565b600260065560006112f060025490565b9050600082116113305760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610802565b60148211156113815760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e7400000000006044820152606401610802565b60095461138e8383612349565b11156113d25760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610802565b816008546113e09190612448565b3410156113ec57600080fd5b60005b828110156114155761140533610a138385612349565b61140e81612361565b90506113ef565b5050600160065550565b6001600160a01b0382163314156114785760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610802565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114ee3383611847565b61150a5760405162461bcd60e51b8152600401610802906123b1565b61151684848484611ad9565b50505050565b60606115278261175c565b61157d5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610802565b6000611587611b0c565b905060008151116115a757604051806020016040528060008152506115d2565b806115b184611b1b565b6040516020016115c2929190612467565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146116035760405162461bcd60e51b81526004016108029061237c565b600b55565b6005546001600160a01b031633146116325760405162461bcd60e51b81526004016108029061237c565b600a55565b6005546001600160a01b031633146116615760405162461bcd60e51b81526004016108029061237c565b600c805460ff1916911515919091179055565b6005546001600160a01b0316331461169e5760405162461bcd60e51b81526004016108029061237c565b6001600160a01b0381166117035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610802565b610ce781611a87565b60006001600160e01b031982166380ac58cd60e01b148061173d57506001600160e01b03198216635b5e139f60e01b145b8061070257506301ffc9a760e01b6001600160e01b0319831614610702565b60025460009082108015610702575060006001600160a01b03166002838154811061178957611789612432565b6000918252602090912001546001600160a01b0316141592915050565b6117b08383611c19565b6117bd6000848484611d41565b610b545760405162461bcd60e51b815260040161080290612496565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180e82610dd2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118528261175c565b6118b35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610802565b60006118be83610dd2565b9050806001600160a01b0316846001600160a01b031614806118f95750836001600160a01b03166118ee8461079a565b6001600160a01b0316145b8061192957506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661194482610dd2565b6001600160a01b0316146119ac5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610802565b6001600160a01b038216611a0e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610802565b611a196000826117d9565b8160028281548110611a2d57611a2d612432565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ae4848484611931565b611af084848484611d41565b6115165760405162461bcd60e51b815260040161080290612496565b606060078054610717906122f8565b606081611b3f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b695780611b5381612361565b9150611b629050600a836124fe565b9150611b43565b60008167ffffffffffffffff811115611b8457611b84612023565b6040519080825280601f01601f191660200182016040528015611bae576020820181803683370190505b5090505b841561192957611bc3600183612512565b9150611bd0600a86612529565b611bdb906030612349565b60f81b818381518110611bf057611bf0612432565b60200101906001600160f81b031916908160001a905350611c12600a866124fe565b9450611bb2565b6001600160a01b038216611c6f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610802565b611c788161175c565b15611cc55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610802565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611e3457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8590339089908890889060040161253d565b6020604051808303816000875af1925050508015611dc0575060408051601f3d908101601f19168201909252611dbd9181019061257a565b60015b611e1a573d808015611dee576040519150601f19603f3d011682016040523d82523d6000602084013e611df3565b606091505b508051611e125760405162461bcd60e51b815260040161080290612496565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611929565b506001949350505050565b828054611e4b906122f8565b90600052602060002090601f016020900481019282611e6d5760008555611eb3565b82601f10611e8657805160ff1916838001178555611eb3565b82800160010185558215611eb3579182015b82811115611eb3578251825591602001919060010190611e98565b50610d8d9291505b80821115610d8d5760008155600101611ebb565b6001600160e01b031981168114610ce757600080fd5b600060208284031215611ef757600080fd5b81356115d281611ecf565b60005b83811015611f1d578181015183820152602001611f05565b838111156115165750506000910152565b60008151808452611f46816020860160208601611f02565b601f01601f19169290920160200192915050565b6020815260006115d26020830184611f2e565b600060208284031215611f7f57600080fd5b5035919050565b80356001600160a01b0381168114611f9d57600080fd5b919050565b60008060408385031215611fb557600080fd5b611fbe83611f86565b946020939093013593505050565b600060208284031215611fde57600080fd5b6115d282611f86565b600080600060608486031215611ffc57600080fd5b61200584611f86565b925061201360208501611f86565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561205457612054612023565b604051601f8501601f19908116603f0116810190828211818310171561207c5761207c612023565b8160405280935085815286868601111561209557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120c157600080fd5b813567ffffffffffffffff8111156120d857600080fd5b8201601f810184136120e957600080fd5b61192984823560208401612039565b6020808252825182820181905260009190848201906040850190845b8181101561213057835183529284019291840191600101612114565b50909695505050505050565b60008083601f84011261214e57600080fd5b50813567ffffffffffffffff81111561216657600080fd5b6020830191508360208260051b850101111561218157600080fd5b9250929050565b6000806000806040858703121561219e57600080fd5b843567ffffffffffffffff808211156121b657600080fd5b6121c28883890161213c565b909650945060208701359150808211156121db57600080fd5b506121e88782880161213c565b95989497509550505050565b80358015158114611f9d57600080fd5b6000806040838503121561221757600080fd5b61222083611f86565b915061222e602084016121f4565b90509250929050565b6000806000806080858703121561224d57600080fd5b61225685611f86565b935061226460208601611f86565b925060408501359150606085013567ffffffffffffffff81111561228757600080fd5b8501601f8101871361229857600080fd5b6122a787823560208401612039565b91505092959194509250565b6000602082840312156122c557600080fd5b6115d2826121f4565b600080604083850312156122e157600080fd5b6122ea83611f86565b915061222e60208401611f86565b600181811c9082168061230c57607f821691505b6020821081141561232d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561235c5761235c612333565b500190565b600060001982141561237557612375612333565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561246257612462612333565b500290565b60008351612479818460208801611f02565b83519083019061248d818360208801611f02565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261250d5761250d6124e8565b500490565b60008282101561252457612524612333565b500390565b600082612538576125386124e8565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061257090830184611f2e565b9695505050505050565b60006020828403121561258c57600080fd5b81516115d281611ecf56fea26469706673582212208e8027ab3edbc7fe8fc32445516c5be44da6c0e1e182b607dc6428637e27514964736f6c634300080b0033

Deployed Bytecode Sourcemap

48317:3237:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32549:225;;;;;;;;;;-1:-1:-1;32549:225:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;32549:225:0;;;;;;;;11667:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12301:221::-;;;;;;;;;;-1:-1:-1;12301:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;12301:221:0;1528:203:1;49303:598:0;;;;;;:::i;:::-;;:::i;:::-;;11883:412;;;;;;;;;;-1:-1:-1;11883:412:0;;;;;:::i;:::-;;:::i;48448:33::-;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;48448:33:0;2173:177:1;33710:110:0;;;;;;;;;;-1:-1:-1;33798:7:0;:14;33710:110;;48635:55;;;;;;;;;;-1:-1:-1;48635:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;48602:26;;;;;;;;;;-1:-1:-1;48602:26:0;;;;;;;;51104:100;;;;;;;;;;-1:-1:-1;51104:100:0;;;;;:::i;:::-;;:::i;12999:339::-;;;;;;;;;;-1:-1:-1;12999:339:0;;;;;:::i;:::-;;:::i;32780:500::-;;;;;;;;;;-1:-1:-1;32780:500:0;;;;;:::i;:::-;;:::i;51394:151::-;;;:::i;13344:185::-;;;;;;;;;;-1:-1:-1;13344:185:0;;;;;:::i;:::-;;:::i;50920:80::-;;;;;;;;;;-1:-1:-1;50920:80:0;;;;;:::i;:::-;;:::i;48523:29::-;;;;;;;;;;;;;;;;33826:194;;;;;;;;;;-1:-1:-1;33826:194:0;;;;;:::i;:::-;;:::i;51207:98::-;;;;;;;;;;-1:-1:-1;51207:98:0;;;;;:::i;:::-;;:::i;42814:86::-;;;;;;;;;;-1:-1:-1;42885:7:0;;-1:-1:-1;;;42885:7:0;;;;42814:86;;11422:239;;;;;;;;;;-1:-1:-1;11422:239:0;;;;;:::i;:::-;;:::i;48423:21::-;;;;;;;;;;;;;:::i;11002:414::-;;;;;;;;;;-1:-1:-1;11002:414:0;;;;;:::i;:::-;;:::i;47642:94::-;;;;;;;;;;;;;:::i;33286:418::-;;;;;;;;;;-1:-1:-1;33286:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46991:87::-;;;;;;;;;;-1:-1:-1;47064:6:0;;-1:-1:-1;;;;;47064:6:0;46991:87;;11773:104;;;;;;;;;;;;;:::i;49906:560::-;;;;;;;;;;-1:-1:-1;49906:560:0;;;;;:::i;:::-;;:::i;48875:419::-;;;;;;:::i;:::-;;:::i;12528:295::-;;;;;;;;;;-1:-1:-1;12528:295:0;;;;;:::i;:::-;;:::i;13535:328::-;;;;;;;;;;-1:-1:-1;13535:328:0;;;;;:::i;:::-;;:::i;48561:37::-;;;;;;;;;;;;;;;;50472:327;;;;;;;;;;-1:-1:-1;50472:327:0;;;;;:::i;:::-;;:::i;50811:104::-;;;;;;;;;;-1:-1:-1;50811:104:0;;;;;:::i;:::-;;:::i;51005:92::-;;;;;;;;;;-1:-1:-1;51005:92:0;;;;;:::i;:::-;;:::i;48485:31::-;;;;;;;;;;;;;;;;51308:83;;;;;;;;;;-1:-1:-1;51308:83:0;;;;;:::i;:::-;;:::i;12829:164::-;;;;;;;;;;-1:-1:-1;12829:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;12950:25:0;;;12926:4;12950:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12829:164;47891:192;;;;;;;;;;-1:-1:-1;47891:192:0;;;;;:::i;:::-;;:::i;32549:225::-;32652:4;-1:-1:-1;;;;;;32676:50:0;;-1:-1:-1;;;32676:50:0;;:90;;;32730:36;32754:11;32730:23;:36::i;:::-;32669:97;32549:225;-1:-1:-1;;32549:225:0:o;11667:100::-;11721:13;11754:5;11747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11667:100;:::o;12301:221::-;12377:7;12405:16;12413:7;12405;:16::i;:::-;12397:73;;;;-1:-1:-1;;;12397:73:0;;8024:2:1;12397:73:0;;;8006:21:1;8063:2;8043:18;;;8036:30;8102:34;8082:18;;;8075:62;-1:-1:-1;;;8153:18:1;;;8146:42;8205:19;;12397:73:0;;;;;;;;;-1:-1:-1;12490:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12490:24:0;;12301:221::o;49303:598::-;35733:1;36329:7;;:19;;36321:63;;;;-1:-1:-1;;;36321:63:0;;8437:2:1;36321:63:0;;;8419:21:1;8476:2;8456:18;;;8449:30;8515:33;8495:18;;;8488:61;8566:18;;36321:63:0;8235:355:1;36321:63:0;35733:1;36462:7;:18;49374:9:::1;49386:13;33798:7:::0;:14;;33710:110;49386:13:::1;49458:10;49410:24;49437:32:::0;;;:20:::1;:32;::::0;;;;;49522:18:::1;::::0;49374:25;;-1:-1:-1;49437:32:0;49488:30:::1;49507:11:::0;49437:32;49488:30:::1;:::i;:::-;:52;;49480:93;;;::::0;-1:-1:-1;;;49480:93:0;;9062:2:1;49480:93:0::1;::::0;::::1;9044:21:1::0;9101:2;9081:18;;;9074:30;9140;9120:18;;;9113:58;9188:18;;49480:93:0::1;8860:352:1::0;49480:93:0::1;49600:1;49586:11;:15;49578:40;;;::::0;-1:-1:-1;;;49578:40:0;;9419:2:1;49578:40:0::1;::::0;::::1;9401:21:1::0;9458:2;9438:18;;;9431:30;-1:-1:-1;;;9477:18:1;;;9470:41;9528:18;;49578:40:0::1;9217:335:1::0;49578:40:0::1;49646:1;49631:11;:16;;49623:57;;;::::0;-1:-1:-1;;;49623:57:0;;9759:2:1;49623:57:0::1;::::0;::::1;9741:21:1::0;9798:2;9778:18;;;9771:30;9837:29;9817:18;;;9810:57;9884:18;;49623:57:0::1;9557:351:1::0;49623:57:0::1;49712:7;::::0;49693:15:::1;49697:11:::0;49693:1;:15:::1;:::i;:::-;:26;;49685:59;;;::::0;-1:-1:-1;;;49685:59:0;;10115:2:1;49685:59:0::1;::::0;::::1;10097:21:1::0;10154:2;10134:18;;;10127:30;-1:-1:-1;;;10173:18:1;;;10166:49;10232:18;;49685:59:0::1;9913:343:1::0;49685:59:0::1;49754:9;49749:135;49773:11;49769:1;:15;49749:135;;;49827:10;49806:32;::::0;;;:20:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;49846:32:0::1;::::0;-1:-1:-1;49856:10:0::1;49868:5;49872:1:::0;49868;:5:::1;:::i;:::-;49846:32;;;;;;;;;;;::::0;:9:::1;:32::i;:::-;49786:3;::::0;::::1;:::i;:::-;;;49749:135;;;-1:-1:-1::0;;35689:1:0;36641:7;:22;-1:-1:-1;;49303:598:0:o;11883:412::-;11964:13;11980:24;11996:7;11980:15;:24::i;:::-;11964:40;;12029:5;-1:-1:-1;;;;;12023:11:0;:2;-1:-1:-1;;;;;12023:11:0;;;12015:57;;;;-1:-1:-1;;;12015:57:0;;10603:2:1;12015:57:0;;;10585:21:1;10642:2;10622:18;;;10615:30;10681:34;10661:18;;;10654:62;-1:-1:-1;;;10732:18:1;;;10725:31;10773:19;;12015:57:0;10401:397:1;12015:57:0;10042:10;-1:-1:-1;;;;;12107:21:0;;;;:62;;-1:-1:-1;12132:37:0;12149:5;10042:10;12829:164;:::i;12132:37::-;12085:168;;;;-1:-1:-1;;;12085:168:0;;11005:2:1;12085:168:0;;;10987:21:1;11044:2;11024:18;;;11017:30;11083:34;11063:18;;;11056:62;11154:26;11134:18;;;11127:54;11198:19;;12085:168:0;10803:420:1;12085:168:0;12266:21;12275:2;12279:7;12266:8;:21::i;:::-;11953:342;11883:412;;:::o;51104:100::-;47064:6;;-1:-1:-1;;;;;47064:6:0;10042:10;47211:23;47203:68;;;;-1:-1:-1;;;47203:68:0;;;;;;;:::i;:::-;51174:9:::1;:25:::0;51104:100::o;12999:339::-;13194:41;10042:10;13227:7;13194:18;:41::i;:::-;13186:103;;;;-1:-1:-1;;;13186:103:0;;;;;;;:::i;:::-;13302:28;13312:4;13318:2;13322:7;13302:9;:28::i;32780:500::-;32869:15;32913:24;32931:5;32913:17;:24::i;:::-;32905:5;:32;32897:67;;;;-1:-1:-1;;;32897:67:0;;;;;;;:::i;:::-;32975:10;33001:6;32996:226;33013:7;:14;33009:18;;32996:226;;;33062:7;33070:1;33062:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;33053:19:0;;;33062:10;;33053:19;33049:162;;;33106:5;33097;:14;33093:102;;;33142:1;-1:-1:-1;33135:8:0;;-1:-1:-1;33135:8:0;33093:102;33188:7;;;:::i;:::-;;;33093:102;33029:3;;;:::i;:::-;;;32996:226;;;-1:-1:-1;33232:40:0;;-1:-1:-1;;;33232:40:0;;;;;;;:::i;51394:151::-;47064:6;;-1:-1:-1;;;;;47064:6:0;10042:10;47211:23;47203:68;;;;-1:-1:-1;;;47203:68:0;;;;;;;:::i;:::-;51462:58:::1;::::0;51444:12:::1;::::0;51470:10:::1;::::0;51494:21:::1;::::0;51444:12;51462:58;51444:12;51462:58;51494:21;51470:10;51462:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51443:77;;;51532:7;51524:16;;;::::0;::::1;;51439:106;51394:151::o:0;13344:185::-;13482:39;13499:4;13505:2;13509:7;13482:39;;;;;;;;;;;;:16;:39::i;50920:80::-;47064:6;;-1:-1:-1;;;;;47064:6:0;10042:10;47211:23;47203:68;;;;-1:-1:-1;;;47203:68:0;;;;;;;:::i;:::-;50980:4:::1;:15:::0;50920:80::o;33826:194::-;33901:7;33937:24;33798:7;:14;;33710:110;33937:24;33929:5;:32;33921:68;;;;-1:-1:-1;;;33921:68:0;;12902:2:1;33921:68:0;;;12884:21:1;12941:2;12921:18;;;12914:30;12980:25;12960:18;;;12953:53;13023:18;;33921:68:0;12700:347:1;33921:68:0;-1:-1:-1;34007:5:0;33826:194::o;51207:98::-;47064:6;;-1:-1:-1;;;;;47064:6:0;10042:10;47211:23;47203:68;;;;-1:-1:-1;;;47203:68:0;;;;;;;:::i;:::-;51279:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51207:98:::0;:::o;11422:239::-;11494:7;11514:13;11530:7;11538;11530:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11530:16:0;;-1:-1:-1;11565:19:0;11557:73;;;;-1:-1:-1;;;11557:73:0;;13254:2:1;11557:73:0;;;13236:21:1;13293:2;13273:18;;;13266:30;13332:34;13312:18;;;13305:62;-1:-1:-1;;;13383:18:1;;;13376:39;13432:19;;11557:73:0;13052:405:1;48423:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11002:414::-;11074:7;-1:-1:-1;;;;;11102:19:0;;11094:74;;;;-1:-1:-1;;;11094:74:0;;13664:2:1;11094:74:0;;;13646:21:1;13703:2;13683:18;;;13676:30;13742:34;13722:18;;;13715:62;-1:-1:-1;;;13793:18:1;;;13786:40;13843:19;;11094:74:0;13462:406:1;11094:74:0;11218:7;:14;11179:10;;;11243:119;11264:6;11260:1;:10;11243:119;;;11303:7;11311:1;11303:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11294:19:0;;;11303:10;;11294:19;11290:61;;;11330:7;;;:::i;:::-;;;11290:61;11272:3;;;:::i;:::-;;;11243:119;;;-1:-1:-1;11403:5:0;;11002:414;-1:-1:-1;;;11002:414:0:o;47642:94::-;47064:6;;-1:-1:-1;;;;;47064:6:0;10042:10;47211:23;47203:68;;;;-1:-1:-1;;;47203:68:0;;;;;;;:::i;:::-;47707:21:::1;47725:1;47707:9;:21::i;:::-;47642:94::o:0;33286:418::-;33345:16;33386:24;33404:5;33386:17;:24::i;:::-;33382:1;:28;33374:63;;;;-1:-1:-1;;;33374:63:0;;;;;;;:::i;:::-;33448:18;33469:16;33479:5;33469:9;:16::i;:::-;33448:37;;33496:25;33538:10;33524:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33524:25:0;;33496:53;;33565:9;33560:111;33584:10;33580:1;:14;33560:111;;;33630:29;33650:5;33657:1;33630:19;:29::i;:::-;33616:8;33625:1;33616:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;33596:3;;;;:::i;:::-;;;;33560:111;;;-1:-1:-1;33688:8:0;33286:418;-1:-1:-1;;;33286:418:0:o;11773:104::-;11829:13;11862:7;11855:14;;;;;:::i;49906:560::-;47064:6;;-1:-1:-1;;;;;47064:6:0;10042:10;47211:23;47203:68;;;;-1:-1:-1;;;47203:68:0;;;;;;;:::i;:::-;50007:35;;::::1;49999:82;;;::::0;-1:-1:-1;;;49999:82:0;;14075:2:1;49999:82:0::1;::::0;::::1;14057:21:1::0;14114:2;14094:18;;;14087:30;14153:34;14133:18;;;14126:62;-1:-1:-1;;;14204:18:1;;;14197:31;14245:19;;49999:82:0::1;13873:397:1::0;49999:82:0::1;50086:18;50113:9:::0;50125:13:::1;33798:7:::0;:14;;33710:110;50125:13:::1;50113:25;;50147:6;50143:81;50159:19:::0;;::::1;50143:81;;;50207:8;;50216:1;50207:11;;;;;;;:::i;:::-;;;;;;;50190:28;;;;;:::i;:::-;::::0;-1:-1:-1;50180:3:0::1;::::0;::::1;:::i;:::-;;;50143:81;;;-1:-1:-1::0;50258:9:0::1;::::0;50237:17:::1;50241:13:::0;50237:1;:17:::1;:::i;:::-;:30;;50228:53;;;::::0;-1:-1:-1;;;50228:53:0;;14477:2:1;50228:53:0::1;::::0;::::1;14459:21:1::0;14516:1;14496:18;;;14489:29;-1:-1:-1;;;14534:18:1;;;14527:38;14582:18;;50228:53:0::1;14275:331:1::0;50228:53:0::1;50286:20;;;50315:6;50311:137;50327:20:::0;;::::1;50311:137;;;50363:6;50359:84;50379:8;;50388:1;50379:11;;;;;;;:::i;:::-;;;;;;;50375:1;:15;50359:84;;;50402:34;50413:9;;50423:1;50413:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50427:3:::0;::::1;::::0;::::1;:::i;:::-;;;50402:34;;;;;;;;;;;::::0;:9:::1;:34::i;:::-;50392:3;::::0;::::1;:::i;:::-;;;50359:84;;;-1:-1:-1::0;50349:3:0::1;::::0;::::1;:::i;:::-;;;50311:137;;;-1:-1:-1::0;;;;;;;49906:560:0:o;48875:419::-;35733:1;36329:7;;:19;;36321:63;;;;-1:-1:-1;;;36321:63:0;;8437:2:1;36321:63:0;;;8419:21:1;8476:2;8456:18;;;8449:30;8515:33;8495:18;;;8488:61;8566:18;;36321:63:0;8235:355:1;36321:63:0;35733:1;36462:7;:18;48942:9:::1;48954:13;33798:7:::0;:14;;33710:110;48954:13:::1;48942:25;;48994:1;48980:11;:15;48972:40;;;::::0;-1:-1:-1;;;48972:40:0;;9419:2:1;48972:40:0::1;::::0;::::1;9401:21:1::0;9458:2;9438:18;;;9431:30;-1:-1:-1;;;9477:18:1;;;9470:41;9528:18;;48972:40:0::1;9217:335:1::0;48972:40:0::1;49040:2;49025:11;:17;;49017:58;;;::::0;-1:-1:-1;;;49017:58:0;;9759:2:1;49017:58:0::1;::::0;::::1;9741:21:1::0;9798:2;9778:18;;;9771:30;9837:29;9817:18;;;9810:57;9884:18;;49017:58:0::1;9557:351:1::0;49017:58:0::1;49107:9;::::0;49088:15:::1;49092:11:::0;49088:1;:15:::1;:::i;:::-;:28;;49080:61;;;::::0;-1:-1:-1;;;49080:61:0;;10115:2:1;49080:61:0::1;::::0;::::1;10097:21:1::0;10154:2;10134:18;;;10127:30;-1:-1:-1;;;10173:18:1;;;10166:49;10232:18;;49080:61:0::1;9913:343:1::0;49080:61:0::1;49174:11;49167:4;;:18;;;;:::i;:::-;49154:9;:31;;49146:40;;;::::0;::::1;;49196:9;49191:86;49215:11;49211:1;:15;49191:86;;;49239:32;49249:10;49261:5;49265:1:::0;49261;:5:::1;:::i;49239:32::-;49228:3;::::0;::::1;:::i;:::-;;;49191:86;;;-1:-1:-1::0;;35689:1:0;36641:7;:22;-1:-1:-1;48875:419:0:o;12528:295::-;-1:-1:-1;;;;;12631:24:0;;10042:10;12631:24;;12623:62;;;;-1:-1:-1;;;12623:62:0;;14986:2:1;12623:62:0;;;14968:21:1;15025:2;15005:18;;;14998:30;15064:27;15044:18;;;15037:55;15109:18;;12623:62:0;14784:349:1;12623:62:0;10042:10;12698:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;12698:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;12698:53:0;;;;;;;;;;12767:48;;540:41:1;;;12698:42:0;;10042:10;12767:48;;513:18:1;12767:48:0;;;;;;;12528:295;;:::o;13535:328::-;13710:41;10042:10;13743:7;13710:18;:41::i;:::-;13702:103;;;;-1:-1:-1;;;13702:103:0;;;;;;;:::i;:::-;13816:39;13830:4;13836:2;13840:7;13849:5;13816:13;:39::i;:::-;13535:328;;;;:::o;50472:327::-;50545:13;50576:16;50584:7;50576;:16::i;:::-;50568:62;;;;-1:-1:-1;;;50568:62:0;;15340:2:1;50568:62:0;;;15322:21:1;15379:2;15359:18;;;15352:30;15418:34;15398:18;;;15391:62;-1:-1:-1;;;15469:18:1;;;15462:31;15510:19;;50568:62:0;15138:397:1;50568:62:0;50638:28;50669:10;:8;:10::i;:::-;50638:41;;50725:1;50700:14;50694:28;:32;:100;;;;;;;;;;;;;;;;;50753:14;50769:18;:7;:16;:18::i;:::-;50736:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50694:100;50687:107;50472:327;-1:-1:-1;;;50472:327:0:o;50811:104::-;47064:6;;-1:-1:-1;;;;;47064:6:0;10042:10;47211:23;47203:68;;;;-1:-1:-1;;;47203:68:0;;;;;;;:::i;:::-;50882:18:::1;:27:::0;50811:104::o;51005:92::-;47064:6;;-1:-1:-1;;;;;47064:6:0;10042:10;47211:23;47203:68;;;;-1:-1:-1;;;47203:68:0;;;;;;;:::i;:::-;51071:7:::1;:21:::0;51005:92::o;51308:83::-;47064:6;;-1:-1:-1;;;;;47064:6:0;10042:10;47211:23;47203:68;;;;-1:-1:-1;;;47203:68:0;;;;;;;:::i;:::-;51370:6:::1;:16:::0;;-1:-1:-1;;51370:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51308:83::o;47891:192::-;47064:6;;-1:-1:-1;;;;;47064:6:0;10042:10;47211:23;47203:68;;;;-1:-1:-1;;;47203:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47980:22:0;::::1;47972:73;;;::::0;-1:-1:-1;;;47972:73:0;;16217:2:1;47972:73:0::1;::::0;::::1;16199:21:1::0;16256:2;16236:18;;;16229:30;16295:34;16275:18;;;16268:62;-1:-1:-1;;;16346:18:1;;;16339:36;16392:19;;47972:73:0::1;16015:402:1::0;47972:73:0::1;48056:19;48066:8;48056:9;:19::i;10691:305::-:0;10793:4;-1:-1:-1;;;;;;10830:40:0;;-1:-1:-1;;;10830:40:0;;:105;;-1:-1:-1;;;;;;;10887:48:0;;-1:-1:-1;;;10887:48:0;10830:105;:158;;;-1:-1:-1;;;;;;;;;;2029:40:0;;;10952:36;1920:157;14192:155;14291:7;:14;14257:4;;14281:24;;:58;;;;;14337:1;-1:-1:-1;;;;;14309:30:0;:7;14317;14309:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;14309:16:0;:30;;14274:65;14192:155;-1:-1:-1;;14192:155:0:o;14815:321::-;14945:18;14951:2;14955:7;14945:5;:18::i;:::-;14996:54;15027:1;15031:2;15035:7;15044:5;14996:22;:54::i;:::-;14974:154;;;;-1:-1:-1;;;14974:154:0;;;;;;;:::i;16344:175::-;16419:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;16419:29:0;-1:-1:-1;;;;;16419:29:0;;;;;;;;:24;;16473;16419;16473:15;:24::i;:::-;-1:-1:-1;;;;;16464:47:0;;;;;;;;;;;16344:175;;:::o;14350:349::-;14443:4;14468:16;14476:7;14468;:16::i;:::-;14460:73;;;;-1:-1:-1;;;14460:73:0;;17043:2:1;14460:73:0;;;17025:21:1;17082:2;17062:18;;;17055:30;17121:34;17101:18;;;17094:62;-1:-1:-1;;;17172:18:1;;;17165:42;17224:19;;14460:73:0;16841:408:1;14460:73:0;14544:13;14560:24;14576:7;14560:15;:24::i;:::-;14544:40;;14614:5;-1:-1:-1;;;;;14603:16:0;:7;-1:-1:-1;;;;;14603:16:0;;:51;;;;14647:7;-1:-1:-1;;;;;14623:31:0;:20;14635:7;14623:11;:20::i;:::-;-1:-1:-1;;;;;14623:31:0;;14603:51;:87;;;-1:-1:-1;;;;;;12950:25:0;;;12926:4;12950:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;14658:32;14595:96;14350:349;-1:-1:-1;;;;14350:349:0:o;15824:517::-;15984:4;-1:-1:-1;;;;;15956:32:0;:24;15972:7;15956:15;:24::i;:::-;-1:-1:-1;;;;;15956:32:0;;15948:86;;;;-1:-1:-1;;;15948:86:0;;17456:2:1;15948:86:0;;;17438:21:1;17495:2;17475:18;;;17468:30;17534:34;17514:18;;;17507:62;-1:-1:-1;;;17585:18:1;;;17578:39;17634:19;;15948:86:0;17254:405:1;15948:86:0;-1:-1:-1;;;;;16053:16:0;;16045:65;;;;-1:-1:-1;;;16045:65:0;;17866:2:1;16045:65:0;;;17848:21:1;17905:2;17885:18;;;17878:30;17944:34;17924:18;;;17917:62;-1:-1:-1;;;17995:18:1;;;17988:34;18039:19;;16045:65:0;17664:400:1;16045:65:0;16227:29;16244:1;16248:7;16227:8;:29::i;:::-;16286:2;16267:7;16275;16267:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;16267:21:0;-1:-1:-1;;;;;16267:21:0;;;;;;16306:27;;16325:7;;16306:27;;;;;;;;;;16267:16;16306:27;15824:517;;;:::o;48091:173::-;48166:6;;;-1:-1:-1;;;;;48183:17:0;;;-1:-1:-1;;;;;;48183:17:0;;;;;;;48216:40;;48166:6;;;48183:17;48166:6;;48216:40;;48147:16;;48216:40;48136:128;48091:173;:::o;13874:315::-;14031:28;14041:4;14047:2;14051:7;14031:9;:28::i;:::-;14078:48;14101:4;14107:2;14111:7;14120:5;14078:22;:48::i;:::-;14070:111;;;;-1:-1:-1;;;14070:111:0;;;;;;;:::i;48777:93::-;48828:13;48858:7;48851:14;;;;;:::i;44273:723::-;44329:13;44550:10;44546:53;;-1:-1:-1;;44577:10:0;;;;;;;;;;;;-1:-1:-1;;;44577:10:0;;;;;44273:723::o;44546:53::-;44624:5;44609:12;44665:78;44672:9;;44665:78;;44698:8;;;;:::i;:::-;;-1:-1:-1;44721:10:0;;-1:-1:-1;44729:2:0;44721:10;;:::i;:::-;;;44665:78;;;44753:19;44785:6;44775:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44775:17:0;;44753:39;;44803:154;44810:10;;44803:154;;44837:11;44847:1;44837:11;;:::i;:::-;;-1:-1:-1;44906:10:0;44914:2;44906:5;:10;:::i;:::-;44893:24;;:2;:24;:::i;:::-;44880:39;;44863:6;44870;44863:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;44863:56:0;;;;;;;;-1:-1:-1;44934:11:0;44943:2;44934:11;;:::i;:::-;;;44803:154;;15139:346;-1:-1:-1;;;;;15219:16:0;;15211:61;;;;-1:-1:-1;;;15211:61:0;;18775:2:1;15211:61:0;;;18757:21:1;;;18794:18;;;18787:30;18853:34;18833:18;;;18826:62;18905:18;;15211:61:0;18573:356:1;15211:61:0;15292:16;15300:7;15292;:16::i;:::-;15291:17;15283:58;;;;-1:-1:-1;;;15283:58:0;;19136:2:1;15283:58:0;;;19118:21:1;19175:2;19155:18;;;19148:30;19214;19194:18;;;19187:58;19262:18;;15283:58:0;18934:352:1;15283:58:0;15410:7;:16;;;;;;;-1:-1:-1;15410:16:0;;;;;;;-1:-1:-1;;;;;;15410:16:0;-1:-1:-1;;;;;15410:16:0;;;;;;;;15444:33;;15469:7;;-1:-1:-1;15444:33:0;;-1:-1:-1;;15444:33:0;15139:346;;:::o;16522:799::-;16677:4;-1:-1:-1;;;;;16698:13:0;;25422:20;25470:8;16694:620;;16734:72;;-1:-1:-1;;;16734:72:0;;-1:-1:-1;;;;;16734:36:0;;;;;:72;;10042:10;;16785:4;;16791:7;;16800:5;;16734:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16734:72:0;;;;;;;;-1:-1:-1;;16734:72:0;;;;;;;;;;;;:::i;:::-;;;16730:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16976:13:0;;16972:272;;17019:60;;-1:-1:-1;;;17019:60:0;;;;;;;:::i;16972:272::-;17194:6;17188:13;17179:6;17175:2;17171:15;17164:38;16730:529;-1:-1:-1;;;;;;16857:51:0;-1:-1:-1;;;16857:51:0;;-1:-1:-1;16850:58:0;;16694:620;-1:-1:-1;17298:4:0;16522:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:632::-;4275:2;4327:21;;;4397:13;;4300:18;;;4419:22;;;4246:4;;4275:2;4498:15;;;;4472:2;4457:18;;;4246:4;4541:169;4555:6;4552:1;4549:13;4541:169;;;4616:13;;4604:26;;4685:15;;;;4650:12;;;;4577:1;4570:9;4541:169;;;-1:-1:-1;4727:3:1;;4104:632;-1:-1:-1;;;;;;4104:632:1:o;4741:367::-;4804:8;4814:6;4868:3;4861:4;4853:6;4849:17;4845:27;4835:55;;4886:1;4883;4876:12;4835:55;-1:-1:-1;4909:20:1;;4952:18;4941:30;;4938:50;;;4984:1;4981;4974:12;4938:50;5021:4;5013:6;5009:17;4997:29;;5081:3;5074:4;5064:6;5061:1;5057:14;5049:6;5045:27;5041:38;5038:47;5035:67;;;5098:1;5095;5088:12;5035:67;4741:367;;;;;:::o;5113:773::-;5235:6;5243;5251;5259;5312:2;5300:9;5291:7;5287:23;5283:32;5280:52;;;5328:1;5325;5318:12;5280:52;5368:9;5355:23;5397:18;5438:2;5430:6;5427:14;5424:34;;;5454:1;5451;5444:12;5424:34;5493:70;5555:7;5546:6;5535:9;5531:22;5493:70;:::i;:::-;5582:8;;-1:-1:-1;5467:96:1;-1:-1:-1;5670:2:1;5655:18;;5642:32;;-1:-1:-1;5686:16:1;;;5683:36;;;5715:1;5712;5705:12;5683:36;;5754:72;5818:7;5807:8;5796:9;5792:24;5754:72;:::i;:::-;5113:773;;;;-1:-1:-1;5845:8:1;-1:-1:-1;;;;5113:773:1:o;5891:160::-;5956:20;;6012:13;;6005:21;5995:32;;5985:60;;6041:1;6038;6031:12;6056:254;6121:6;6129;6182:2;6170:9;6161:7;6157:23;6153:32;6150:52;;;6198:1;6195;6188:12;6150:52;6221:29;6240:9;6221:29;:::i;:::-;6211:39;;6269:35;6300:2;6289:9;6285:18;6269:35;:::i;:::-;6259:45;;6056:254;;;;;:::o;6315:667::-;6410:6;6418;6426;6434;6487:3;6475:9;6466:7;6462:23;6458:33;6455:53;;;6504:1;6501;6494:12;6455:53;6527:29;6546:9;6527:29;:::i;:::-;6517:39;;6575:38;6609:2;6598:9;6594:18;6575:38;:::i;:::-;6565:48;;6660:2;6649:9;6645:18;6632:32;6622:42;;6715:2;6704:9;6700:18;6687:32;6742:18;6734:6;6731:30;6728:50;;;6774:1;6771;6764:12;6728:50;6797:22;;6850:4;6842:13;;6838:27;-1:-1:-1;6828:55:1;;6879:1;6876;6869:12;6828:55;6902:74;6968:7;6963:2;6950:16;6945:2;6941;6937:11;6902:74;:::i;:::-;6892:84;;;6315:667;;;;;;;:::o;6987:180::-;7043:6;7096:2;7084:9;7075:7;7071:23;7067:32;7064:52;;;7112:1;7109;7102:12;7064:52;7135:26;7151:9;7135:26;:::i;7172:260::-;7240:6;7248;7301:2;7289:9;7280:7;7276:23;7272:32;7269:52;;;7317:1;7314;7307:12;7269:52;7340:29;7359:9;7340:29;:::i;:::-;7330:39;;7388:38;7422:2;7411:9;7407:18;7388:38;:::i;7437:380::-;7516:1;7512:12;;;;7559;;;7580:61;;7634:4;7626:6;7622:17;7612:27;;7580:61;7687:2;7679:6;7676:14;7656:18;7653:38;7650:161;;;7733:10;7728:3;7724:20;7721:1;7714:31;7768:4;7765:1;7758:15;7796:4;7793:1;7786:15;7650:161;;7437:380;;;:::o;8595:127::-;8656:10;8651:3;8647:20;8644:1;8637:31;8687:4;8684:1;8677:15;8711:4;8708:1;8701:15;8727:128;8767:3;8798:1;8794:6;8791:1;8788:13;8785:39;;;8804:18;;:::i;:::-;-1:-1:-1;8840:9:1;;8727:128::o;10261:135::-;10300:3;-1:-1:-1;;10321:17:1;;10318:43;;;10341:18;;:::i;:::-;-1:-1:-1;10388:1:1;10377:13;;10261:135::o;11228:356::-;11430:2;11412:21;;;11449:18;;;11442:30;11508:34;11503:2;11488:18;;11481:62;11575:2;11560:18;;11228:356::o;11589:413::-;11791:2;11773:21;;;11830:2;11810:18;;;11803:30;11869:34;11864:2;11849:18;;11842:62;-1:-1:-1;;;11935:2:1;11920:18;;11913:47;11992:3;11977:19;;11589:413::o;12007:346::-;12209:2;12191:21;;;12248:2;12228:18;;;12221:30;-1:-1:-1;;;12282:2:1;12267:18;;12260:52;12344:2;12329:18;;12007:346::o;12358:127::-;12419:10;12414:3;12410:20;12407:1;12400:31;12450:4;12447:1;12440:15;12474:4;12471:1;12464:15;14611:168;14651:7;14717:1;14713;14709:6;14705:14;14702:1;14699:21;14694:1;14687:9;14680:17;14676:45;14673:71;;;14724:18;;:::i;:::-;-1:-1:-1;14764:9:1;;14611:168::o;15540:470::-;15719:3;15757:6;15751:13;15773:53;15819:6;15814:3;15807:4;15799:6;15795:17;15773:53;:::i;:::-;15889:13;;15848:16;;;;15911:57;15889:13;15848:16;15945:4;15933:17;;15911:57;:::i;:::-;15984:20;;15540:470;-1:-1:-1;;;;15540:470:1:o;16422:414::-;16624:2;16606:21;;;16663:2;16643:18;;;16636:30;16702:34;16697:2;16682:18;;16675:62;-1:-1:-1;;;16768:2:1;16753:18;;16746:48;16826:3;16811:19;;16422:414::o;18069:127::-;18130:10;18125:3;18121:20;18118:1;18111:31;18161:4;18158:1;18151:15;18185:4;18182:1;18175:15;18201:120;18241:1;18267;18257:35;;18272:18;;:::i;:::-;-1:-1:-1;18306:9:1;;18201:120::o;18326:125::-;18366:4;18394:1;18391;18388:8;18385:34;;;18399:18;;:::i;:::-;-1:-1:-1;18436:9:1;;18326:125::o;18456:112::-;18488:1;18514;18504:35;;18519:18;;:::i;:::-;-1:-1:-1;18553:9:1;;18456:112::o;19291:489::-;-1:-1:-1;;;;;19560:15:1;;;19542:34;;19612:15;;19607:2;19592:18;;19585:43;19659:2;19644:18;;19637:34;;;19707:3;19702:2;19687:18;;19680:31;;;19485:4;;19728:46;;19754:19;;19746:6;19728:46;:::i;:::-;19720:54;19291:489;-1:-1:-1;;;;;;19291:489:1:o;19785:249::-;19854:6;19907:2;19895:9;19886:7;19882:23;19878:32;19875:52;;;19923:1;19920;19913:12;19875:52;19955:9;19949:16;19974:30;19998:5;19974:30;:::i

Swarm Source

ipfs://8e8027ab3edbc7fe8fc32445516c5be44da6c0e1e182b607dc6428637e275149
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.