ETH Price: $2,968.74 (-1.71%)
Gas: 2 Gwei

Token

Larva Lambs (LarvaLambs)
 

Overview

Max Total Supply

1,016 LarvaLambs

Holders

278

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 LarvaLambs
0x5b472048057f132d93f76a691580f2b2ba8952e0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LarvaLambs

Compiler Version
v0.8.10+commit.fc410830

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-18
*/

//   _                             _                     _         
//  | |                           | |                   | |        
//  | |     __ _ _ ____   ____ _  | |     __ _ _ __ ___ | |__  ___ 
//  | |    / _` | '__\ \ / / _` | | |    / _` | '_ ` _ \| '_ \/ __|
//  | |___| (_| | |   \ V / (_| | | |___| (_| | | | | | | |_) \__ \
//  |______\__,_|_|    \_/ \__,_| |______\__,_|_| |_| |_|_.__/|___/
                                                                
// https://larvalambs.com/
// Larva Lambs Smart Contract                                                              

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


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

//  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,Ownable {
    /**
     * @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 = true;
    }

    /**
     * @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() public virtual onlyOwner whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

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

// LarvaLambs.sol

pragma solidity ^0.8.10;


contract LarvaLambs is ERC721Enum, Ownable, Pausable, ReentrancyGuard {

	using Strings for uint256;
	string public baseURI;
     string public baseExtension = ".json";
	uint256 public cost = 0.01 ether;
	uint256 public maxSupply = 10005;
    uint256 public maxFree = 1000;  
    uint256 public nftPerAddressLimit = 9;
	bool public status = false;
    bool public revealed = false;
    string public notRevealedUri;
    mapping(address => uint256) public addressMintedBalance;

		
	constructor() ERC721S("Larva Lambs", "LarvaLambs"){
	    setBaseURI("");
	}

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

	function mint(uint256 _mintAmount) public payable nonReentrant{
		uint256 s = totalSupply();
        require(!paused());
		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();
        require(!paused());
        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" );
        require(!paused());
		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");
        
        if(revealed == false) {
            return notRevealedUri;
        }
	    string memory currentBaseURI = _baseURI();
	    return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : "";
	}

    //only owner
    function reveal() public onlyOwner {
        revealed = true;
    }
    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 setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }
    
	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":[],"name":"_pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160089190620001ec565b50662386f26fc100006009908155612715600a556103e8600b55600c55600d805461ffff191690553480156200005d57600080fd5b50604080518082018252600b81526a4c61727661204c616d627360a81b60208083019182528351808501909452600a8452694c617276614c616d627360b01b908401528151919291620000b391600091620001ec565b508051620000c9906001906020840190620001ec565b505050620000e6620000e06200011e60201b60201c565b62000122565b6005805460ff60a01b1916600160a01b1790556001600655604080516020810190915260008152620001189062000174565b620002cf565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001e8906007906020840190620001ec565b5050565b828054620001fa9062000292565b90600052602060002090601f0160209004810192826200021e576000855562000269565b82601f106200023957805160ff191683800117855562000269565b8280016001018555821562000269579182015b82811115620002695782518255916020019190600101906200024c565b50620002779291506200027b565b5090565b5b808211156200027757600081556001016200027c565b600181811c90821680620002a757607f821691505b60208210811415620002c957634e487b7160e01b600052602260045260246000fd5b50919050565b612ab780620002df6000396000f3fe60806040526004361061027d5760003560e01c80636c0360eb1161014f578063ba7d2c76116100c1578063d897833e1161007a578063d897833e1461071f578063da3ef23f1461073f578063e985e9c51461075f578063f2c4ce1e146107a8578063f2fde38b146107c8578063fc8234cb146107e857600080fd5b8063ba7d2c761461067e578063c668286214610694578063c87b56dd146106a9578063d0eb26b0146106c9578063d5034b74146106e9578063d5abeb011461070957600080fd5b806395d89b411161011357806395d89b41146105e157806396ea3a47146105f6578063a0712d6814610616578063a22cb46514610629578063a475b5dd14610649578063b88d4fde1461065e57600080fd5b80636c0360eb1461054c57806370a0823114610561578063715018a6146105815780638462151c146105965780638da5cb5b146105c357600080fd5b806323b872dd116101f3578063485a68a3116101ac578063485a68a3146104985780634f6ccce7146104ae57806351830227146104ce57806355f804b3146104ed5780635c975abb1461050d5780636352211e1461052c57600080fd5b806323b872dd146103fb5780632f745c591461041b578063320b2ad91461043b5780633ccfd60b1461045057806342842e0e1461045857806344a0d68a1461047857600080fd5b8063095ea7b311610245578063095ea7b31461033b57806313faede61461035b57806318160ddd1461037f57806318cae26914610394578063200d2ed2146103c1578063228025e8146103db57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063081c8c4414610311578063084dcc6914610326575b600080fd5b34801561028e57600080fd5b506102a261029d36600461233a565b6107fd565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610828565b6040516102ae91906123af565b3480156102e557600080fd5b506102f96102f43660046123c2565b6108ba565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b506102cc610947565b6103396103343660046123c2565b6109d5565b005b34801561034757600080fd5b506103396103563660046123f7565b610c07565b34801561036757600080fd5b5061037160095481565b6040519081526020016102ae565b34801561038b57600080fd5b50600254610371565b3480156103a057600080fd5b506103716103af366004612421565b600f6020526000908152604090205481565b3480156103cd57600080fd5b50600d546102a29060ff1681565b3480156103e757600080fd5b506103396103f63660046123c2565b610d1d565b34801561040757600080fd5b5061033961041636600461243c565b610d4c565b34801561042757600080fd5b506103716104363660046123f7565b610d7d565b34801561044757600080fd5b50610339610e2c565b610339610efb565b34801561046457600080fd5b5061033961047336600461243c565b610f7d565b34801561048457600080fd5b506103396104933660046123c2565b610f98565b3480156104a457600080fd5b50610371600b5481565b3480156104ba57600080fd5b506103716104c93660046123c2565b610fc7565b3480156104da57600080fd5b50600d546102a290610100900460ff1681565b3480156104f957600080fd5b50610339610508366004612504565b611024565b34801561051957600080fd5b50600554600160a01b900460ff166102a2565b34801561053857600080fd5b506102f96105473660046123c2565b611065565b34801561055857600080fd5b506102cc6110f1565b34801561056d57600080fd5b5061037161057c366004612421565b6110fe565b34801561058d57600080fd5b506103396111d0565b3480156105a257600080fd5b506105b66105b1366004612421565b611206565b6040516102ae919061254d565b3480156105cf57600080fd5b506005546001600160a01b03166102f9565b3480156105ed57600080fd5b506102cc6112d0565b34801561060257600080fd5b506103396106113660046125dd565b6112df565b6103396106243660046123c2565b6114b6565b34801561063557600080fd5b50610339610644366004612659565b611660565b34801561065557600080fd5b50610339611725565b34801561066a57600080fd5b5061033961067936600461268c565b611760565b34801561068a57600080fd5b50610371600c5481565b3480156106a057600080fd5b506102cc611798565b3480156106b557600080fd5b506102cc6106c43660046123c2565b6117a5565b3480156106d557600080fd5b506103396106e43660046123c2565b611906565b3480156106f557600080fd5b506103396107043660046123c2565b611935565b34801561071557600080fd5b50610371600a5481565b34801561072b57600080fd5b5061033961073a366004612708565b611964565b34801561074b57600080fd5b5061033961075a366004612504565b6119a1565b34801561076b57600080fd5b506102a261077a366004612723565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156107b457600080fd5b506103396107c3366004612504565b6119de565b3480156107d457600080fd5b506103396107e3366004612421565b611a1b565b3480156107f457600080fd5b50610339611ab3565b60006001600160e01b0319821663780e9d6360e01b1480610822575061082282611b61565b92915050565b6060600080546108379061274d565b80601f01602080910402602001604051908101604052809291908181526020018280546108639061274d565b80156108b05780601f10610885576101008083540402835291602001916108b0565b820191906000526020600020905b81548152906001019060200180831161089357829003601f168201915b5050505050905090565b60006108c582611bb1565b61092b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600e80546109549061274d565b80601f01602080910402602001604051908101604052809291908181526020018280546109809061274d565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b505050505081565b60026006541415610a285760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610922565b60026006556000610a3860025490565b600554909150600160a01b900460ff1615610a5257600080fd5b336000908152600f6020526040902054600c54610a6f848361279e565b1115610abd5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610922565b60008311610afb5760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610922565b6003831115610b4c5760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e7400000000006044820152606401610922565b600b54610b59848461279e565b1115610b9d5760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610922565b60005b83811015610bfc57336000908152600f60205260408120805491610bc3836127b6565b90915550610bec905033610bd7838661279e565b60405180602001604052806000815250611bfb565b610bf5816127b6565b9050610ba0565b505060016006555050565b6000610c1282611065565b9050806001600160a01b0316836001600160a01b03161415610c805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610922565b336001600160a01b0382161480610c9c5750610c9c813361077a565b610d0e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610922565b610d188383611c2e565b505050565b6005546001600160a01b03163314610d475760405162461bcd60e51b8152600401610922906127d1565b600a55565b610d563382611c9c565b610d725760405162461bcd60e51b815260040161092290612806565b610d18838383611d86565b6000610d88836110fe565b8210610da65760405162461bcd60e51b815260040161092290612857565b6000805b600254811015610e135760028181548110610dc757610dc7612887565b6000918252602090912001546001600160a01b0386811691161415610e035783821415610df75791506108229050565b610e00826127b6565b91505b610e0c816127b6565b9050610daa565b5060405162461bcd60e51b815260040161092290612857565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610922906127d1565b600554600160a01b900460ff1615610ea35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610922565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610ede3390565b6040516001600160a01b03909116815260200160405180910390a1565b6005546001600160a01b03163314610f255760405162461bcd60e51b8152600401610922906127d1565b604051600090339047908381818185875af1925050503d8060008114610f67576040519150601f19603f3d011682016040523d82523d6000602084013e610f6c565b606091505b5050905080610f7a57600080fd5b50565b610d1883838360405180602001604052806000815250611760565b6005546001600160a01b03163314610fc25760405162461bcd60e51b8152600401610922906127d1565b600955565b6000610fd260025490565b82106110205760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610922565b5090565b6005546001600160a01b0316331461104e5760405162461bcd60e51b8152600401610922906127d1565b8051611061906007906020840190612294565b5050565b6000806002838154811061107b5761107b612887565b6000918252602090912001546001600160a01b03169050806108225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610922565b600780546109549061274d565b60006001600160a01b0382166111695760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610922565b600254600090815b818110156111c7576002818154811061118c5761118c612887565b6000918252602090912001546001600160a01b03868116911614156111b7576111b4836127b6565b92505b6111c0816127b6565b9050611171565b50909392505050565b6005546001600160a01b031633146111fa5760405162461bcd60e51b8152600401610922906127d1565b6112046000611edc565b565b6060611211826110fe565b6000106112305760405162461bcd60e51b815260040161092290612857565b600061123b836110fe565b905060008167ffffffffffffffff81111561125857611258612478565b604051908082528060200260200182016040528015611281578160200160208202803683370190505b50905060005b828110156112c8576112998582610d7d565b8282815181106112ab576112ab612887565b6020908102919091010152806112c0816127b6565b915050611287565b509392505050565b6060600180546108379061274d565b6005546001600160a01b031633146113095760405162461bcd60e51b8152600401610922906127d1565b8281146113625760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610922565b60008061136e60025490565b905060005b858110156113b15786868281811061138d5761138d612887565b905060200201358361139f919061279e565b92506113aa816127b6565b9050611373565b50600a546113bf838361279e565b11156113f85760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b6044820152606401610922565b600554600160a01b900460ff161561140f57600080fd5b6000915060005b838110156114ad5760005b87878381811061143357611433612887565b9050602002013581101561149c5761148c86868481811061145657611456612887565b905060200201602081019061146b9190612421565b84611475816127b6565b955060405180602001604052806000815250611bfb565b611495816127b6565b9050611421565b506114a6816127b6565b9050611416565b50505050505050565b600260065414156115095760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610922565b6002600655600061151960025490565b600554909150600160a01b900460ff161561153357600080fd5b600082116115715760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610922565b60148211156115c25760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e7400000000006044820152606401610922565b600a546115cf838361279e565b11156116135760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610922565b81600954611621919061289d565b34101561162d57600080fd5b60005b828110156116565761164633610bd7838561279e565b61164f816127b6565b9050611630565b5050600160065550565b6001600160a01b0382163314156116b95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610922565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b0316331461174f5760405162461bcd60e51b8152600401610922906127d1565b600d805461ff001916610100179055565b61176a3383611c9c565b6117865760405162461bcd60e51b815260040161092290612806565b61179284848484611f2e565b50505050565b600880546109549061274d565b60606117b082611bb1565b6118065760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610922565b600d54610100900460ff166118a757600e80546118229061274d565b80601f016020809104026020016040519081016040528092919081815260200182805461184e9061274d565b801561189b5780601f106118705761010080835404028352916020019161189b565b820191906000526020600020905b81548152906001019060200180831161187e57829003601f168201915b50505050509050919050565b60006118b1611f61565b905060008151116118d157604051806020016040528060008152506118ff565b806118db84611f70565b60086040516020016118ef939291906128bc565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146119305760405162461bcd60e51b8152600401610922906127d1565b600c55565b6005546001600160a01b0316331461195f5760405162461bcd60e51b8152600401610922906127d1565b600b55565b6005546001600160a01b0316331461198e5760405162461bcd60e51b8152600401610922906127d1565b600d805460ff1916911515919091179055565b6005546001600160a01b031633146119cb5760405162461bcd60e51b8152600401610922906127d1565b8051611061906008906020840190612294565b6005546001600160a01b03163314611a085760405162461bcd60e51b8152600401610922906127d1565b805161106190600e906020840190612294565b6005546001600160a01b03163314611a455760405162461bcd60e51b8152600401610922906127d1565b6001600160a01b038116611aaa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610922565b610f7a81611edc565b6005546001600160a01b03163314611add5760405162461bcd60e51b8152600401610922906127d1565b600554600160a01b900460ff16611b2d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610922565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33610ede565b60006001600160e01b031982166380ac58cd60e01b1480611b9257506001600160e01b03198216635b5e139f60e01b145b8061082257506301ffc9a760e01b6001600160e01b0319831614610822565b60025460009082108015610822575060006001600160a01b031660028381548110611bde57611bde612887565b6000918252602090912001546001600160a01b0316141592915050565b611c05838361206e565b611c126000848484612196565b610d185760405162461bcd60e51b815260040161092290612980565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c6382611065565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ca782611bb1565b611d085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610922565b6000611d1383611065565b9050806001600160a01b0316846001600160a01b03161480611d4e5750836001600160a01b0316611d43846108ba565b6001600160a01b0316145b80611d7e57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d9982611065565b6001600160a01b031614611e015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610922565b6001600160a01b038216611e635760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610922565b611e6e600082611c2e565b8160028281548110611e8257611e82612887565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f39848484611d86565b611f4584848484612196565b6117925760405162461bcd60e51b815260040161092290612980565b6060600780546108379061274d565b606081611f945750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fbe5780611fa8816127b6565b9150611fb79050600a836129e8565b9150611f98565b60008167ffffffffffffffff811115611fd957611fd9612478565b6040519080825280601f01601f191660200182016040528015612003576020820181803683370190505b5090505b8415611d7e576120186001836129fc565b9150612025600a86612a13565b61203090603061279e565b60f81b81838151811061204557612045612887565b60200101906001600160f81b031916908160001a905350612067600a866129e8565b9450612007565b6001600160a01b0382166120c45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610922565b6120cd81611bb1565b1561211a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610922565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561228957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121da903390899088908890600401612a27565b6020604051808303816000875af1925050508015612215575060408051601f3d908101601f1916820190925261221291810190612a64565b60015b61226f573d808015612243576040519150601f19603f3d011682016040523d82523d6000602084013e612248565b606091505b5080516122675760405162461bcd60e51b815260040161092290612980565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d7e565b506001949350505050565b8280546122a09061274d565b90600052602060002090601f0160209004810192826122c25760008555612308565b82601f106122db57805160ff1916838001178555612308565b82800160010185558215612308579182015b828111156123085782518255916020019190600101906122ed565b506110209291505b808211156110205760008155600101612310565b6001600160e01b031981168114610f7a57600080fd5b60006020828403121561234c57600080fd5b81356118ff81612324565b60005b8381101561237257818101518382015260200161235a565b838111156117925750506000910152565b6000815180845261239b816020860160208601612357565b601f01601f19169290920160200192915050565b6020815260006118ff6020830184612383565b6000602082840312156123d457600080fd5b5035919050565b80356001600160a01b03811681146123f257600080fd5b919050565b6000806040838503121561240a57600080fd5b612413836123db565b946020939093013593505050565b60006020828403121561243357600080fd5b6118ff826123db565b60008060006060848603121561245157600080fd5b61245a846123db565b9250612468602085016123db565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124a9576124a9612478565b604051601f8501601f19908116603f011681019082821181831017156124d1576124d1612478565b816040528093508581528686860111156124ea57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561251657600080fd5b813567ffffffffffffffff81111561252d57600080fd5b8201601f8101841361253e57600080fd5b611d7e8482356020840161248e565b6020808252825182820181905260009190848201906040850190845b8181101561258557835183529284019291840191600101612569565b50909695505050505050565b60008083601f8401126125a357600080fd5b50813567ffffffffffffffff8111156125bb57600080fd5b6020830191508360208260051b85010111156125d657600080fd5b9250929050565b600080600080604085870312156125f357600080fd5b843567ffffffffffffffff8082111561260b57600080fd5b61261788838901612591565b9096509450602087013591508082111561263057600080fd5b5061263d87828801612591565b95989497509550505050565b803580151581146123f257600080fd5b6000806040838503121561266c57600080fd5b612675836123db565b915061268360208401612649565b90509250929050565b600080600080608085870312156126a257600080fd5b6126ab856123db565b93506126b9602086016123db565b925060408501359150606085013567ffffffffffffffff8111156126dc57600080fd5b8501601f810187136126ed57600080fd5b6126fc8782356020840161248e565b91505092959194509250565b60006020828403121561271a57600080fd5b6118ff82612649565b6000806040838503121561273657600080fd5b61273f836123db565b9150612683602084016123db565b600181811c9082168061276157607f821691505b6020821081141561278257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156127b1576127b1612788565b500190565b60006000198214156127ca576127ca612788565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008160001904831182151516156128b7576128b7612788565b500290565b6000845160206128cf8285838a01612357565b8551918401916128e28184848a01612357565b8554920191600090600181811c90808316806128ff57607f831692505b85831081141561291d57634e487b7160e01b85526022600452602485fd5b80801561293157600181146129425761296f565b60ff1985168852838801955061296f565b60008b81526020902060005b858110156129675781548a82015290840190880161294e565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826129f7576129f76129d2565b500490565b600082821015612a0e57612a0e612788565b500390565b600082612a2257612a226129d2565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a5a90830184612383565b9695505050505050565b600060208284031215612a7657600080fd5b81516118ff8161232456fea2646970667358221220951cdf3bd65b5da0d94a82a336e94500fee53cca6800ae558019240f775859ca64736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636c0360eb1161014f578063ba7d2c76116100c1578063d897833e1161007a578063d897833e1461071f578063da3ef23f1461073f578063e985e9c51461075f578063f2c4ce1e146107a8578063f2fde38b146107c8578063fc8234cb146107e857600080fd5b8063ba7d2c761461067e578063c668286214610694578063c87b56dd146106a9578063d0eb26b0146106c9578063d5034b74146106e9578063d5abeb011461070957600080fd5b806395d89b411161011357806395d89b41146105e157806396ea3a47146105f6578063a0712d6814610616578063a22cb46514610629578063a475b5dd14610649578063b88d4fde1461065e57600080fd5b80636c0360eb1461054c57806370a0823114610561578063715018a6146105815780638462151c146105965780638da5cb5b146105c357600080fd5b806323b872dd116101f3578063485a68a3116101ac578063485a68a3146104985780634f6ccce7146104ae57806351830227146104ce57806355f804b3146104ed5780635c975abb1461050d5780636352211e1461052c57600080fd5b806323b872dd146103fb5780632f745c591461041b578063320b2ad91461043b5780633ccfd60b1461045057806342842e0e1461045857806344a0d68a1461047857600080fd5b8063095ea7b311610245578063095ea7b31461033b57806313faede61461035b57806318160ddd1461037f57806318cae26914610394578063200d2ed2146103c1578063228025e8146103db57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063081c8c4414610311578063084dcc6914610326575b600080fd5b34801561028e57600080fd5b506102a261029d36600461233a565b6107fd565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610828565b6040516102ae91906123af565b3480156102e557600080fd5b506102f96102f43660046123c2565b6108ba565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b506102cc610947565b6103396103343660046123c2565b6109d5565b005b34801561034757600080fd5b506103396103563660046123f7565b610c07565b34801561036757600080fd5b5061037160095481565b6040519081526020016102ae565b34801561038b57600080fd5b50600254610371565b3480156103a057600080fd5b506103716103af366004612421565b600f6020526000908152604090205481565b3480156103cd57600080fd5b50600d546102a29060ff1681565b3480156103e757600080fd5b506103396103f63660046123c2565b610d1d565b34801561040757600080fd5b5061033961041636600461243c565b610d4c565b34801561042757600080fd5b506103716104363660046123f7565b610d7d565b34801561044757600080fd5b50610339610e2c565b610339610efb565b34801561046457600080fd5b5061033961047336600461243c565b610f7d565b34801561048457600080fd5b506103396104933660046123c2565b610f98565b3480156104a457600080fd5b50610371600b5481565b3480156104ba57600080fd5b506103716104c93660046123c2565b610fc7565b3480156104da57600080fd5b50600d546102a290610100900460ff1681565b3480156104f957600080fd5b50610339610508366004612504565b611024565b34801561051957600080fd5b50600554600160a01b900460ff166102a2565b34801561053857600080fd5b506102f96105473660046123c2565b611065565b34801561055857600080fd5b506102cc6110f1565b34801561056d57600080fd5b5061037161057c366004612421565b6110fe565b34801561058d57600080fd5b506103396111d0565b3480156105a257600080fd5b506105b66105b1366004612421565b611206565b6040516102ae919061254d565b3480156105cf57600080fd5b506005546001600160a01b03166102f9565b3480156105ed57600080fd5b506102cc6112d0565b34801561060257600080fd5b506103396106113660046125dd565b6112df565b6103396106243660046123c2565b6114b6565b34801561063557600080fd5b50610339610644366004612659565b611660565b34801561065557600080fd5b50610339611725565b34801561066a57600080fd5b5061033961067936600461268c565b611760565b34801561068a57600080fd5b50610371600c5481565b3480156106a057600080fd5b506102cc611798565b3480156106b557600080fd5b506102cc6106c43660046123c2565b6117a5565b3480156106d557600080fd5b506103396106e43660046123c2565b611906565b3480156106f557600080fd5b506103396107043660046123c2565b611935565b34801561071557600080fd5b50610371600a5481565b34801561072b57600080fd5b5061033961073a366004612708565b611964565b34801561074b57600080fd5b5061033961075a366004612504565b6119a1565b34801561076b57600080fd5b506102a261077a366004612723565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156107b457600080fd5b506103396107c3366004612504565b6119de565b3480156107d457600080fd5b506103396107e3366004612421565b611a1b565b3480156107f457600080fd5b50610339611ab3565b60006001600160e01b0319821663780e9d6360e01b1480610822575061082282611b61565b92915050565b6060600080546108379061274d565b80601f01602080910402602001604051908101604052809291908181526020018280546108639061274d565b80156108b05780601f10610885576101008083540402835291602001916108b0565b820191906000526020600020905b81548152906001019060200180831161089357829003601f168201915b5050505050905090565b60006108c582611bb1565b61092b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600e80546109549061274d565b80601f01602080910402602001604051908101604052809291908181526020018280546109809061274d565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b505050505081565b60026006541415610a285760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610922565b60026006556000610a3860025490565b600554909150600160a01b900460ff1615610a5257600080fd5b336000908152600f6020526040902054600c54610a6f848361279e565b1115610abd5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610922565b60008311610afb5760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610922565b6003831115610b4c5760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e7400000000006044820152606401610922565b600b54610b59848461279e565b1115610b9d5760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610922565b60005b83811015610bfc57336000908152600f60205260408120805491610bc3836127b6565b90915550610bec905033610bd7838661279e565b60405180602001604052806000815250611bfb565b610bf5816127b6565b9050610ba0565b505060016006555050565b6000610c1282611065565b9050806001600160a01b0316836001600160a01b03161415610c805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610922565b336001600160a01b0382161480610c9c5750610c9c813361077a565b610d0e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610922565b610d188383611c2e565b505050565b6005546001600160a01b03163314610d475760405162461bcd60e51b8152600401610922906127d1565b600a55565b610d563382611c9c565b610d725760405162461bcd60e51b815260040161092290612806565b610d18838383611d86565b6000610d88836110fe565b8210610da65760405162461bcd60e51b815260040161092290612857565b6000805b600254811015610e135760028181548110610dc757610dc7612887565b6000918252602090912001546001600160a01b0386811691161415610e035783821415610df75791506108229050565b610e00826127b6565b91505b610e0c816127b6565b9050610daa565b5060405162461bcd60e51b815260040161092290612857565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610922906127d1565b600554600160a01b900460ff1615610ea35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610922565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610ede3390565b6040516001600160a01b03909116815260200160405180910390a1565b6005546001600160a01b03163314610f255760405162461bcd60e51b8152600401610922906127d1565b604051600090339047908381818185875af1925050503d8060008114610f67576040519150601f19603f3d011682016040523d82523d6000602084013e610f6c565b606091505b5050905080610f7a57600080fd5b50565b610d1883838360405180602001604052806000815250611760565b6005546001600160a01b03163314610fc25760405162461bcd60e51b8152600401610922906127d1565b600955565b6000610fd260025490565b82106110205760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610922565b5090565b6005546001600160a01b0316331461104e5760405162461bcd60e51b8152600401610922906127d1565b8051611061906007906020840190612294565b5050565b6000806002838154811061107b5761107b612887565b6000918252602090912001546001600160a01b03169050806108225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610922565b600780546109549061274d565b60006001600160a01b0382166111695760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610922565b600254600090815b818110156111c7576002818154811061118c5761118c612887565b6000918252602090912001546001600160a01b03868116911614156111b7576111b4836127b6565b92505b6111c0816127b6565b9050611171565b50909392505050565b6005546001600160a01b031633146111fa5760405162461bcd60e51b8152600401610922906127d1565b6112046000611edc565b565b6060611211826110fe565b6000106112305760405162461bcd60e51b815260040161092290612857565b600061123b836110fe565b905060008167ffffffffffffffff81111561125857611258612478565b604051908082528060200260200182016040528015611281578160200160208202803683370190505b50905060005b828110156112c8576112998582610d7d565b8282815181106112ab576112ab612887565b6020908102919091010152806112c0816127b6565b915050611287565b509392505050565b6060600180546108379061274d565b6005546001600160a01b031633146113095760405162461bcd60e51b8152600401610922906127d1565b8281146113625760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610922565b60008061136e60025490565b905060005b858110156113b15786868281811061138d5761138d612887565b905060200201358361139f919061279e565b92506113aa816127b6565b9050611373565b50600a546113bf838361279e565b11156113f85760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b6044820152606401610922565b600554600160a01b900460ff161561140f57600080fd5b6000915060005b838110156114ad5760005b87878381811061143357611433612887565b9050602002013581101561149c5761148c86868481811061145657611456612887565b905060200201602081019061146b9190612421565b84611475816127b6565b955060405180602001604052806000815250611bfb565b611495816127b6565b9050611421565b506114a6816127b6565b9050611416565b50505050505050565b600260065414156115095760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610922565b6002600655600061151960025490565b600554909150600160a01b900460ff161561153357600080fd5b600082116115715760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b6044820152606401610922565b60148211156115c25760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e7400000000006044820152606401610922565b600a546115cf838361279e565b11156116135760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b6044820152606401610922565b81600954611621919061289d565b34101561162d57600080fd5b60005b828110156116565761164633610bd7838561279e565b61164f816127b6565b9050611630565b5050600160065550565b6001600160a01b0382163314156116b95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610922565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b0316331461174f5760405162461bcd60e51b8152600401610922906127d1565b600d805461ff001916610100179055565b61176a3383611c9c565b6117865760405162461bcd60e51b815260040161092290612806565b61179284848484611f2e565b50505050565b600880546109549061274d565b60606117b082611bb1565b6118065760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610922565b600d54610100900460ff166118a757600e80546118229061274d565b80601f016020809104026020016040519081016040528092919081815260200182805461184e9061274d565b801561189b5780601f106118705761010080835404028352916020019161189b565b820191906000526020600020905b81548152906001019060200180831161187e57829003601f168201915b50505050509050919050565b60006118b1611f61565b905060008151116118d157604051806020016040528060008152506118ff565b806118db84611f70565b60086040516020016118ef939291906128bc565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146119305760405162461bcd60e51b8152600401610922906127d1565b600c55565b6005546001600160a01b0316331461195f5760405162461bcd60e51b8152600401610922906127d1565b600b55565b6005546001600160a01b0316331461198e5760405162461bcd60e51b8152600401610922906127d1565b600d805460ff1916911515919091179055565b6005546001600160a01b031633146119cb5760405162461bcd60e51b8152600401610922906127d1565b8051611061906008906020840190612294565b6005546001600160a01b03163314611a085760405162461bcd60e51b8152600401610922906127d1565b805161106190600e906020840190612294565b6005546001600160a01b03163314611a455760405162461bcd60e51b8152600401610922906127d1565b6001600160a01b038116611aaa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610922565b610f7a81611edc565b6005546001600160a01b03163314611add5760405162461bcd60e51b8152600401610922906127d1565b600554600160a01b900460ff16611b2d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610922565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33610ede565b60006001600160e01b031982166380ac58cd60e01b1480611b9257506001600160e01b03198216635b5e139f60e01b145b8061082257506301ffc9a760e01b6001600160e01b0319831614610822565b60025460009082108015610822575060006001600160a01b031660028381548110611bde57611bde612887565b6000918252602090912001546001600160a01b0316141592915050565b611c05838361206e565b611c126000848484612196565b610d185760405162461bcd60e51b815260040161092290612980565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c6382611065565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ca782611bb1565b611d085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610922565b6000611d1383611065565b9050806001600160a01b0316846001600160a01b03161480611d4e5750836001600160a01b0316611d43846108ba565b6001600160a01b0316145b80611d7e57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d9982611065565b6001600160a01b031614611e015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610922565b6001600160a01b038216611e635760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610922565b611e6e600082611c2e565b8160028281548110611e8257611e82612887565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f39848484611d86565b611f4584848484612196565b6117925760405162461bcd60e51b815260040161092290612980565b6060600780546108379061274d565b606081611f945750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fbe5780611fa8816127b6565b9150611fb79050600a836129e8565b9150611f98565b60008167ffffffffffffffff811115611fd957611fd9612478565b6040519080825280601f01601f191660200182016040528015612003576020820181803683370190505b5090505b8415611d7e576120186001836129fc565b9150612025600a86612a13565b61203090603061279e565b60f81b81838151811061204557612045612887565b60200101906001600160f81b031916908160001a905350612067600a866129e8565b9450612007565b6001600160a01b0382166120c45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610922565b6120cd81611bb1565b1561211a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610922565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561228957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121da903390899088908890600401612a27565b6020604051808303816000875af1925050508015612215575060408051601f3d908101601f1916820190925261221291810190612a64565b60015b61226f573d808015612243576040519150601f19603f3d011682016040523d82523d6000602084013e612248565b606091505b5080516122675760405162461bcd60e51b815260040161092290612980565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d7e565b506001949350505050565b8280546122a09061274d565b90600052602060002090601f0160209004810192826122c25760008555612308565b82601f106122db57805160ff1916838001178555612308565b82800160010185558215612308579182015b828111156123085782518255916020019190600101906122ed565b506110209291505b808211156110205760008155600101612310565b6001600160e01b031981168114610f7a57600080fd5b60006020828403121561234c57600080fd5b81356118ff81612324565b60005b8381101561237257818101518382015260200161235a565b838111156117925750506000910152565b6000815180845261239b816020860160208601612357565b601f01601f19169290920160200192915050565b6020815260006118ff6020830184612383565b6000602082840312156123d457600080fd5b5035919050565b80356001600160a01b03811681146123f257600080fd5b919050565b6000806040838503121561240a57600080fd5b612413836123db565b946020939093013593505050565b60006020828403121561243357600080fd5b6118ff826123db565b60008060006060848603121561245157600080fd5b61245a846123db565b9250612468602085016123db565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124a9576124a9612478565b604051601f8501601f19908116603f011681019082821181831017156124d1576124d1612478565b816040528093508581528686860111156124ea57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561251657600080fd5b813567ffffffffffffffff81111561252d57600080fd5b8201601f8101841361253e57600080fd5b611d7e8482356020840161248e565b6020808252825182820181905260009190848201906040850190845b8181101561258557835183529284019291840191600101612569565b50909695505050505050565b60008083601f8401126125a357600080fd5b50813567ffffffffffffffff8111156125bb57600080fd5b6020830191508360208260051b85010111156125d657600080fd5b9250929050565b600080600080604085870312156125f357600080fd5b843567ffffffffffffffff8082111561260b57600080fd5b61261788838901612591565b9096509450602087013591508082111561263057600080fd5b5061263d87828801612591565b95989497509550505050565b803580151581146123f257600080fd5b6000806040838503121561266c57600080fd5b612675836123db565b915061268360208401612649565b90509250929050565b600080600080608085870312156126a257600080fd5b6126ab856123db565b93506126b9602086016123db565b925060408501359150606085013567ffffffffffffffff8111156126dc57600080fd5b8501601f810187136126ed57600080fd5b6126fc8782356020840161248e565b91505092959194509250565b60006020828403121561271a57600080fd5b6118ff82612649565b6000806040838503121561273657600080fd5b61273f836123db565b9150612683602084016123db565b600181811c9082168061276157607f821691505b6020821081141561278257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156127b1576127b1612788565b500190565b60006000198214156127ca576127ca612788565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008160001904831182151516156128b7576128b7612788565b500290565b6000845160206128cf8285838a01612357565b8551918401916128e28184848a01612357565b8554920191600090600181811c90808316806128ff57607f831692505b85831081141561291d57634e487b7160e01b85526022600452602485fd5b80801561293157600181146129425761296f565b60ff1985168852838801955061296f565b60008b81526020902060005b858110156129675781548a82015290840190880161294e565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826129f7576129f76129d2565b500490565b600082821015612a0e57612a0e612788565b500390565b600082612a2257612a226129d2565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a5a90830184612383565b9695505050505050565b600060208284031215612a7657600080fd5b81516118ff8161232456fea2646970667358221220951cdf3bd65b5da0d94a82a336e94500fee53cca6800ae558019240f775859ca64736f6c634300080a0033

Deployed Bytecode Sourcemap

48607:3919:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32806:225;;;;;;;;;;-1:-1:-1;32806:225:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;32806:225:0;;;;;;;;11924:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12558:221::-;;;;;;;;;;-1:-1:-1;12558:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;12558:221:0;1528:203:1;49004:28:0;;;;;;;;;;;;;:::i;49741:627::-;;;;;;:::i;:::-;;:::i;:::-;;12140:412;;;;;;;;;;-1:-1:-1;12140:412:0;;;;;:::i;:::-;;:::i;48782:32::-;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;48782:32:0;2173:177:1;33967:110:0;;;;;;;;;;-1:-1:-1;34055:7:0;:14;33967:110;;49039:55;;;;;;;;;;-1:-1:-1;49039:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;48936:26;;;;;;;;;;-1:-1:-1;48936:26:0;;;;;;;;51802:100;;;;;;;;;;-1:-1:-1;51802:100:0;;;;;:::i;:::-;;:::i;13256:339::-;;;;;;;;;;-1:-1:-1;13256:339:0;;;;;:::i;:::-;;:::i;33037:500::-;;;;;;;;;;-1:-1:-1;33037:500:0;;;;;:::i;:::-;;:::i;48147:126::-;;;;;;;;;;;;;:::i;52366:151::-;;;:::i;13601:185::-;;;;;;;;;;-1:-1:-1;13601:185:0;;;;;:::i;:::-;;:::i;51618:80::-;;;;;;;;;;-1:-1:-1;51618:80:0;;;;;:::i;:::-;;:::i;48857:29::-;;;;;;;;;;;;;;;;34083:194;;;;;;;;;;-1:-1:-1;34083:194:0;;;;;:::i;:::-;;:::i;48969:28::-;;;;;;;;;;-1:-1:-1;48969:28:0;;;;;;;;;;;51905:98;;;;;;;;;;-1:-1:-1;51905:98:0;;;;;:::i;:::-;;:::i;47347:86::-;;;;;;;;;;-1:-1:-1;47418:7:0;;-1:-1:-1;;;47418:7:0;;;;47347:86;;11679:239;;;;;;;;;;-1:-1:-1;11679:239:0;;;;;:::i;:::-;;:::i;48712:21::-;;;;;;;;;;;;;:::i;11259:414::-;;;;;;;;;;-1:-1:-1;11259:414:0;;;;;:::i;:::-;;:::i;45681:94::-;;;;;;;;;;;;;:::i;33543:418::-;;;;;;;;;;-1:-1:-1;33543:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45030:87::-;;;;;;;;;;-1:-1:-1;45103:6:0;;-1:-1:-1;;;;;45103:6:0;45030:87;;12030:104;;;;;;;;;;;;;:::i;50373:589::-;;;;;;;;;;-1:-1:-1;50373:589:0;;;;;:::i;:::-;;:::i;49284:448::-;;;;;;:::i;:::-;;:::i;12785:295::-;;;;;;;;;;-1:-1:-1;12785:295:0;;;;;:::i;:::-;;:::i;51428:69::-;;;;;;;;;;;;;:::i;13792:328::-;;;;;;;;;;-1:-1:-1;13792:328:0;;;;;:::i;:::-;;:::i;48895:37::-;;;;;;;;;;;;;;;;48741;;;;;;;;;;;;;:::i;50970:432::-;;;;;;;;;;-1:-1:-1;50970:432:0;;;;;:::i;:::-;;:::i;51503:110::-;;;;;;;;;;-1:-1:-1;51503:110:0;;;;;:::i;:::-;;:::i;51703:92::-;;;;;;;;;;-1:-1:-1;51703:92:0;;;;;:::i;:::-;;:::i;48818:32::-;;;;;;;;;;;;;;;;52280:83;;;;;;;;;;-1:-1:-1;52280:83:0;;;;;:::i;:::-;;:::i;52009:128::-;;;;;;;;;;-1:-1:-1;52009:128:0;;;;;:::i;:::-;;:::i;13086:164::-;;;;;;;;;;-1:-1:-1;13086:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;13207:25:0;;;13183:4;13207:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13086:164;52145:126;;;;;;;;;;-1:-1:-1;52145:126:0;;;;;:::i;:::-;;:::i;45930:192::-;;;;;;;;;;-1:-1:-1;45930:192:0;;;;;:::i;:::-;;:::i;48421:128::-;;;;;;;;;;;;;:::i;32806:225::-;32909:4;-1:-1:-1;;;;;;32933:50:0;;-1:-1:-1;;;32933:50:0;;:90;;;32987:36;33011:11;32987:23;:36::i;:::-;32926:97;32806:225;-1:-1:-1;;32806:225:0:o;11924:100::-;11978:13;12011:5;12004:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11924:100;:::o;12558:221::-;12634:7;12662:16;12670:7;12662;:16::i;:::-;12654:73;;;;-1:-1:-1;;;12654:73:0;;8024:2:1;12654: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;;12654:73:0;;;;;;;;;-1:-1:-1;12747:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12747:24:0;;12558:221::o;49004:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49741:627::-;35990:1;36586:7;;:19;;36578:63;;;;-1:-1:-1;;;36578:63:0;;8437:2:1;36578:63:0;;;8419:21:1;8476:2;8456:18;;;8449:30;8515:33;8495:18;;;8488:61;8566:18;;36578:63:0;8235:355:1;36578:63:0;35990:1;36719:7;:18;49812:9:::1;49824:13;34055:7:::0;:14;;33967:110;49824:13:::1;47418:7:::0;;49812:25;;-1:-1:-1;;;;47418:7:0;;;;49856:9:::1;49848:18;;;::::0;::::1;;49925:10;49877:24;49904:32:::0;;;:20:::1;:32;::::0;;;;;49989:18:::1;::::0;49955:30:::1;49974:11:::0;49904:32;49955:30:::1;:::i;:::-;:52;;49947:93;;;::::0;-1:-1:-1;;;49947:93:0;;9062:2:1;49947:93:0::1;::::0;::::1;9044:21:1::0;9101:2;9081:18;;;9074:30;9140;9120:18;;;9113:58;9188:18;;49947:93:0::1;8860:352:1::0;49947:93:0::1;50067:1;50053:11;:15;50045:40;;;::::0;-1:-1:-1;;;50045:40:0;;9419:2:1;50045: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;;50045:40:0::1;9217:335:1::0;50045:40:0::1;50113:1;50098:11;:16;;50090:57;;;::::0;-1:-1:-1;;;50090:57:0;;9759:2:1;50090:57:0::1;::::0;::::1;9741:21:1::0;9798:2;9778:18;;;9771:30;9837:29;9817:18;;;9810:57;9884:18;;50090:57:0::1;9557:351:1::0;50090:57:0::1;50179:7;::::0;50160:15:::1;50164:11:::0;50160:1;:15:::1;:::i;:::-;:26;;50152:59;;;::::0;-1:-1:-1;;;50152:59:0;;10115:2:1;50152: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;;50152:59:0::1;9913:343:1::0;50152:59:0::1;50221:9;50216:135;50240:11;50236:1;:15;50216:135;;;50294:10;50273:32;::::0;;;:20:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;50313:32:0::1;::::0;-1:-1:-1;50323:10:0::1;50335:5;50339:1:::0;50335;:5:::1;:::i;:::-;50313:32;;;;;;;;;;;::::0;:9:::1;:32::i;:::-;50253:3;::::0;::::1;:::i;:::-;;;50216:135;;;-1:-1:-1::0;;35946:1:0;36898:7;:22;-1:-1:-1;;49741:627:0:o;12140:412::-;12221:13;12237:24;12253:7;12237:15;:24::i;:::-;12221:40;;12286:5;-1:-1:-1;;;;;12280:11:0;:2;-1:-1:-1;;;;;12280:11:0;;;12272:57;;;;-1:-1:-1;;;12272:57:0;;10603:2:1;12272: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;;12272:57:0;10401:397:1;12272:57:0;10299:10;-1:-1:-1;;;;;12364:21:0;;;;:62;;-1:-1:-1;12389:37:0;12406:5;10299:10;13086:164;:::i;12389:37::-;12342:168;;;;-1:-1:-1;;;12342:168:0;;11005:2:1;12342: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;;12342:168:0;10803:420:1;12342:168:0;12523:21;12532:2;12536:7;12523:8;:21::i;:::-;12210:342;12140:412;;:::o;51802:100::-;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;51872:9:::1;:25:::0;51802:100::o;13256:339::-;13451:41;10299:10;13484:7;13451:18;:41::i;:::-;13443:103;;;;-1:-1:-1;;;13443:103:0;;;;;;;:::i;:::-;13559:28;13569:4;13575:2;13579:7;13559:9;:28::i;33037:500::-;33126:15;33170:24;33188:5;33170:17;:24::i;:::-;33162:5;:32;33154:67;;;;-1:-1:-1;;;33154:67:0;;;;;;;:::i;:::-;33232:10;33258:6;33253:226;33270:7;:14;33266:18;;33253:226;;;33319:7;33327:1;33319:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;33310:19:0;;;33319:10;;33310:19;33306:162;;;33363:5;33354;:14;33350:102;;;33399:1;-1:-1:-1;33392:8:0;;-1:-1:-1;33392:8:0;33350:102;33445:7;;;:::i;:::-;;;33350:102;33286:3;;;:::i;:::-;;;33253:226;;;-1:-1:-1;33489:40:0;;-1:-1:-1;;;33489:40:0;;;;;;;:::i;48147:126::-;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;47418:7;;-1:-1:-1;;;47418:7:0;;;;47672:9:::1;47664:38;;;::::0;-1:-1:-1;;;47664:38:0;;12692:2:1;47664:38:0::1;::::0;::::1;12674:21:1::0;12731:2;12711:18;;;12704:30;-1:-1:-1;;;12750:18:1;;;12743:46;12806:18;;47664:38:0::1;12490:340:1::0;47664:38:0::1;48215:7:::2;:14:::0;;-1:-1:-1;;;;48215:14:0::2;-1:-1:-1::0;;;48215:14:0::2;::::0;;48245:20:::2;48252:12;10299:10:::0;;10219:98;48252:12:::2;48245:20;::::0;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;48245:20:0::2;;;;;;;48147:126::o:0;52366:151::-;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;52434:58:::1;::::0;52416:12:::1;::::0;52442:10:::1;::::0;52466:21:::1;::::0;52416:12;52434:58;52416:12;52434:58;52466:21;52442:10;52434:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52415:77;;;52504:7;52496:16;;;::::0;::::1;;52411:106;52366:151::o:0;13601:185::-;13739:39;13756:4;13762:2;13766:7;13739:39;;;;;;;;;;;;:16;:39::i;51618:80::-;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;51678:4:::1;:15:::0;51618:80::o;34083:194::-;34158:7;34194:24;34055:7;:14;;33967:110;34194:24;34186:5;:32;34178:68;;;;-1:-1:-1;;;34178:68:0;;13247:2:1;34178:68:0;;;13229:21:1;13286:2;13266:18;;;13259:30;13325:25;13305:18;;;13298:53;13368:18;;34178:68:0;13045:347:1;34178:68:0;-1:-1:-1;34264:5:0;34083:194::o;51905:98::-;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;51977:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51905:98:::0;:::o;11679:239::-;11751:7;11771:13;11787:7;11795;11787:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11787:16:0;;-1:-1:-1;11822:19:0;11814:73;;;;-1:-1:-1;;;11814:73:0;;13599:2:1;11814:73:0;;;13581:21:1;13638:2;13618:18;;;13611:30;13677:34;13657:18;;;13650:62;-1:-1:-1;;;13728:18:1;;;13721:39;13777:19;;11814:73:0;13397:405:1;48712:21:0;;;;;;;:::i;11259:414::-;11331:7;-1:-1:-1;;;;;11359:19:0;;11351:74;;;;-1:-1:-1;;;11351:74:0;;14009:2:1;11351:74:0;;;13991:21:1;14048:2;14028:18;;;14021:30;14087:34;14067:18;;;14060:62;-1:-1:-1;;;14138:18:1;;;14131:40;14188:19;;11351:74:0;13807:406:1;11351:74:0;11475:7;:14;11436:10;;;11500:119;11521:6;11517:1;:10;11500:119;;;11560:7;11568:1;11560:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11551:19:0;;;11560:10;;11551:19;11547:61;;;11587:7;;;:::i;:::-;;;11547:61;11529:3;;;:::i;:::-;;;11500:119;;;-1:-1:-1;11660:5:0;;11259:414;-1:-1:-1;;;11259:414:0:o;45681:94::-;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;45746:21:::1;45764:1;45746:9;:21::i;:::-;45681:94::o:0;33543:418::-;33602:16;33643:24;33661:5;33643:17;:24::i;:::-;33639:1;:28;33631:63;;;;-1:-1:-1;;;33631:63:0;;;;;;;:::i;:::-;33705:18;33726:16;33736:5;33726:9;:16::i;:::-;33705:37;;33753:25;33795:10;33781:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33781:25:0;;33753:53;;33822:9;33817:111;33841:10;33837:1;:14;33817:111;;;33887:29;33907:5;33914:1;33887:19;:29::i;:::-;33873:8;33882:1;33873:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;33853:3;;;;:::i;:::-;;;;33817:111;;;-1:-1:-1;33945:8:0;33543:418;-1:-1:-1;;;33543:418:0:o;12030:104::-;12086:13;12119:7;12112:14;;;;;:::i;50373:589::-;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;50474:35;;::::1;50466:82;;;::::0;-1:-1:-1;;;50466:82:0;;14420:2:1;50466:82:0::1;::::0;::::1;14402:21:1::0;14459:2;14439:18;;;14432:30;14498:34;14478:18;;;14471:62;-1:-1:-1;;;14549:18:1;;;14542:31;14590:19;;50466:82:0::1;14218:397:1::0;50466:82:0::1;50553:18;50580:9:::0;50592:13:::1;34055:7:::0;:14;;33967:110;50592:13:::1;50580:25;;50614:6;50610:81;50626:19:::0;;::::1;50610:81;;;50674:8;;50683:1;50674:11;;;;;;;:::i;:::-;;;;;;;50657:28;;;;;:::i;:::-;::::0;-1:-1:-1;50647:3:0::1;::::0;::::1;:::i;:::-;;;50610:81;;;-1:-1:-1::0;50725:9:0::1;::::0;50704:17:::1;50708:13:::0;50704:1;:17:::1;:::i;:::-;:30;;50695:53;;;::::0;-1:-1:-1;;;50695:53:0;;14822:2:1;50695:53:0::1;::::0;::::1;14804:21:1::0;14861:1;14841:18;;;14834:29;-1:-1:-1;;;14879:18:1;;;14872:38;14927:18;;50695:53:0::1;14620:331:1::0;50695:53:0::1;47418:7:::0;;-1:-1:-1;;;47418:7:0;;;;50767:9:::1;50759:18;;;::::0;::::1;;50782:20;;;50811:6;50807:137;50823:20:::0;;::::1;50807:137;;;50859:6;50855:84;50875:8;;50884:1;50875:11;;;;;;;:::i;:::-;;;;;;;50871:1;:15;50855:84;;;50898:34;50909:9;;50919:1;50909:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50923:3:::0;::::1;::::0;::::1;:::i;:::-;;;50898:34;;;;;;;;;;;::::0;:9:::1;:34::i;:::-;50888:3;::::0;::::1;:::i;:::-;;;50855:84;;;-1:-1:-1::0;50845:3:0::1;::::0;::::1;:::i;:::-;;;50807:137;;;-1:-1:-1::0;;;;;;;50373:589:0:o;49284:448::-;35990:1;36586:7;;:19;;36578:63;;;;-1:-1:-1;;;36578:63:0;;8437:2:1;36578:63:0;;;8419:21:1;8476:2;8456:18;;;8449:30;8515:33;8495:18;;;8488:61;8566:18;;36578:63:0;8235:355:1;36578:63:0;35990:1;36719:7;:18;49351:9:::1;49363:13;34055:7:::0;:14;;33967:110;49363:13:::1;47418:7:::0;;49351:25;;-1:-1:-1;;;;47418:7:0;;;;49395:9:::1;49387:18;;;::::0;::::1;;49432:1;49418:11;:15;49410:40;;;::::0;-1:-1:-1;;;49410:40:0;;9419:2:1;49410: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;;49410:40:0::1;9217:335:1::0;49410:40:0::1;49478:2;49463:11;:17;;49455:58;;;::::0;-1:-1:-1;;;49455:58:0;;9759:2:1;49455:58:0::1;::::0;::::1;9741:21:1::0;9798:2;9778:18;;;9771:30;9837:29;9817:18;;;9810:57;9884:18;;49455:58:0::1;9557:351:1::0;49455:58:0::1;49545:9;::::0;49526:15:::1;49530:11:::0;49526:1;:15:::1;:::i;:::-;:28;;49518:61;;;::::0;-1:-1:-1;;;49518:61:0;;10115:2:1;49518: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;;49518:61:0::1;9913:343:1::0;49518:61:0::1;49612:11;49605:4;;:18;;;;:::i;:::-;49592:9;:31;;49584:40;;;::::0;::::1;;49634:9;49629:86;49653:11;49649:1;:15;49629:86;;;49677:32;49687:10;49699:5;49703:1:::0;49699;:5:::1;:::i;49677:32::-;49666:3;::::0;::::1;:::i;:::-;;;49629:86;;;-1:-1:-1::0;;35946:1:0;36898:7;:22;-1:-1:-1;49284:448:0:o;12785:295::-;-1:-1:-1;;;;;12888:24:0;;10299:10;12888:24;;12880:62;;;;-1:-1:-1;;;12880:62:0;;15331:2:1;12880:62:0;;;15313:21:1;15370:2;15350:18;;;15343:30;15409:27;15389:18;;;15382:55;15454:18;;12880:62:0;15129:349:1;12880:62:0;10299:10;12955:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;12955:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;12955:53:0;;;;;;;;;;13024:48;;540:41:1;;;12955:42:0;;10299:10;13024:48;;513:18:1;13024:48:0;;;;;;;12785:295;;:::o;51428:69::-;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;51474:8:::1;:15:::0;;-1:-1:-1;;51474:15:0::1;;;::::0;;51428:69::o;13792:328::-;13967:41;10299:10;14000:7;13967:18;:41::i;:::-;13959:103;;;;-1:-1:-1;;;13959:103:0;;;;;;;:::i;:::-;14073:39;14087:4;14093:2;14097:7;14106:5;14073:13;:39::i;:::-;13792:328;;;;:::o;48741:37::-;;;;;;;:::i;50970:432::-;51043:13;51074:16;51082:7;51074;:16::i;:::-;51066:62;;;;-1:-1:-1;;;51066:62:0;;15685:2:1;51066:62:0;;;15667:21:1;15724:2;15704:18;;;15697:30;15763:34;15743:18;;;15736:62;-1:-1:-1;;;15814:18:1;;;15807:31;15855:19;;51066:62:0;15483:397:1;51066:62:0;51152:8;;;;;;;51149:70;;51193:14;51186:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50970:432;;;:::o;51149:70::-;51226:28;51257:10;:8;:10::i;:::-;51226:41;;51313:1;51288:14;51282:28;:32;:115;;;;;;;;;;;;;;;;;51341:14;51357:18;:7;:16;:18::i;:::-;51377:13;51324:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51282:115;51275:122;50970:432;-1:-1:-1;;;50970:432:0:o;51503:110::-;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;51578:18:::1;:27:::0;51503:110::o;51703:92::-;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;51769:7:::1;:21:::0;51703:92::o;52280:83::-;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;52342:6:::1;:16:::0;;-1:-1:-1;;52342:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52280:83::o;52009:128::-;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;52096:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;52145:126::-:0;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;52231:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;45930:192::-:0;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46019:22:0;::::1;46011:73;;;::::0;-1:-1:-1;;;46011:73:0;;17745:2:1;46011:73:0::1;::::0;::::1;17727:21:1::0;17784:2;17764:18;;;17757:30;17823:34;17803:18;;;17796:62;-1:-1:-1;;;17874:18:1;;;17867:36;17920:19;;46011:73:0::1;17543:402:1::0;46011:73:0::1;46095:19;46105:8;46095:9;:19::i;48421:128::-:0;45103:6;;-1:-1:-1;;;;;45103:6:0;10299:10;45250:23;45242:68;;;;-1:-1:-1;;;45242:68:0;;;;;;;:::i;:::-;47418:7;;-1:-1:-1;;;47418:7:0;;;;47942:41:::1;;;::::0;-1:-1:-1;;;47942:41:0;;18152:2:1;47942:41:0::1;::::0;::::1;18134:21:1::0;18191:2;18171:18;;;18164:30;-1:-1:-1;;;18210:18:1;;;18203:50;18270:18;;47942:41:0::1;17950:344:1::0;47942:41:0::1;48488:7:::2;:15:::0;;-1:-1:-1;;;;48488:15:0::2;::::0;;48519:22:::2;10299:10:::0;48528:12:::2;10219:98:::0;10948:305;11050:4;-1:-1:-1;;;;;;11087:40:0;;-1:-1:-1;;;11087:40:0;;:105;;-1:-1:-1;;;;;;;11144:48:0;;-1:-1:-1;;;11144:48:0;11087:105;:158;;;-1:-1:-1;;;;;;;;;;2286:40:0;;;11209:36;2177:157;14449:155;14548:7;:14;14514:4;;14538:24;;:58;;;;;14594:1;-1:-1:-1;;;;;14566:30:0;:7;14574;14566:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;14566:16:0;:30;;14531:65;14449:155;-1:-1:-1;;14449:155:0:o;15072:321::-;15202:18;15208:2;15212:7;15202:5;:18::i;:::-;15253:54;15284:1;15288:2;15292:7;15301:5;15253:22;:54::i;:::-;15231:154;;;;-1:-1:-1;;;15231:154:0;;;;;;;:::i;16601:175::-;16676:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;16676:29:0;-1:-1:-1;;;;;16676:29:0;;;;;;;;:24;;16730;16676;16730:15;:24::i;:::-;-1:-1:-1;;;;;16721:47:0;;;;;;;;;;;16601:175;;:::o;14607:349::-;14700:4;14725:16;14733:7;14725;:16::i;:::-;14717:73;;;;-1:-1:-1;;;14717:73:0;;18920:2:1;14717:73:0;;;18902:21:1;18959:2;18939:18;;;18932:30;18998:34;18978:18;;;18971:62;-1:-1:-1;;;19049:18:1;;;19042:42;19101:19;;14717:73:0;18718:408:1;14717:73:0;14801:13;14817:24;14833:7;14817:15;:24::i;:::-;14801:40;;14871:5;-1:-1:-1;;;;;14860:16:0;:7;-1:-1:-1;;;;;14860:16:0;;:51;;;;14904:7;-1:-1:-1;;;;;14880:31:0;:20;14892:7;14880:11;:20::i;:::-;-1:-1:-1;;;;;14880:31:0;;14860:51;:87;;;-1:-1:-1;;;;;;13207:25:0;;;13183:4;13207:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;14915:32;14852:96;14607:349;-1:-1:-1;;;;14607:349:0:o;16081:517::-;16241:4;-1:-1:-1;;;;;16213:32:0;:24;16229:7;16213:15;:24::i;:::-;-1:-1:-1;;;;;16213:32:0;;16205:86;;;;-1:-1:-1;;;16205:86:0;;19333:2:1;16205:86:0;;;19315:21:1;19372:2;19352:18;;;19345:30;19411:34;19391:18;;;19384:62;-1:-1:-1;;;19462:18:1;;;19455:39;19511:19;;16205:86:0;19131:405:1;16205:86:0;-1:-1:-1;;;;;16310:16:0;;16302:65;;;;-1:-1:-1;;;16302:65:0;;19743:2:1;16302:65:0;;;19725:21:1;19782:2;19762:18;;;19755:30;19821:34;19801:18;;;19794:62;-1:-1:-1;;;19872:18:1;;;19865:34;19916:19;;16302:65:0;19541:400:1;16302:65:0;16484:29;16501:1;16505:7;16484:8;:29::i;:::-;16543:2;16524:7;16532;16524:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;16524:21:0;-1:-1:-1;;;;;16524:21:0;;;;;;16563:27;;16582:7;;16563:27;;;;;;;;;;16524:16;16563:27;16081:517;;;:::o;46130:173::-;46205:6;;;-1:-1:-1;;;;;46222:17:0;;;-1:-1:-1;;;;;;46222:17:0;;;;;;;46255:40;;46205:6;;;46222:17;46205:6;;46255:40;;46186:16;;46255:40;46175:128;46130:173;:::o;14131:315::-;14288:28;14298:4;14304:2;14308:7;14288:9;:28::i;:::-;14335:48;14358:4;14364:2;14368:7;14377:5;14335:22;:48::i;:::-;14327:111;;;;-1:-1:-1;;;14327:111:0;;;;;;;:::i;49186:93::-;49237:13;49267:7;49260:14;;;;;:::i;42312:723::-;42368:13;42589:10;42585:53;;-1:-1:-1;;42616:10:0;;;;;;;;;;;;-1:-1:-1;;;42616:10:0;;;;;42312:723::o;42585:53::-;42663:5;42648:12;42704:78;42711:9;;42704:78;;42737:8;;;;:::i;:::-;;-1:-1:-1;42760:10:0;;-1:-1:-1;42768:2:0;42760:10;;:::i;:::-;;;42704:78;;;42792:19;42824:6;42814:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42814:17:0;;42792:39;;42842:154;42849:10;;42842:154;;42876:11;42886:1;42876:11;;:::i;:::-;;-1:-1:-1;42945:10:0;42953:2;42945:5;:10;:::i;:::-;42932:24;;:2;:24;:::i;:::-;42919:39;;42902:6;42909;42902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;42902:56:0;;;;;;;;-1:-1:-1;42973:11:0;42982:2;42973:11;;:::i;:::-;;;42842:154;;15396:346;-1:-1:-1;;;;;15476:16:0;;15468:61;;;;-1:-1:-1;;;15468:61:0;;20652:2:1;15468:61:0;;;20634:21:1;;;20671:18;;;20664:30;20730:34;20710:18;;;20703:62;20782:18;;15468:61:0;20450:356:1;15468:61:0;15549:16;15557:7;15549;:16::i;:::-;15548:17;15540:58;;;;-1:-1:-1;;;15540:58:0;;21013:2:1;15540:58:0;;;20995:21:1;21052:2;21032:18;;;21025:30;21091;21071:18;;;21064:58;21139:18;;15540:58:0;20811:352:1;15540:58:0;15667:7;:16;;;;;;;-1:-1:-1;15667:16:0;;;;;;;-1:-1:-1;;;;;;15667:16:0;-1:-1:-1;;;;;15667:16:0;;;;;;;;15701:33;;15726:7;;-1:-1:-1;15701:33:0;;-1:-1:-1;;15701:33:0;15396:346;;:::o;16779:799::-;16934:4;-1:-1:-1;;;;;16955:13:0;;25679:20;25727:8;16951:620;;16991:72;;-1:-1:-1;;;16991:72:0;;-1:-1:-1;;;;;16991:36:0;;;;;:72;;10299:10;;17042:4;;17048:7;;17057:5;;16991:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16991:72:0;;;;;;;;-1:-1:-1;;16991:72:0;;;;;;;;;;;;:::i;:::-;;;16987:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17233:13:0;;17229:272;;17276:60;;-1:-1:-1;;;17276:60:0;;;;;;;:::i;17229:272::-;17451:6;17445:13;17436:6;17432:2;17428:15;17421:38;16987:529;-1:-1:-1;;;;;;17114:51:0;-1:-1:-1;;;17114:51:0;;-1:-1:-1;17107:58:0;;16951:620;-1:-1:-1;17555:4:0;16779: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;14956:168;14996:7;15062:1;15058;15054:6;15050:14;15047:1;15044:21;15039:1;15032:9;15025:17;15021:45;15018:71;;;15069:18;;:::i;:::-;-1:-1:-1;15109:9:1;;14956:168::o;16011:1527::-;16235:3;16273:6;16267:13;16299:4;16312:51;16356:6;16351:3;16346:2;16338:6;16334:15;16312:51;:::i;:::-;16426:13;;16385:16;;;;16448:55;16426:13;16385:16;16470:15;;;16448:55;:::i;:::-;16592:13;;16525:20;;;16565:1;;16652;16674:18;;;;16727;;;;16754:93;;16832:4;16822:8;16818:19;16806:31;;16754:93;16895:2;16885:8;16882:16;16862:18;16859:40;16856:167;;;-1:-1:-1;;;16922:33:1;;16978:4;16975:1;16968:15;17008:4;16929:3;16996:17;16856:167;17039:18;17066:110;;;;17190:1;17185:328;;;;17032:481;;17066:110;-1:-1:-1;;17101:24:1;;17087:39;;17146:20;;;;-1:-1:-1;17066:110:1;;17185:328;15958:1;15951:14;;;15995:4;15982:18;;17280:1;17294:169;17308:8;17305:1;17302:15;17294:169;;;17390:14;;17375:13;;;17368:37;17433:16;;;;17325:10;;17294:169;;;17298:3;;17494:8;17487:5;17483:20;17476:27;;17032:481;-1:-1:-1;17529:3:1;;16011:1527;-1:-1:-1;;;;;;;;;;;16011:1527:1:o;18299:414::-;18501:2;18483:21;;;18540:2;18520:18;;;18513:30;18579:34;18574:2;18559:18;;18552:62;-1:-1:-1;;;18645:2:1;18630:18;;18623:48;18703:3;18688:19;;18299:414::o;19946:127::-;20007:10;20002:3;19998:20;19995:1;19988:31;20038:4;20035:1;20028:15;20062:4;20059:1;20052:15;20078:120;20118:1;20144;20134:35;;20149:18;;:::i;:::-;-1:-1:-1;20183:9:1;;20078:120::o;20203:125::-;20243:4;20271:1;20268;20265:8;20262:34;;;20276:18;;:::i;:::-;-1:-1:-1;20313:9:1;;20203:125::o;20333:112::-;20365:1;20391;20381:35;;20396:18;;:::i;:::-;-1:-1:-1;20430:9:1;;20333:112::o;21168:489::-;-1:-1:-1;;;;;21437:15:1;;;21419:34;;21489:15;;21484:2;21469:18;;21462:43;21536:2;21521:18;;21514:34;;;21584:3;21579:2;21564:18;;21557:31;;;21362:4;;21605:46;;21631:19;;21623:6;21605:46;:::i;:::-;21597:54;21168:489;-1:-1:-1;;;;;;21168:489:1:o;21662:249::-;21731:6;21784:2;21772:9;21763:7;21759:23;21755:32;21752:52;;;21800:1;21797;21790:12;21752:52;21832:9;21826:16;21851:30;21875:5;21851:30;:::i

Swarm Source

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