ETH Price: $3,052.31 (+1.23%)
Gas: 2 Gwei

Token

ReaperHills (REAP)
 

Overview

Max Total Supply

460 REAP

Holders

236

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 REAP
0xbdf75e5d0552828360d43060b0f8f84ce72738d8
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:
ReaperHills

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-20
*/

// Sources flattened with hardhat v2.4.3 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File contracts/IERC2981.sol



pragma solidity >=0.8.5;

///
/// @dev Interface for the NFT Royalty Standard
///
interface IERC2981 is IERC165 {
    /// ERC165 bytes to add to interface array - set in parent contract
    /// implementing this standard
    ///
    /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
    /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    /// _registerInterface(_INTERFACE_ID_ERC2981);

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _salePrice - the sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _salePrice
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view returns (
        address receiver,
        uint256 royaltyAmount
    );

    /// @notice Informs callers that this contract supports ERC2981
    /// @dev If `_registerInterface(_INTERFACE_ID_ERC2981)` is called
    ///      in the initializer, this should be automatic
    /// @param interfaceID The interface identifier, as specified in ERC-165
    /// @return `true` if the contract implements
    ///         `_INTERFACE_ID_ERC2981` and `false` otherwise
    function supportsInterface(bytes4 interfaceID) external view override returns (bool);
}


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]



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


// File contracts/MerkleProof.sol



pragma solidity ^0.8.5;

/**
 * @dev These functions deal with verification of Merkle trees (hash trees),
 */
contract MerkleProof is Ownable {
    // merkle tree root used to validate the provided address and assigned proof
    bytes32 public root;

    /**
     * @dev Set the merkle tree root hash
     * @param _root hash to save
     */
    function setMerkleRoot(bytes32 _root) public onlyOwner {
        require(_root.length > 0, "Root is empty");
        require(root == bytes32(""), "Root was already assigned");
        root = _root;
    }

    /**
     * @dev Modifier to check if the sender can mint tokens
     * @param proof hashes to validate
     */
    modifier canMintEarly(bytes32[] memory proof) {
        require(isProofValid(proof), "the proof for this sender is not valid");
        _;
    }


    /**
     * @dev Check if the sender can mint tokens
     * @param proof hashes to validate
     */
    function isProofValid(bytes32[] memory proof) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return verify(leaf, proof);
    }

    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32 leaf, bytes32[] memory proof)
        internal view
        returns (bool)
    {
        bytes32 computedHash = leaf;

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

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(
                    abi.encodePacked(computedHash, proofElement)
                );
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(
                    abi.encodePacked(proofElement, computedHash)
                );
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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


// File @openzeppelin/contracts/utils/[email protected]



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

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]



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


// File @openzeppelin/contracts/security/[email protected]



pragma solidity ^0.8.0;

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

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

    bool private _paused;

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Storage based implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165Storage is ERC165 {
    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return super.supportsInterface(interfaceId) || _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}


// File @openzeppelin/contracts/security/[email protected]



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


// File contracts/ReaperHills.sol



pragma solidity >=0.8.5;












