ETH Price: $2,862.18 (-9.99%)
Gas: 15 Gwei

Token

CornTown (CORN)
 

Overview

Max Total Supply

10,000 CORN

Holders

2,038

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
*gutterking👑️.eth
Balance
0 CORN
0xdb526d6d2e22c0c1adadd1035a388a7b972f4e6a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Corn has been here way before BTC and cryptocurrencies...imagine what a corn NFT can do... Planting, cropping, harvesting...all without leaving your wallet Corn is destined to grow

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CornTown

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-29
*/

pragma solidity 0.8.16;

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
 * @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);
}
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)
/**
 * @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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
/**
 * @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);
}
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs
/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
/**
 * @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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
 * @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);
    }
}
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
/**
 * @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;
    }
}
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

  function maxSupply() external view returns (uint256);

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) external;
  
  function ownerOf(uint256 tokenId) external view returns (address);
}
contract CornTown is Ownable, ERC721A {
  using Strings for uint256;

  string public baseURI;
  address public saleManager;
  uint256 public maxSupply;

  mapping (address => bool) private cornMasterOperators;

  /**
  @dev tokenId to seeding start time (0 = not seeding).
    */
  mapping(uint256 => uint256) private seedingStarted;
  /**
  @dev Cumulative per-token seeding, excluding the current period.
    */
  mapping(uint256 => uint256) private seedingTotal;
  /**
  @dev MUST only be modified by safeTransferWhileSeeding(); if set to 2 then
  the _beforeTokenTransfer() block while seeding is disabled.
    */
  bool private blockSeedingTransfer = true;

  /**
  @notice Whether seeding is currently allowed.
  @dev If false then seeding is blocked, but unseeding is always allowed.
    */
  bool public seedingOpen = false;

  /**
  @dev Emitted when a CornTown begins seeding.
    */
  event Planted(uint256 indexed tokenId);

  /**
  @dev Emitted when a CornTown stops seeding; either through standard means or
  by expulsion.
    */
  event Cropped(uint256 indexed tokenId);

  /**
  @dev Emitted when a CornTown is expelled from the seed.
    */
  event Expelled(uint256 indexed tokenId);

  event BaseURI(string baseUri);

  constructor(
    string memory name,
    string memory symbol,
    uint256 _maxSupply
  ) ERC721A(name, symbol) {
    maxSupply = _maxSupply;
  }

  modifier onlySaleManager() {
    require(msg.sender == saleManager, "only sale manager");
    _;
  }

  /// @notice Requires that msg.sender owns or is approved for the token.
  modifier onlyApprovedOrTokenOwner(uint256 tokenId) {
    require(
      _ownershipOf(tokenId).addr == msg.sender || getApproved(tokenId) == msg.sender,
      "CornTown: Not approved nor owner"
    );
    _;
  }

  function setBaseURI(string memory _baseUri) external onlyOwner {
    baseURI = _baseUri;
  }

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

  function mint(
    address initialOwner,
    uint256 amount
  ) external onlySaleManager {
    require(totalSupply() + amount <= maxSupply, "maxSupply");
    _mint(initialOwner, amount);
  }

  /// @notice Set the address for the saleManager
  /// @param _saleManager: address of the sale contract
  function setSaleManager(address _saleManager) external onlyOwner {
    saleManager = _saleManager;
  }

  function setOperator(address _operator) external onlyOwner {
    cornMasterOperators[_operator] = true;
  }

  function disableOperator(address _operator) external onlyOwner {
    cornMasterOperators[_operator] = false;
  }

  function isApprovedForAll(address owner, address operator) public override view returns (bool) {
    if (cornMasterOperators[operator]) {
      return true;
    }

    return super.isApprovedForAll(owner, operator);
  }

  /**
    @notice Returns the length of time, in seconds, that the CornTown has
    been seeding.
    @dev Seeding is tied to a specific CornTown, not to the owner, so it doesn't
    reset upon sale.
    @return seeding Whether the CornTown is currently seeding. MAY be true with
    zero current seeding if in the same block as seeding began.
    @return current Zero if not currently seeding, otherwise the length of time
    since the most recent seeding began.
    @return total Total period of time for which the CornTown has seeded across
    its life, including the current period.
  */
  function seedingPeriod(uint256 tokenId) external view returns (
    bool seeding,
    uint256 current,
    uint256 total
  ) {
    uint256 start = seedingStarted[tokenId];

    if (start != 0) {
      seeding = true;
      current = block.timestamp - start;
    }

    total = current + seedingTotal[tokenId];
  }

  /**
    @notice Transfer a token between addresses while the CornTown is minting,
    thus not resetting the seeding period.
  */
  function safeTransferWhileSeeding(
    address from,
    address to,
    uint256 tokenId
  ) external {
    require(ownerOf(tokenId) == msg.sender, "CornTown: Only owner");

    blockSeedingTransfer = false;
    safeTransferFrom(from, to, tokenId);
    blockSeedingTransfer = true;
  }

  /**
    @dev Block transfers while seeding.
  */
  function _beforeTokenTransfers(
    address,
    address,
    uint256 startTokenId,
    uint256 quantity
  ) internal view override {
    uint256 tokenId = startTokenId;

    for (uint256 end = tokenId + quantity; tokenId < end; ++tokenId) {
      require(
        seedingStarted[tokenId] == 0 || !blockSeedingTransfer,
        "CornTown: seeding"
      );
    }
  }

  /**
    @notice Toggles the `seedingOpen` flag.
  */
  function setSeedingOpen(bool open) external onlyOwner {
    seedingOpen = open;
  }

  /**
    @notice Changes the CornTown's seeding status.
  */
  function _toggleSeeding(uint256 tokenId) internal onlyApprovedOrTokenOwner(tokenId) {
    uint256 start = seedingStarted[tokenId];

    if (start == 0) {
      require(seedingOpen, "CornTown: seeding closed");

      seedingStarted[tokenId] = block.timestamp;

      emit Planted(tokenId);
    } else {
      seedingTotal[tokenId] += block.timestamp - start;
      seedingStarted[tokenId] = 0;

      emit Cropped(tokenId);
    }
  }

  /**
    @notice Changes the CornTown' seeding statuses  .
    @dev Changes the CornTown' seeding sheep (see @notice).
  */
  function toggleSeeding(uint256[] calldata tokenIds) external {
    uint256 n = tokenIds.length;

    for (uint256 i = 0; i < n; ++i) {
      _toggleSeeding(tokenIds[i]);
    }
  }

  /**
    @notice Admin-only ability to expel a CornTown from the seed.
    @dev As most sales listings use off-chain signatures it's impossible to
    detect someone who has seeded and then deliberately undercuts the floor
    price in the knowledge that the sale can't proceed. This function allows for
    monitoring of such practices and expulsion if abuse is detected, allowing
    the undercutting bird to be sold on the open market. Since OpenSea uses
    isApprovedForAll() in its pre-listing checks, we can't block by that means
    because seeding would then be all-or-nothing for all of a particular owner's
    CornTown.
  */
  function expelFromSeed(uint256 tokenId) external onlyOwner {
      require(seedingStarted[tokenId] != 0, "CornTown: not seeding");

      seedingTotal[tokenId] += block.timestamp - seedingStarted[tokenId];
      seedingStarted[tokenId] = 0;

      emit Cropped(tokenId);
      emit Expelled(tokenId);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":false,"internalType":"string","name":"baseUri","type":"string"}],"name":"BaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Cropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Expelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Planted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"disableOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"expelFromSeed","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferWhileSeeding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seedingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"seedingPeriod","outputs":[{"internalType":"bool","name":"seeding","type":"bool"},{"internalType":"uint256","name":"current","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_saleManager","type":"address"}],"name":"setSaleManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"open","type":"bool"}],"name":"setSeedingOpen","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":"tokenIds","type":"uint256[]"}],"name":"toggleSeeding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055503480156200004757600080fd5b50604051620043993803806200439983398181016040528101906200006d91906200037a565b82826200008f62000083620000db60201b60201c565b620000e360201b60201c565b8160039081620000a0919062000655565b508060049081620000b2919062000655565b50620000c3620001a760201b60201c565b600181905550505080600b819055505050506200073c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200021582620001ca565b810181811067ffffffffffffffff82111715620002375762000236620001db565b5b80604052505050565b60006200024c620001ac565b90506200025a82826200020a565b919050565b600067ffffffffffffffff8211156200027d576200027c620001db565b5b6200028882620001ca565b9050602081019050919050565b60005b83811015620002b557808201518184015260208101905062000298565b60008484015250505050565b6000620002d8620002d2846200025f565b62000240565b905082815260208101848484011115620002f757620002f6620001c5565b5b6200030484828562000295565b509392505050565b600082601f830112620003245762000323620001c0565b5b815162000336848260208601620002c1565b91505092915050565b6000819050919050565b62000354816200033f565b81146200036057600080fd5b50565b600081519050620003748162000349565b92915050565b600080600060608486031215620003965762000395620001b6565b5b600084015167ffffffffffffffff811115620003b757620003b6620001bb565b5b620003c5868287016200030c565b935050602084015167ffffffffffffffff811115620003e957620003e8620001bb565b5b620003f7868287016200030c565b92505060406200040a8682870162000363565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200046757607f821691505b6020821081036200047d576200047c6200041f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004a8565b620004f38683620004a8565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000536620005306200052a846200033f565b6200050b565b6200033f565b9050919050565b6000819050919050565b620005528362000515565b6200056a62000561826200053d565b848454620004b5565b825550505050565b600090565b6200058162000572565b6200058e81848462000547565b505050565b5b81811015620005b657620005aa60008262000577565b60018101905062000594565b5050565b601f8211156200060557620005cf8162000483565b620005da8462000498565b81016020851015620005ea578190505b62000602620005f98562000498565b83018262000593565b50505b505050565b600082821c905092915050565b60006200062a600019846008026200060a565b1980831691505092915050565b600062000645838362000617565b9150826002028217905092915050565b620006608262000414565b67ffffffffffffffff8111156200067c576200067b620001db565b5b6200068882546200044e565b62000695828285620005ba565b600060209050601f831160018114620006cd5760008415620006b8578287015190505b620006c4858262000637565b86555062000734565b601f198416620006dd8662000483565b60005b828110156200070757848901518255600182019150602085019450602081019050620006e0565b8683101562000727578489015162000723601f89168262000617565b8355505b6001600288020188555050505b505050505050565b613c4d806200074c6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063b88d4fde116100a2578063e985e9c511610071578063e985e9c514610556578063f2fde38b14610586578063f56408ed146105a2578063f88b2f4d146105be576101e5565b8063b88d4fde146104d0578063c87b56dd146104ec578063ca1853381461051c578063d5abeb0114610538576101e5565b8063a22cb465116100de578063a22cb4651461044a578063b3ab15fb14610466578063b5002c1f14610482578063b6219f36146104b4576101e5565b8063715018a6146103e6578063746e60b5146103f05780638da5cb5b1461040e57806395d89b411461042c576101e5565b806332fbd1ca1161018757806355f804b31161015657806355f804b31461034c5780636352211e146103685780636c0360eb1461039857806370a08231146103b6576101e5565b806332fbd1ca146102dc57806340c10f19146102f857806342842e0e146103145780634589364d14610330576101e5565b8063095ea7b3116101c3578063095ea7b31461026857806317f8cdbd1461028457806318160ddd146102a257806323b872dd146102c0576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff9190612b1c565b6105da565b6040516102119190612b64565b60405180910390f35b6102226106bc565b60405161022f9190612c0f565b60405180910390f35b610252600480360381019061024d9190612c67565b61074e565b60405161025f9190612cd5565b60405180910390f35b610282600480360381019061027d9190612d1c565b6107ca565b005b61028c6108ce565b6040516102999190612b64565b60405180910390f35b6102aa6108e1565b6040516102b79190612d6b565b60405180910390f35b6102da60048036038101906102d59190612d86565b6108f8565b005b6102f660048036038101906102f19190612e05565b610908565b005b610312600480360381019061030d9190612d1c565b6109a1565b005b61032e60048036038101906103299190612d86565b610a96565b005b61034a60048036038101906103459190612e97565b610ab6565b005b61036660048036038101906103619190613014565b610b02565b005b610382600480360381019061037d9190612c67565b610b91565b60405161038f9190612cd5565b60405180910390f35b6103a0610ba7565b6040516103ad9190612c0f565b60405180910390f35b6103d060048036038101906103cb919061305d565b610c35565b6040516103dd9190612d6b565b60405180910390f35b6103ee610d04565b005b6103f8610d8c565b6040516104059190612cd5565b60405180910390f35b610416610db2565b6040516104239190612cd5565b60405180910390f35b610434610ddb565b6040516104419190612c0f565b60405180910390f35b610464600480360381019061045f919061308a565b610e6d565b005b610480600480360381019061047b919061305d565b610fe4565b005b61049c60048036038101906104979190612c67565b6110bb565b6040516104ab939291906130ca565b60405180910390f35b6104ce60048036038101906104c99190612d86565b61111b565b005b6104ea60048036038101906104e591906131a2565b6111d7565b005b61050660048036038101906105019190612c67565b61124f565b6040516105139190612c0f565b60405180910390f35b61053660048036038101906105319190612c67565b6112ed565b005b61054061147d565b60405161054d9190612d6b565b60405180910390f35b610570600480360381019061056b9190613225565b611483565b60405161057d9190612b64565b60405180910390f35b6105a0600480360381019061059b919061305d565b6114f3565b005b6105bc60048036038101906105b7919061305d565b6115ea565b005b6105d860048036038101906105d3919061305d565b6116c1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b557506106b482611781565b5b9050919050565b6060600380546106cb90613294565b80601f01602080910402602001604051908101604052809291908181526020018280546106f790613294565b80156107445780601f1061071957610100808354040283529160200191610744565b820191906000526020600020905b81548152906001019060200180831161072757829003601f168201915b5050505050905090565b6000610759826117eb565b61078f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d582610b91565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361083c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661085b611839565b73ffffffffffffffffffffffffffffffffffffffff16146108be5761088781610882611839565b611483565b6108bd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6108c9838383611841565b505050565b600f60019054906101000a900460ff1681565b60006108eb6118f3565b6002546001540303905090565b6109038383836118f8565b505050565b610910611839565b73ffffffffffffffffffffffffffffffffffffffff1661092e610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b90613311565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a289061337d565b60405180910390fd5b600b5481610a3d6108e1565b610a4791906133cc565b1115610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f9061344c565b60405180910390fd5b610a928282611dac565b5050565b610ab1838383604051806020016040528060008152506111d7565b505050565b600082829050905060005b81811015610afc57610aeb848483818110610adf57610ade61346c565b5b90506020020135612087565b80610af59061349b565b9050610ac1565b50505050565b610b0a611839565b73ffffffffffffffffffffffffffffffffffffffff16610b28610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590613311565b60405180910390fd5b8060099081610b8d919061368f565b5050565b6000610b9c8261227a565b600001519050919050565b60098054610bb490613294565b80601f0160208091040260200160405190810160405280929190818152602001828054610be090613294565b8015610c2d5780601f10610c0257610100808354040283529160200191610c2d565b820191906000526020600020905b815481529060010190602001808311610c1057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c9c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610d0c611839565b73ffffffffffffffffffffffffffffffffffffffff16610d2a610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613311565b60405180910390fd5b610d8a6000612505565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610dea90613294565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1690613294565b8015610e635780601f10610e3857610100808354040283529160200191610e63565b820191906000526020600020905b815481529060010190602001808311610e4657829003601f168201915b5050505050905090565b610e75611839565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610ee6611839565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f93611839565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fd89190612b64565b60405180910390a35050565b610fec611839565b73ffffffffffffffffffffffffffffffffffffffff1661100a610db2565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790613311565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080600080600d6000868152602001908152602001600020549050600081146110f2576001935080426110ef9190613761565b92505b600e6000868152602001908152602001600020548361111191906133cc565b9150509193909250565b3373ffffffffffffffffffffffffffffffffffffffff1661113b82610b91565b73ffffffffffffffffffffffffffffffffffffffff1614611191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611188906137e1565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506111b7838383610a96565b6001600f60006101000a81548160ff021916908315150217905550505050565b6111e28484846118f8565b6112018373ffffffffffffffffffffffffffffffffffffffff166125c9565b1561124957611212848484846125ec565b611248576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061125a826117eb565b611290576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061129a61273c565b905060008151036112ba57604051806020016040528060008152506112e5565b806112c4846127ce565b6040516020016112d592919061383d565b6040516020818303038152906040525b915050919050565b6112f5611839565b73ffffffffffffffffffffffffffffffffffffffff16611313610db2565b73ffffffffffffffffffffffffffffffffffffffff1614611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090613311565b60405180910390fd5b6000600d600083815260200190815260200160002054036113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b6906138ad565b60405180910390fd5b600d600082815260200190815260200160002054426113de9190613761565b600e6000838152602001908152602001600020600082825461140091906133cc565b925050819055506000600d600083815260200190815260200160002081905550807fc13abbaa39c8e2ecd56c61e0422b9467301d210091c86fcdf735a82279430f1f60405160405180910390a2807f3ebee94e74ea24f711b5876dca724062e18b7b37b6883e686a92f093248a4fcf60405160405180910390a250565b600b5481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114e057600190506114ed565b6114ea838361292e565b90505b92915050565b6114fb611839565b73ffffffffffffffffffffffffffffffffffffffff16611519610db2565b73ffffffffffffffffffffffffffffffffffffffff161461156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690613311565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d59061393f565b60405180910390fd5b6115e781612505565b50565b6115f2611839565b73ffffffffffffffffffffffffffffffffffffffff16611610610db2565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613311565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6116c9611839565b73ffffffffffffffffffffffffffffffffffffffff166116e7610db2565b73ffffffffffffffffffffffffffffffffffffffff161461173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490613311565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816117f66118f3565b11158015611805575060015482105b8015611832575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006119038261227a565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461196e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661198f611839565b73ffffffffffffffffffffffffffffffffffffffff1614806119be57506119bd856119b8611839565b611483565b5b80611a0357506119cc611839565b73ffffffffffffffffffffffffffffffffffffffff166119eb8461074e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a3c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611aa2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aaf85858560016129c2565b611abb60008487611841565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d3a576001548214611d3957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611da58585856001612a67565b5050505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e19576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611e53576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e6060008483856129c2565b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612003578160018190555050506120826000848385612a67565b505050565b803373ffffffffffffffffffffffffffffffffffffffff166120a88261227a565b6000015173ffffffffffffffffffffffffffffffffffffffff16148061210157503373ffffffffffffffffffffffffffffffffffffffff166120e98261074e565b73ffffffffffffffffffffffffffffffffffffffff16145b612140576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612137906139ab565b60405180910390fd5b6000600d6000848152602001908152602001600020549050600081036121f957600f60019054906101000a900460ff166121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a690613a17565b60405180910390fd5b42600d600085815260200190815260200160002081905550827f1c3398af928f961cf9c1f49d3892d391f45dde3731266f32690ec2a94c3d3d5060405160405180910390a2612275565b80426122059190613761565b600e6000858152602001908152602001600020600082825461222791906133cc565b925050819055506000600d600085815260200190815260200160002081905550827fc13abbaa39c8e2ecd56c61e0422b9467301d210091c86fcdf735a82279430f1f60405160405180910390a25b505050565b612282612a6d565b6000829050806122906118f3565b116124ce576001548110156124cd576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124cb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123af578092505050612500565b5b6001156124ca57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124c5578092505050612500565b6123b0565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612612611839565b8786866040518563ffffffff1660e01b81526004016126349493929190613a8c565b6020604051808303816000875af192505050801561267057506040513d601f19601f8201168201806040525081019061266d9190613aed565b60015b6126e9573d80600081146126a0576040519150601f19603f3d011682016040523d82523d6000602084013e6126a5565b606091505b5060008151036126e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461274b90613294565b80601f016020809104026020016040519081016040528092919081815260200182805461277790613294565b80156127c45780601f10612799576101008083540402835291602001916127c4565b820191906000526020600020905b8154815290600101906020018083116127a757829003601f168201915b5050505050905090565b606060008203612815576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612929565b600082905060005b600082146128475780806128309061349b565b915050600a826128409190613b49565b915061281d565b60008167ffffffffffffffff81111561286357612862612ee9565b5b6040519080825280601f01601f1916602001820160405280156128955781602001600182028036833780820191505090505b5090505b60008514612922576001826128ae9190613761565b9150600a856128bd9190613b7a565b60306128c991906133cc565b60f81b8183815181106128df576128de61346c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291b9190613b49565b9450612899565b8093505050505b919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000829050600082826129d591906133cc565b90505b80821015612a5f576000600d6000848152602001908152602001600020541480612a0f5750600f60009054906101000a900460ff16155b612a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4590613bf7565b60405180910390fd5b81612a589061349b565b91506129d8565b505050505050565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612af981612ac4565b8114612b0457600080fd5b50565b600081359050612b1681612af0565b92915050565b600060208284031215612b3257612b31612aba565b5b6000612b4084828501612b07565b91505092915050565b60008115159050919050565b612b5e81612b49565b82525050565b6000602082019050612b796000830184612b55565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bb9578082015181840152602081019050612b9e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612be182612b7f565b612beb8185612b8a565b9350612bfb818560208601612b9b565b612c0481612bc5565b840191505092915050565b60006020820190508181036000830152612c298184612bd6565b905092915050565b6000819050919050565b612c4481612c31565b8114612c4f57600080fd5b50565b600081359050612c6181612c3b565b92915050565b600060208284031215612c7d57612c7c612aba565b5b6000612c8b84828501612c52565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cbf82612c94565b9050919050565b612ccf81612cb4565b82525050565b6000602082019050612cea6000830184612cc6565b92915050565b612cf981612cb4565b8114612d0457600080fd5b50565b600081359050612d1681612cf0565b92915050565b60008060408385031215612d3357612d32612aba565b5b6000612d4185828601612d07565b9250506020612d5285828601612c52565b9150509250929050565b612d6581612c31565b82525050565b6000602082019050612d806000830184612d5c565b92915050565b600080600060608486031215612d9f57612d9e612aba565b5b6000612dad86828701612d07565b9350506020612dbe86828701612d07565b9250506040612dcf86828701612c52565b9150509250925092565b612de281612b49565b8114612ded57600080fd5b50565b600081359050612dff81612dd9565b92915050565b600060208284031215612e1b57612e1a612aba565b5b6000612e2984828501612df0565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612e5757612e56612e32565b5b8235905067ffffffffffffffff811115612e7457612e73612e37565b5b602083019150836020820283011115612e9057612e8f612e3c565b5b9250929050565b60008060208385031215612eae57612ead612aba565b5b600083013567ffffffffffffffff811115612ecc57612ecb612abf565b5b612ed885828601612e41565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f2182612bc5565b810181811067ffffffffffffffff82111715612f4057612f3f612ee9565b5b80604052505050565b6000612f53612ab0565b9050612f5f8282612f18565b919050565b600067ffffffffffffffff821115612f7f57612f7e612ee9565b5b612f8882612bc5565b9050602081019050919050565b82818337600083830152505050565b6000612fb7612fb284612f64565b612f49565b905082815260208101848484011115612fd357612fd2612ee4565b5b612fde848285612f95565b509392505050565b600082601f830112612ffb57612ffa612e32565b5b813561300b848260208601612fa4565b91505092915050565b60006020828403121561302a57613029612aba565b5b600082013567ffffffffffffffff81111561304857613047612abf565b5b61305484828501612fe6565b91505092915050565b60006020828403121561307357613072612aba565b5b600061308184828501612d07565b91505092915050565b600080604083850312156130a1576130a0612aba565b5b60006130af85828601612d07565b92505060206130c085828601612df0565b9150509250929050565b60006060820190506130df6000830186612b55565b6130ec6020830185612d5c565b6130f96040830184612d5c565b949350505050565b600067ffffffffffffffff82111561311c5761311b612ee9565b5b61312582612bc5565b9050602081019050919050565b600061314561314084613101565b612f49565b90508281526020810184848401111561316157613160612ee4565b5b61316c848285612f95565b509392505050565b600082601f83011261318957613188612e32565b5b8135613199848260208601613132565b91505092915050565b600080600080608085870312156131bc576131bb612aba565b5b60006131ca87828801612d07565b94505060206131db87828801612d07565b93505060406131ec87828801612c52565b925050606085013567ffffffffffffffff81111561320d5761320c612abf565b5b61321987828801613174565b91505092959194509250565b6000806040838503121561323c5761323b612aba565b5b600061324a85828601612d07565b925050602061325b85828601612d07565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132ac57607f821691505b6020821081036132bf576132be613265565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132fb602083612b8a565b9150613306826132c5565b602082019050919050565b6000602082019050818103600083015261332a816132ee565b9050919050565b7f6f6e6c792073616c65206d616e61676572000000000000000000000000000000600082015250565b6000613367601183612b8a565b915061337282613331565b602082019050919050565b600060208201905081810360008301526133968161335a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133d782612c31565b91506133e283612c31565b92508282019050808211156133fa576133f961339d565b5b92915050565b7f6d6178537570706c790000000000000000000000000000000000000000000000600082015250565b6000613436600983612b8a565b915061344182613400565b602082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006134a682612c31565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134d8576134d761339d565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613508565b61354f8683613508565b95508019841693508086168417925050509392505050565b6000819050919050565b600061358c61358761358284612c31565b613567565b612c31565b9050919050565b6000819050919050565b6135a683613571565b6135ba6135b282613593565b848454613515565b825550505050565b600090565b6135cf6135c2565b6135da81848461359d565b505050565b5b818110156135fe576135f36000826135c7565b6001810190506135e0565b5050565b601f82111561364357613614816134e3565b61361d846134f8565b8101602085101561362c578190505b613640613638856134f8565b8301826135df565b50505b505050565b600082821c905092915050565b600061366660001984600802613648565b1980831691505092915050565b600061367f8383613655565b9150826002028217905092915050565b61369882612b7f565b67ffffffffffffffff8111156136b1576136b0612ee9565b5b6136bb8254613294565b6136c6828285613602565b600060209050601f8311600181146136f957600084156136e7578287015190505b6136f18582613673565b865550613759565b601f198416613707866134e3565b60005b8281101561372f5784890151825560018201915060208501945060208101905061370a565b8683101561374c5784890151613748601f891682613655565b8355505b6001600288020188555050505b505050505050565b600061376c82612c31565b915061377783612c31565b925082820390508181111561378f5761378e61339d565b5b92915050565b7f436f726e546f776e3a204f6e6c79206f776e6572000000000000000000000000600082015250565b60006137cb601483612b8a565b91506137d682613795565b602082019050919050565b600060208201905081810360008301526137fa816137be565b9050919050565b600081905092915050565b600061381782612b7f565b6138218185613801565b9350613831818560208601612b9b565b80840191505092915050565b6000613849828561380c565b9150613855828461380c565b91508190509392505050565b7f436f726e546f776e3a206e6f742073656564696e670000000000000000000000600082015250565b6000613897601583612b8a565b91506138a282613861565b602082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613929602683612b8a565b9150613934826138cd565b604082019050919050565b600060208201905081810360008301526139588161391c565b9050919050565b7f436f726e546f776e3a204e6f7420617070726f766564206e6f72206f776e6572600082015250565b6000613995602083612b8a565b91506139a08261395f565b602082019050919050565b600060208201905081810360008301526139c481613988565b9050919050565b7f436f726e546f776e3a2073656564696e6720636c6f7365640000000000000000600082015250565b6000613a01601883612b8a565b9150613a0c826139cb565b602082019050919050565b60006020820190508181036000830152613a30816139f4565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a5e82613a37565b613a688185613a42565b9350613a78818560208601612b9b565b613a8181612bc5565b840191505092915050565b6000608082019050613aa16000830187612cc6565b613aae6020830186612cc6565b613abb6040830185612d5c565b8181036060830152613acd8184613a53565b905095945050505050565b600081519050613ae781612af0565b92915050565b600060208284031215613b0357613b02612aba565b5b6000613b1184828501613ad8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b5482612c31565b9150613b5f83612c31565b925082613b6f57613b6e613b1a565b5b828204905092915050565b6000613b8582612c31565b9150613b9083612c31565b925082613ba057613b9f613b1a565b5b828206905092915050565b7f436f726e546f776e3a2073656564696e67000000000000000000000000000000600082015250565b6000613be1601183612b8a565b9150613bec82613bab565b602082019050919050565b60006020820190508181036000830152613c1081613bd4565b905091905056fea2646970667358221220fbedbe2ffd7f33d8cd5c35f99a8aadd9f5ed74ceb8fef2e1cf37365ca76263e864736f6c63430008100033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000008436f726e546f776e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004434f524e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063b88d4fde116100a2578063e985e9c511610071578063e985e9c514610556578063f2fde38b14610586578063f56408ed146105a2578063f88b2f4d146105be576101e5565b8063b88d4fde146104d0578063c87b56dd146104ec578063ca1853381461051c578063d5abeb0114610538576101e5565b8063a22cb465116100de578063a22cb4651461044a578063b3ab15fb14610466578063b5002c1f14610482578063b6219f36146104b4576101e5565b8063715018a6146103e6578063746e60b5146103f05780638da5cb5b1461040e57806395d89b411461042c576101e5565b806332fbd1ca1161018757806355f804b31161015657806355f804b31461034c5780636352211e146103685780636c0360eb1461039857806370a08231146103b6576101e5565b806332fbd1ca146102dc57806340c10f19146102f857806342842e0e146103145780634589364d14610330576101e5565b8063095ea7b3116101c3578063095ea7b31461026857806317f8cdbd1461028457806318160ddd146102a257806323b872dd146102c0576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff9190612b1c565b6105da565b6040516102119190612b64565b60405180910390f35b6102226106bc565b60405161022f9190612c0f565b60405180910390f35b610252600480360381019061024d9190612c67565b61074e565b60405161025f9190612cd5565b60405180910390f35b610282600480360381019061027d9190612d1c565b6107ca565b005b61028c6108ce565b6040516102999190612b64565b60405180910390f35b6102aa6108e1565b6040516102b79190612d6b565b60405180910390f35b6102da60048036038101906102d59190612d86565b6108f8565b005b6102f660048036038101906102f19190612e05565b610908565b005b610312600480360381019061030d9190612d1c565b6109a1565b005b61032e60048036038101906103299190612d86565b610a96565b005b61034a60048036038101906103459190612e97565b610ab6565b005b61036660048036038101906103619190613014565b610b02565b005b610382600480360381019061037d9190612c67565b610b91565b60405161038f9190612cd5565b60405180910390f35b6103a0610ba7565b6040516103ad9190612c0f565b60405180910390f35b6103d060048036038101906103cb919061305d565b610c35565b6040516103dd9190612d6b565b60405180910390f35b6103ee610d04565b005b6103f8610d8c565b6040516104059190612cd5565b60405180910390f35b610416610db2565b6040516104239190612cd5565b60405180910390f35b610434610ddb565b6040516104419190612c0f565b60405180910390f35b610464600480360381019061045f919061308a565b610e6d565b005b610480600480360381019061047b919061305d565b610fe4565b005b61049c60048036038101906104979190612c67565b6110bb565b6040516104ab939291906130ca565b60405180910390f35b6104ce60048036038101906104c99190612d86565b61111b565b005b6104ea60048036038101906104e591906131a2565b6111d7565b005b61050660048036038101906105019190612c67565b61124f565b6040516105139190612c0f565b60405180910390f35b61053660048036038101906105319190612c67565b6112ed565b005b61054061147d565b60405161054d9190612d6b565b60405180910390f35b610570600480360381019061056b9190613225565b611483565b60405161057d9190612b64565b60405180910390f35b6105a0600480360381019061059b919061305d565b6114f3565b005b6105bc60048036038101906105b7919061305d565b6115ea565b005b6105d860048036038101906105d3919061305d565b6116c1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b557506106b482611781565b5b9050919050565b6060600380546106cb90613294565b80601f01602080910402602001604051908101604052809291908181526020018280546106f790613294565b80156107445780601f1061071957610100808354040283529160200191610744565b820191906000526020600020905b81548152906001019060200180831161072757829003601f168201915b5050505050905090565b6000610759826117eb565b61078f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d582610b91565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361083c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661085b611839565b73ffffffffffffffffffffffffffffffffffffffff16146108be5761088781610882611839565b611483565b6108bd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6108c9838383611841565b505050565b600f60019054906101000a900460ff1681565b60006108eb6118f3565b6002546001540303905090565b6109038383836118f8565b505050565b610910611839565b73ffffffffffffffffffffffffffffffffffffffff1661092e610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b90613311565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a289061337d565b60405180910390fd5b600b5481610a3d6108e1565b610a4791906133cc565b1115610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f9061344c565b60405180910390fd5b610a928282611dac565b5050565b610ab1838383604051806020016040528060008152506111d7565b505050565b600082829050905060005b81811015610afc57610aeb848483818110610adf57610ade61346c565b5b90506020020135612087565b80610af59061349b565b9050610ac1565b50505050565b610b0a611839565b73ffffffffffffffffffffffffffffffffffffffff16610b28610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590613311565b60405180910390fd5b8060099081610b8d919061368f565b5050565b6000610b9c8261227a565b600001519050919050565b60098054610bb490613294565b80601f0160208091040260200160405190810160405280929190818152602001828054610be090613294565b8015610c2d5780601f10610c0257610100808354040283529160200191610c2d565b820191906000526020600020905b815481529060010190602001808311610c1057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c9c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610d0c611839565b73ffffffffffffffffffffffffffffffffffffffff16610d2a610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613311565b60405180910390fd5b610d8a6000612505565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610dea90613294565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1690613294565b8015610e635780601f10610e3857610100808354040283529160200191610e63565b820191906000526020600020905b815481529060010190602001808311610e4657829003601f168201915b5050505050905090565b610e75611839565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610ee6611839565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f93611839565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fd89190612b64565b60405180910390a35050565b610fec611839565b73ffffffffffffffffffffffffffffffffffffffff1661100a610db2565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790613311565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080600080600d6000868152602001908152602001600020549050600081146110f2576001935080426110ef9190613761565b92505b600e6000868152602001908152602001600020548361111191906133cc565b9150509193909250565b3373ffffffffffffffffffffffffffffffffffffffff1661113b82610b91565b73ffffffffffffffffffffffffffffffffffffffff1614611191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611188906137e1565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506111b7838383610a96565b6001600f60006101000a81548160ff021916908315150217905550505050565b6111e28484846118f8565b6112018373ffffffffffffffffffffffffffffffffffffffff166125c9565b1561124957611212848484846125ec565b611248576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061125a826117eb565b611290576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061129a61273c565b905060008151036112ba57604051806020016040528060008152506112e5565b806112c4846127ce565b6040516020016112d592919061383d565b6040516020818303038152906040525b915050919050565b6112f5611839565b73ffffffffffffffffffffffffffffffffffffffff16611313610db2565b73ffffffffffffffffffffffffffffffffffffffff1614611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090613311565b60405180910390fd5b6000600d600083815260200190815260200160002054036113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b6906138ad565b60405180910390fd5b600d600082815260200190815260200160002054426113de9190613761565b600e6000838152602001908152602001600020600082825461140091906133cc565b925050819055506000600d600083815260200190815260200160002081905550807fc13abbaa39c8e2ecd56c61e0422b9467301d210091c86fcdf735a82279430f1f60405160405180910390a2807f3ebee94e74ea24f711b5876dca724062e18b7b37b6883e686a92f093248a4fcf60405160405180910390a250565b600b5481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114e057600190506114ed565b6114ea838361292e565b90505b92915050565b6114fb611839565b73ffffffffffffffffffffffffffffffffffffffff16611519610db2565b73ffffffffffffffffffffffffffffffffffffffff161461156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690613311565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d59061393f565b60405180910390fd5b6115e781612505565b50565b6115f2611839565b73ffffffffffffffffffffffffffffffffffffffff16611610610db2565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613311565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6116c9611839565b73ffffffffffffffffffffffffffffffffffffffff166116e7610db2565b73ffffffffffffffffffffffffffffffffffffffff161461173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490613311565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816117f66118f3565b11158015611805575060015482105b8015611832575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006119038261227a565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461196e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661198f611839565b73ffffffffffffffffffffffffffffffffffffffff1614806119be57506119bd856119b8611839565b611483565b5b80611a0357506119cc611839565b73ffffffffffffffffffffffffffffffffffffffff166119eb8461074e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a3c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611aa2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aaf85858560016129c2565b611abb60008487611841565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d3a576001548214611d3957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611da58585856001612a67565b5050505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e19576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611e53576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e6060008483856129c2565b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612003578160018190555050506120826000848385612a67565b505050565b803373ffffffffffffffffffffffffffffffffffffffff166120a88261227a565b6000015173ffffffffffffffffffffffffffffffffffffffff16148061210157503373ffffffffffffffffffffffffffffffffffffffff166120e98261074e565b73ffffffffffffffffffffffffffffffffffffffff16145b612140576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612137906139ab565b60405180910390fd5b6000600d6000848152602001908152602001600020549050600081036121f957600f60019054906101000a900460ff166121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a690613a17565b60405180910390fd5b42600d600085815260200190815260200160002081905550827f1c3398af928f961cf9c1f49d3892d391f45dde3731266f32690ec2a94c3d3d5060405160405180910390a2612275565b80426122059190613761565b600e6000858152602001908152602001600020600082825461222791906133cc565b925050819055506000600d600085815260200190815260200160002081905550827fc13abbaa39c8e2ecd56c61e0422b9467301d210091c86fcdf735a82279430f1f60405160405180910390a25b505050565b612282612a6d565b6000829050806122906118f3565b116124ce576001548110156124cd576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124cb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123af578092505050612500565b5b6001156124ca57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124c5578092505050612500565b6123b0565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612612611839565b8786866040518563ffffffff1660e01b81526004016126349493929190613a8c565b6020604051808303816000875af192505050801561267057506040513d601f19601f8201168201806040525081019061266d9190613aed565b60015b6126e9573d80600081146126a0576040519150601f19603f3d011682016040523d82523d6000602084013e6126a5565b606091505b5060008151036126e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461274b90613294565b80601f016020809104026020016040519081016040528092919081815260200182805461277790613294565b80156127c45780601f10612799576101008083540402835291602001916127c4565b820191906000526020600020905b8154815290600101906020018083116127a757829003601f168201915b5050505050905090565b606060008203612815576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612929565b600082905060005b600082146128475780806128309061349b565b915050600a826128409190613b49565b915061281d565b60008167ffffffffffffffff81111561286357612862612ee9565b5b6040519080825280601f01601f1916602001820160405280156128955781602001600182028036833780820191505090505b5090505b60008514612922576001826128ae9190613761565b9150600a856128bd9190613b7a565b60306128c991906133cc565b60f81b8183815181106128df576128de61346c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291b9190613b49565b9450612899565b8093505050505b919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000829050600082826129d591906133cc565b90505b80821015612a5f576000600d6000848152602001908152602001600020541480612a0f5750600f60009054906101000a900460ff16155b612a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4590613bf7565b60405180910390fd5b81612a589061349b565b91506129d8565b505050505050565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612af981612ac4565b8114612b0457600080fd5b50565b600081359050612b1681612af0565b92915050565b600060208284031215612b3257612b31612aba565b5b6000612b4084828501612b07565b91505092915050565b60008115159050919050565b612b5e81612b49565b82525050565b6000602082019050612b796000830184612b55565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bb9578082015181840152602081019050612b9e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612be182612b7f565b612beb8185612b8a565b9350612bfb818560208601612b9b565b612c0481612bc5565b840191505092915050565b60006020820190508181036000830152612c298184612bd6565b905092915050565b6000819050919050565b612c4481612c31565b8114612c4f57600080fd5b50565b600081359050612c6181612c3b565b92915050565b600060208284031215612c7d57612c7c612aba565b5b6000612c8b84828501612c52565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cbf82612c94565b9050919050565b612ccf81612cb4565b82525050565b6000602082019050612cea6000830184612cc6565b92915050565b612cf981612cb4565b8114612d0457600080fd5b50565b600081359050612d1681612cf0565b92915050565b60008060408385031215612d3357612d32612aba565b5b6000612d4185828601612d07565b9250506020612d5285828601612c52565b9150509250929050565b612d6581612c31565b82525050565b6000602082019050612d806000830184612d5c565b92915050565b600080600060608486031215612d9f57612d9e612aba565b5b6000612dad86828701612d07565b9350506020612dbe86828701612d07565b9250506040612dcf86828701612c52565b9150509250925092565b612de281612b49565b8114612ded57600080fd5b50565b600081359050612dff81612dd9565b92915050565b600060208284031215612e1b57612e1a612aba565b5b6000612e2984828501612df0565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612e5757612e56612e32565b5b8235905067ffffffffffffffff811115612e7457612e73612e37565b5b602083019150836020820283011115612e9057612e8f612e3c565b5b9250929050565b60008060208385031215612eae57612ead612aba565b5b600083013567ffffffffffffffff811115612ecc57612ecb612abf565b5b612ed885828601612e41565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f2182612bc5565b810181811067ffffffffffffffff82111715612f4057612f3f612ee9565b5b80604052505050565b6000612f53612ab0565b9050612f5f8282612f18565b919050565b600067ffffffffffffffff821115612f7f57612f7e612ee9565b5b612f8882612bc5565b9050602081019050919050565b82818337600083830152505050565b6000612fb7612fb284612f64565b612f49565b905082815260208101848484011115612fd357612fd2612ee4565b5b612fde848285612f95565b509392505050565b600082601f830112612ffb57612ffa612e32565b5b813561300b848260208601612fa4565b91505092915050565b60006020828403121561302a57613029612aba565b5b600082013567ffffffffffffffff81111561304857613047612abf565b5b61305484828501612fe6565b91505092915050565b60006020828403121561307357613072612aba565b5b600061308184828501612d07565b91505092915050565b600080604083850312156130a1576130a0612aba565b5b60006130af85828601612d07565b92505060206130c085828601612df0565b9150509250929050565b60006060820190506130df6000830186612b55565b6130ec6020830185612d5c565b6130f96040830184612d5c565b949350505050565b600067ffffffffffffffff82111561311c5761311b612ee9565b5b61312582612bc5565b9050602081019050919050565b600061314561314084613101565b612f49565b90508281526020810184848401111561316157613160612ee4565b5b61316c848285612f95565b509392505050565b600082601f83011261318957613188612e32565b5b8135613199848260208601613132565b91505092915050565b600080600080608085870312156131bc576131bb612aba565b5b60006131ca87828801612d07565b94505060206131db87828801612d07565b93505060406131ec87828801612c52565b925050606085013567ffffffffffffffff81111561320d5761320c612abf565b5b61321987828801613174565b91505092959194509250565b6000806040838503121561323c5761323b612aba565b5b600061324a85828601612d07565b925050602061325b85828601612d07565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132ac57607f821691505b6020821081036132bf576132be613265565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132fb602083612b8a565b9150613306826132c5565b602082019050919050565b6000602082019050818103600083015261332a816132ee565b9050919050565b7f6f6e6c792073616c65206d616e61676572000000000000000000000000000000600082015250565b6000613367601183612b8a565b915061337282613331565b602082019050919050565b600060208201905081810360008301526133968161335a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133d782612c31565b91506133e283612c31565b92508282019050808211156133fa576133f961339d565b5b92915050565b7f6d6178537570706c790000000000000000000000000000000000000000000000600082015250565b6000613436600983612b8a565b915061344182613400565b602082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006134a682612c31565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134d8576134d761339d565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613508565b61354f8683613508565b95508019841693508086168417925050509392505050565b6000819050919050565b600061358c61358761358284612c31565b613567565b612c31565b9050919050565b6000819050919050565b6135a683613571565b6135ba6135b282613593565b848454613515565b825550505050565b600090565b6135cf6135c2565b6135da81848461359d565b505050565b5b818110156135fe576135f36000826135c7565b6001810190506135e0565b5050565b601f82111561364357613614816134e3565b61361d846134f8565b8101602085101561362c578190505b613640613638856134f8565b8301826135df565b50505b505050565b600082821c905092915050565b600061366660001984600802613648565b1980831691505092915050565b600061367f8383613655565b9150826002028217905092915050565b61369882612b7f565b67ffffffffffffffff8111156136b1576136b0612ee9565b5b6136bb8254613294565b6136c6828285613602565b600060209050601f8311600181146136f957600084156136e7578287015190505b6136f18582613673565b865550613759565b601f198416613707866134e3565b60005b8281101561372f5784890151825560018201915060208501945060208101905061370a565b8683101561374c5784890151613748601f891682613655565b8355505b6001600288020188555050505b505050505050565b600061376c82612c31565b915061377783612c31565b925082820390508181111561378f5761378e61339d565b5b92915050565b7f436f726e546f776e3a204f6e6c79206f776e6572000000000000000000000000600082015250565b60006137cb601483612b8a565b91506137d682613795565b602082019050919050565b600060208201905081810360008301526137fa816137be565b9050919050565b600081905092915050565b600061381782612b7f565b6138218185613801565b9350613831818560208601612b9b565b80840191505092915050565b6000613849828561380c565b9150613855828461380c565b91508190509392505050565b7f436f726e546f776e3a206e6f742073656564696e670000000000000000000000600082015250565b6000613897601583612b8a565b91506138a282613861565b602082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613929602683612b8a565b9150613934826138cd565b604082019050919050565b600060208201905081810360008301526139588161391c565b9050919050565b7f436f726e546f776e3a204e6f7420617070726f766564206e6f72206f776e6572600082015250565b6000613995602083612b8a565b91506139a08261395f565b602082019050919050565b600060208201905081810360008301526139c481613988565b9050919050565b7f436f726e546f776e3a2073656564696e6720636c6f7365640000000000000000600082015250565b6000613a01601883612b8a565b9150613a0c826139cb565b602082019050919050565b60006020820190508181036000830152613a30816139f4565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a5e82613a37565b613a688185613a42565b9350613a78818560208601612b9b565b613a8181612bc5565b840191505092915050565b6000608082019050613aa16000830187612cc6565b613aae6020830186612cc6565b613abb6040830185612d5c565b8181036060830152613acd8184613a53565b905095945050505050565b600081519050613ae781612af0565b92915050565b600060208284031215613b0357613b02612aba565b5b6000613b1184828501613ad8565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b5482612c31565b9150613b5f83612c31565b925082613b6f57613b6e613b1a565b5b828204905092915050565b6000613b8582612c31565b9150613b9083612c31565b925082613ba057613b9f613b1a565b5b828206905092915050565b7f436f726e546f776e3a2073656564696e67000000000000000000000000000000600082015250565b6000613be1601183612b8a565b9150613bec82613bab565b602082019050919050565b60006020820190508181036000830152613c1081613bd4565b905091905056fea2646970667358221220fbedbe2ffd7f33d8cd5c35f99a8aadd9f5ed74ceb8fef2e1cf37365ca76263e864736f6c63430008100033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000008436f726e546f776e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004434f524e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): CornTown