contract ReaperHills is
    MerkleProof,
    ERC165Storage,
    ERC721Pausable,
    ERC721Enumerable,
    ReentrancyGuard
{
    using SafeMath for uint256;

    // struct that holds information about when a token was created/transferred
    struct NFTDetails {
        uint256 tokenId;
        uint256 starTime;
        uint256 endTime;
    }

    // emits BaseURIChanged event when the baseUri changes
    event BaseURIChanged(
        address indexed _owner,
        string initialBaseURI,
        string finalBaseURI
    );
    // interface used by marketplaces to get the royalty for a specific sell
    bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;

    // maximum number of tokens that can be minted
    uint256 public constant MAX_TOKENS = 10000;
    // maximum number of tokens that can be early minted in a single transaction
    uint256 public constant MAX_EARLY_TOKENS_PER_PURCHASE = 25;
    // maximum number of tokens that can be early minted in a single transaction first day
    uint256 public constant MAX_EARLY_TOKENS_PER_PURCHASE_FIRST_DAY = 5;
    // maximum number of tokens that can be minted in a single transaction
    uint256 public constant MAX_TOKENS_PER_PURCHASE = 50;

    // the price to mint a token
    uint256 public constant MINT_PRICE = 60000000000000000; // 0.06 Ether

    // Reserved tokens for Team/Giveaways/Airdrops etc
    uint256 public reservedTokens = 100;
    // Already minted reserved tokens
    uint256 public mintedReservedTokens = 0;

    uint256 public mintingStartTime;

    mapping(address => uint256) public earlyMintedTokensByOwner;

    // royalty got from a sell
    uint256 public constant ROYALTY_SELL_PERCENT = 10; // 10% of sell price
    // part of royalty that is being distributed to the team 1
    uint256 public constant ROYALTY_SELL_PERCENT_TEAM_1 = 40; // 2% of sell price
    // part of royalty that is being distributed to the team 2
    uint256 public constant ROYALTY_SELL_PERCENT_TEAM_2 = 40; // 2% of sell price
    // part of royalty that is being distributed to the team 3
    uint256 public constant ROYALTY_SELL_PERCENT_TEAM_3 = 15; // 0.75% of sell price
    // part of royalty that is being distributed to the team 4
    uint256 public constant ROYALTY_SELL_PERCENT_TEAM_4 = 5; // 0.25% of sell price

    // address team 1 to receive part of royalty
    address public royaltyReceiverTeam1;
    // address team 2 to receive part of royalty
    address public royaltyReceiverTeam2;
    // address team 3 to receive part of royalty
    address public royaltyReceiverTeam3;
    // address team 4 to receive part of royalty
    address public royaltyReceiverTeam4;
    // address team 4 to receive part of royalty
    address public communityAddress;

    // allow early adopters to mint tokens. Once disabled can't be enabled back
    bool public earlyMinting = true;
    // flag to signal if the owner can change the BaseURI
    bool public canChangeBaseURI = true;
    // the base uri where the NFT metadata would point to
    string public baseURI = "";

    // hash to proof that the images and metadata from IPFS is valid
    string public provenance = "";

    // mapping from owner to list of token ids
    mapping(address => uint256[]) public ownerTokenList;
    // mapping from token ID to token details of the owner tokens list
    mapping(address => mapping(uint256 => NFTDetails))
        public ownedTokensDetails;

    // nonce to be used on generating the random token id
    uint256 private nonce = 0;
    uint256[MAX_TOKENS] private indices;

    constructor(
        string memory name_,
        string memory symbol_,
        address royaltyReceiver1_,
        address royaltyReceiver2_,
        address royaltyReceiver3_,
        address royaltyReceiver4_,
        address communityAddress_
    ) ERC721(name_, symbol_) {
        royaltyReceiverTeam1 = royaltyReceiver1_;
        royaltyReceiverTeam2 = royaltyReceiver2_;
        royaltyReceiverTeam3 = royaltyReceiver3_;
        royaltyReceiverTeam4 = royaltyReceiver4_;
        communityAddress = communityAddress_;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(type(IERC721).interfaceId);
        _registerInterface(type(IERC721Metadata).interfaceId);
        _registerInterface(type(IERC721Enumerable).interfaceId);
    }

    function firstMints() public onlyOwner {
        for (uint8 id = 1; id <= 6; id++) {
            indices[id - 1] = MAX_TOKENS - totalSupply() - 1;
            ownerTokenList[communityAddress].push(id);
            ownedTokensDetails[communityAddress][id] = NFTDetails(
                id,
                block.timestamp,
                0
            );
            _safeMint(communityAddress, id);
        }
    }

    /*
     * accepts ether sent with no txData
     */
    receive() external payable {}

    /*
     * refuses ether sent with txData that does not match any function signature in the contract
     */
    fallback() external {}

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function pause() public onlyOwner {
        super._pause();
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function unpause() public onlyOwner {
        super._unpause();
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721Pausable, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Retrieve the ETH balance of the current contract
     */
    function getBalance() public view returns (uint256) {
        return address(this).balance;
    }

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

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

    /**
     * @dev Set the baseURI to a given uri
     * @param uri string to save
     */
    function changeBaseURI(string memory uri) public onlyOwner {
        require(canChangeBaseURI, "The baseURI can't be changed anymore");
        require(bytes(uri).length > 0, "uri is empty");
        string memory initialBaseURI = baseURI;
        baseURI = uri;
        emit BaseURIChanged(msg.sender, initialBaseURI, baseURI);
    }

    /**
     * @dev Get the list of tokens for a specific owner
     * @param _owner address to retrieve token ids for
     */
    function tokensByOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    /**
     * @dev Set the NFT IPFS hash proof for tokens metadata
     * @param hashProof string to save
     */
    function setProvenance(string memory hashProof) public onlyOwner {
        require(bytes(hashProof).length > 0, "hash proof is empty");
        provenance = hashProof;
    }

    /**
     * @dev Disable early minting
     */
    function disableEarlyMinting() external onlyOwner {
        require(earlyMinting, "Early minting already disabled");
        earlyMinting = false;
    }

    /**
     * @dev Disable changes for baseURI
     */
    function disableBaseURIChanges() external onlyOwner {
        require(canChangeBaseURI, "The owner can't change the baseURI anymore");
        canChangeBaseURI = false;
    }

    /**
     * Credits to LarvaLabs Meebits contract
     */
    function randomIndex() internal returns (uint256) {
        uint256 totalSize = MAX_TOKENS - totalSupply();
        uint256 index = uint256(
            keccak256(
                abi.encodePacked(
                    nonce,
                    msg.sender,
                    block.difficulty,
                    block.timestamp
                )
            )
        ) % totalSize;
        uint256 value = 0;

        if (indices[index] != 0) {
            value = indices[index];
        } else {
            value = index;
        }

        // Move last value to selected position
        if (indices[totalSize - 1] == 0) {
            // Array position not initialized, so use position
            indices[index] = totalSize - 1;
        } else {
            // Array position holds a value so use that
            indices[index] = indices[totalSize - 1];
        }
        nonce++;
        // Don't allow a zero index, start counting at 1
        return value + 1;
    }

    /**
     * @dev Mint tokens early
     * @param _count the number of tokens to be minted
     * @param proof to validate if the sender can mint the tokens early
     */
    function earlyMint(uint256 _count, bytes32[] memory proof)
        public
        payable
        nonReentrant
        canMintEarly(proof)
    {
        require(
            earlyMinting,
            "The early minting is disabled. Use the mint function."
        );
        require(
            _count > 0 && _count <= MAX_EARLY_TOKENS_PER_PURCHASE,
            "Too many early tokens to mint at once"
        );
        require(
            _count + earlyMintedTokensByOwner[msg.sender] <=
                MAX_EARLY_TOKENS_PER_PURCHASE,
            "Too many early tokens to mint"
        );
        if (block.timestamp - mintingStartTime <= 86400) {
            require(
                _count <= MAX_EARLY_TOKENS_PER_PURCHASE_FIRST_DAY,
                "To many tokens to be minted early in the first day"
            );
        }
        earlyMintedTokensByOwner[msg.sender] += _count;
        _mint(_count);
    }

    /**
     * @dev Withdraw contract balance to owner
     */
    function withdraw() public onlyOwner {
        sendValueTo(msg.sender, address(this).balance);
    }

    /**
     * @dev Mint tokens for community wallet
     */
    function mintToCommunityWallet(uint8 _count) external onlyOwner {
        require(
            _count > 0 && _count <= reservedTokens,
            "Too many reserved tokens to mint at once"
        );
        require(
            _count + mintedReservedTokens <= reservedTokens,
            "Too many reserved tokens to mint"
        );
        mintedReservedTokens += _count;
        mintNTokensFor(communityAddress, _count);
    }

    /**
     * @dev Mint new tokens
     * @param _count the number of tokens to be minted
     */
    function mint(uint256 _count)
        public
        payable
        nonReentrant
    {
        require(
            !earlyMinting,
            "The early minting is enabled. Use earlyMint function."
        );
        _mint(_count);
    }

    /**
     * @dev Mint new tokens
     * @param _count the number of tokens to be minted
     */
    function _mint(uint256 _count) internal {
        require(!paused(), "The minting of new tokens is paused");
        uint256 totalSupply = totalSupply();

        require(
            _count > 0 && _count <= MAX_TOKENS_PER_PURCHASE,
            "The maximum number of tokens that can be minted was exceeded"
        );
        require(
            totalSupply + _count <= MAX_TOKENS,
            "Exceeds maximum tokens available for purchase"
        );
        require(
            msg.value >= MINT_PRICE.mul(_count),
            "Ether value sent is not correct"
        );

        for (uint256 i = 0; i < _count; i++) {
            _mintToken(msg.sender);
        }

        uint256 value = msg.value;
        sendValueTo(
            royaltyReceiverTeam1,
            (value * ROYALTY_SELL_PERCENT_TEAM_1) / 100
        );
        sendValueTo(
            royaltyReceiverTeam2,
            (value * ROYALTY_SELL_PERCENT_TEAM_2) / 100
        );
        sendValueTo(
            royaltyReceiverTeam3,
            (value * ROYALTY_SELL_PERCENT_TEAM_3) / 100
        );
        sendValueTo(
            royaltyReceiverTeam4,
            (value * ROYALTY_SELL_PERCENT_TEAM_4) / 100
        );
    }

    /**
     * @dev Mint token for an address
     * @param to address to mint token for
     */
    function _mintToken(address to) internal {
        uint256 id = randomIndex();
        ownerTokenList[to].push(id);
        ownedTokensDetails[to][id] = NFTDetails(id, block.timestamp, 0);
        _safeMint(to, id);
    }

    /**
     * @dev Mint n tokens for an address
     * @param to address to mint tokens for
     * @param n number of tokens to mint
     */
    function mintNTokensFor(address to, uint8 n) internal {
        for (uint8 i = 0; i < n; i++) {
            _mintToken(to);
        }
    }

    /**
     * @dev Send an amount of value to a specific address
     * @param to_ address that will receive the value
     * @param value to be sent to the address
     */
    function sendValueTo(address to_, uint256 value) internal {
        address payable to = payable(to_);
        (bool success, ) = to.call{value: value}("");
        require(success, "Transfer failed.");
    }

    /**
     * @dev Get token history list of sender
     */
    function getTokenList() public view returns (uint256[] memory) {
        return ownerTokenList[msg.sender];
    }

    /**
     * @dev Get token history list of owner
     * @param owner_ for which to get all the tokens
     */
    function getTokenListFor(address owner_)
        public
        view
        returns (uint256[] memory)
    {
        return ownerTokenList[owner_];
    }

    /**
     * @dev Get token details for sender
     */
    function getTokenDetails() public view returns (NFTDetails[] memory) {
        return getTokenDetailsFor(msg.sender);
    }

    /**
     * @dev Get token details for a specific address
     * @param owner_ for which to get all the token details
     */
    function getTokenDetailsFor(address owner_)
        public
        view
        returns (NFTDetails[] memory)
    {
        return getTokenDetailsForFromIndex(owner_, 0);
    }

    /**
     * @dev Get token details for a specific address from an index of owner's token lsit
     * @param owner_ for which to get the token details
     * @param index from which to start retrieving the token details
     */
    function getTokenDetailsForFromIndex(address owner_, uint256 index)
        public
        view
        returns (NFTDetails[] memory)
    {
        uint256[] memory ownerList = ownerTokenList[owner_];
        NFTDetails[] memory details = new NFTDetails[](
            ownerList.length - index
        );
        uint256 counter = 0;
        for (uint256 i = index; i < ownerList.length; i++) {
            details[counter] = ownedTokensDetails[owner_][ownerList[i]];
            counter++;
        }
        return details;
    }

    /**
     * @dev Change token owner details mappings
     */
    function _updateTokenOwners(
        address from,
        address to,
        uint256 tokenId
    ) internal {
        ownedTokensDetails[from][tokenId].endTime = block.timestamp;

        ownerTokenList[to].push(tokenId);
        ownedTokensDetails[to][tokenId] = NFTDetails(
            tokenId,
            block.timestamp,
            0
        );
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     * @param from address from which to transfer the token
     * @param to address to which to transfer the token
     * @param tokenId to transfer
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _updateTokenOwners(from, to, tokenId);
        super.safeTransferFrom(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-transferFrom}.
     * @param from address from which to transfer the token
     * @param to address to which to transfer the token
     * @param tokenId to transfer
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _updateTokenOwners(from, to, tokenId);
        super.transferFrom(from, to, tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"royaltyReceiver1_","type":"address"},{"internalType":"address","name":"royaltyReceiver2_","type":"address"},{"internalType":"address","name":"royaltyReceiver3_","type":"address"},{"internalType":"address","name":"royaltyReceiver4_","type":"address"},{"internalType":"address","name":"communityAddress_","type":"address"}],"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":"_owner","type":"address"},{"indexed":false,"internalType":"string","name":"initialBaseURI","type":"string"},{"indexed":false,"internalType":"string","name":"finalBaseURI","type":"string"}],"name":"BaseURIChanged","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"},{"stateMutability":"nonpayable","type":"fallback"},{"inputs":[],"name":"MAX_EARLY_TOKENS_PER_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_EARLY_TOKENS_PER_PURCHASE_FIRST_DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_PER_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_SELL_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_SELL_PERCENT_TEAM_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_SELL_PERCENT_TEAM_2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_SELL_PERCENT_TEAM_3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_SELL_PERCENT_TEAM_4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canChangeBaseURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableBaseURIChanges","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableEarlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"earlyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"earlyMintedTokensByOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenDetails","outputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"starTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"internalType":"struct ReaperHills.NFTDetails[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"getTokenDetailsFor","outputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"starTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"internalType":"struct ReaperHills.NFTDetails[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getTokenDetailsForFromIndex","outputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"starTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"internalType":"struct ReaperHills.NFTDetails[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenList","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"getTokenListFor","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isProofValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_count","type":"uint8"}],"name":"mintToCommunityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedReservedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"ownedTokensDetails","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"starTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"ownerTokenList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiverTeam1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiverTeam2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiverTeam3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiverTeam4","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"hashProof","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensByOwner","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6064600f55600060108190556017805461ffff60a01b191661010160a01b17905560a0604081905260808290526200003b916018919062000249565b506040805160208101918290526000908190526200005c9160199162000249565b506000601c553480156200006f57600080fd5b5060405162004256380380620042568339810160408190526200009291620003c3565b86866200009f3362000175565b8151620000b490600390602085019062000249565b508051620000ca90600490602084019062000249565b50506009805460ff19169055506001600e55601380546001600160a01b03199081166001600160a01b038881169190911790925560148054821687841617905560158054821686841617905560168054821685841617905560178054909116918316919091179055620001446380ac58cd60e01b620001c5565b62000156635b5e139f60e01b620001c5565b6200016863780e9d6360e01b620001c5565b50505050505050620004dd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160e01b03198082161415620002245760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152600260205260409020805460ff19166001179055565b82805462000257906200048a565b90600052602060002090601f0160209004810192826200027b5760008555620002c6565b82601f106200029657805160ff1916838001178555620002c6565b82800160010185558215620002c6579182015b82811115620002c6578251825591602001919060010190620002a9565b50620002d4929150620002d8565b5090565b5b80821115620002d45760008155600101620002d9565b80516001600160a01b03811681146200030757600080fd5b919050565b600082601f8301126200031e57600080fd5b81516001600160401b03808211156200033b576200033b620004c7565b604051601f8301601f19908116603f01168101908282118183101715620003665762000366620004c7565b816040528381526020925086838588010111156200038357600080fd5b600091505b83821015620003a7578582018301518183018401529082019062000388565b83821115620003b95760008385830101525b9695505050505050565b600080600080600080600060e0888a031215620003df57600080fd5b87516001600160401b0380821115620003f757600080fd5b620004058b838c016200030c565b985060208a01519150808211156200041c57600080fd5b506200042b8a828b016200030c565b9650506200043c60408901620002ef565b94506200044c60608901620002ef565b93506200045c60808901620002ef565b92506200046c60a08901620002ef565b91506200047c60c08901620002ef565b905092959891949750929550565b600181811c908216806200049f57607f821691505b60208210811415620004c157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613d6980620004ed6000396000f3fe6080604052600436106103dd5760003560e01c80635c975abb116101fd578063a22cb46511610118578063e1eff5f6116100ab578063f2fde38b1161007a578063f2fde38b14610b02578063f402fea614610b22578063f47c84c514610b42578063ff332ab714610b58578063ffe630b514610b6d576103e4565b8063e1eff5f614610786578063e985e9c514610a8d578063eb74cc7d14610ad6578063ebf0c71714610aec576103e4565b8063c002d23d116100e7578063c002d23d14610a27578063c87b56dd14610a42578063d626b45f14610a62578063dfef5f6914610a77576103e4565b8063a22cb465146109c6578063a84894b8146109e6578063b88d4fde14610a07578063bff518121461050e576103e4565b80638456cb591161019057806395d89b411161015f57806395d89b41146109505780639ea5505514610965578063a0712d6814610992578063a07de775146109a5576103e4565b80638456cb59146108dd57806386e476dd146108f25780638da5cb5b146109125780639067171414610930576103e4565b806370a08231116101cc57806370a0823114610868578063715018a614610888578063729f09531461089d5780637cb64759146108bd576103e4565b80635c975abb146107fb5780636352211e14610813578063659f3ae4146108335780636c0360eb14610853576103e4565b80631ac0c54a116102f8578063381d899a1161028b5780633f4ba83a1161025a5780633f4ba83a1461077157806341f28bf31461078657806342842e0e1461079b5780634f6ccce7146107bb57806351358ea1146107db576103e4565b8063381d899a146106ef57806339a0c6f91461071c5780633c7dc4bf1461073c5780633ccfd60b1461075c576103e4565b8063273cbaa0116102c7578063273cbaa0146106435780632f745c591461065857806331ad59551461067857806335c9c6f01461068d576103e4565b80631ac0c54a146105c357806323b872dd146105e357806325e1ac5d14610603578063270fa43214610623576103e4565b80630f80276d1161037057806315a553471161033f57806315a553471461056e578063167f662b1461058457806318160ddd146105995780631974e7c7146105ae576103e4565b80630f80276d1461050e5780630fb6c6e814610531578063100073801461054657806312065fe01461055b576103e4565b80630acb0064116103ac5780630acb0064146104a45780630d381a28146104b95780630f5d74d8146104e65780630f7309e8146104f9576103e4565b806301ffc9a7146103f357806306fdde0314610428578063081812fc1461044a578063095ea7b314610482576103e4565b366103e457005b3480156103f057600080fd5b50005b3480156103ff57600080fd5b5061041361040e36600461377e565b610b8d565b60405190151581526020015b60405180910390f35b34801561043457600080fd5b5061043d610b9e565b60405161041f91906139a0565b34801561045657600080fd5b5061046a610465366004613765565b610c30565b6040516001600160a01b03909116815260200161041f565b34801561048e57600080fd5b506104a261049d366004613706565b610cca565b005b3480156104b057600080fd5b506104a2610de0565b3480156104c557600080fd5b506104d96104d43660046135c4565b610e72565b60405161041f919061395c565b6104a26104f4366004613801565b610f31565b34801561050557600080fd5b5061043d6111f6565b34801561051a57600080fd5b50610523600581565b60405190815260200161041f565b34801561053d57600080fd5b506104a2611284565b34801561055257600080fd5b50610523603281565b34801561056757600080fd5b5047610523565b34801561057a57600080fd5b50610523600f5481565b34801561059057600080fd5b506104a2611329565b3480156105a557600080fd5b50600c54610523565b3480156105ba57600080fd5b50610523601981565b3480156105cf57600080fd5b5060135461046a906001600160a01b031681565b3480156105ef57600080fd5b506104a26105fe366004613612565b611444565b34801561060f57600080fd5b5061041361061e366004613730565b61145a565b34801561062f57600080fd5b5061052361063e366004613706565b6114a6565b34801561064f57600080fd5b506104d96114d7565b34801561066457600080fd5b50610523610673366004613706565b611537565b34801561068457600080fd5b50610523600f81565b34801561069957600080fd5b506106d46106a8366004613706565b601b60209081526000928352604080842090915290825290208054600182015460029092015490919083565b6040805193845260208401929092529082015260600161041f565b3480156106fb57600080fd5b5061070f61070a366004613706565b6115cd565b60405161041f9190613903565b34801561072857600080fd5b506104a26107373660046137b8565b611776565b34801561074857600080fd5b5060155461046a906001600160a01b031681565b34801561076857600080fd5b506104a2611932565b34801561077d57600080fd5b506104a2611968565b34801561079257600080fd5b50610523602881565b3480156107a757600080fd5b506104a26107b6366004613612565b61199a565b3480156107c757600080fd5b506105236107d6366004613765565b6119b0565b3480156107e757600080fd5b5060165461046a906001600160a01b031681565b34801561080757600080fd5b5060095460ff16610413565b34801561081f57600080fd5b5061046a61082e366004613765565b611a43565b34801561083f57600080fd5b5061070f61084e3660046135c4565b611aba565b34801561085f57600080fd5b5061043d611ac7565b34801561087457600080fd5b506105236108833660046135c4565b611ad4565b34801561089457600080fd5b506104a2611b5b565b3480156108a957600080fd5b506104a26108b8366004613848565b611b8f565b3480156108c957600080fd5b506104a26108d8366004613765565b611cbf565b3480156108e957600080fd5b506104a2611d3e565b3480156108fe57600080fd5b5060175461046a906001600160a01b031681565b34801561091e57600080fd5b506000546001600160a01b031661046a565b34801561093c57600080fd5b506104d961094b3660046135c4565b611d70565b34801561095c57600080fd5b5061043d611ddc565b34801561097157600080fd5b506105236109803660046135c4565b60126020526000908152604090205481565b6104a26109a0366004613765565b611deb565b3480156109b157600080fd5b5060175461041390600160a01b900460ff1681565b3480156109d257600080fd5b506104a26109e13660046136ca565b611ecc565b3480156109f257600080fd5b5060175461041390600160a81b900460ff1681565b348015610a1357600080fd5b506104a2610a2236600461364e565b611f91565b348015610a3357600080fd5b5061052366d529ae9e86000081565b348015610a4e57600080fd5b5061043d610a5d366004613765565b611fc9565b348015610a6e57600080fd5b50610523600a81565b348015610a8357600080fd5b5061052360115481565b348015610a9957600080fd5b50610413610aa83660046135df565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610ae257600080fd5b5061052360105481565b348015610af857600080fd5b5061052360015481565b348015610b0e57600080fd5b506104a2610b1d3660046135c4565b6120a3565b348015610b2e57600080fd5b5060145461046a906001600160a01b031681565b348015610b4e57600080fd5b5061052361271081565b348015610b6457600080fd5b5061070f61213b565b348015610b7957600080fd5b506104a2610b883660046137b8565b61214b565b6000610b98826121d3565b92915050565b606060038054610bad90613c2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd990613c2b565b8015610c265780601f10610bfb57610100808354040283529160200191610c26565b820191906000526020600020905b815481529060010190602001808311610c0957829003601f168201915b5050505050905090565b6000818152600560205260408120546001600160a01b0316610cae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610cd582611a43565b9050806001600160a01b0316836001600160a01b03161415610d435760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ca5565b336001600160a01b0382161480610d5f5750610d5f8133610aa8565b610dd15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ca5565b610ddb83836121f8565b505050565b6000546001600160a01b03163314610e0a5760405162461bcd60e51b8152600401610ca590613ac3565b601754600160a01b900460ff16610e635760405162461bcd60e51b815260206004820152601e60248201527f4561726c79206d696e74696e6720616c72656164792064697361626c656400006044820152606401610ca5565b6017805460ff60a01b19169055565b60606000610e7f83611ad4565b905080610ea05760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610ebb57610ebb613d07565b604051908082528060200260200182016040528015610ee4578160200160208202803683370190505b50905060005b82811015610e9857610efc8582611537565b828281518110610f0e57610f0e613cf1565b602090810291909101015280610f2381613c60565b915050610eea565b50919050565b6002600e541415610f845760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ca5565b6002600e5580610f938161145a565b610fee5760405162461bcd60e51b815260206004820152602660248201527f7468652070726f6f6620666f7220746869732073656e646572206973206e6f74604482015265081d985b1a5960d21b6064820152608401610ca5565b601754600160a01b900460ff166110655760405162461bcd60e51b815260206004820152603560248201527f546865206561726c79206d696e74696e672069732064697361626c65642e205560448201527439b2903a34329036b4b73a10333ab731ba34b7b71760591b6064820152608401610ca5565b600083118015611076575060198311155b6110d05760405162461bcd60e51b815260206004820152602560248201527f546f6f206d616e79206561726c7920746f6b656e7320746f206d696e74206174604482015264206f6e636560d81b6064820152608401610ca5565b336000908152601260205260409020546019906110ed9085613b7a565b111561113b5760405162461bcd60e51b815260206004820152601d60248201527f546f6f206d616e79206561726c7920746f6b656e7320746f206d696e740000006044820152606401610ca5565b620151806011544261114d9190613bc5565b116111be5760058311156111be5760405162461bcd60e51b815260206004820152603260248201527f546f206d616e7920746f6b656e7320746f206265206d696e746564206561726c6044820152717920696e207468652066697273742064617960701b6064820152608401610ca5565b33600090815260126020526040812080548592906111dd908490613b7a565b909155506111ec905083612266565b50506001600e5550565b6019805461120390613c2b565b80601f016020809104026020016040519081016040528092919081815260200182805461122f90613c2b565b801561127c5780601f106112515761010080835404028352916020019161127c565b820191906000526020600020905b81548152906001019060200180831161125f57829003601f168201915b505050505081565b6000546001600160a01b031633146112ae5760405162461bcd60e51b8152600401610ca590613ac3565b601754600160a81b900460ff1661131a5760405162461bcd60e51b815260206004820152602a60248201527f546865206f776e65722063616e2774206368616e676520746865206261736555604482015269524920616e796d6f726560b01b6064820152608401610ca5565b6017805460ff60a81b19169055565b6000546001600160a01b031633146113535760405162461bcd60e51b8152600401610ca590613ac3565b60015b60068160ff161161144157600161136c600c5490565b61137890612710613bc5565b6113829190613bc5565b601d61138f600184613bdc565b60ff1661271081106113a3576113a3613cf1565b0155601780546001600160a01b039081166000908152601a6020908152604080832080546001818101835591855283852060ff89169101819055825160608101845281815242818601908152818501878152895489168852601b875285882084895290965293909520945185559151908401559051600290920191909155915461142f929116906124d2565b8061143981613c7b565b915050611356565b50565b61144f8383836124ec565b610ddb838383612577565b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160405160208183030381529060405280519060200120905061149f81846125a8565b9392505050565b601a60205281600052604060002081815481106114c257600080fd5b90600052602060002001600091509150505481565b336000908152601a6020908152604091829020805483518184028101840190945280845260609392830182828015610c2657602002820191906000526020600020905b81548152602001906001019080831161151a575050505050905090565b600061154283611ad4565b82106115a45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ca5565b506001600160a01b03919091166000908152600a60209081526040808320938352929052205490565b6001600160a01b0382166000908152601a6020908152604080832080548251818502810185019093528083526060949383018282801561162c57602002820191906000526020600020905b815481526020019060010190808311611618575b5050505050905060008382516116429190613bc5565b67ffffffffffffffff81111561165a5761165a613d07565b6040519080825280602002602001820160405280156116af57816020015b61169c60405180606001604052806000815260200160008152602001600081525090565b8152602001906001900390816116785790505b5090506000845b835181101561176b576001600160a01b0387166000908152601b6020526040812085519091908690849081106116ee576116ee613cf1565b60200260200101518152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201548152505083838151811061173f5761173f613cf1565b6020026020010181905250818061175590613c60565b925050808061176390613c60565b9150506116b6565b509095945050505050565b6000546001600160a01b031633146117a05760405162461bcd60e51b8152600401610ca590613ac3565b601754600160a81b900460ff166118055760405162461bcd60e51b8152602060048201526024808201527f54686520626173655552492063616e2774206265206368616e67656420616e796044820152636d6f726560e01b6064820152608401610ca5565b60008151116118455760405162461bcd60e51b815260206004820152600c60248201526b75726920697320656d70747960a01b6044820152606401610ca5565b60006018805461185490613c2b565b80601f016020809104026020016040519081016040528092919081815260200182805461188090613c2b565b80156118cd5780601f106118a2576101008083540402835291602001916118cd565b820191906000526020600020905b8154815290600101906020018083116118b057829003601f168201915b505085519394506118e993601893506020870192509050613431565b50336001600160a01b03167f92bf6a7b8937c17e6781a68d61f9fe6a5ce08604b96ca2206f311049a3a295ea8260186040516119269291906139b3565b60405180910390a25050565b6000546001600160a01b0316331461195c5760405162461bcd60e51b8152600401610ca590613ac3565b6119663347612658565b565b6000546001600160a01b031633146119925760405162461bcd60e51b8152600401610ca590613ac3565b6119666126ee565b6119a58383836124ec565b610ddb838383612781565b60006119bb600c5490565b8210611a1e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ca5565b600c8281548110611a3157611a31613cf1565b90600052602060002001549050919050565b6000818152600560205260408120546001600160a01b031680610b985760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ca5565b6060610b988260006115cd565b6018805461120390613c2b565b60006001600160a01b038216611b3f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ca5565b506001600160a01b031660009081526006602052604090205490565b6000546001600160a01b03163314611b855760405162461bcd60e51b8152600401610ca590613ac3565b611966600061279c565b6000546001600160a01b03163314611bb95760405162461bcd60e51b8152600401610ca590613ac3565b60008160ff16118015611bd15750600f548160ff1611155b611c2e5760405162461bcd60e51b815260206004820152602860248201527f546f6f206d616e7920726573657276656420746f6b656e7320746f206d696e74604482015267206174206f6e636560c01b6064820152608401610ca5565b600f54601054611c419060ff8416613b7a565b1115611c8f5760405162461bcd60e51b815260206004820181905260248201527f546f6f206d616e7920726573657276656420746f6b656e7320746f206d696e746044820152606401610ca5565b8060ff1660106000828254611ca49190613b7a565b9091555050601754611441906001600160a01b0316826127ec565b6000546001600160a01b03163314611ce95760405162461bcd60e51b8152600401610ca590613ac3565b60015415611d395760405162461bcd60e51b815260206004820152601960248201527f526f6f742077617320616c72656164792061737369676e6564000000000000006044820152606401610ca5565b600155565b6000546001600160a01b03163314611d685760405162461bcd60e51b8152600401610ca590613ac3565b611966612818565b6001600160a01b0381166000908152601a6020908152604091829020805483518184028101840190945280845260609392830182828015611dd057602002820191906000526020600020905b815481526020019060010190808311611dbc575b50505050509050919050565b606060048054610bad90613c2b565b6002600e541415611e3e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ca5565b6002600e55601754600160a01b900460ff1615611ebb5760405162461bcd60e51b815260206004820152603560248201527f546865206561726c79206d696e74696e6720697320656e61626c65642e205573604482015274329032b0b9363ca6b4b73a10333ab731ba34b7b71760591b6064820152608401610ca5565b611ec481612266565b506001600e55565b6001600160a01b038216331415611f255760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ca5565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f9b3383612893565b611fb75760405162461bcd60e51b8152600401610ca590613af8565b611fc38484848461298a565b50505050565b6000818152600560205260409020546060906001600160a01b03166120485760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ca5565b60006120526129bd565b90506000815111612072576040518060200160405280600081525061149f565b8061207c846129cc565b60405160200161208d929190613897565b6040516020818303038152906040529392505050565b6000546001600160a01b031633146120cd5760405162461bcd60e51b8152600401610ca590613ac3565b6001600160a01b0381166121325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ca5565b6114418161279c565b606061214633611aba565b905090565b6000546001600160a01b031633146121755760405162461bcd60e51b8152600401610ca590613ac3565b60008151116121bc5760405162461bcd60e51b8152602060048201526013602482015272686173682070726f6f6620697320656d70747960681b6044820152606401610ca5565b80516121cf906019906020840190613431565b5050565b60006001600160e01b0319821663780e9d6360e01b1480610b985750610b9882612aca565b600081815260076020526040902080546001600160a01b0319166001600160a01b038416908117909155819061222d82611a43565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60095460ff16156122c55760405162461bcd60e51b815260206004820152602360248201527f546865206d696e74696e67206f66206e657720746f6b656e73206973207061756044820152621cd95960ea1b6064820152608401610ca5565b60006122d0600c5490565b90506000821180156122e3575060328211155b6123555760405162461bcd60e51b815260206004820152603c60248201527f546865206d6178696d756d206e756d626572206f6620746f6b656e732074686160448201527f742063616e206265206d696e74656420776173206578636565646564000000006064820152608401610ca5565b6127106123628383613b7a565b11156123c65760405162461bcd60e51b815260206004820152602d60248201527f45786365656473206d6178696d756d20746f6b656e7320617661696c61626c6560448201526c20666f7220707572636861736560981b6064820152608401610ca5565b6123d766d529ae9e86000083612b0a565b3410156124265760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610ca5565b60005b8281101561244c5761243a33612b16565b8061244481613c60565b915050612429565b50601354349061247b906001600160a01b0316606461246c602885613ba6565b6124769190613b92565b612658565b601454612498906001600160a01b0316606461246c602885613ba6565b6015546124b5906001600160a01b0316606461246c600f85613ba6565b601654610ddb906001600160a01b0316606461246c600585613ba6565b6121cf828260405180602001604052806000815250612b9b565b6001600160a01b039283166000908152601b60208181526040808420858552825280842042600291820181905596909716808552601a8352818520805460018181018355918752848720018790558251606081018452878152808501988952808401878152928752948452828620968652959092529092209051815592519183019190915551910155565b6125813382612893565b61259d5760405162461bcd60e51b8152600401610ca590613af8565b610ddb838383612bce565b600082815b835181101561264c5760008482815181106125ca576125ca613cf1565b6020026020010151905080831161260c576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612639565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061264481613c60565b9150506125ad565b50600154149392505050565b60405182906000906001600160a01b0383169084908381818185875af1925050503d80600081146126a5576040519150601f19603f3d011682016040523d82523d6000602084013e6126aa565b606091505b5050905080611fc35760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610ca5565b60095460ff166127375760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610ca5565b6009805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610ddb83838360405180602001604052806000815250611f91565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b8160ff168160ff161015610ddb5761280683612b16565b8061281081613c7b565b9150506127ef565b60095460ff161561285e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610ca5565b6009805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127643390565b6000818152600560205260408120546001600160a01b031661290c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ca5565b600061291783611a43565b9050806001600160a01b0316846001600160a01b031614806129525750836001600160a01b031661294784610c30565b6001600160a01b0316145b8061298257506001600160a01b0380821660009081526008602090815260408083209388168352929052205460ff165b949350505050565b612995848484612bce565b6129a184848484612d79565b611fc35760405162461bcd60e51b8152600401610ca590613a71565b606060188054610bad90613c2b565b6060816129f05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a1a5780612a0481613c60565b9150612a139050600a83613b92565b91506129f4565b60008167ffffffffffffffff811115612a3557612a35613d07565b6040519080825280601f01601f191660200182016040528015612a5f576020820181803683370190505b5090505b841561298257612a74600183613bc5565b9150612a81600a86613c9b565b612a8c906030613b7a565b60f81b818381518110612aa157612aa1613cf1565b60200101906001600160f81b031916908160001a905350612ac3600a86613b92565b9450612a63565b60006001600160e01b031982166380ac58cd60e01b1480612afb57506001600160e01b03198216635b5e139f60e01b145b80610b985750610b9882612e86565b600061149f8284613ba6565b6000612b20612ec2565b6001600160a01b0383166000818152601a6020908152604080832080546001818101835591855283852001869055815160608101835286815242818501908152818401868152968652601b85528386208887529094529190932090518155905191810191909155905160029091015590506121cf82826124d2565b612ba58383613023565b612bb26000848484612d79565b610ddb5760405162461bcd60e51b8152600401610ca590613a71565b826001600160a01b0316612be182611a43565b6001600160a01b031614612c495760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ca5565b6001600160a01b038216612cab5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ca5565b612cb6838383613171565b612cc16000826121f8565b6001600160a01b0383166000908152600660205260408120805460019290612cea908490613bc5565b90915550506001600160a01b0382166000908152600660205260408120805460019290612d18908490613b7a565b909155505060008181526005602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006001600160a01b0384163b15612e7b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612dbd9033908990889088906004016138c6565b602060405180830381600087803b158015612dd757600080fd5b505af1925050508015612e07575060408051601f3d908101601f19168201909252612e049181019061379b565b60015b612e61573d808015612e35576040519150601f19603f3d011682016040523d82523d6000602084013e612e3a565b606091505b508051612e595760405162461bcd60e51b8152600401610ca590613a71565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612982565b506001949350505050565b60006301ffc9a760e01b6001600160e01b031983161480610b985750506001600160e01b03191660009081526002602052604090205460ff1690565b600080612ece600c5490565b612eda90612710613bc5565b601c546040805160208101929092526bffffffffffffffffffffffff193360601b169082015244605482015242607482015290915060009082906094016040516020818303038152906040528051906020012060001c612f3a9190613c9b565b90506000601d826127108110612f5257612f52613cf1565b015415612f7657601d826127108110612f6d57612f6d613cf1565b01549050612f79565b50805b601d612f86600185613bc5565b6127108110612f9757612f97613cf1565b0154612fc357612fa8600184613bc5565b601d836127108110612fbc57612fbc613cf1565b0155612ffa565b601d612fd0600185613bc5565b6127108110612fe157612fe1613cf1565b0154601d836127108110612ff757612ff7613cf1565b01555b601c805490600061300a83613c60565b9091555061301b9050816001613b7a565b935050505090565b6001600160a01b0382166130795760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ca5565b6000818152600560205260409020546001600160a01b0316156130de5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ca5565b6130ea60008383613171565b6001600160a01b0382166000908152600660205260408120805460019290613113908490613b7a565b909155505060008181526005602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b610ddb83838361318283838361323a565b6001600160a01b0383166131dd576131d881600c80546000838152600d60205260408120829055600182018355919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70155565b613200565b816001600160a01b0316836001600160a01b0316146132005761320083826132a1565b6001600160a01b03821661321757610ddb8161333e565b826001600160a01b0316826001600160a01b031614610ddb57610ddb82826133ed565b60095460ff1615610ddb5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610ca5565b600060016132ae84611ad4565b6132b89190613bc5565b6000838152600b602052604090205490915080821461330b576001600160a01b0384166000908152600a602090815260408083208584528252808320548484528184208190558352600b90915290208190555b506000918252600b602090815260408084208490556001600160a01b039094168352600a81528383209183525290812055565b600c5460009061335090600190613bc5565b6000838152600d6020526040812054600c805493945090928490811061337857613378613cf1565b9060005260206000200154905080600c838154811061339957613399613cf1565b6000918252602080832090910192909255828152600d9091526040808220849055858252812055600c8054806133d1576133d1613cdb565b6001900381819060005260206000200160009055905550505050565b60006133f883611ad4565b6001600160a01b039093166000908152600a602090815260408083208684528252808320859055938252600b9052919091209190915550565b82805461343d90613c2b565b90600052602060002090601f01602090048101928261345f57600085556134a5565b82601f1061347857805160ff19168380011785556134a5565b828001600101855582156134a5579182015b828111156134a557825182559160200191906001019061348a565b506134b19291506134b5565b5090565b5b808211156134b157600081556001016134b6565b600067ffffffffffffffff8311156134e4576134e4613d07565b6134f7601f8401601f1916602001613b49565b905082815283838301111561350b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461353957600080fd5b919050565b600082601f83011261354f57600080fd5b8135602067ffffffffffffffff82111561356b5761356b613d07565b8160051b61357a828201613b49565b83815282810190868401838801850189101561359557600080fd5b600093505b858410156135b857803583526001939093019291840191840161359a565b50979650505050505050565b6000602082840312156135d657600080fd5b61149f82613522565b600080604083850312156135f257600080fd5b6135fb83613522565b915061360960208401613522565b90509250929050565b60008060006060848603121561362757600080fd5b61363084613522565b925061363e60208501613522565b9150604084013590509250925092565b6000806000806080858703121561366457600080fd5b61366d85613522565b935061367b60208601613522565b925060408501359150606085013567ffffffffffffffff81111561369e57600080fd5b8501601f810187136136af57600080fd5b6136be878235602084016134ca565b91505092959194509250565b600080604083850312156136dd57600080fd5b6136e683613522565b9150602083013580151581146136fb57600080fd5b809150509250929050565b6000806040838503121561371957600080fd5b61372283613522565b946020939093013593505050565b60006020828403121561374257600080fd5b813567ffffffffffffffff81111561375957600080fd5b6129828482850161353e565b60006020828403121561377757600080fd5b5035919050565b60006020828403121561379057600080fd5b813561149f81613d1d565b6000602082840312156137ad57600080fd5b815161149f81613d1d565b6000602082840312156137ca57600080fd5b813567ffffffffffffffff8111156137e157600080fd5b8201601f810184136137f257600080fd5b612982848235602084016134ca565b6000806040838503121561381457600080fd5b82359150602083013567ffffffffffffffff81111561383257600080fd5b61383e8582860161353e565b9150509250929050565b60006020828403121561385a57600080fd5b813560ff8116811461149f57600080fd5b60008151808452613883816020860160208601613bff565b601f01601f19169290920160200192915050565b600083516138a9818460208801613bff565b8351908301906138bd818360208801613bff565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906138f99083018461386b565b9695505050505050565b602080825282518282018190526000919060409081850190868401855b8281101561394f5781518051855286810151878601528501518585015260609093019290850190600101613920565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561399457835183529284019291840191600101613978565b50909695505050505050565b60208152600061149f602083018461386b565b6040815260006139c6604083018561386b565b6020838203818501526000855481600182811c9150808316806139ea57607f831692505b858310811415613a0857634e487b7160e01b85526022600452602485fd5b828752602087019650808015613a255760018114613a3657613a61565b60ff19851688528688019550613a61565b60008b81526020902060005b85811015613a5b5781548a820152908401908801613a42565b89019650505b50939a9950505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613b7257613b72613d07565b604052919050565b60008219821115613b8d57613b8d613caf565b500190565b600082613ba157613ba1613cc5565b500490565b6000816000190483118215151615613bc057613bc0613caf565b500290565b600082821015613bd757613bd7613caf565b500390565b600060ff821660ff841680821015613bf657613bf6613caf565b90039392505050565b60005b83811015613c1a578181015183820152602001613c02565b83811115611fc35750506000910152565b600181811c90821680613c3f57607f821691505b60208210811415610f2b57634e487b7160e01b600052602260045260246000fd5b6000600019821415613c7457613c74613caf565b5060010190565b600060ff821660ff811415613c9257613c92613caf565b60010192915050565b600082613caa57613caa613cc5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461144157600080fdfea2646970667358221220a7c57524fa79a5f81fc9dffd72ad16f2627b3a2f51f8f8fd0c6de8dd2123540f64736f6c6343000805003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000b2a833a30ed68b56f595bb7df8e38b11b87bde4c00000000000000000000000021f23e44c17604df9a9e42197e1906580b8e31f20000000000000000000000002817500b31f80fb78f43df7e699d58511094b146000000000000000000000000dab3a39668a77c12b9b3f0593ebc534d5e861d340000000000000000000000006b148541b80033798a6cab79600f3f0df616b0ed000000000000000000000000000000000000000000000000000000000000000b52656170657248696c6c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045245415000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103dd5760003560e01c80635c975abb116101fd578063a22cb46511610118578063e1eff5f6116100ab578063f2fde38b1161007a578063f2fde38b14610b02578063f402fea614610b22578063f47c84c514610b42578063ff332ab714610b58578063ffe630b514610b6d576103e4565b8063e1eff5f614610786578063e985e9c514610a8d578063eb74cc7d14610ad6578063ebf0c71714610aec576103e4565b8063c002d23d116100e7578063c002d23d14610a27578063c87b56dd14610a42578063d626b45f14610a62578063dfef5f6914610a77576103e4565b8063a22cb465146109c6578063a84894b8146109e6578063b88d4fde14610a07578063bff518121461050e576103e4565b80638456cb591161019057806395d89b411161015f57806395d89b41146109505780639ea5505514610965578063a0712d6814610992578063a07de775146109a5576103e4565b80638456cb59146108dd57806386e476dd146108f25780638da5cb5b146109125780639067171414610930576103e4565b806370a08231116101cc57806370a0823114610868578063715018a614610888578063729f09531461089d5780637cb64759146108bd576103e4565b80635c975abb146107fb5780636352211e14610813578063659f3ae4146108335780636c0360eb14610853576103e4565b80631ac0c54a116102f8578063381d899a1161028b5780633f4ba83a1161025a5780633f4ba83a1461077157806341f28bf31461078657806342842e0e1461079b5780634f6ccce7146107bb57806351358ea1146107db576103e4565b8063381d899a146106ef57806339a0c6f91461071c5780633c7dc4bf1461073c5780633ccfd60b1461075c576103e4565b8063273cbaa0116102c7578063273cbaa0146106435780632f745c591461065857806331ad59551461067857806335c9c6f01461068d576103e4565b80631ac0c54a146105c357806323b872dd146105e357806325e1ac5d14610603578063270fa43214610623576103e4565b80630f80276d1161037057806315a553471161033f57806315a553471461056e578063167f662b1461058457806318160ddd146105995780631974e7c7146105ae576103e4565b80630f80276d1461050e5780630fb6c6e814610531578063100073801461054657806312065fe01461055b576103e4565b80630acb0064116103ac5780630acb0064146104a45780630d381a28146104b95780630f5d74d8146104e65780630f7309e8146104f9576103e4565b806301ffc9a7146103f357806306fdde0314610428578063081812fc1461044a578063095ea7b314610482576103e4565b366103e457005b3480156103f057600080fd5b50005b3480156103ff57600080fd5b5061041361040e36600461377e565b610b8d565b60405190151581526020015b60405180910390f35b34801561043457600080fd5b5061043d610b9e565b60405161041f91906139a0565b34801561045657600080fd5b5061046a610465366004613765565b610c30565b6040516001600160a01b03909116815260200161041f565b34801561048e57600080fd5b506104a261049d366004613706565b610cca565b005b3480156104b057600080fd5b506104a2610de0565b3480156104c557600080fd5b506104d96104d43660046135c4565b610e72565b60405161041f919061395c565b6104a26104f4366004613801565b610f31565b34801561050557600080fd5b5061043d6111f6565b34801561051a57600080fd5b50610523600581565b60405190815260200161041f565b34801561053d57600080fd5b506104a2611284565b34801561055257600080fd5b50610523603281565b34801561056757600080fd5b5047610523565b34801561057a57600080fd5b50610523600f5481565b34801561059057600080fd5b506104a2611329565b3480156105a557600080fd5b50600c54610523565b3480156105ba57600080fd5b50610523601981565b3480156105cf57600080fd5b5060135461046a906001600160a01b031681565b3480156105ef57600080fd5b506104a26105fe366004613612565b611444565b34801561060f57600080fd5b5061041361061e366004613730565b61145a565b34801561062f57600080fd5b5061052361063e366004613706565b6114a6565b34801561064f57600080fd5b506104d96114d7565b34801561066457600080fd5b50610523610673366004613706565b611537565b34801561068457600080fd5b50610523600f81565b34801561069957600080fd5b506106d46106a8366004613706565b601b60209081526000928352604080842090915290825290208054600182015460029092015490919083565b6040805193845260208401929092529082015260600161041f565b3480156106fb57600080fd5b5061070f61070a366004613706565b6115cd565b60405161041f9190613903565b34801561072857600080fd5b506104a26107373660046137b8565b611776565b34801561074857600080fd5b5060155461046a906001600160a01b031681565b34801561076857600080fd5b506104a2611932565b34801561077d57600080fd5b506104a2611968565b34801561079257600080fd5b50610523602881565b3480156107a757600080fd5b506104a26107b6366004613612565b61199a565b3480156107c757600080fd5b506105236107d6366004613765565b6119b0565b3480156107e757600080fd5b5060165461046a906001600160a01b031681565b34801561080757600080fd5b5060095460ff16610413565b34801561081f57600080fd5b5061046a61082e366004613765565b611a43565b34801561083f57600080fd5b5061070f61084e3660046135c4565b611aba565b34801561085f57600080fd5b5061043d611ac7565b34801561087457600080fd5b506105236108833660046135c4565b611ad4565b34801561089457600080fd5b506104a2611b5b565b3480156108a957600080fd5b506104a26108b8366004613848565b611b8f565b3480156108c957600080fd5b506104a26108d8366004613765565b611cbf565b3480156108e957600080fd5b506104a2611d3e565b3480156108fe57600080fd5b5060175461046a906001600160a01b031681565b34801561091e57600080fd5b506000546001600160a01b031661046a565b34801561093c57600080fd5b506104d961094b3660046135c4565b611d70565b34801561095c57600080fd5b5061043d611ddc565b34801561097157600080fd5b506105236109803660046135c4565b60126020526000908152604090205481565b6104a26109a0366004613765565b611deb565b3480156109b157600080fd5b5060175461041390600160a01b900460ff1681565b3480156109d257600080fd5b506104a26109e13660046136ca565b611ecc565b3480156109f257600080fd5b5060175461041390600160a81b900460ff1681565b348015610a1357600080fd5b506104a2610a2236600461364e565b611f91565b348015610a3357600080fd5b5061052366d529ae9e86000081565b348015610a4e57600080fd5b5061043d610a5d366004613765565b611fc9565b348015610a6e57600080fd5b50610523600a81565b348015610a8357600080fd5b5061052360115481565b348015610a9957600080fd5b50610413610aa83660046135df565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610ae257600080fd5b5061052360105481565b348015610af857600080fd5b5061052360015481565b348015610b0e57600080fd5b506104a2610b1d3660046135c4565b6120a3565b348015610b2e57600080fd5b5060145461046a906001600160a01b031681565b348015610b4e57600080fd5b5061052361271081565b348015610b6457600080fd5b5061070f61213b565b348015610b7957600080fd5b506104a2610b883660046137b8565b61214b565b6000610b98826121d3565b92915050565b606060038054610bad90613c2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd990613c2b565b8015610c265780601f10610bfb57610100808354040283529160200191610c26565b820191906000526020600020905b815481529060010190602001808311610c0957829003601f168201915b5050505050905090565b6000818152600560205260408120546001600160a01b0316610cae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610cd582611a43565b9050806001600160a01b0316836001600160a01b03161415610d435760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ca5565b336001600160a01b0382161480610d5f5750610d5f8133610aa8565b610dd15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ca5565b610ddb83836121f8565b505050565b6000546001600160a01b03163314610e0a5760405162461bcd60e51b8152600401610ca590613ac3565b601754600160a01b900460ff16610e635760405162461bcd60e51b815260206004820152601e60248201527f4561726c79206d696e74696e6720616c72656164792064697361626c656400006044820152606401610ca5565b6017805460ff60a01b19169055565b60606000610e7f83611ad4565b905080610ea05760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610ebb57610ebb613d07565b604051908082528060200260200182016040528015610ee4578160200160208202803683370190505b50905060005b82811015610e9857610efc8582611537565b828281518110610f0e57610f0e613cf1565b602090810291909101015280610f2381613c60565b915050610eea565b50919050565b6002600e541415610f845760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ca5565b6002600e5580610f938161145a565b610fee5760405162461bcd60e51b815260206004820152602660248201527f7468652070726f6f6620666f7220746869732073656e646572206973206e6f74604482015265081d985b1a5960d21b6064820152608401610ca5565b601754600160a01b900460ff166110655760405162461bcd60e51b815260206004820152603560248201527f546865206561726c79206d696e74696e672069732064697361626c65642e205560448201527439b2903a34329036b4b73a10333ab731ba34b7b71760591b6064820152608401610ca5565b600083118015611076575060198311155b6110d05760405162461bcd60e51b815260206004820152602560248201527f546f6f206d616e79206561726c7920746f6b656e7320746f206d696e74206174604482015264206f6e636560d81b6064820152608401610ca5565b336000908152601260205260409020546019906110ed9085613b7a565b111561113b5760405162461bcd60e51b815260206004820152601d60248201527f546f6f206d616e79206561726c7920746f6b656e7320746f206d696e740000006044820152606401610ca5565b620151806011544261114d9190613bc5565b116111be5760058311156111be5760405162461bcd60e51b815260206004820152603260248201527f546f206d616e7920746f6b656e7320746f206265206d696e746564206561726c6044820152717920696e207468652066697273742064617960701b6064820152608401610ca5565b33600090815260126020526040812080548592906111dd908490613b7a565b909155506111ec905083612266565b50506001600e5550565b6019805461120390613c2b565b80601f016020809104026020016040519081016040528092919081815260200182805461122f90613c2b565b801561127c5780601f106112515761010080835404028352916020019161127c565b820191906000526020600020905b81548152906001019060200180831161125f57829003601f168201915b505050505081565b6000546001600160a01b031633146112ae5760405162461bcd60e51b8152600401610ca590613ac3565b601754600160a81b900460ff1661131a5760405162461bcd60e51b815260206004820152602a60248201527f546865206f776e65722063616e2774206368616e676520746865206261736555604482015269524920616e796d6f726560b01b6064820152608401610ca5565b6017805460ff60a81b19169055565b6000546001600160a01b031633146113535760405162461bcd60e51b8152600401610ca590613ac3565b60015b60068160ff161161144157600161136c600c5490565b61137890612710613bc5565b6113829190613bc5565b601d61138f600184613bdc565b60ff1661271081106113a3576113a3613cf1565b0155601780546001600160a01b039081166000908152601a6020908152604080832080546001818101835591855283852060ff89169101819055825160608101845281815242818601908152818501878152895489168852601b875285882084895290965293909520945185559151908401559051600290920191909155915461142f929116906124d2565b8061143981613c7b565b915050611356565b50565b61144f8383836124ec565b610ddb838383612577565b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160405160208183030381529060405280519060200120905061149f81846125a8565b9392505050565b601a60205281600052604060002081815481106114c257600080fd5b90600052602060002001600091509150505481565b336000908152601a6020908152604091829020805483518184028101840190945280845260609392830182828015610c2657602002820191906000526020600020905b81548152602001906001019080831161151a575050505050905090565b600061154283611ad4565b82106115a45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ca5565b506001600160a01b03919091166000908152600a60209081526040808320938352929052205490565b6001600160a01b0382166000908152601a6020908152604080832080548251818502810185019093528083526060949383018282801561162c57602002820191906000526020600020905b815481526020019060010190808311611618575b5050505050905060008382516116429190613bc5565b67ffffffffffffffff81111561165a5761165a613d07565b6040519080825280602002602001820160405280156116af57816020015b61169c60405180606001604052806000815260200160008152602001600081525090565b8152602001906001900390816116785790505b5090506000845b835181101561176b576001600160a01b0387166000908152601b6020526040812085519091908690849081106116ee576116ee613cf1565b60200260200101518152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201548152505083838151811061173f5761173f613cf1565b6020026020010181905250818061175590613c60565b925050808061176390613c60565b9150506116b6565b509095945050505050565b6000546001600160a01b031633146117a05760405162461bcd60e51b8152600401610ca590613ac3565b601754600160a81b900460ff166118055760405162461bcd60e51b8152602060048201526024808201527f54686520626173655552492063616e2774206265206368616e67656420616e796044820152636d6f726560e01b6064820152608401610ca5565b60008151116118455760405162461bcd60e51b815260206004820152600c60248201526b75726920697320656d70747960a01b6044820152606401610ca5565b60006018805461185490613c2b565b80601f016020809104026020016040519081016040528092919081815260200182805461188090613c2b565b80156118cd5780601f106118a2576101008083540402835291602001916118cd565b820191906000526020600020905b8154815290600101906020018083116118b057829003601f168201915b505085519394506118e993601893506020870192509050613431565b50336001600160a01b03167f92bf6a7b8937c17e6781a68d61f9fe6a5ce08604b96ca2206f311049a3a295ea8260186040516119269291906139b3565b60405180910390a25050565b6000546001600160a01b0316331461195c5760405162461bcd60e51b8152600401610ca590613ac3565b6119663347612658565b565b6000546001600160a01b031633146119925760405162461bcd60e51b8152600401610ca590613ac3565b6119666126ee565b6119a58383836124ec565b610ddb838383612781565b60006119bb600c5490565b8210611a1e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ca5565b600c8281548110611a3157611a31613cf1565b90600052602060002001549050919050565b6000818152600560205260408120546001600160a01b031680610b985760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ca5565b6060610b988260006115cd565b6018805461120390613c2b565b60006001600160a01b038216611b3f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ca5565b506001600160a01b031660009081526006602052604090205490565b6000546001600160a01b03163314611b855760405162461bcd60e51b8152600401610ca590613ac3565b611966600061279c565b6000546001600160a01b03163314611bb95760405162461bcd60e51b8152600401610ca590613ac3565b60008160ff16118015611bd15750600f548160ff1611155b611c2e5760405162461bcd60e51b815260206004820152602860248201527f546f6f206d616e7920726573657276656420746f6b656e7320746f206d696e74604482015267206174206f6e636560c01b6064820152608401610ca5565b600f54601054611c419060ff8416613b7a565b1115611c8f5760405162461bcd60e51b815260206004820181905260248201527f546f6f206d616e7920726573657276656420746f6b656e7320746f206d696e746044820152606401610ca5565b8060ff1660106000828254611ca49190613b7a565b9091555050601754611441906001600160a01b0316826127ec565b6000546001600160a01b03163314611ce95760405162461bcd60e51b8152600401610ca590613ac3565b60015415611d395760405162461bcd60e51b815260206004820152601960248201527f526f6f742077617320616c72656164792061737369676e6564000000000000006044820152606401610ca5565b600155565b6000546001600160a01b03163314611d685760405162461bcd60e51b8152600401610ca590613ac3565b611966612818565b6001600160a01b0381166000908152601a6020908152604091829020805483518184028101840190945280845260609392830182828015611dd057602002820191906000526020600020905b815481526020019060010190808311611dbc575b50505050509050919050565b606060048054610bad90613c2b565b6002600e541415611e3e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ca5565b6002600e55601754600160a01b900460ff1615611ebb5760405162461bcd60e51b815260206004820152603560248201527f546865206561726c79206d696e74696e6720697320656e61626c65642e205573604482015274329032b0b9363ca6b4b73a10333ab731ba34b7b71760591b6064820152608401610ca5565b611ec481612266565b506001600e55565b6001600160a01b038216331415611f255760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ca5565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f9b3383612893565b611fb75760405162461bcd60e51b8152600401610ca590613af8565b611fc38484848461298a565b50505050565b6000818152600560205260409020546060906001600160a01b03166120485760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ca5565b60006120526129bd565b90506000815111612072576040518060200160405280600081525061149f565b8061207c846129cc565b60405160200161208d929190613897565b6040516020818303038152906040529392505050565b6000546001600160a01b031633146120cd5760405162461bcd60e51b8152600401610ca590613ac3565b6001600160a01b0381166121325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ca5565b6114418161279c565b606061214633611aba565b905090565b6000546001600160a01b031633146121755760405162461bcd60e51b8152600401610ca590613ac3565b60008151116121bc5760405162461bcd60e51b8152602060048201526013602482015272686173682070726f6f6620697320656d70747960681b6044820152606401610ca5565b80516121cf906019906020840190613431565b5050565b60006001600160e01b0319821663780e9d6360e01b1480610b985750610b9882612aca565b600081815260076020526040902080546001600160a01b0319166001600160a01b038416908117909155819061222d82611a43565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60095460ff16156122c55760405162461bcd60e51b815260206004820152602360248201527f546865206d696e74696e67206f66206e657720746f6b656e73206973207061756044820152621cd95960ea1b6064820152608401610ca5565b60006122d0600c5490565b90506000821180156122e3575060328211155b6123555760405162461bcd60e51b815260206004820152603c60248201527f546865206d6178696d756d206e756d626572206f6620746f6b656e732074686160448201527f742063616e206265206d696e74656420776173206578636565646564000000006064820152608401610ca5565b6127106123628383613b7a565b11156123c65760405162461bcd60e51b815260206004820152602d60248201527f45786365656473206d6178696d756d20746f6b656e7320617661696c61626c6560448201526c20666f7220707572636861736560981b6064820152608401610ca5565b6123d766d529ae9e86000083612b0a565b3410156124265760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610ca5565b60005b8281101561244c5761243a33612b16565b8061244481613c60565b915050612429565b50601354349061247b906001600160a01b0316606461246c602885613ba6565b6124769190613b92565b612658565b601454612498906001600160a01b0316606461246c602885613ba6565b6015546124b5906001600160a01b0316606461246c600f85613ba6565b601654610ddb906001600160a01b0316606461246c600585613ba6565b6121cf828260405180602001604052806000815250612b9b565b6001600160a01b039283166000908152601b60208181526040808420858552825280842042600291820181905596909716808552601a8352818520805460018181018355918752848720018790558251606081018452878152808501988952808401878152928752948452828620968652959092529092209051815592519183019190915551910155565b6125813382612893565b61259d5760405162461bcd60e51b8152600401610ca590613af8565b610ddb838383612bce565b600082815b835181101561264c5760008482815181106125ca576125ca613cf1565b6020026020010151905080831161260c576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612639565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061264481613c60565b9150506125ad565b50600154149392505050565b60405182906000906001600160a01b0383169084908381818185875af1925050503d80600081146126a5576040519150601f19603f3d011682016040523d82523d6000602084013e6126aa565b606091505b5050905080611fc35760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610ca5565b60095460ff166127375760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610ca5565b6009805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610ddb83838360405180602001604052806000815250611f91565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b8160ff168160ff161015610ddb5761280683612b16565b8061281081613c7b565b9150506127ef565b60095460ff161561285e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610ca5565b6009805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127643390565b6000818152600560205260408120546001600160a01b031661290c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ca5565b600061291783611a43565b9050806001600160a01b0316846001600160a01b031614806129525750836001600160a01b031661294784610c30565b6001600160a01b0316145b8061298257506001600160a01b0380821660009081526008602090815260408083209388168352929052205460ff165b949350505050565b612995848484612bce565b6129a184848484612d79565b611fc35760405162461bcd60e51b8152600401610ca590613a71565b606060188054610bad90613c2b565b6060816129f05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a1a5780612a0481613c60565b9150612a139050600a83613b92565b91506129f4565b60008167ffffffffffffffff811115612a3557612a35613d07565b6040519080825280601f01601f191660200182016040528015612a5f576020820181803683370190505b5090505b841561298257612a74600183613bc5565b9150612a81600a86613c9b565b612a8c906030613b7a565b60f81b818381518110612aa157612aa1613cf1565b60200101906001600160f81b031916908160001a905350612ac3600a86613b92565b9450612a63565b60006001600160e01b031982166380ac58cd60e01b1480612afb57506001600160e01b03198216635b5e139f60e01b145b80610b985750610b9882612e86565b600061149f8284613ba6565b6000612b20612ec2565b6001600160a01b0383166000818152601a6020908152604080832080546001818101835591855283852001869055815160608101835286815242818501908152818401868152968652601b85528386208887529094529190932090518155905191810191909155905160029091015590506121cf82826124d2565b612ba58383613023565b612bb26000848484612d79565b610ddb5760405162461bcd60e51b8152600401610ca590613a71565b826001600160a01b0316612be182611a43565b6001600160a01b031614612c495760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ca5565b6001600160a01b038216612cab5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ca5565b612cb6838383613171565b612cc16000826121f8565b6001600160a01b0383166000908152600660205260408120805460019290612cea908490613bc5565b90915550506001600160a01b0382166000908152600660205260408120805460019290612d18908490613b7a565b909155505060008181526005602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006001600160a01b0384163b15612e7b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612dbd9033908990889088906004016138c6565b602060405180830381600087803b158015612dd757600080fd5b505af1925050508015612e07575060408051601f3d908101601f19168201909252612e049181019061379b565b60015b612e61573d808015612e35576040519150601f19603f3d011682016040523d82523d6000602084013e612e3a565b606091505b508051612e595760405162461bcd60e51b8152600401610ca590613a71565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612982565b506001949350505050565b60006301ffc9a760e01b6001600160e01b031983161480610b985750506001600160e01b03191660009081526002602052604090205460ff1690565b600080612ece600c5490565b612eda90612710613bc5565b601c546040805160208101929092526bffffffffffffffffffffffff193360601b169082015244605482015242607482015290915060009082906094016040516020818303038152906040528051906020012060001c612f3a9190613c9b565b90506000601d826127108110612f5257612f52613cf1565b015415612f7657601d826127108110612f6d57612f6d613cf1565b01549050612f79565b50805b601d612f86600185613bc5565b6127108110612f9757612f97613cf1565b0154612fc357612fa8600184613bc5565b601d836127108110612fbc57612fbc613cf1565b0155612ffa565b601d612fd0600185613bc5565b6127108110612fe157612fe1613cf1565b0154601d836127108110612ff757612ff7613cf1565b01555b601c805490600061300a83613c60565b9091555061301b9050816001613b7a565b935050505090565b6001600160a01b0382166130795760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ca5565b6000818152600560205260409020546001600160a01b0316156130de5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ca5565b6130ea60008383613171565b6001600160a01b0382166000908152600660205260408120805460019290613113908490613b7a565b909155505060008181526005602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b610ddb83838361318283838361323a565b6001600160a01b0383166131dd576131d881600c80546000838152600d60205260408120829055600182018355919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70155565b613200565b816001600160a01b0316836001600160a01b0316146132005761320083826132a1565b6001600160a01b03821661321757610ddb8161333e565b826001600160a01b0316826001600160a01b031614610ddb57610ddb82826133ed565b60095460ff1615610ddb5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610ca5565b600060016132ae84611ad4565b6132b89190613bc5565b6000838152600b602052604090205490915080821461330b576001600160a01b0384166000908152600a602090815260408083208584528252808320548484528184208190558352600b90915290208190555b506000918252600b602090815260408084208490556001600160a01b039094168352600a81528383209183525290812055565b600c5460009061335090600190613bc5565b6000838152600d6020526040812054600c805493945090928490811061337857613378613cf1565b9060005260206000200154905080600c838154811061339957613399613cf1565b6000918252602080832090910192909255828152600d9091526040808220849055858252812055600c8054806133d1576133d1613cdb565b6001900381819060005260206000200160009055905550505050565b60006133f883611ad4565b6001600160a01b039093166000908152600a602090815260408083208684528252808320859055938252600b9052919091209190915550565b82805461343d90613c2b565b90600052602060002090601f01602090048101928261345f57600085556134a5565b82601f1061347857805160ff19168380011785556134a5565b828001600101855582156134a5579182015b828111156134a557825182559160200191906001019061348a565b506134b19291506134b5565b5090565b5b808211156134b157600081556001016134b6565b600067ffffffffffffffff8311156134e4576134e4613d07565b6134f7601f8401601f1916602001613b49565b905082815283838301111561350b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461353957600080fd5b919050565b600082601f83011261354f57600080fd5b8135602067ffffffffffffffff82111561356b5761356b613d07565b8160051b61357a828201613b49565b83815282810190868401838801850189101561359557600080fd5b600093505b858410156135b857803583526001939093019291840191840161359a565b50979650505050505050565b6000602082840312156135d657600080fd5b61149f82613522565b600080604083850312156135f257600080fd5b6135fb83613522565b915061360960208401613522565b90509250929050565b60008060006060848603121561362757600080fd5b61363084613522565b925061363e60208501613522565b9150604084013590509250925092565b6000806000806080858703121561366457600080fd5b61366d85613522565b935061367b60208601613522565b925060408501359150606085013567ffffffffffffffff81111561369e57600080fd5b8501601f810187136136af57600080fd5b6136be878235602084016134ca565b91505092959194509250565b600080604083850312156136dd57600080fd5b6136e683613522565b9150602083013580151581146136fb57600080fd5b809150509250929050565b6000806040838503121561371957600080fd5b61372283613522565b946020939093013593505050565b60006020828403121561374257600080fd5b813567ffffffffffffffff81111561375957600080fd5b6129828482850161353e565b60006020828403121561377757600080fd5b5035919050565b60006020828403121561379057600080fd5b813561149f81613d1d565b6000602082840312156137ad57600080fd5b815161149f81613d1d565b6000602082840312156137ca57600080fd5b813567ffffffffffffffff8111156137e157600080fd5b8201601f810184136137f257600080fd5b612982848235602084016134ca565b6000806040838503121561381457600080fd5b82359150602083013567ffffffffffffffff81111561383257600080fd5b61383e8582860161353e565b9150509250929050565b60006020828403121561385a57600080fd5b813560ff8116811461149f57600080fd5b60008151808452613883816020860160208601613bff565b601f01601f19169290920160200192915050565b600083516138a9818460208801613bff565b8351908301906138bd818360208801613bff565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906138f99083018461386b565b9695505050505050565b602080825282518282018190526000919060409081850190868401855b8281101561394f5781518051855286810151878601528501518585015260609093019290850190600101613920565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561399457835183529284019291840191600101613978565b50909695505050505050565b60208152600061149f602083018461386b565b6040815260006139c6604083018561386b565b6020838203818501526000855481600182811c9150808316806139ea57607f831692505b858310811415613a0857634e487b7160e01b85526022600452602485fd5b828752602087019650808015613a255760018114613a3657613a61565b60ff19851688528688019550613a61565b60008b81526020902060005b85811015613a5b5781548a820152908401908801613a42565b89019650505b50939a9950505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613b7257613b72613d07565b604052919050565b60008219821115613b8d57613b8d613caf565b500190565b600082613ba157613ba1613cc5565b500490565b6000816000190483118215151615613bc057613bc0613caf565b500290565b600082821015613bd757613bd7613caf565b500390565b600060ff821660ff841680821015613bf657613bf6613caf565b90039392505050565b60005b83811015613c1a578181015183820152602001613c02565b83811115611fc35750506000910152565b600181811c90821680613c3f57607f821691505b60208210811415610f2b57634e487b7160e01b600052602260045260246000fd5b6000600019821415613c7457613c74613caf565b5060010190565b600060ff821660ff811415613c9257613c92613caf565b60010192915050565b600082613caa57613caa613cc5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461144157600080fdfea2646970667358221220a7c57524fa79a5f81fc9dffd72ad16f2627b3a2f51f8f8fd0c6de8dd2123540f64736f6c63430008050033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000b2a833a30ed68b56f595bb7df8e38b11b87bde4c00000000000000000000000021f23e44c17604df9a9e42197e1906580b8e31f20000000000000000000000002817500b31f80fb78f43df7e699d58511094b146000000000000000000000000dab3a39668a77c12b9b3f0593ebc534d5e861d340000000000000000000000006b148541b80033798a6cab79600f3f0df616b0ed000000000000000000000000000000000000000000000000000000000000000b52656170657248696c6c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045245415000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): ReaperHills
Arg [1] : symbol_ (string): REAP
Arg [2] : royaltyReceiver1_ (address): 0xb2a833a30ED68B56f595Bb7df8e38B11b87Bde4c
Arg [3] : royaltyReceiver2_ (address): 0x21f23e44C17604dF9a9e42197e1906580B8e31f2
Arg [4] : royaltyReceiver3_ (address): 0x2817500b31f80fb78f43DF7E699d58511094b146
Arg [5] : royaltyReceiver4_ (address): 0xDAb3A39668a77C12B9B3f0593ebc534d5E861d34
Arg [6] : communityAddress_ (address): 0x6b148541b80033798A6CAb79600F3F0Df616B0ed

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 000000000000000000000000b2a833a30ed68b56f595bb7df8e38b11b87bde4c
Arg [3] : 00000000000000000000000021f23e44c17604df9a9e42197e1906580b8e31f2
Arg [4] : 0000000000000000000000002817500b31f80fb78f43df7e699d58511094b146
Arg [5] : 000000000000000000000000dab3a39668a77c12b9b3f0593ebc534d5e861d34
Arg [6] : 0000000000000000000000006b148541b80033798a6cab79600f3f0df616b0ed
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [8] : 52656170657248696c6c73000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 5245415000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

61341:17337:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67537:244;;;;;;;;;;-1:-1:-1;67537:244:0;;;;;:::i;:::-;;:::i;:::-;;;9999:14:1;;9992:22;9974:41;;9962:2;9947:18;67537:244:0;;;;;;;;27793:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29352:221::-;;;;;;;;;;-1:-1:-1;29352:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7806:32:1;;;7788:51;;7776:2;7761:18;29352:221:0;7743:102:1;28875:411:0;;;;;;;;;;-1:-1:-1;28875:411:0;;;;;:::i;:::-;;:::i;:::-;;69501:155;;;;;;;;;;;;;:::i;68603:534::-;;;;;;;;;;-1:-1:-1;68603:534:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;71168:946::-;;;;;;:::i;:::-;;:::i;64540:29::-;;;;;;;;;;;;;:::i;63611:55::-;;;;;;;;;;;;63665:1;63611:55;;;;;10172:25:1;;;10160:2;10145:18;63611:55:0;10127:76:1;69723:177:0;;;;;;;;;;;;;:::i;62529:52::-;;;;;;;;;;;;62579:2;62529:52;;67366:99;;;;;;;;;;-1:-1:-1;67436:21:0;67366:99;;62757:35;;;;;;;;;;;;;;;;65802:426;;;;;;;;;;;;;:::i;51666:113::-;;;;;;;;;;-1:-1:-1;51754:10:0;:17;51666:113;;62222:58;;;;;;;;;;;;62278:2;62222:58;;63748:35;;;;;;;;;;-1:-1:-1;63748:35:0;;;;-1:-1:-1;;;;;63748:35:0;;;78448:227;;;;;;;;;;-1:-1:-1;78448:227:0;;;;;:::i;:::-;;:::i;6643:183::-;;;;;;;;;;-1:-1:-1;6643:183:0;;;;;:::i;:::-;;:::i;64626:51::-;;;;;;;;;;-1:-1:-1;64626:51:0;;;;;:::i;:::-;;:::i;75619:115::-;;;;;;;;;;;;;:::i;51334:256::-;;;;;;;;;;-1:-1:-1;51334:256:0;;;;;:::i;:::-;;:::i;63461:56::-;;;;;;;;;;;;63515:2;63461:56;;64756:85;;;;;;;;;;-1:-1:-1;64756:85:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28579:25:1;;;28635:2;28620:18;;28613:34;;;;28663:18;;;28656:34;28567:2;28552:18;64756:85:0;28534:162:1;76778:545:0;;;;;;;;;;-1:-1:-1;76778:545:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;68124:340::-;;;;;;;;;;-1:-1:-1;68124:340:0;;;;;:::i;:::-;;:::i;63932:35::-;;;;;;;;;;-1:-1:-1;63932:35:0;;;;-1:-1:-1;;;;;63932:35:0;;;72188:102;;;;;;;;;;;;;:::i;66821:71::-;;;;;;;;;;;;;:::i;63167:56::-;;;;;;;;;;;;63221:2;63167:56;;77993:235;;;;;;;;;;-1:-1:-1;77993:235:0;;;;;:::i;:::-;;:::i;51856:233::-;;;;;;;;;;-1:-1:-1;51856:233:0;;;;;:::i;:::-;;:::i;64024:35::-;;;;;;;;;;-1:-1:-1;64024:35:0;;;;-1:-1:-1;;;;;64024:35:0;;;47020:86;;;;;;;;;;-1:-1:-1;47091:7:0;;;;47020:86;;27487:239;;;;;;;;;;-1:-1:-1;27487:239:0;;;;;:::i;:::-;;:::i;76353:182::-;;;;;;;;;;-1:-1:-1;76353:182:0;;;;;:::i;:::-;;:::i;64435:26::-;;;;;;;;;;;;;:::i;27217:208::-;;;;;;;;;;-1:-1:-1;27217:208:0;;;;;:::i;:::-;;:::i;5014:94::-;;;;;;;;;;;;;:::i;72362:443::-;;;;;;;;;;-1:-1:-1;72362:443:0;;;;;:::i;:::-;;:::i;6045:207::-;;;;;;;;;;-1:-1:-1;6045:207:0;;;;;:::i;:::-;;:::i;66613:67::-;;;;;;;;;;;;;:::i;64116:31::-;;;;;;;;;;-1:-1:-1;64116:31:0;;;;-1:-1:-1;;;;;64116:31:0;;;4363:87;;;;;;;;;;-1:-1:-1;4409:7:0;4436:6;-1:-1:-1;;;;;4436:6:0;4363:87;;75859:160;;;;;;;;;;-1:-1:-1;75859:160:0;;;;;:::i;:::-;;:::i;27962:104::-;;;;;;;;;;;;;:::i;62926:59::-;;;;;;;;;;-1:-1:-1;62926:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;72916:249;;;;;;:::i;:::-;;:::i;64237:31::-;;;;;;;;;;-1:-1:-1;64237:31:0;;;;-1:-1:-1;;;64237:31:0;;;;;;29645:295;;;;;;;;;;-1:-1:-1;29645:295:0;;;;;:::i;:::-;;:::i;64334:35::-;;;;;;;;;;-1:-1:-1;64334:35:0;;;;-1:-1:-1;;;64334:35:0;;;;;;30908:328;;;;;;;;;;-1:-1:-1;30908:328:0;;;;;:::i;:::-;;:::i;62624:54::-;;;;;;;;;;;;62661:17;62624:54;;28137:334;;;;;;;;;;-1:-1:-1;28137:334:0;;;;;:::i;:::-;;:::i;63026:49::-;;;;;;;;;;;;63073:2;63026:49;;62886:31;;;;;;;;;;;;;;;;30011:164;;;;;;;;;;-1:-1:-1;30011:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30132:25:0;;;30108:4;30132:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30011:164;62838:39;;;;;;;;;;;;;;;;5922:19;;;;;;;;;;;;;;;;5263:192;;;;;;;;;;-1:-1:-1;5263:192:0;;;;;:::i;:::-;;:::i;63840:35::-;;;;;;;;;;-1:-1:-1;63840:35:0;;;;-1:-1:-1;;;;;63840:35:0;;;62091:42;;;;;;;;;;;;62128:5;62091:42;;76087:125;;;;;;;;;;;;;:::i;69264:176::-;;;;;;;;;;-1:-1:-1;69264:176:0;;;;;:::i;:::-;;:::i;67537:244::-;67708:4;67737:36;67761:11;67737:23;:36::i;:::-;67730:43;67537:244;-1:-1:-1;;67537:244:0:o;27793:100::-;27847:13;27880:5;27873:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27793:100;:::o;29352:221::-;29428:7;32835:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32835:16:0;29448:73;;;;-1:-1:-1;;;29448:73:0;;22213:2:1;29448:73:0;;;22195:21:1;22252:2;22232:18;;;22225:30;22291:34;22271:18;;;22264:62;-1:-1:-1;;;22342:18:1;;;22335:42;22394:19;;29448:73:0;;;;;;;;;-1:-1:-1;29541:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29541:24:0;;29352:221::o;28875:411::-;28956:13;28972:23;28987:7;28972:14;:23::i;:::-;28956:39;;29020:5;-1:-1:-1;;;;;29014:11:0;:2;-1:-1:-1;;;;;29014:11:0;;;29006:57;;;;-1:-1:-1;;;29006:57:0;;25277:2:1;29006:57:0;;;25259:21:1;25316:2;25296:18;;;25289:30;25355:34;25335:18;;;25328:62;-1:-1:-1;;;25406:18:1;;;25399:31;25447:19;;29006:57:0;25249:223:1;29006:57:0;3225:10;-1:-1:-1;;;;;29098:21:0;;;;:62;;-1:-1:-1;29123:37:0;29140:5;3225:10;30011:164;:::i;29123:37::-;29076:168;;;;-1:-1:-1;;;29076:168:0;;19084:2:1;29076:168:0;;;19066:21:1;19123:2;19103:18;;;19096:30;19162:34;19142:18;;;19135:62;19233:26;19213:18;;;19206:54;19277:19;;29076:168:0;19056:246:1;29076:168:0;29257:21;29266:2;29270:7;29257:8;:21::i;:::-;28945:341;28875:411;;:::o;69501:155::-;4409:7;4436:6;-1:-1:-1;;;;;4436:6:0;3225:10;4583:23;4575:68;;;;-1:-1:-1;;;4575:68:0;;;;;;;:::i;:::-;69570:12:::1;::::0;-1:-1:-1;;;69570:12:0;::::1;;;69562:55;;;::::0;-1:-1:-1;;;69562:55:0;;24918:2:1;69562:55:0::1;::::0;::::1;24900:21:1::0;24957:2;24937:18;;;24930:30;24996:32;24976:18;;;24969:60;25046:18;;69562:55:0::1;24890:180:1::0;69562:55:0::1;69628:12;:20:::0;;-1:-1:-1;;;;69628:20:0::1;::::0;;69501:155::o;68603:534::-;68692:16;68726:18;68747:17;68757:6;68747:9;:17::i;:::-;68726:38;-1:-1:-1;68779:15:0;68775:355;;68818:16;;;68832:1;68818:16;;;;;;;;;;;-1:-1:-1;68811:23:0;68603:534;-1:-1:-1;;;68603:534:0:o;68775:355::-;68867:23;68907:10;68893:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68893:25:0;;68867:51;;68933:13;68961:130;68985:10;68977:5;:18;68961:130;;;69041:34;69061:6;69069:5;69041:19;:34::i;:::-;69025:6;69032:5;69025:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;68997:7;;;;:::i;:::-;;;;68961:130;;68775:355;68715:422;68603:534;;;:::o;71168:946::-;60303:1;60899:7;;:19;;60891:63;;;;-1:-1:-1;;;60891:63:0;;27209:2:1;60891:63:0;;;27191:21:1;27248:2;27228:18;;;27221:30;27287:33;27267:18;;;27260:61;27338:18;;60891:63:0;27181:181:1;60891:63:0;60303:1;61032:7;:18;71304:5;6444:19:::1;71304:5:::0;6444:12:::1;:19::i;:::-;6436:70;;;::::0;-1:-1:-1;;;6436:70:0;;16024:2:1;6436:70:0::1;::::0;::::1;16006:21:1::0;16063:2;16043:18;;;16036:30;16102:34;16082:18;;;16075:62;-1:-1:-1;;;16153:18:1;;;16146:36;16199:19;;6436:70:0::1;15996:228:1::0;6436:70:0::1;71349:12:::2;::::0;-1:-1:-1;;;71349:12:0;::::2;;;71327:115;;;::::0;-1:-1:-1;;;71327:115:0;;27975:2:1;71327:115:0::2;::::0;::::2;27957:21:1::0;28014:2;27994:18;;;27987:30;28053:34;28033:18;;;28026:62;-1:-1:-1;;;28104:18:1;;;28097:51;28165:19;;71327:115:0::2;27947:243:1::0;71327:115:0::2;71484:1;71475:6;:10;:53;;;;;62278:2;71489:6;:39;;71475:53;71453:140;;;::::0;-1:-1:-1;;;71453:140:0;;27569:2:1;71453:140:0::2;::::0;::::2;27551:21:1::0;27608:2;27588:18;;;27581:30;27647:34;27627:18;;;27620:62;-1:-1:-1;;;27698:18:1;;;27691:35;27743:19;;71453:140:0::2;27541:227:1::0;71453:140:0::2;71660:10;71635:36;::::0;;;:24:::2;:36;::::0;;;;;62278:2:::2;::::0;71626:45:::2;::::0;:6;:45:::2;:::i;:::-;:95;;71604:174;;;::::0;-1:-1:-1;;;71604:174:0;;13198:2:1;71604:174:0::2;::::0;::::2;13180:21:1::0;13237:2;13217:18;;;13210:30;13276:31;13256:18;;;13249:59;13325:18;;71604:174:0::2;13170:179:1::0;71604:174:0::2;71831:5;71811:16;;71793:15;:34;;;;:::i;:::-;:43;71789:237;;62445:1;71879:6;:49;;71853:161;;;::::0;-1:-1:-1;;;71853:161:0;;16788:2:1;71853:161:0::2;::::0;::::2;16770:21:1::0;16827:2;16807:18;;;16800:30;16866:34;16846:18;;;16839:62;-1:-1:-1;;;16917:18:1;;;16910:48;16975:19;;71853:161:0::2;16760:240:1::0;71853:161:0::2;72061:10;72036:36;::::0;;;:24:::2;:36;::::0;;;;:46;;72076:6;;72036:36;:46:::2;::::0;72076:6;;72036:46:::2;:::i;:::-;::::0;;;-1:-1:-1;72093:13:0::2;::::0;-1:-1:-1;72099:6:0;72093:5:::2;:13::i;:::-;-1:-1:-1::0;;60259:1:0;61211:7;:22;-1:-1:-1;71168:946:0:o;64540:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69723:177::-;4409:7;4436:6;-1:-1:-1;;;;;4436:6:0;3225:10;4583:23;4575:68;;;;-1:-1:-1;;;4575:68:0;;;;;;;:::i;:::-;69794:16:::1;::::0;-1:-1:-1;;;69794:16:0;::::1;;;69786:71;;;::::0;-1:-1:-1;;;69786:71:0;;15199:2:1;69786:71:0::1;::::0;::::1;15181:21:1::0;15238:2;15218:18;;;15211:30;15277:34;15257:18;;;15250:62;-1:-1:-1;;;15328:18:1;;;15321:40;15378:19;;69786:71:0::1;15171:232:1::0;69786:71:0::1;69868:16;:24:::0;;-1:-1:-1;;;;69868:24:0::1;::::0;;69723:177::o;65802:426::-;4409:7;4436:6;-1:-1:-1;;;;;4436:6:0;3225:10;4583:23;4575:68;;;;-1:-1:-1;;;4575:68:0;;;;;;;:::i;:::-;65868:1:::1;65852:369;65877:1;65871:2;:7;;;65852:369;;65948:1;65932:13;51754:10:::0;:17;;51666:113;65932:13:::1;65919:26;::::0;62128:5:::1;65919:26;:::i;:::-;:30;;;;:::i;:::-;65901:7;65909:6;65914:1;65909:2:::0;:6:::1;:::i;:::-;65901:15;;;;;;;;;:::i;:::-;;:48:::0;65979:16:::1;::::0;;-1:-1:-1;;;;;65979:16:0;;::::1;65964:32;::::0;;;:14:::1;:32;::::0;;;;;;;:41;;65979:16;65964:41;;::::1;::::0;;;;;;;;::::1;::::0;::::1;::::0;::::1;::::0;;;66063:100;;::::1;::::0;::::1;::::0;;;;;66113:15:::1;66063:100:::0;;::::1;::::0;;;;;;;;;66039:16;;;::::1;66020:36:::0;;:18:::1;:36:::0;;;;;:40;;;;;;;;;;:143;;;;;;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;66188:16;;66178:31:::1;::::0;66188:16;::::1;::::0;66178:9:::1;:31::i;:::-;65880:4:::0;::::1;::::0;::::1;:::i;:::-;;;;65852:369;;;;65802:426::o:0;78448:227::-;78582:37;78601:4;78607:2;78611:7;78582:18;:37::i;:::-;78630;78649:4;78655:2;78659:7;78630:18;:37::i;6643:183::-;6752:28;;-1:-1:-1;;6769:10:0;6190:2:1;6186:15;6182:53;6752:28:0;;;6170:66:1;6710:4:0;;;;6252:12:1;;6752:28:0;;;;;;;;;;;;6742:39;;;;;;6727:54;;6799:19;6806:4;6812:5;6799:6;:19::i;:::-;6792:26;6643:183;-1:-1:-1;;;6643:183:0:o;64626:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;75619:115::-;75715:10;75700:26;;;;:14;:26;;;;;;;;;75693:33;;;;;;;;;;;;;;;;;75664:16;;75693:33;;;75700:26;75693:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75619:115;:::o;51334:256::-;51431:7;51467:23;51484:5;51467:16;:23::i;:::-;51459:5;:31;51451:87;;;;-1:-1:-1;;;51451:87:0;;13556:2:1;51451:87:0;;;13538:21:1;13595:2;13575:18;;;13568:30;13634:34;13614:18;;;13607:62;-1:-1:-1;;;13685:18:1;;;13678:41;13736:19;;51451:87:0;13528:233:1;51451:87:0;-1:-1:-1;;;;;;51556:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;51334:256::o;76778:545::-;-1:-1:-1;;;;;76960:22:0;;76931:26;76960:22;;;:14;:22;;;;;;;;76931:51;;;;;;;;;;;;;;;;;76894:19;;76931:26;:51;;76960:22;76931:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76993:27;77073:5;77054:9;:16;:24;;;;:::i;:::-;77023:66;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;77023:66:0;;;;;;;;;;;;;;;;-1:-1:-1;76993:96:0;-1:-1:-1;77100:15:0;77147:5;77130:161;77158:9;:16;77154:1;:20;77130:161;;;-1:-1:-1;;;;;77215:26:0;;;;;;:18;:26;;;;;77242:12;;77215:26;;;77242:9;;77252:1;;77242:12;;;;;;:::i;:::-;;;;;;;77215:40;;;;;;;;;;;77196:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;77204;77196:16;;;;;;;;:::i;:::-;;;;;;:59;;;;77270:9;;;;;:::i;:::-;;;;77176:3;;;;;:::i;:::-;;;;77130:161;;;-1:-1:-1;77308:7:0;;76778:545;-1:-1:-1;;;;;76778:545:0:o;68124:340::-;4409:7;4436:6;-1:-1:-1;;;;;4436:6:0;3225:10;4583:23;4575:68;;;;-1:-1:-1;;;4575:68:0;;;;;;;:::i;:::-;68202:16:::1;::::0;-1:-1:-1;;;68202:16:0;::::1;;;68194:65;;;::::0;-1:-1:-1;;;68194:65:0;;14387:2:1;68194:65:0::1;::::0;::::1;14369:21:1::0;14426:2;14406:18;;;14399:30;14465:34;14445:18;;;14438:62;-1:-1:-1;;;14516:18:1;;;14509:34;14560:19;;68194:65:0::1;14359:226:1::0;68194:65:0::1;68298:1;68284:3;68278:17;:21;68270:46;;;::::0;-1:-1:-1;;;68270:46:0;;22626:2:1;68270:46:0::1;::::0;::::1;22608:21:1::0;22665:2;22645:18;;;22638:30;-1:-1:-1;;;22684:18:1;;;22677:42;22736:18;;68270:46:0::1;22598:162:1::0;68270:46:0::1;68327:28;68358:7;68327:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;68376:13:0;;68327:38;;-1:-1:-1;68376:13:0::1;::::0;:7:::1;::::0;-1:-1:-1;68376:13:0::1;::::0;::::1;::::0;-1:-1:-1;68376:13:0;-1:-1:-1;68376:13:0::1;:::i;:::-;;68420:10;-1:-1:-1::0;;;;;68405:51:0::1;;68432:14;68448:7;68405:51;;;;;;;:::i;:::-;;;;;;;;68183:281;68124:340:::0;:::o;72188:102::-;4409:7;4436:6;-1:-1:-1;;;;;4436:6:0;3225:10;4583:23;4575:68;;;;-1:-1:-1;;;4575:68:0;;;;;;;:::i;:::-;72236:46:::1;72248:10;72260:21;72236:11;:46::i;:::-;72188:102::o:0;66821:71::-;4409:7;4436:6;-1:-1:-1;;;;;4436:6:0;3225:10;4583:23;4575:68;;;;-1:-1:-1;;;4575:68:0;;;;;;;:::i;:::-;66868:16:::1;:14;:16::i;77993:235::-:0;78131:37;78150:4;78156:2;78160:7;78131:18;:37::i;:::-;78179:41;78202:4;78208:2;78212:7;78179:22;:41::i;51856:233::-;51931:7;51967:30;51754:10;:17;;51666:113;51967:30;51959:5;:38;51951:95;;;;-1:-1:-1;;;51951:95:0;;26796:2:1;51951:95:0;;;26778:21:1;26835:2;26815:18;;;26808:30;26874:34;26854:18;;;26847:62;-1:-1:-1;;;26925:18:1;;;26918:42;26977:19;;51951:95:0;26768:234:1;51951:95:0;52064:10;52075:5;52064:17;;;;;;;;:::i;:::-;;;;;;;;;52057:24;;51856:233;;;:::o;27487:239::-;27559:7;27595:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27595:16:0;27630:19;27622:73;;;;-1:-1:-1;;;27622:73:0;;19920:2:1;27622:73:0;;;19902:21:1;19959:2;19939:18;;;19932:30;19998:34;19978:18;;;19971:62;-1:-1:-1;;;20049:18:1;;;20042:39;20098:19;;27622:73:0;19892:231:1;76353:182:0;76445:19;76489:38;76517:6;76525:1;76489:27;:38::i;64435:26::-;;;;;;;:::i;27217:208::-;27289:7;-1:-1:-1;;;;;27317:19:0;;27309:74;;;;-1:-1:-1;;;27309:74:0;;19509:2:1;27309:74:0;;;19491:21:1;19548:2;19528:18;;;19521:30;19587:34;19567:18;;;19560:62;-1:-1:-1;;;19638:18:1;;;19631:40;19688:19;;27309:74:0;19481:232:1;27309:74:0;-1:-1:-1;;;;;;27401:16:0;;;;;:9;:16;;;;;;;27217:208::o;5014:94::-;4409:7;4436:6;-1:-1:-1;;;;;4436:6:0;3225:10;4583:23;4575:68;;;;-1:-1:-1;;;4575:68:0;;;;;;;:::i;:::-;5079:21:::1;5097:1;5079:9;:21::i;72362:443::-:0;4409:7;4436:6;-1:-1:-1;;;;;4436:6:0;3225:10;4583:23;4575:68;;;;-1:-1:-1;;;4575:68:0;;;;;;;:::i;:::-;72468:1:::1;72459:6;:10;;;:38;;;;;72483:14;;72473:6;:24;;;;72459:38;72437:128;;;::::0;-1:-1:-1;;;72437:128:0;;20691:2:1;72437:128:0::1;::::0;::::1;20673:21:1::0;20730:2;20710:18;;;20703:30;20769:34;20749:18;;;20742:62;-1:-1:-1;;;20820:18:1;;;20813:38;20868:19;;72437:128:0::1;20663:230:1::0;72437:128:0::1;72631:14;::::0;72607:20:::1;::::0;72598:29:::1;::::0;::::1;::::0;::::1;;:::i;:::-;:47;;72576:129;;;::::0;-1:-1:-1;;;72576:129:0;;20330:2:1;72576:129:0::1;::::0;::::1;20312:21:1::0;;;20349:18;;;20342:30;20408:34;20388:18;;;20381:62;20460:18;;72576:129:0::1;20302:182:1::0;72576:129:0::1;72740:6;72716:30;;:20;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;72772:16:0::1;::::0;72757:40:::1;::::0;-1:-1:-1;;;;;72772:16:0::1;72790:6:::0;72757:14:::1;:40::i;6045:207::-:0;4409:7;4436:6;-1:-1:-1;;;;;4436:6:0;3225:10;4583:23;4575:68;;;;-1:-1:-1;;;4575:68:0;;;;;;;:::i;:::-;6172:4:::1;::::0;:19;6164:57:::1;;;::::0;-1:-1:-1;;;6164:57:0;;25679:2:1;6164:57:0::1;::::0;::::1;25661:21:1::0;25718:2;25698:18;;;25691:30;25757:27;25737:18;;;25730:55;25802:18;;6164:57:0::1;25651:175:1::0;6164:57:0::1;6232:4;:12:::0;6045:207::o;66613:67::-;4409:7;4436:6;-1:-1:-1;;;;;4436:6:0;3225:10;4583:23;4575:68;;;;-1:-1:-1;;;4575:68:0;;;;;;;:::i;:::-;66658:14:::1;:12;:14::i;75859:160::-:0;-1:-1:-1;;;;;75989:22:0;;;;;;:14;:22;;;;;;;;;75982:29;;;;;;;;;;;;;;;;;75948:16;;75982:29;;;75989:22;75982:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75859:160;;;:::o;27962:104::-;28018:13;28051:7;28044:14;;;;;:::i;72916:249::-;60303:1;60899:7;;:19;;60891:63;;;;-1:-1:-1;;;60891:63:0;;27209:2:1;60891:63:0;;;27191:21:1;27248:2;27228:18;;;27221:30;27287:33;27267:18;;;27260:61;27338:18;;60891:63:0;27181:181:1;60891:63:0;60303:1;61032:7;:18;73040:12:::1;::::0;-1:-1:-1;;;73040:12:0;::::1;;;73039:13;73017:116;;;::::0;-1:-1:-1;;;73017:116:0;;24496:2:1;73017:116:0::1;::::0;::::1;24478:21:1::0;24535:2;24515:18;;;24508:30;24574:34;24554:18;;;24547:62;-1:-1:-1;;;24625:18:1;;;24618:51;24686:19;;73017:116:0::1;24468:243:1::0;73017:116:0::1;73144:13;73150:6;73144:5;:13::i;:::-;-1:-1:-1::0;60259:1:0;61211:7;:22;72916:249::o;29645:295::-;-1:-1:-1;;;;;29748:24:0;;3225:10;29748:24;;29740:62;;;;-1:-1:-1;;;29740:62:0;;17612:2:1;29740:62:0;;;17594:21:1;17651:2;17631:18;;;17624:30;17690:27;17670:18;;;17663:55;17735:18;;29740:62:0;17584:175:1;29740:62:0;3225:10;29815:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29815:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29815:53:0;;;;;;;;;;29884:48;;9974:41:1;;;29815:42:0;;3225:10;29884:48;;9947:18:1;29884:48:0;;;;;;;29645:295;;:::o;30908:328::-;31083:41;3225:10;31116:7;31083:18;:41::i;:::-;31075:103;;;;-1:-1:-1;;;31075:103:0;;;;;;;:::i;:::-;31189:39;31203:4;31209:2;31213:7;31222:5;31189:13;:39::i;:::-;30908:328;;;;:::o;28137:334::-;32811:4;32835:16;;;:7;:16;;;;;;28210:13;;-1:-1:-1;;;;;32835:16:0;28236:76;;;;-1:-1:-1;;;28236:76:0;;23738:2:1;28236:76:0;;;23720:21:1;23777:2;23757:18;;;23750:30;23816:34;23796:18;;;23789:62;-1:-1:-1;;;23867:18:1;;;23860:45;23922:19;;28236:76:0;23710:237:1;28236:76:0;28325:21;28349:10;:8;:10::i;:::-;28325:34;;28401:1;28383:7;28377:21;:25;:86;;;;;;;;;;;;;;;;;28429:7;28438:18;:7;:16;:18::i;:::-;28412:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28370:93;28137:334;-1:-1:-1;;;28137:334:0:o;5263:192::-;4409:7;4436:6;-1:-1:-1;;;;;4436:6:0;3225:10;4583:23;4575:68;;;;-1:-1:-1;;;4575:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5352:22:0;::::1;5344:73;;;::::0;-1:-1:-1;;;5344:73:0;;14792:2:1;5344:73:0::1;::::0;::::1;14774:21:1::0;14831:2;14811:18;;;14804:30;14870:34;14850:18;;;14843:62;-1:-1:-1;;;14921:18:1;;;14914:36;14967:19;;5344:73:0::1;14764:228:1::0;5344:73:0::1;5428:19;5438:8;5428:9;:19::i;76087:125::-:0;76135:19;76174:30;76193:10;76174:18;:30::i;:::-;76167:37;;76087:125;:::o;69264:176::-;4409:7;4436:6;-1:-1:-1;;;;;4436:6:0;3225:10;4583:23;4575:68;;;;-1:-1:-1;;;4575:68:0;;;;;;;:::i;:::-;69374:1:::1;69354:9;69348:23;:27;69340:59;;;::::0;-1:-1:-1;;;69340:59:0;;21865:2:1;69340:59:0::1;::::0;::::1;21847:21:1::0;21904:2;21884:18;;;21877:30;-1:-1:-1;;;21923:18:1;;;21916:49;21982:18;;69340:59:0::1;21837:169:1::0;69340:59:0::1;69410:22:::0;;::::1;::::0;:10:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;69264:176:::0;:::o;51026:224::-;51128:4;-1:-1:-1;;;;;;51152:50:0;;-1:-1:-1;;;51152:50:0;;:90;;;51206:36;51230:11;51206:23;:36::i;36728:174::-;36803:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36803:29:0;-1:-1:-1;;;;;36803:29:0;;;;;;;;:24;;36857:23;36803:24;36857:14;:23::i;:::-;-1:-1:-1;;;;;36848:46:0;;;;;;;;;;;36728:174;;:::o;73276:1239::-;47091:7;;;;73335:9;73327:57;;;;-1:-1:-1;;;73327:57:0;;21100:2:1;73327:57:0;;;21082:21:1;21139:2;21119:18;;;21112:30;21178:34;21158:18;;;21151:62;-1:-1:-1;;;21229:18:1;;;21222:33;21272:19;;73327:57:0;21072:225:1;73327:57:0;73395:19;73417:13;51754:10;:17;;51666:113;73417:13;73395:35;;73474:1;73465:6;:10;:47;;;;;62579:2;73479:6;:33;;73465:47;73443:157;;;;-1:-1:-1;;;73443:157:0;;12769:2:1;73443:157:0;;;12751:21:1;12808:2;12788:18;;;12781:30;12847:34;12827:18;;;12820:62;12918:30;12898:18;;;12891:58;12966:19;;73443:157:0;12741:250:1;73443:157:0;62128:5;73633:20;73647:6;73633:11;:20;:::i;:::-;:34;;73611:129;;;;-1:-1:-1;;;73611:129:0;;15610:2:1;73611:129:0;;;15592:21:1;15649:2;15629:18;;;15622:30;15688:34;15668:18;;;15661:62;-1:-1:-1;;;15739:18:1;;;15732:43;15792:19;;73611:129:0;15582:235:1;73611:129:0;73786:22;62661:17;73801:6;73786:14;:22::i;:::-;73773:9;:35;;73751:116;;;;-1:-1:-1;;;73751:116:0;;17966:2:1;73751:116:0;;;17948:21:1;18005:2;17985:18;;;17978:30;18044:33;18024:18;;;18017:61;18095:18;;73751:116:0;17938:181:1;73751:116:0;73885:9;73880:86;73904:6;73900:1;:10;73880:86;;;73932:22;73943:10;73932;:22::i;:::-;73912:3;;;;:::i;:::-;;;;73880:86;;;-1:-1:-1;74040:20:0;;73994:9;;74014:115;;-1:-1:-1;;;;;74040:20:0;74115:3;74076:35;63221:2;73994:9;74076:35;:::i;:::-;74075:43;;;;:::i;:::-;74014:11;:115::i;:::-;74166:20;;74140:115;;-1:-1:-1;;;;;74166:20:0;74241:3;74202:35;63368:2;74202:5;:35;:::i;74140:115::-;74292:20;;74266:115;;-1:-1:-1;;;;;74292:20:0;74367:3;74328:35;63515:2;74328:5;:35;:::i;74266:115::-;74418:20;;74392:115;;-1:-1:-1;;;;;74418:20:0;74493:3;74454:35;63665:1;74454:5;:35;:::i;33730:110::-;33806:26;33816:2;33820:7;33806:26;;;;;;;;;;;;:9;:26::i;77398:371::-;-1:-1:-1;;;;;77523:24:0;;;;;;;:18;:24;;;;;;;;:33;;;;;;;;77567:15;77523:41;;;;:59;;;77595:18;;;;;;;:14;:18;;;;;:32;;;;;;;;;;;;;;;;;;77672:89;;;;;;;;;;;;;;;;;;;;;;77638:22;;;;;;;;;:31;;;;;;;;;;:123;;;;;;;;;;;;;;;;;77398:371::o;30242:339::-;30437:41;3225:10;30470:7;30437:18;:41::i;:::-;30429:103;;;;-1:-1:-1;;;30429:103:0;;;;;;;:::i;:::-;30545:28;30555:4;30561:2;30565:7;30545:9;:28::i;7168:885::-;7263:4;7308;7263;7325:605;7349:5;:12;7345:1;:16;7325:605;;;7383:20;7406:5;7412:1;7406:8;;;;;;;;:::i;:::-;;;;;;;7383:31;;7451:12;7435;:28;7431:488;;7610:44;;;;;;6432:19:1;;;6467:12;;;6460:28;;;6504:12;;7610:44:0;;;;;;;;;;;;7578:95;;;;;;7563:110;;7431:488;;;7840:44;;;;;;6432:19:1;;;6467:12;;;6460:28;;;6504:12;;7840:44:0;;;;;;;;;;;;7808:95;;;;;;7793:110;;7431:488;-1:-1:-1;7363:3:0;;;;:::i;:::-;;;;7325:605;;;-1:-1:-1;8041:4:0;;8025:20;;7168:885;-1:-1:-1;;;7168:885:0:o;75335:212::-;75467:25;;75433:3;;75404:18;;-1:-1:-1;;;;;75467:7:0;;;75482:5;;75404:18;75467:25;75404:18;75467:25;75482:5;75467:7;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75448:44;;;75511:7;75503:36;;;;-1:-1:-1;;;75503:36:0;;26033:2:1;75503:36:0;;;26015:21:1;26072:2;26052:18;;;26045:30;-1:-1:-1;;;26091:18:1;;;26084:46;26147:18;;75503:36:0;26005:166:1;48079:120:0;47091:7;;;;47615:41;;;;-1:-1:-1;;;47615:41:0;;12420:2:1;47615:41:0;;;12402:21:1;12459:2;12439:18;;;12432:30;-1:-1:-1;;;12478:18:1;;;12471:50;12538:18;;47615:41:0;12392:170:1;47615:41:0;48138:7:::1;:15:::0;;-1:-1:-1;;48138:15:0::1;::::0;;48169:22:::1;3225:10:::0;48178:12:::1;48169:22;::::0;-1:-1:-1;;;;;7806:32:1;;;7788:51;;7776:2;7761:18;48169:22:0::1;;;;;;;48079:120::o:0;30652:185::-;30790:39;30807:4;30813:2;30817:7;30790:39;;;;;;;;;;;;:16;:39::i;5463:173::-;5519:16;5538:6;;-1:-1:-1;;;;;5555:17:0;;;-1:-1:-1;;;;;;5555:17:0;;;;;;5588:40;;5538:6;;;;;;;5588:40;;5519:16;5588:40;5508:128;5463:173;:::o;75005:143::-;75075:7;75070:71;75092:1;75088:5;;:1;:5;;;75070:71;;;75115:14;75126:2;75115:10;:14::i;:::-;75095:3;;;;:::i;:::-;;;;75070:71;;47820:118;47091:7;;;;47345:9;47337:38;;;;-1:-1:-1;;;47337:38:0;;18739:2:1;47337:38:0;;;18721:21:1;18778:2;18758:18;;;18751:30;-1:-1:-1;;;18797:18:1;;;18790:46;18853:18;;47337:38:0;18711:166:1;47337:38:0;47880:7:::1;:14:::0;;-1:-1:-1;;47880:14:0::1;47890:4;47880:14;::::0;;47910:20:::1;47917:12;3225:10:::0;;3145:98;33040:348;33133:4;32835:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32835:16:0;33150:73;;;;-1:-1:-1;;;33150:73:0;;18326:2:1;33150:73:0;;;18308:21:1;18365:2;18345:18;;;18338:30;18404:34;18384:18;;;18377:62;-1:-1:-1;;;18455:18:1;;;18448:42;18507:19;;33150:73:0;18298:234:1;33150:73:0;33234:13;33250:23;33265:7;33250:14;:23::i;:::-;33234:39;;33303:5;-1:-1:-1;;;;;33292:16:0;:7;-1:-1:-1;;;;;33292:16:0;;:51;;;;33336:7;-1:-1:-1;;;;;33312:31:0;:20;33324:7;33312:11;:20::i;:::-;-1:-1:-1;;;;;33312:31:0;;33292:51;:87;;;-1:-1:-1;;;;;;30132:25:0;;;30108:4;30132:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33347:32;33284:96;33040:348;-1:-1:-1;;;;33040:348:0:o;32118:315::-;32275:28;32285:4;32291:2;32295:7;32275:9;:28::i;:::-;32322:48;32345:4;32351:2;32355:7;32364:5;32322:22;:48::i;:::-;32314:111;;;;-1:-1:-1;;;32314:111:0;;;;;;;:::i;67920:100::-;67972:13;68005:7;67998:14;;;;;:::i;22783:723::-;22839:13;23060:10;23056:53;;-1:-1:-1;;23087:10:0;;;;;;;;;;;;-1:-1:-1;;;23087:10:0;;;;;22783:723::o;23056:53::-;23134:5;23119:12;23175:78;23182:9;;23175:78;;23208:8;;;;:::i;:::-;;-1:-1:-1;23231:10:0;;-1:-1:-1;23239:2:0;23231:10;;:::i;:::-;;;23175:78;;;23263:19;23295:6;23285:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23285:17:0;;23263:39;;23313:154;23320:10;;23313:154;;23347:11;23357:1;23347:11;;:::i;:::-;;-1:-1:-1;23416:10:0;23424:2;23416:5;:10;:::i;:::-;23403:24;;:2;:24;:::i;:::-;23390:39;;23373:6;23380;23373:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;23373:56:0;;;;;;;;-1:-1:-1;23444:11:0;23453:2;23444:11;;:::i;:::-;;;23313:154;;26848:305;26950:4;-1:-1:-1;;;;;;26987:40:0;;-1:-1:-1;;;26987:40:0;;:105;;-1:-1:-1;;;;;;;27044:48:0;;-1:-1:-1;;;27044:48:0;26987:105;:158;;;;27109:36;27133:11;27109:23;:36::i;42513:98::-;42571:7;42598:5;42602:1;42598;:5;:::i;74624:226::-;74676:10;74689:13;:11;:13::i;:::-;-1:-1:-1;;;;;74713:18:0;;;;;;:14;:18;;;;;;;;:27;;;;;;;;;;;;;;;;;;74780:34;;;;;;;;;;74795:15;74780:34;;;;;;;;;;;;74751:22;;;:18;:22;;;;;:26;;;;;;;;;;:63;;;;;;;;;;;;;;;;;;;;74676:26;-1:-1:-1;74825:17:0;74728:2;74676:26;74825:9;:17::i;34067:321::-;34197:18;34203:2;34207:7;34197:5;:18::i;:::-;34248:54;34279:1;34283:2;34287:7;34296:5;34248:22;:54::i;:::-;34226:154;;;;-1:-1:-1;;;34226:154:0;;;;;;;:::i;36032:578::-;36191:4;-1:-1:-1;;;;;36164:31:0;:23;36179:7;36164:14;:23::i;:::-;-1:-1:-1;;;;;36164:31:0;;36156:85;;;;-1:-1:-1;;;36156:85:0;;23328:2:1;36156:85:0;;;23310:21:1;23367:2;23347:18;;;23340:30;23406:34;23386:18;;;23379:62;-1:-1:-1;;;23457:18:1;;;23450:39;23506:19;;36156:85:0;23300:231:1;36156:85:0;-1:-1:-1;;;;;36260:16:0;;36252:65;;;;-1:-1:-1;;;36252:65:0;;17207:2:1;36252:65:0;;;17189:21:1;17246:2;17226:18;;;17219:30;17285:34;17265:18;;;17258:62;-1:-1:-1;;;17336:18:1;;;17329:34;17380:19;;36252:65:0;17179:226:1;36252:65:0;36330:39;36351:4;36357:2;36361:7;36330:20;:39::i;:::-;36434:29;36451:1;36455:7;36434:8;:29::i;:::-;-1:-1:-1;;;;;36476:15:0;;;;;;:9;:15;;;;;:20;;36495:1;;36476:15;:20;;36495:1;;36476:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36507:13:0;;;;;;:9;:13;;;;;:18;;36524:1;;36507:13;:18;;36524:1;;36507:18;:::i;:::-;;;;-1:-1:-1;;36536:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36536:21:0;-1:-1:-1;;;;;36536:21:0;;;;;;;;;36575:27;;36536:16;;36575:27;;;;;;;36032:578;;;:::o;37467:803::-;37622:4;-1:-1:-1;;;;;37643:13:0;;15673:20;15721:8;37639:624;;37679:72;;-1:-1:-1;;;37679:72:0;;-1:-1:-1;;;;;37679:36:0;;;;;:72;;3225:10;;37730:4;;37736:7;;37745:5;;37679:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37679:72:0;;;;;;;;-1:-1:-1;;37679:72:0;;;;;;;;;;;;:::i;:::-;;;37675:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37925:13:0;;37921:272;;37968:60;;-1:-1:-1;;;37968:60:0;;;;;;;:::i;37921:272::-;38143:6;38137:13;38128:6;38124:2;38120:15;38113:38;37675:533;-1:-1:-1;;;;;;37802:55:0;-1:-1:-1;;;37802:55:0;;-1:-1:-1;37795:62:0;;37639:624;-1:-1:-1;38247:4:0;37467:803;;;;;;:::o;57743:190::-;57828:4;-1:-1:-1;;;;;;;;;25455:40:0;;;57852:73;;;-1:-1:-1;;;;;;;;57892:33:0;;;;;:20;:33;;;;;;;;;57743:190::o;69972:1010::-;70013:7;70033:17;70066:13;51754:10;:17;;51666:113;70066:13;70053:26;;62128:5;70053:26;:::i;:::-;70195:5;;70156:173;;;;;;7425:19:1;;;;-1:-1:-1;;70223:10:0;7482:2:1;7478:15;7474:53;7460:12;;;7453:75;70256:16:0;7544:12:1;;;7537:28;70295:15:0;7581:12:1;;;7574:28;70033:46:0;;-1:-1:-1;70090:13:0;;70033:46;;7618:13:1;;70156:173:0;;;;;;;;;;;;70128:216;;;;;;70106:249;;:261;;;;:::i;:::-;70090:277;;70378:13;70412:7;70420:5;70412:14;;;;;;;:::i;:::-;;;:19;70408:120;;70456:7;70464:5;70456:14;;;;;;;:::i;:::-;;;70448:22;;70408:120;;;-1:-1:-1;70511:5:0;70408:120;70593:7;70601:13;70613:1;70601:9;:13;:::i;:::-;70593:22;;;;;;;:::i;:::-;;;70589:283;;70718:13;70730:1;70718:9;:13;:::i;:::-;70701:7;70709:5;70701:14;;;;;;;:::i;:::-;;:30;70589:283;;;70838:7;70846:13;70858:1;70846:9;:13;:::i;:::-;70838:22;;;;;;;:::i;:::-;;;70821:7;70829:5;70821:14;;;;;;;:::i;:::-;;:39;70589:283;70882:5;:7;;;:5;:7;;;:::i;:::-;;;;-1:-1:-1;70965:9:0;;-1:-1:-1;70965:5:0;70973:1;70965:9;:::i;:::-;70958:16;;;;;69972:1010;:::o;34724:382::-;-1:-1:-1;;;;;34804:16:0;;34796:61;;;;-1:-1:-1;;;34796:61:0;;21504:2:1;34796:61:0;;;21486:21:1;;;21523:18;;;21516:30;21582:34;21562:18;;;21555:62;21634:18;;34796:61:0;21476:182:1;34796:61:0;32811:4;32835:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32835:16:0;:30;34868:58;;;;-1:-1:-1;;;34868:58:0;;16431:2:1;34868:58:0;;;16413:21:1;16470:2;16450:18;;;16443:30;16509;16489:18;;;16482:58;16557:18;;34868:58:0;16403:178:1;34868:58:0;34939:45;34968:1;34972:2;34976:7;34939:20;:45::i;:::-;-1:-1:-1;;;;;34997:13:0;;;;;;:9;:13;;;;;:18;;35014:1;;34997:13;:18;;35014:1;;34997:18;:::i;:::-;;;;-1:-1:-1;;35026:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35026:21:0;-1:-1:-1;;;;;35026:21:0;;;;;;;;35065:33;;35026:16;;;35065:33;;35026:16;;35065:33;34724:382;;:::o;67047:231::-;67225:45;67252:4;67258:2;67262:7;52846:45;52873:4;52879:2;52883:7;52846:26;:45::i;:::-;-1:-1:-1;;;;;52908:18:0;;52904:187;;52943:40;52975:7;54118:10;:17;;54091:24;;;;:15;:24;;;;;:44;;;54146:24;;;;;;;;;;;;54014:164;52943:40;52904:187;;;53013:2;-1:-1:-1;;;;;53005:10:0;:4;-1:-1:-1;;;;;53005:10:0;;53001:90;;53032:47;53065:4;53071:7;53032:32;:47::i;:::-;-1:-1:-1;;;;;53105:16:0;;53101:183;;53138:45;53175:7;53138:36;:45::i;53101:183::-;53211:4;-1:-1:-1;;;;;53205:10:0;:2;-1:-1:-1;;;;;53205:10:0;;53201:83;;53232:40;53260:2;53264:7;53232:27;:40::i;48811:275::-;47091:7;;;;49021:9;49013:65;;;;-1:-1:-1;;;49013:65:0;;12008:2:1;49013:65:0;;;11990:21:1;12047:2;12027:18;;;12020:30;12086:34;12066:18;;;12059:62;-1:-1:-1;;;12137:18:1;;;12130:41;12188:19;;49013:65:0;11980:233:1;54805:988:0;55071:22;55121:1;55096:22;55113:4;55096:16;:22::i;:::-;:26;;;;:::i;:::-;55133:18;55154:26;;;:17;:26;;;;;;55071:51;;-1:-1:-1;55287:28:0;;;55283:328;;-1:-1:-1;;;;;55354:18:0;;55332:19;55354:18;;;:12;:18;;;;;;;;:34;;;;;;;;;55405:30;;;;;;:44;;;55522:30;;:17;:30;;;;;:43;;;55283:328;-1:-1:-1;55707:26:0;;;;:17;:26;;;;;;;;55700:33;;;-1:-1:-1;;;;;55751:18:0;;;;;:12;:18;;;;;:34;;;;;;;55744:41;54805:988::o;56088:1079::-;56366:10;:17;56341:22;;56366:21;;56386:1;;56366:21;:::i;:::-;56398:18;56419:24;;;:15;:24;;;;;;56792:10;:26;;56341:46;;-1:-1:-1;56419:24:0;;56341:46;;56792:26;;;;;;:::i;:::-;;;;;;;;;56770:48;;56856:11;56831:10;56842;56831:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;56936:28;;;:15;:28;;;;;;;:41;;;57108:24;;;;;57101:31;57143:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;56159:1008;;;56088:1079;:::o;53592:221::-;53677:14;53694:20;53711:2;53694:16;:20::i;:::-;-1:-1:-1;;;;;53725:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;53770:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;53592:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:2;;728:1;725;718:12;677:2;764:6;751:20;790:4;813:18;809:2;806:26;803:2;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:2:1;;;1102:1;1099;1092:12;1053:2;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;667:659;-1:-1:-1;;;;;;;667:659:1:o;1331:186::-;1390:6;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1459:1;1456;1449:12;1411:2;1482:29;1501:9;1482:29;:::i;1522:260::-;1590:6;1598;1651:2;1639:9;1630:7;1626:23;1622:32;1619:2;;;1667:1;1664;1657:12;1619:2;1690:29;1709:9;1690:29;:::i;:::-;1680:39;;1738:38;1772:2;1761:9;1757:18;1738:38;:::i;:::-;1728:48;;1609:173;;;;;:::o;1787:328::-;1864:6;1872;1880;1933:2;1921:9;1912:7;1908:23;1904:32;1901:2;;;1949:1;1946;1939:12;1901:2;1972:29;1991:9;1972:29;:::i;:::-;1962:39;;2020:38;2054:2;2043:9;2039:18;2020:38;:::i;:::-;2010:48;;2105:2;2094:9;2090:18;2077:32;2067:42;;1891:224;;;;;:::o;2120:666::-;2215:6;2223;2231;2239;2292:3;2280:9;2271:7;2267:23;2263:33;2260:2;;;2309:1;2306;2299:12;2260:2;2332:29;2351:9;2332:29;:::i;:::-;2322:39;;2380:38;2414:2;2403:9;2399:18;2380:38;:::i;:::-;2370:48;;2465:2;2454:9;2450:18;2437:32;2427:42;;2520:2;2509:9;2505:18;2492:32;2547:18;2539:6;2536:30;2533:2;;;2579:1;2576;2569:12;2533:2;2602:22;;2655:4;2647:13;;2643:27;-1:-1:-1;2633:2:1;;2684:1;2681;2674:12;2633:2;2707:73;2772:7;2767:2;2754:16;2749:2;2745;2741:11;2707:73;:::i;:::-;2697:83;;;2250:536;;;;;;;:::o;2791:347::-;2856:6;2864;2917:2;2905:9;2896:7;2892:23;2888:32;2885:2;;;2933:1;2930;2923:12;2885:2;2956:29;2975:9;2956:29;:::i;:::-;2946:39;;3035:2;3024:9;3020:18;3007:32;3082:5;3075:13;3068:21;3061:5;3058:32;3048:2;;3104:1;3101;3094:12;3048:2;3127:5;3117:15;;;2875:263;;;;;:::o;3143:254::-;3211:6;3219;3272:2;3260:9;3251:7;3247:23;3243:32;3240:2;;;3288:1;3285;3278:12;3240:2;3311:29;3330:9;3311:29;:::i;:::-;3301:39;3387:2;3372:18;;;;3359:32;;-1:-1:-1;;;3230:167:1:o;3402:348::-;3486:6;3539:2;3527:9;3518:7;3514:23;3510:32;3507:2;;;3555:1;3552;3545:12;3507:2;3595:9;3582:23;3628:18;3620:6;3617:30;3614:2;;;3660:1;3657;3650:12;3614:2;3683:61;3736:7;3727:6;3716:9;3712:22;3683:61;:::i;3755:180::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:2;;;3883:1;3880;3873:12;3835:2;-1:-1:-1;3906:23:1;;3825:110;-1:-1:-1;3825:110:1:o;3940:245::-;3998:6;4051:2;4039:9;4030:7;4026:23;4022:32;4019:2;;;4067:1;4064;4057:12;4019:2;4106:9;4093:23;4125:30;4149:5;4125:30;:::i;4190:249::-;4259:6;4312:2;4300:9;4291:7;4287:23;4283:32;4280:2;;;4328:1;4325;4318:12;4280:2;4360:9;4354:16;4379:30;4403:5;4379:30;:::i;4444:450::-;4513:6;4566:2;4554:9;4545:7;4541:23;4537:32;4534:2;;;4582:1;4579;4572:12;4534:2;4622:9;4609:23;4655:18;4647:6;4644:30;4641:2;;;4687:1;4684;4677:12;4641:2;4710:22;;4763:4;4755:13;;4751:27;-1:-1:-1;4741:2:1;;4792:1;4789;4782:12;4741:2;4815:73;4880:7;4875:2;4862:16;4857:2;4853;4849:11;4815:73;:::i;5084:416::-;5177:6;5185;5238:2;5226:9;5217:7;5213:23;5209:32;5206:2;;;5254:1;5251;5244:12;5206:2;5290:9;5277:23;5267:33;;5351:2;5340:9;5336:18;5323:32;5378:18;5370:6;5367:30;5364:2;;;5410:1;5407;5400:12;5364:2;5433:61;5486:7;5477:6;5466:9;5462:22;5433:61;:::i;:::-;5423:71;;;5196:304;;;;;:::o;5505:269::-;5562:6;5615:2;5603:9;5594:7;5590:23;5586:32;5583:2;;;5631:1;5628;5621:12;5583:2;5670:9;5657:23;5720:4;5713:5;5709:16;5702:5;5699:27;5689:2;;5740:1;5737;5730:12;5779:257;5820:3;5858:5;5852:12;5885:6;5880:3;5873:19;5901:63;5957:6;5950:4;5945:3;5941:14;5934:4;5927:5;5923:16;5901:63;:::i;:::-;6018:2;5997:15;-1:-1:-1;;5993:29:1;5984:39;;;;6025:4;5980:50;;5828:208;-1:-1:-1;;5828:208:1:o;6527:470::-;6706:3;6744:6;6738:13;6760:53;6806:6;6801:3;6794:4;6786:6;6782:17;6760:53;:::i;:::-;6876:13;;6835:16;;;;6898:57;6876:13;6835:16;6932:4;6920:17;;6898:57;:::i;:::-;6971:20;;6714:283;-1:-1:-1;;;;6714:283:1:o;7850:488::-;-1:-1:-1;;;;;8119:15:1;;;8101:34;;8171:15;;8166:2;8151:18;;8144:43;8218:2;8203:18;;8196:34;;;8266:3;8261:2;8246:18;;8239:31;;;8044:4;;8287:45;;8312:19;;8304:6;8287:45;:::i;:::-;8279:53;8053:285;-1:-1:-1;;;;;;8053:285:1:o;8343:849::-;8570:2;8622:21;;;8692:13;;8595:18;;;8714:22;;;8541:4;;8570:2;8755;;8773:18;;;;8814:15;;;8541:4;8857:309;8871:6;8868:1;8865:13;8857:309;;;8930:13;;8968:9;;8956:22;;9018:11;;;9012:18;8998:12;;;8991:40;9071:11;;9065:18;9051:12;;;9044:40;9113:4;9104:14;;;;9141:15;;;;8893:1;8886:9;8857:309;;;-1:-1:-1;9183:3:1;;8550:642;-1:-1:-1;;;;;;;8550:642:1:o;9197:632::-;9368:2;9420:21;;;9490:13;;9393:18;;;9512:22;;;9339:4;;9368:2;9591:15;;;;9565:2;9550:18;;;9339:4;9634:169;9648:6;9645:1;9642:13;9634:169;;;9709:13;;9697:26;;9778:15;;;;9743:12;;;;9670:1;9663:9;9634:169;;;-1:-1:-1;9820:3:1;;9348:481;-1:-1:-1;;;;;;9348:481:1:o;10208:219::-;10357:2;10346:9;10339:21;10320:4;10377:44;10417:2;10406:9;10402:18;10394:6;10377:44;:::i;10432:1369::-;10626:2;10615:9;10608:21;10589:4;10652:44;10692:2;10681:9;10677:18;10669:6;10652:44;:::i;:::-;10715:2;10765:9;10757:6;10753:22;10748:2;10737:9;10733:18;10726:50;10796:1;10829:6;10823:13;10859:3;10881:1;10909:9;10905:2;10901:18;10891:28;;10969:2;10958:9;10954:18;10991;10981:2;;11035:4;11027:6;11023:17;11013:27;;10981:2;11088;11080:6;11077:14;11057:18;11054:38;11051:2;;;-1:-1:-1;;;11115:33:1;;11171:4;11168:1;11161:15;11201:4;11122:3;11189:17;11051:2;29215:19;;;29267:4;29258:14;;11225:83;-1:-1:-1;11324:18:1;11351:100;;;;11465:1;11460:315;;;;11317:458;;11351:100;-1:-1:-1;;11384:24:1;;11372:37;;11429:12;;;;-1:-1:-1;11351:100:1;;11460:315;29054:1;29047:14;;;29091:4;29078:18;;11555:1;11569:165;11583:6;11580:1;11577:13;11569:165;;;11661:14;;11648:11;;;11641:35;11704:16;;;;11598:10;;11569:165;;;11754:11;;;-1:-1:-1;;11317:458:1;-1:-1:-1;11792:3:1;;10598:1203;-1:-1:-1;;;;;;;;;;10598:1203:1:o;13766:414::-;13968:2;13950:21;;;14007:2;13987:18;;;13980:30;14046:34;14041:2;14026:18;;14019:62;-1:-1:-1;;;14112:2:1;14097:18;;14090:48;14170:3;14155:19;;13940:240::o;22765:356::-;22967:2;22949:21;;;22986:18;;;22979:30;23045:34;23040:2;23025:18;;23018:62;23112:2;23097:18;;22939:182::o;26176:413::-;26378:2;26360:21;;;26417:2;26397:18;;;26390:30;26456:34;26451:2;26436:18;;26429:62;-1:-1:-1;;;26522:2:1;26507:18;;26500:47;26579:3;26564:19;;26350:239::o;28701:275::-;28772:2;28766:9;28837:2;28818:13;;-1:-1:-1;;28814:27:1;28802:40;;28872:18;28857:34;;28893:22;;;28854:62;28851:2;;;28919:18;;:::i;:::-;28955:2;28948:22;28746:230;;-1:-1:-1;28746:230:1:o;29283:128::-;29323:3;29354:1;29350:6;29347:1;29344:13;29341:2;;;29360:18;;:::i;:::-;-1:-1:-1;29396:9:1;;29331:80::o;29416:120::-;29456:1;29482;29472:2;;29487:18;;:::i;:::-;-1:-1:-1;29521:9:1;;29462:74::o;29541:168::-;29581:7;29647:1;29643;29639:6;29635:14;29632:1;29629:21;29624:1;29617:9;29610:17;29606:45;29603:2;;;29654:18;;:::i;:::-;-1:-1:-1;29694:9:1;;29593:116::o;29714:125::-;29754:4;29782:1;29779;29776:8;29773:2;;;29787:18;;:::i;:::-;-1:-1:-1;29824:9:1;;29763:76::o;29844:195::-;29882:4;29919;29916:1;29912:12;29951:4;29948:1;29944:12;29976:3;29971;29968:12;29965:2;;;29983:18;;:::i;:::-;30020:13;;;29891:148;-1:-1:-1;;;29891:148:1:o;30044:258::-;30116:1;30126:113;30140:6;30137:1;30134:13;30126:113;;;30216:11;;;30210:18;30197:11;;;30190:39;30162:2;30155:10;30126:113;;;30257:6;30254:1;30251:13;30248:2;;;-1:-1:-1;;30292:1:1;30274:16;;30267:27;30097:205::o;30307:380::-;30386:1;30382:12;;;;30429;;;30450:2;;30504:4;30496:6;30492:17;30482:27;;30450:2;30557;30549:6;30546:14;30526:18;30523:38;30520:2;;;30603:10;30598:3;30594:20;30591:1;30584:31;30638:4;30635:1;30628:15;30666:4;30663:1;30656:15;30692:135;30731:3;-1:-1:-1;;30752:17:1;;30749:2;;;30772:18;;:::i;:::-;-1:-1:-1;30819:1:1;30808:13;;30739:88::o;30832:175::-;30869:3;30913:4;30906:5;30902:16;30942:4;30933:7;30930:17;30927:2;;;30950:18;;:::i;:::-;30999:1;30986:15;;30877:130;-1:-1:-1;;30877:130:1:o;31012:112::-;31044:1;31070;31060:2;;31075:18;;:::i;:::-;-1:-1:-1;31109:9:1;;31050:74::o;31129:127::-;31190:10;31185:3;31181:20;31178:1;31171:31;31221:4;31218:1;31211:15;31245:4;31242:1;31235:15;31261:127;31322:10;31317:3;31313:20;31310:1;31303:31;31353:4;31350:1;31343:15;31377:4;31374:1;31367:15;31393:127;31454:10;31449:3;31445:20;31442:1;31435:31;31485:4;31482:1;31475:15;31509:4;31506:1;31499:15;31525:127;31586:10;31581:3;31577:20;31574:1;31567:31;31617:4;31614:1;31607:15;31641:4;31638:1;31631:15;31657:127;31718:10;31713:3;31709:20;31706:1;31699:31;31749:4;31746:1;31739:15;31773:4;31770:1;31763:15;31789:131;-1:-1:-1;;;;;;31863:32:1;;31853:43;;31843:2;;31910:1;31907;31900:12

Swarm Source

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