Arg [1] : symbol (string): CORN
Arg [2] : _maxSupply (uint256): 10000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 436f726e546f776e000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 434f524e00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46728:6703:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25135:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28250:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29754:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29316:372;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47556:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24375:312;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30619:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51537:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48778:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30860:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52276;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48578:94;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28058:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46803:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25504:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45572:103;;;:::i;:::-;;46829:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44921:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28419:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30030:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49198:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50270:326;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;50738:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31116:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28594:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53116:312;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46860:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49433:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45830:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49313:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49088:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25135:305;25237:4;25289:25;25274:40;;;:11;:40;;;;:105;;;;25346:33;25331:48;;;:11;:48;;;;25274:105;:158;;;;25396:36;25420:11;25396:23;:36::i;:::-;25274:158;25254:178;;25135:305;;;:::o;28250:100::-;28304:13;28337:5;28330:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28250:100;:::o;29754:204::-;29822:7;29847:16;29855:7;29847;:16::i;:::-;29842:64;;29872:34;;;;;;;;;;;;;;29842:64;29926:15;:24;29942:7;29926:24;;;;;;;;;;;;;;;;;;;;;29919:31;;29754:204;;;:::o;29316:372::-;29389:13;29405:24;29421:7;29405:15;:24::i;:::-;29389:40;;29450:5;29444:11;;:2;:11;;;29440:48;;29464:24;;;;;;;;;;;;;;29440:48;29521:5;29505:21;;:12;:10;:12::i;:::-;:21;;;29501:139;;29532:37;29549:5;29556:12;:10;:12::i;:::-;29532:16;:37::i;:::-;29528:112;;29593:35;;;;;;;;;;;;;;29528:112;29501:139;29652:28;29661:2;29665:7;29674:5;29652:8;:28::i;:::-;29378:310;29316:372;;:::o;47556:31::-;;;;;;;;;;;;;:::o;24375:312::-;24428:7;24653:15;:13;:15::i;:::-;24638:12;;24622:13;;:28;:46;24615:53;;24375:312;:::o;30619:170::-;30753:28;30763:4;30769:2;30773:7;30753:9;:28::i;:::-;30619:170;;;:::o;51537:85::-;45152:12;:10;:12::i;:::-;45141:23;;:7;:5;:7::i;:::-;:23;;;45133:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51612:4:::1;51598:11;;:18;;;;;;;;;;;;;;;;;;51537:85:::0;:::o;48778:196::-;48228:11;;;;;;;;;;;48214:25;;:10;:25;;;48206:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;48911:9:::1;;48901:6;48885:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;48877:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;48941:27;48947:12;48961:6;48941:5;:27::i;:::-;48778:196:::0;;:::o;30860:185::-;30998:39;31015:4;31021:2;31025:7;30998:39;;;;;;;;;;;;:16;:39::i;:::-;30860:185;;;:::o;52276:::-;52344:9;52356:8;;:15;;52344:27;;52385:9;52380:76;52404:1;52400;:5;52380:76;;;52421:27;52436:8;;52445:1;52436:11;;;;;;;:::i;:::-;;;;;;;;52421:14;:27::i;:::-;52407:3;;;;:::i;:::-;;;52380:76;;;;52337:124;52276:185;;:::o;48578:94::-;45152:12;:10;:12::i;:::-;45141:23;;:7;:5;:7::i;:::-;:23;;;45133:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48658:8:::1;48648:7;:18;;;;;;:::i;:::-;;48578:94:::0;:::o;28058:125::-;28122:7;28149:21;28162:7;28149:12;:21::i;:::-;:26;;;28142:33;;28058:125;;;:::o;46803:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25504:206::-;25568:7;25609:1;25592:19;;:5;:19;;;25588:60;;25620:28;;;;;;;;;;;;;;25588:60;25674:12;:19;25687:5;25674:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25666:36;;25659:43;;25504:206;;;:::o;45572:103::-;45152:12;:10;:12::i;:::-;45141:23;;:7;:5;:7::i;:::-;:23;;;45133:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45637:30:::1;45664:1;45637:18;:30::i;:::-;45572:103::o:0;46829:26::-;;;;;;;;;;;;;:::o;44921:87::-;44967:7;44994:6;;;;;;;;;;;44987:13;;44921:87;:::o;28419:104::-;28475:13;28508:7;28501:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28419:104;:::o;30030:287::-;30141:12;:10;:12::i;:::-;30129:24;;:8;:24;;;30125:54;;30162:17;;;;;;;;;;;;;;30125:54;30237:8;30192:18;:32;30211:12;:10;:12::i;:::-;30192:32;;;;;;;;;;;;;;;:42;30225:8;30192:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30290:8;30261:48;;30276:12;:10;:12::i;:::-;30261:48;;;30300:8;30261:48;;;;;;:::i;:::-;;;;;;;;30030:287;;:::o;49198:109::-;45152:12;:10;:12::i;:::-;45141:23;;:7;:5;:7::i;:::-;:23;;;45133:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49297:4:::1;49264:19;:30;49284:9;49264:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;49198:109:::0;:::o;50270:326::-;50339:12;50358:15;50380:13;50406;50422:14;:23;50437:7;50422:23;;;;;;;;;;;;50406:39;;50467:1;50458:5;:10;50454:89;;50489:4;50479:14;;50530:5;50512:15;:23;;;;:::i;:::-;50502:33;;50454:89;50569:12;:21;50582:7;50569:21;;;;;;;;;;;;50559:7;:31;;;;:::i;:::-;50551:39;;50399:197;50270:326;;;;;:::o;50738:295::-;50879:10;50859:30;;:16;50867:7;50859;:16::i;:::-;:30;;;50851:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50946:5;50923:20;;:28;;;;;;;;;;;;;;;;;;50958:35;50975:4;50981:2;50985:7;50958:16;:35::i;:::-;51023:4;51000:20;;:27;;;;;;;;;;;;;;;;;;50738:295;;;:::o;31116:370::-;31283:28;31293:4;31299:2;31303:7;31283:9;:28::i;:::-;31326:15;:2;:13;;;:15::i;:::-;31322:157;;;31347:56;31378:4;31384:2;31388:7;31397:5;31347:30;:56::i;:::-;31343:136;;31427:40;;;;;;;;;;;;;;31343:136;31322:157;31116:370;;;;:::o;28594:318::-;28667:13;28698:16;28706:7;28698;:16::i;:::-;28693:59;;28723:29;;;;;;;;;;;;;;28693:59;28765:21;28789:10;:8;:10::i;:::-;28765:34;;28842:1;28823:7;28817:21;:26;:87;;;;;;;;;;;;;;;;;28870:7;28879:18;:7;:16;:18::i;:::-;28853:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28817:87;28810:94;;;28594:318;;;:::o;53116:312::-;45152:12;:10;:12::i;:::-;45141:23;;:7;:5;:7::i;:::-;:23;;;45133:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53219:1:::1;53192:14;:23;53207:7;53192:23;;;;;;;;;;;;:28:::0;53184:62:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;53300:14;:23;53315:7;53300:23;;;;;;;;;;;;53282:15;:41;;;;:::i;:::-;53257:12;:21;53270:7;53257:21;;;;;;;;;;;;:66;;;;;;;:::i;:::-;;;;;;;;53358:1;53332:14;:23;53347:7;53332:23;;;;;;;;;;;:27;;;;53383:7;53375:16;;;;;;;;;;53414:7;53405:17;;;;;;;;;;53116:312:::0;:::o;46860:24::-;;;;:::o;49433:225::-;49522:4;49539:19;:29;49559:8;49539:29;;;;;;;;;;;;;;;;;;;;;;;;;49535:63;;;49586:4;49579:11;;;;49535:63;49613:39;49636:5;49643:8;49613:22;:39::i;:::-;49606:46;;49433:225;;;;;:::o;45830:201::-;45152:12;:10;:12::i;:::-;45141:23;;:7;:5;:7::i;:::-;:23;;;45133:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45939:1:::1;45919:22;;:8;:22;;::::0;45911:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;45995:28;46014:8;45995:18;:28::i;:::-;45830:201:::0;:::o;49313:114::-;45152:12;:10;:12::i;:::-;45141:23;;:7;:5;:7::i;:::-;:23;;;45133:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49416:5:::1;49383:19;:30;49403:9;49383:30;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;49313:114:::0;:::o;49088:104::-;45152:12;:10;:12::i;:::-;45141:23;;:7;:5;:7::i;:::-;:23;;;45133:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49174:12:::1;49160:11;;:26;;;;;;;;;;;;;;;;;;49088:104:::0;:::o;22209:157::-;22294:4;22333:25;22318:40;;;:11;:40;;;;22311:47;;22209:157;;;:::o;31741:174::-;31798:4;31841:7;31822:15;:13;:15::i;:::-;:26;;:53;;;;;31862:13;;31852:7;:23;31822:53;:85;;;;;31880:11;:20;31892:7;31880:20;;;;;;;;;;;:27;;;;;;;;;;;;31879:28;31822:85;31815:92;;31741:174;;;:::o;19195:98::-;19248:7;19275:10;19268:17;;19195:98;:::o;40963:196::-;41105:2;41078:15;:24;41094:7;41078:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41143:7;41139:2;41123:28;;41132:5;41123:28;;;;;;;;;;;;40963:196;;;:::o;24149:92::-;24205:7;24149:92;:::o;35911:2130::-;36026:35;36064:21;36077:7;36064:12;:21::i;:::-;36026:59;;36124:4;36102:26;;:13;:18;;;:26;;;36098:67;;36137:28;;;;;;;;;;;;;;36098:67;36178:22;36220:4;36204:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;36241:36;36258:4;36264:12;:10;:12::i;:::-;36241:16;:36::i;:::-;36204:73;:126;;;;36318:12;:10;:12::i;:::-;36294:36;;:20;36306:7;36294:11;:20::i;:::-;:36;;;36204:126;36178:153;;36349:17;36344:66;;36375:35;;;;;;;;;;;;;;36344:66;36439:1;36425:16;;:2;:16;;;36421:52;;36450:23;;;;;;;;;;;;;;36421:52;36486:43;36508:4;36514:2;36518:7;36527:1;36486:21;:43::i;:::-;36594:35;36611:1;36615:7;36624:4;36594:8;:35::i;:::-;36955:1;36925:12;:18;36938:4;36925:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36999:1;36971:12;:16;36984:2;36971:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37017:31;37051:11;:20;37063:7;37051:20;;;;;;;;;;;37017:54;;37102:2;37086:8;:13;;;:18;;;;;;;;;;;;;;;;;;37152:15;37119:8;:23;;;:49;;;;;;;;;;;;;;;;;;37420:19;37452:1;37442:7;:11;37420:33;;37468:31;37502:11;:24;37514:11;37502:24;;;;;;;;;;;37468:58;;37570:1;37545:27;;:8;:13;;;;;;;;;;;;:27;;;37541:384;;37755:13;;37740:11;:28;37736:174;;37809:4;37793:8;:13;;;:20;;;;;;;;;;;;;;;;;;37862:13;:28;;;37836:8;:23;;;:54;;;;;;;;;;;;;;;;;;37736:174;37541:384;36900:1036;;;37972:7;37968:2;37953:27;;37962:4;37953:27;;;;;;;;;;;;37991:42;38012:4;38018:2;38022:7;38031:1;37991:20;:42::i;:::-;36015:2026;;35911:2130;;;:::o;34484:1173::-;34549:20;34572:13;;34549:36;;34614:1;34600:16;;:2;:16;;;34596:48;;34625:19;;;;;;;;;;;;;;34596:48;34671:1;34659:8;:13;34655:44;;34681:18;;;;;;;;;;;;;;34655:44;34712:61;34742:1;34746:2;34750:12;34764:8;34712:21;:61::i;:::-;35085:8;35050:12;:16;35063:2;35050:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35149:8;35109:12;:16;35122:2;35109:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35208:2;35175:11;:25;35187:12;35175:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35275:15;35225:11;:25;35237:12;35225:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35308:20;35331:12;35308:35;;35358:11;35387:8;35372:12;:23;35358:37;;35412:111;35464:14;;;;;;35460:2;35439:40;;35456:1;35439:40;;;;;;;;;;;;35518:3;35503:12;:18;35412:111;;35555:12;35539:13;:28;;;;35025:554;;35589:60;35618:1;35622:2;35626:12;35640:8;35589:20;:60::i;:::-;34538:1119;34484:1173;;:::o;51693:448::-;51768:7;48460:10;48430:40;;:21;48443:7;48430:12;:21::i;:::-;:26;;;:40;;;:78;;;;48498:10;48474:34;;:20;48486:7;48474:11;:20::i;:::-;:34;;;48430:78;48414:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;51784:13:::1;51800:14;:23;51815:7;51800:23;;;;;;;;;;;;51784:39;;51845:1;51836:5;:10:::0;51832:304:::1;;51865:11;;;;;;;;;;;51857:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51942:15;51916:14;:23;51931:7;51916:23;;;;;;;;;;;:41;;;;51981:7;51973:16;;;;;;;;;;51832:304;;;52055:5;52037:15;:23;;;;:::i;:::-;52012:12;:21;52025:7;52012:21;;;;;;;;;;;;:48;;;;;;;:::i;:::-;;;;;;;;52095:1;52069:14;:23;52084:7;52069:23;;;;;;;;;;;:27;;;;52120:7;52112:16;;;;;;;;;;51832:304;51777:364;51693:448:::0;;:::o;26885:1111::-;26947:21;;:::i;:::-;26981:12;26996:7;26981:22;;27064:4;27045:15;:13;:15::i;:::-;:23;27041:888;;27081:13;;27074:4;:20;27070:859;;;27115:31;27149:11;:17;27161:4;27149:17;;;;;;;;;;;27115:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27190:9;:16;;;27185:729;;27261:1;27235:28;;:9;:14;;;:28;;;27231:101;;27299:9;27292:16;;;;;;27231:101;27634:261;27641:4;27634:261;;;27674:6;;;;;;;;27719:11;:17;27731:4;27719:17;;;;;;;;;;;27707:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27793:1;27767:28;;:9;:14;;;:28;;;27763:109;;27835:9;27828:16;;;;;;27763:109;27634:261;;;27185:729;27096:833;27070:859;27041:888;27957:31;;;;;;;;;;;;;;26885:1111;;;;:::o;46191:191::-;46265:16;46284:6;;;;;;;;;;;46265:25;;46310:8;46301:6;;:17;;;;;;;;;;;;;;;;;;46365:8;46334:40;;46355:8;46334:40;;;;;;;;;;;;46254:128;46191:191;:::o;11333:326::-;11393:4;11650:1;11628:7;:19;;;:23;11621:30;;11333:326;;;:::o;41651:667::-;41814:4;41851:2;41835:36;;;41872:12;:10;:12::i;:::-;41886:4;41892:7;41901:5;41835:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41831:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42086:1;42069:6;:13;:18;42065:235;;42115:40;;;;;;;;;;;;;;42065:235;42258:6;42252:13;42243:6;42239:2;42235:15;42228:38;41831:480;41964:45;;;41954:55;;;:6;:55;;;;41947:62;;;41651:667;;;;;;:::o;48678:94::-;48730:13;48759:7;48752:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48678:94;:::o;19687:723::-;19743:13;19973:1;19964:5;:10;19960:53;;19991:10;;;;;;;;;;;;;;;;;;;;;19960:53;20023:12;20038:5;20023:20;;20054:14;20079:78;20094:1;20086:4;:9;20079:78;;20112:8;;;;;:::i;:::-;;;;20143:2;20135:10;;;;;:::i;:::-;;;20079:78;;;20167:19;20199:6;20189:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20167:39;;20217:154;20233:1;20224:5;:10;20217:154;;20261:1;20251:11;;;;;:::i;:::-;;;20328:2;20320:5;:10;;;;:::i;:::-;20307:2;:24;;;;:::i;:::-;20294:39;;20277:6;20284;20277:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;20357:2;20348:11;;;;;:::i;:::-;;;20217:154;;;20395:6;20381:21;;;;;19687:723;;;;:::o;30388:164::-;30485:4;30509:18;:25;30528:5;30509:25;;;;;;;;;;;;;;;:35;30535:8;30509:35;;;;;;;;;;;;;;;;;;;;;;;;;30502:42;;30388:164;;;;:::o;51093:380::-;51237:15;51255:12;51237:30;;51281:11;51305:8;51295:7;:18;;;;:::i;:::-;51281:32;;51276:192;51325:3;51315:7;:13;51276:192;;;51395:1;51368:14;:23;51383:7;51368:23;;;;;;;;;;;;:28;:53;;;;51401:20;;;;;;;;;;;51400:21;51368:53;51350:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;51330:9;;;;:::i;:::-;;;51276:192;;;;51230:243;51093:380;;;;:::o;43784:158::-;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:116::-;5937:21;5952:5;5937:21;:::i;:::-;5930:5;5927:32;5917:60;;5973:1;5970;5963:12;5917:60;5867:116;:::o;5989:133::-;6032:5;6070:6;6057:20;6048:29;;6086:30;6110:5;6086:30;:::i;:::-;5989:133;;;;:::o;6128:323::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:50;6426:7;6417:6;6406:9;6402:22;6384:50;:::i;:::-;6374:60;;6330:114;6128:323;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:117;6812:1;6809;6802:12;6843:568;6916:8;6926:6;6976:3;6969:4;6961:6;6957:17;6953:27;6943:122;;6984:79;;:::i;:::-;6943:122;7097:6;7084:20;7074:30;;7127:18;7119:6;7116:30;7113:117;;;7149:79;;:::i;:::-;7113:117;7263:4;7255:6;7251:17;7239:29;;7317:3;7309:4;7301:6;7297:17;7287:8;7283:32;7280:41;7277:128;;;7324:79;;:::i;:::-;7277:128;6843:568;;;;;:::o;7417:559::-;7503:6;7511;7560:2;7548:9;7539:7;7535:23;7531:32;7528:119;;;7566:79;;:::i;:::-;7528:119;7714:1;7703:9;7699:17;7686:31;7744:18;7736:6;7733:30;7730:117;;;7766:79;;:::i;:::-;7730:117;7879:80;7951:7;7942:6;7931:9;7927:22;7879:80;:::i;:::-;7861:98;;;;7657:312;7417:559;;;;;:::o;7982:117::-;8091:1;8088;8081:12;8105:180;8153:77;8150:1;8143:88;8250:4;8247:1;8240:15;8274:4;8271:1;8264:15;8291:281;8374:27;8396:4;8374:27;:::i;:::-;8366:6;8362:40;8504:6;8492:10;8489:22;8468:18;8456:10;8453:34;8450:62;8447:88;;;8515:18;;:::i;:::-;8447:88;8555:10;8551:2;8544:22;8334:238;8291:281;;:::o;8578:129::-;8612:6;8639:20;;:::i;:::-;8629:30;;8668:33;8696:4;8688:6;8668:33;:::i;:::-;8578:129;;;:::o;8713:308::-;8775:4;8865:18;8857:6;8854:30;8851:56;;;8887:18;;:::i;:::-;8851:56;8925:29;8947:6;8925:29;:::i;:::-;8917:37;;9009:4;9003;8999:15;8991:23;;8713:308;;;:::o;9027:146::-;9124:6;9119:3;9114;9101:30;9165:1;9156:6;9151:3;9147:16;9140:27;9027:146;;;:::o;9179:425::-;9257:5;9282:66;9298:49;9340:6;9298:49;:::i;:::-;9282:66;:::i;:::-;9273:75;;9371:6;9364:5;9357:21;9409:4;9402:5;9398:16;9447:3;9438:6;9433:3;9429:16;9426:25;9423:112;;;9454:79;;:::i;:::-;9423:112;9544:54;9591:6;9586:3;9581;9544:54;:::i;:::-;9263:341;9179:425;;;;;:::o;9624:340::-;9680:5;9729:3;9722:4;9714:6;9710:17;9706:27;9696:122;;9737:79;;:::i;:::-;9696:122;9854:6;9841:20;9879:79;9954:3;9946:6;9939:4;9931:6;9927:17;9879:79;:::i;:::-;9870:88;;9686:278;9624:340;;;;:::o;9970:509::-;10039:6;10088:2;10076:9;10067:7;10063:23;10059:32;10056:119;;;10094:79;;:::i;:::-;10056:119;10242:1;10231:9;10227:17;10214:31;10272:18;10264:6;10261:30;10258:117;;;10294:79;;:::i;:::-;10258:117;10399:63;10454:7;10445:6;10434:9;10430:22;10399:63;:::i;:::-;10389:73;;10185:287;9970:509;;;;:::o;10485:329::-;10544:6;10593:2;10581:9;10572:7;10568:23;10564:32;10561:119;;;10599:79;;:::i;:::-;10561:119;10719:1;10744:53;10789:7;10780:6;10769:9;10765:22;10744:53;:::i;:::-;10734:63;;10690:117;10485:329;;;;:::o;10820:468::-;10885:6;10893;10942:2;10930:9;10921:7;10917:23;10913:32;10910:119;;;10948:79;;:::i;:::-;10910:119;11068:1;11093:53;11138:7;11129:6;11118:9;11114:22;11093:53;:::i;:::-;11083:63;;11039:117;11195:2;11221:50;11263:7;11254:6;11243:9;11239:22;11221:50;:::i;:::-;11211:60;;11166:115;10820:468;;;;;:::o;11294:430::-;11437:4;11475:2;11464:9;11460:18;11452:26;;11488:65;11550:1;11539:9;11535:17;11526:6;11488:65;:::i;:::-;11563:72;11631:2;11620:9;11616:18;11607:6;11563:72;:::i;:::-;11645;11713:2;11702:9;11698:18;11689:6;11645:72;:::i;:::-;11294:430;;;;;;:::o;11730:307::-;11791:4;11881:18;11873:6;11870:30;11867:56;;;11903:18;;:::i;:::-;11867:56;11941:29;11963:6;11941:29;:::i;:::-;11933:37;;12025:4;12019;12015:15;12007:23;;11730:307;;;:::o;12043:423::-;12120:5;12145:65;12161:48;12202:6;12161:48;:::i;:::-;12145:65;:::i;:::-;12136:74;;12233:6;12226:5;12219:21;12271:4;12264:5;12260:16;12309:3;12300:6;12295:3;12291:16;12288:25;12285:112;;;12316:79;;:::i;:::-;12285:112;12406:54;12453:6;12448:3;12443;12406:54;:::i;:::-;12126:340;12043:423;;;;;:::o;12485:338::-;12540:5;12589:3;12582:4;12574:6;12570:17;12566:27;12556:122;;12597:79;;:::i;:::-;12556:122;12714:6;12701:20;12739:78;12813:3;12805:6;12798:4;12790:6;12786:17;12739:78;:::i;:::-;12730:87;;12546:277;12485:338;;;;:::o;12829:943::-;12924:6;12932;12940;12948;12997:3;12985:9;12976:7;12972:23;12968:33;12965:120;;;13004:79;;:::i;:::-;12965:120;13124:1;13149:53;13194:7;13185:6;13174:9;13170:22;13149:53;:::i;:::-;13139:63;;13095:117;13251:2;13277:53;13322:7;13313:6;13302:9;13298:22;13277:53;:::i;:::-;13267:63;;13222:118;13379:2;13405:53;13450:7;13441:6;13430:9;13426:22;13405:53;:::i;:::-;13395:63;;13350:118;13535:2;13524:9;13520:18;13507:32;13566:18;13558:6;13555:30;13552:117;;;13588:79;;:::i;:::-;13552:117;13693:62;13747:7;13738:6;13727:9;13723:22;13693:62;:::i;:::-;13683:72;;13478:287;12829:943;;;;;;;:::o;13778:474::-;13846:6;13854;13903:2;13891:9;13882:7;13878:23;13874:32;13871:119;;;13909:79;;:::i;:::-;13871:119;14029:1;14054:53;14099:7;14090:6;14079:9;14075:22;14054:53;:::i;:::-;14044:63;;14000:117;14156:2;14182:53;14227:7;14218:6;14207:9;14203:22;14182:53;:::i;:::-;14172:63;;14127:118;13778:474;;;;;:::o;14258:180::-;14306:77;14303:1;14296:88;14403:4;14400:1;14393:15;14427:4;14424:1;14417:15;14444:320;14488:6;14525:1;14519:4;14515:12;14505:22;;14572:1;14566:4;14562:12;14593:18;14583:81;;14649:4;14641:6;14637:17;14627:27;;14583:81;14711:2;14703:6;14700:14;14680:18;14677:38;14674:84;;14730:18;;:::i;:::-;14674:84;14495:269;14444:320;;;:::o;14770:182::-;14910:34;14906:1;14898:6;14894:14;14887:58;14770:182;:::o;14958:366::-;15100:3;15121:67;15185:2;15180:3;15121:67;:::i;:::-;15114:74;;15197:93;15286:3;15197:93;:::i;:::-;15315:2;15310:3;15306:12;15299:19;;14958:366;;;:::o;15330:419::-;15496:4;15534:2;15523:9;15519:18;15511:26;;15583:9;15577:4;15573:20;15569:1;15558:9;15554:17;15547:47;15611:131;15737:4;15611:131;:::i;:::-;15603:139;;15330:419;;;:::o;15755:167::-;15895:19;15891:1;15883:6;15879:14;15872:43;15755:167;:::o;15928:366::-;16070:3;16091:67;16155:2;16150:3;16091:67;:::i;:::-;16084:74;;16167:93;16256:3;16167:93;:::i;:::-;16285:2;16280:3;16276:12;16269:19;;15928:366;;;:::o;16300:419::-;16466:4;16504:2;16493:9;16489:18;16481:26;;16553:9;16547:4;16543:20;16539:1;16528:9;16524:17;16517:47;16581:131;16707:4;16581:131;:::i;:::-;16573:139;;16300:419;;;:::o;16725:180::-;16773:77;16770:1;16763:88;16870:4;16867:1;16860:15;16894:4;16891:1;16884:15;16911:191;16951:3;16970:20;16988:1;16970:20;:::i;:::-;16965:25;;17004:20;17022:1;17004:20;:::i;:::-;16999:25;;17047:1;17044;17040:9;17033:16;;17068:3;17065:1;17062:10;17059:36;;;17075:18;;:::i;:::-;17059:36;16911:191;;;;:::o;17108:159::-;17248:11;17244:1;17236:6;17232:14;17225:35;17108:159;:::o;17273:365::-;17415:3;17436:66;17500:1;17495:3;17436:66;:::i;:::-;17429:73;;17511:93;17600:3;17511:93;:::i;:::-;17629:2;17624:3;17620:12;17613:19;;17273:365;;;:::o;17644:419::-;17810:4;17848:2;17837:9;17833:18;17825:26;;17897:9;17891:4;17887:20;17883:1;17872:9;17868:17;17861:47;17925:131;18051:4;17925:131;:::i;:::-;17917:139;;17644:419;;;:::o;18069:180::-;18117:77;18114:1;18107:88;18214:4;18211:1;18204:15;18238:4;18235:1;18228:15;18255:233;18294:3;18317:24;18335:5;18317:24;:::i;:::-;18308:33;;18363:66;18356:5;18353:77;18350:103;;18433:18;;:::i;:::-;18350:103;18480:1;18473:5;18469:13;18462:20;;18255:233;;;:::o;18494:141::-;18543:4;18566:3;18558:11;;18589:3;18586:1;18579:14;18623:4;18620:1;18610:18;18602:26;;18494:141;;;:::o;18641:93::-;18678:6;18725:2;18720;18713:5;18709:14;18705:23;18695:33;;18641:93;;;:::o;18740:107::-;18784:8;18834:5;18828:4;18824:16;18803:37;;18740:107;;;;:::o;18853:393::-;18922:6;18972:1;18960:10;18956:18;18995:97;19025:66;19014:9;18995:97;:::i;:::-;19113:39;19143:8;19132:9;19113:39;:::i;:::-;19101:51;;19185:4;19181:9;19174:5;19170:21;19161:30;;19234:4;19224:8;19220:19;19213:5;19210:30;19200:40;;18929:317;;18853:393;;;;;:::o;19252:60::-;19280:3;19301:5;19294:12;;19252:60;;;:::o;19318:142::-;19368:9;19401:53;19419:34;19428:24;19446:5;19428:24;:::i;:::-;19419:34;:::i;:::-;19401:53;:::i;:::-;19388:66;;19318:142;;;:::o;19466:75::-;19509:3;19530:5;19523:12;;19466:75;;;:::o;19547:269::-;19657:39;19688:7;19657:39;:::i;:::-;19718:91;19767:41;19791:16;19767:41;:::i;:::-;19759:6;19752:4;19746:11;19718:91;:::i;:::-;19712:4;19705:105;19623:193;19547:269;;;:::o;19822:73::-;19867:3;19822:73;:::o;19901:189::-;19978:32;;:::i;:::-;20019:65;20077:6;20069;20063:4;20019:65;:::i;:::-;19954:136;19901:189;;:::o;20096:186::-;20156:120;20173:3;20166:5;20163:14;20156:120;;;20227:39;20264:1;20257:5;20227:39;:::i;:::-;20200:1;20193:5;20189:13;20180:22;;20156:120;;;20096:186;;:::o;20288:543::-;20389:2;20384:3;20381:11;20378:446;;;20423:38;20455:5;20423:38;:::i;:::-;20507:29;20525:10;20507:29;:::i;:::-;20497:8;20493:44;20690:2;20678:10;20675:18;20672:49;;;20711:8;20696:23;;20672:49;20734:80;20790:22;20808:3;20790:22;:::i;:::-;20780:8;20776:37;20763:11;20734:80;:::i;:::-;20393:431;;20378:446;20288:543;;;:::o;20837:117::-;20891:8;20941:5;20935:4;20931:16;20910:37;;20837:117;;;;:::o;20960:169::-;21004:6;21037:51;21085:1;21081:6;21073:5;21070:1;21066:13;21037:51;:::i;:::-;21033:56;21118:4;21112;21108:15;21098:25;;21011:118;20960:169;;;;:::o;21134:295::-;21210:4;21356:29;21381:3;21375:4;21356:29;:::i;:::-;21348:37;;21418:3;21415:1;21411:11;21405:4;21402:21;21394:29;;21134:295;;;;:::o;21434:1395::-;21551:37;21584:3;21551:37;:::i;:::-;21653:18;21645:6;21642:30;21639:56;;;21675:18;;:::i;:::-;21639:56;21719:38;21751:4;21745:11;21719:38;:::i;:::-;21804:67;21864:6;21856;21850:4;21804:67;:::i;:::-;21898:1;21922:4;21909:17;;21954:2;21946:6;21943:14;21971:1;21966:618;;;;22628:1;22645:6;22642:77;;;22694:9;22689:3;22685:19;22679:26;22670:35;;22642:77;22745:67;22805:6;22798:5;22745:67;:::i;:::-;22739:4;22732:81;22601:222;21936:887;;21966:618;22018:4;22014:9;22006:6;22002:22;22052:37;22084:4;22052:37;:::i;:::-;22111:1;22125:208;22139:7;22136:1;22133:14;22125:208;;;22218:9;22213:3;22209:19;22203:26;22195:6;22188:42;22269:1;22261:6;22257:14;22247:24;;22316:2;22305:9;22301:18;22288:31;;22162:4;22159:1;22155:12;22150:17;;22125:208;;;22361:6;22352:7;22349:19;22346:179;;;22419:9;22414:3;22410:19;22404:26;22462:48;22504:4;22496:6;22492:17;22481:9;22462:48;:::i;:::-;22454:6;22447:64;22369:156;22346:179;22571:1;22567;22559:6;22555:14;22551:22;22545:4;22538:36;21973:611;;;21936:887;;21526:1303;;;21434:1395;;:::o;22835:194::-;22875:4;22895:20;22913:1;22895:20;:::i;:::-;22890:25;;22929:20;22947:1;22929:20;:::i;:::-;22924:25;;22973:1;22970;22966:9;22958:17;;22997:1;22991:4;22988:11;22985:37;;;23002:18;;:::i;:::-;22985:37;22835:194;;;;:::o;23035:170::-;23175:22;23171:1;23163:6;23159:14;23152:46;23035:170;:::o;23211:366::-;23353:3;23374:67;23438:2;23433:3;23374:67;:::i;:::-;23367:74;;23450:93;23539:3;23450:93;:::i;:::-;23568:2;23563:3;23559:12;23552:19;;23211:366;;;:::o;23583:419::-;23749:4;23787:2;23776:9;23772:18;23764:26;;23836:9;23830:4;23826:20;23822:1;23811:9;23807:17;23800:47;23864:131;23990:4;23864:131;:::i;:::-;23856:139;;23583:419;;;:::o;24008:148::-;24110:11;24147:3;24132:18;;24008:148;;;;:::o;24162:390::-;24268:3;24296:39;24329:5;24296:39;:::i;:::-;24351:89;24433:6;24428:3;24351:89;:::i;:::-;24344:96;;24449:65;24507:6;24502:3;24495:4;24488:5;24484:16;24449:65;:::i;:::-;24539:6;24534:3;24530:16;24523:23;;24272:280;24162:390;;;;:::o;24558:435::-;24738:3;24760:95;24851:3;24842:6;24760:95;:::i;:::-;24753:102;;24872:95;24963:3;24954:6;24872:95;:::i;:::-;24865:102;;24984:3;24977:10;;24558:435;;;;;:::o;24999:171::-;25139:23;25135:1;25127:6;25123:14;25116:47;24999:171;:::o;25176:366::-;25318:3;25339:67;25403:2;25398:3;25339:67;:::i;:::-;25332:74;;25415:93;25504:3;25415:93;:::i;:::-;25533:2;25528:3;25524:12;25517:19;;25176:366;;;:::o;25548:419::-;25714:4;25752:2;25741:9;25737:18;25729:26;;25801:9;25795:4;25791:20;25787:1;25776:9;25772:17;25765:47;25829:131;25955:4;25829:131;:::i;:::-;25821:139;;25548:419;;;:::o;25973:225::-;26113:34;26109:1;26101:6;26097:14;26090:58;26182:8;26177:2;26169:6;26165:15;26158:33;25973:225;:::o;26204:366::-;26346:3;26367:67;26431:2;26426:3;26367:67;:::i;:::-;26360:74;;26443:93;26532:3;26443:93;:::i;:::-;26561:2;26556:3;26552:12;26545:19;;26204:366;;;:::o;26576:419::-;26742:4;26780:2;26769:9;26765:18;26757:26;;26829:9;26823:4;26819:20;26815:1;26804:9;26800:17;26793:47;26857:131;26983:4;26857:131;:::i;:::-;26849:139;;26576:419;;;:::o;27001:182::-;27141:34;27137:1;27129:6;27125:14;27118:58;27001:182;:::o;27189:366::-;27331:3;27352:67;27416:2;27411:3;27352:67;:::i;:::-;27345:74;;27428:93;27517:3;27428:93;:::i;:::-;27546:2;27541:3;27537:12;27530:19;;27189:366;;;:::o;27561:419::-;27727:4;27765:2;27754:9;27750:18;27742:26;;27814:9;27808:4;27804:20;27800:1;27789:9;27785:17;27778:47;27842:131;27968:4;27842:131;:::i;:::-;27834:139;;27561:419;;;:::o;27986:174::-;28126:26;28122:1;28114:6;28110:14;28103:50;27986:174;:::o;28166:366::-;28308:3;28329:67;28393:2;28388:3;28329:67;:::i;:::-;28322:74;;28405:93;28494:3;28405:93;:::i;:::-;28523:2;28518:3;28514:12;28507:19;;28166:366;;;:::o;28538:419::-;28704:4;28742:2;28731:9;28727:18;28719:26;;28791:9;28785:4;28781:20;28777:1;28766:9;28762:17;28755:47;28819:131;28945:4;28819:131;:::i;:::-;28811:139;;28538:419;;;:::o;28963:98::-;29014:6;29048:5;29042:12;29032:22;;28963:98;;;:::o;29067:168::-;29150:11;29184:6;29179:3;29172:19;29224:4;29219:3;29215:14;29200:29;;29067:168;;;;:::o;29241:373::-;29327:3;29355:38;29387:5;29355:38;:::i;:::-;29409:70;29472:6;29467:3;29409:70;:::i;:::-;29402:77;;29488:65;29546:6;29541:3;29534:4;29527:5;29523:16;29488:65;:::i;:::-;29578:29;29600:6;29578:29;:::i;:::-;29573:3;29569:39;29562:46;;29331:283;29241:373;;;;:::o;29620:640::-;29815:4;29853:3;29842:9;29838:19;29830:27;;29867:71;29935:1;29924:9;29920:17;29911:6;29867:71;:::i;:::-;29948:72;30016:2;30005:9;30001:18;29992:6;29948:72;:::i;:::-;30030;30098:2;30087:9;30083:18;30074:6;30030:72;:::i;:::-;30149:9;30143:4;30139:20;30134:2;30123:9;30119:18;30112:48;30177:76;30248:4;30239:6;30177:76;:::i;:::-;30169:84;;29620:640;;;;;;;:::o;30266:141::-;30322:5;30353:6;30347:13;30338:22;;30369:32;30395:5;30369:32;:::i;:::-;30266:141;;;;:::o;30413:349::-;30482:6;30531:2;30519:9;30510:7;30506:23;30502:32;30499:119;;;30537:79;;:::i;:::-;30499:119;30657:1;30682:63;30737:7;30728:6;30717:9;30713:22;30682:63;:::i;:::-;30672:73;;30628:127;30413:349;;;;:::o;30768:180::-;30816:77;30813:1;30806:88;30913:4;30910:1;30903:15;30937:4;30934:1;30927:15;30954:185;30994:1;31011:20;31029:1;31011:20;:::i;:::-;31006:25;;31045:20;31063:1;31045:20;:::i;:::-;31040:25;;31084:1;31074:35;;31089:18;;:::i;:::-;31074:35;31131:1;31128;31124:9;31119:14;;30954:185;;;;:::o;31145:176::-;31177:1;31194:20;31212:1;31194:20;:::i;:::-;31189:25;;31228:20;31246:1;31228:20;:::i;:::-;31223:25;;31267:1;31257:35;;31272:18;;:::i;:::-;31257:35;31313:1;31310;31306:9;31301:14;;31145:176;;;;:::o;31327:167::-;31467:19;31463:1;31455:6;31451:14;31444:43;31327:167;:::o;31500:366::-;31642:3;31663:67;31727:2;31722:3;31663:67;:::i;:::-;31656:74;;31739:93;31828:3;31739:93;:::i;:::-;31857:2;31852:3;31848:12;31841:19;;31500:366;;;:::o;31872:419::-;32038:4;32076:2;32065:9;32061:18;32053:26;;32125:9;32119:4;32115:20;32111:1;32100:9;32096:17;32089:47;32153:131;32279:4;32153:131;:::i;:::-;32145:139;;31872:419;;;:::o

Swarm Source

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